Shortlinks by Pretty Links – Best WordPress Link Tracking Plugin - Version 1.6.1

Version Description

  • Security Fixes
  • Fixed some issues with Pretty Link running in WordPress Multisite
  • Altered the way Keyword Replacements can be disabled on individual pages in Pro
  • Fixed an issue with import feature in Pro
  • Fixed an issue causing "ghost" update messages in Pro
  • Updated browscap file for more accurate click tracking
  • Fixed an issue that interfered with Pretty Link's option saving for some users
Download this release

Release Info

Developer supercleanse
Plugin Icon 128x128 Shortlinks by Pretty Links – Best WordPress Link Tracking Plugin
Version 1.6.1
Comparing to
See all releases

Code changes from version 1.6.0 to 1.6.1

classes/models/PrliUpdate.php CHANGED
@@ -251,6 +251,20 @@ class PrliUpdate
251
 
252
  return $client->getResponse();
253
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
254
 
255
  public function get_current_version()
256
  {
@@ -264,39 +278,17 @@ class PrliUpdate
264
  return $client->getResponse();
265
  }
266
 
267
- public function queue_update($transient, $force=false)
268
- {
269
- if($this->pro_is_authorized())
270
- {
271
- // If pro is authorized but not installed then we need to force an upgrade
272
- if(!$this->pro_is_installed())
273
- $force=true;
274
 
275
- $curr_version = $this->get_current_version();
276
- $installed_version = $transient->checked[$this->plugin_name];
277
-
278
- if( $force or version_compare( $curr_version, $installed_version, '>' ) )
279
- {
280
- $download_url = $this->get_download_url($curr_version);
281
-
282
- if(!empty($download_url) and $download_url and $this->user_allowed_to_download())
283
- {
284
- if(isset($transient->response[$this->plugin_name]))
285
- unset($transient->response[$this->plugin_name]);
286
-
287
- $transient->response[$this->plugin_name] = new stdClass();
288
- $transient->response[$this->plugin_name]->id = '0';
289
- $transient->response[$this->plugin_name]->slug = $this->plugin_slug;
290
- $transient->response[$this->plugin_name]->new_version = $curr_version;
291
- $transient->response[$this->plugin_name]->url = $this->plugin_url;
292
- $transient->response[$this->plugin_name]->package = $download_url;
293
- }
294
- }
295
- else
296
- {
297
- if(isset($transient->response[$this->plugin_name]))
298
- unset($transient->response[$this->plugin_name]);
299
- }
300
  }
301
 
302
  return $transient;
251
 
252
  return $client->getResponse();
253
  }
254
+
255
+ public function get_current_info($version, $force=false)
256
+ {
257
+ include_once( ABSPATH . 'wp-includes/class-IXR.php' );
258
+
259
+ $client = new IXR_Client( $this->pro_mothership_xmlrpc_url );
260
+
261
+ $force = ($force ? 'true' : 'false');
262
+
263
+ if( !$client->query( 'proplug.get_current_info', $this->pro_username, $this->pro_password, $version, $force ) )
264
+ return false;
265
+
266
+ return $client->getResponse();
267
+ }
268
 
269
  public function get_current_version()
270
  {
278
  return $client->getResponse();
279
  }
280
 
281
+ public function queue_update($transient, $force=false) {
282
+ if( empty( $transient->checked ) )
283
+ return $transient;
284
+
285
+ if( $this->pro_is_authorized() ) {
286
+ if( !$this->pro_is_installed() ) { $force = true; }
 
287
 
288
+ $update = $this->get_current_info( $transient->checked[ $this->plugin_name ], $force );
289
+
290
+ if( $update and !empty( $update ) )
291
+ $transient->response[ $this->plugin_name ] = (object) $update;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  }
293
 
294
  return $transient;
classes/views/prli-clicks/list.php CHANGED
@@ -59,7 +59,7 @@
59
 
60
  <input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
61
  <input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
62
- <input type="text" name="search" id="search" value="<?php echo $search_str; ?>" style="display:inline;"/>
63
  <div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search Hits"/>
64
  <?php
65
  if(!empty($search_str))
59
 
60
  <input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
61
  <input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
62
+ <input type="text" name="search" id="search" value="<?php echo esc_attr($search_str); ?>" style="display:inline;"/>
63
  <div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search Hits"/>
64
  <?php
65
  if(!empty($search_str))
classes/views/prli-groups/list.php CHANGED
@@ -13,7 +13,7 @@ if(!defined('ABSPATH'))
13
  <?php wp_nonce_field('prli-groups'); ?>
14
  <input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
15
  <input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
16
- <input type="text" name="search" id="search" value="<?php echo $search_str; ?>" style="display:inline;"/>
17
  <div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search"/>
18
  <?php
19
  if(!empty($search_str))
13
  <?php wp_nonce_field('prli-groups'); ?>
14
  <input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
15
  <input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
16
+ <input type="text" name="search" id="search" value="<?php echo esc_attr($search_str); ?>" style="display:inline;"/>
17
  <div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search"/>
18
  <?php
19
  if(!empty($search_str))
classes/views/prli-links/list.php CHANGED
@@ -26,7 +26,7 @@ if(!defined('ABSPATH'))
26
  <?php wp_nonce_field('prli-links'); ?>
27
  <input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
28
  <input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
29
- <input type="text" name="search" id="search" value="<?php echo $search_str; ?>" style="display:inline;"/>
30
  <div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search"/>
31
  <?php
32
  if(!empty($search_str))
26
  <?php wp_nonce_field('prli-links'); ?>
27
  <input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
28
  <input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
29
+ <input type="text" name="search" id="search" value="<?php echo esc_attr($search_str); ?>" style="display:inline;"/>
30
  <div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search"/>
31
  <?php
32
  if(!empty($search_str))
i18n/pretty-link.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Pretty Link Lite package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Pretty Link Lite 1.6.0rc1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/pretty-link\n"
7
- "POT-Creation-Date: 2012-04-19 19:24:09+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -639,178 +639,178 @@ msgstr ""
639
  msgid "Unauthorized"
640
  msgstr ""
641
 
642
- #: pro/pretty-link-pro.php:924
643
  msgid "Delay Redirect must be a number"
644
  msgstr ""
645
 
646
- #: pro/pretty-link-pro.php:987
647
  msgid "This Link Has additional Target URL rotations"
648
  msgstr ""
649
 
650
- #: pro/pretty-link-pro.php:1385
651
  msgid "Alternate Pretty Bar Attribution URL:"
652
  msgstr ""
653
 
654
- #: pro/pretty-link-pro.php:1477
655
  msgid "End-Point URL:"
656
  msgstr ""
657
 
658
- #: pro/pretty-link-pro.php:1478
659
  msgid "This can be used to integrate with your twitter client."
660
  msgstr ""
661
 
662
- #: pro/pretty-link-pro.php:1481
663
  msgid "Show TweetDeck Integration Instructions"
664
  msgstr ""
665
 
666
- #: pro/pretty-link-pro.php:1483 pro/pretty-link-pro.php:1489
667
  msgid "Follow the"
668
  msgstr ""
669
 
670
- #: pro/pretty-link-pro.php:1483
671
  msgid "TweetDeck Custom URL Instructions"
672
  msgstr ""
673
 
674
- #: pro/pretty-link-pro.php:1483
675
  msgid " and add the following URL to TweetDeck"
676
  msgstr ""
677
 
678
- #: pro/pretty-link-pro.php:1487
679
  msgid "Show Twitter for iPhone Integration Instructions"
680
  msgstr ""
681
 
682
- #: pro/pretty-link-pro.php:1489
683
  msgid "Twitter for iPhone Custom URL Instructions"
684
  msgstr ""
685
 
686
- #: pro/pretty-link-pro.php:1489
687
  msgid " and add the following URL to Twitter for iPhone"
688
  msgstr ""
689
 
690
- #: pro/pretty-link-pro.php:1499
691
  msgid "Label:"
692
  msgstr ""
693
 
694
- #: pro/pretty-link-pro.php:1504 pro/prlipro-create-public-link-widget.php:46
695
  msgid "Redirection:"
696
  msgstr ""
697
 
698
- #: pro/pretty-link-pro.php:1515 pro/prlipro-create-public-link-widget.php:57
699
  msgid "Tracking Enabled:"
700
  msgstr ""
701
 
702
- #: pro/pretty-link-pro.php:1524 pro/prlipro-create-public-link-widget.php:66
703
  msgid "Group:"
704
  msgstr ""
705
 
706
- #: pro/pretty-link-pro.php:1630 pro/pretty-link-pro.php:1670
707
  msgid "There was an error saving your Twitter account."
708
  msgstr ""
709
 
710
- #: pro/pretty-link-pro.php:1666
711
  msgid "Your Twitter Account was successfully saved."
712
  msgstr ""
713
 
714
- #: pro/pretty-link-pro.php:1684 pro/pretty-link-pro.php:1762
715
  msgid "Pretty Bar"
716
  msgstr ""
717
 
718
- #: pro/pretty-link-pro.php:1685
719
  msgid "Cloaked"
720
  msgstr ""
721
 
722
- #: pro/pretty-link-pro.php:1686 pro/pretty-link-pro.php:1764
723
  msgid "Pixel"
724
  msgstr ""
725
 
726
- #: pro/pretty-link-pro.php:1687 pro/pretty-link-pro.php:1765
727
  msgid "Meta Refresh"
728
  msgstr ""
729
 
730
- #: pro/pretty-link-pro.php:1688 pro/pretty-link-pro.php:1766
731
  msgid "Javascript"
732
  msgstr ""
733
 
734
- #: pro/pretty-link-pro.php:1763
735
  msgid "Cloak"
736
  msgstr ""
737
 
738
- #: pro/pretty-link-pro.php:1794
739
  msgid "Image URL:"
740
  msgstr ""
741
 
742
- #: pro/pretty-link-pro.php:1797
743
  msgid ""
744
  "If set, this will replace the logo image on the PrettyBar. The image that "
745
  "this URL references should be 48x48 Pixels to fit."
746
  msgstr ""
747
 
748
- #: pro/pretty-link-pro.php:1801
749
  msgid "Background Image URL:"
750
  msgstr ""
751
 
752
- #: pro/pretty-link-pro.php:1804
753
  msgid ""
754
  "If set, this will replace the background image on PrettyBar. The image that "
755
  "this URL references should be 65px tall - this image will be repeated "
756
  "horizontally across the bar."
757
  msgstr ""
758
 
759
- #: pro/pretty-link-pro.php:1808
760
  msgid "Background Color:"
761
  msgstr ""
762
 
763
- #: pro/pretty-link-pro.php:1811
764
  msgid ""
765
  "This will alter the background color of the PrettyBar if you haven't "
766
  "specified a PrettyBar background image."
767
  msgstr ""
768
 
769
- #: pro/pretty-link-pro.php:1815
770
  msgid "Text Color:"
771
  msgstr ""
772
 
773
- #: pro/pretty-link-pro.php:1818
774
  msgid ""
775
  "If not set, this defaults to black (RGB value <code>#000000</code>) but you "
776
  "can change it to whatever color you like."
777
  msgstr ""
778
 
779
- #: pro/pretty-link-pro.php:1822
780
  msgid "Link Color:"
781
  msgstr ""
782
 
783
- #: pro/pretty-link-pro.php:1825
784
  msgid ""
785
  "If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you "
786
  "can change it to whatever color you like."
787
  msgstr ""
788
 
789
- #: pro/pretty-link-pro.php:1829
790
  msgid "Link Hover Color:"
791
  msgstr ""
792
 
793
- #: pro/pretty-link-pro.php:1832
794
  msgid ""
795
  "If not set, this defaults to RGB value <code>#ababab</code> but you can "
796
  "change it to whatever color you like."
797
  msgstr ""
798
 
799
- #: pro/pretty-link-pro.php:1836
800
  msgid "Visited Link Color:"
801
  msgstr ""
802
 
803
- #: pro/pretty-link-pro.php:1839
804
  msgid ""
805
  "If not set, this defaults to RGB value <code>#551a8b</code> but you can "
806
  "change it to whatever color you like."
807
  msgstr ""
808
 
809
- #: pro/pretty-link-pro.php:1843
810
  msgid "Title Char Limit*:"
811
  msgstr ""
812
 
813
- #: pro/pretty-link-pro.php:1846
814
  msgid ""
815
  "If your Website has a long title then you may need to adjust this value so "
816
  "that it will all fit on the PrettyBar. It is recommended that you keep this "
@@ -818,11 +818,11 @@ msgid ""
818
  "good across different browsers and screen resolutions."
819
  msgstr ""
820
 
821
- #: pro/pretty-link-pro.php:1850
822
  msgid "Description Char Limit*:"
823
  msgstr ""
824
 
825
- #: pro/pretty-link-pro.php:1853
826
  msgid ""
827
  "If your Website has a long Description (tagline) then you may need to adjust "
828
  "this value so that it will all fit on the PrettyBar. It is recommended that "
@@ -830,118 +830,118 @@ msgid ""
830
  "format looks good across different browsers and screen resolutions."
831
  msgstr ""
832
 
833
- #: pro/pretty-link-pro.php:1857
834
  msgid "Target URL Char Limit*:"
835
  msgstr ""
836
 
837
- #: pro/pretty-link-pro.php:1860
838
  msgid ""
839
  "If you link to a lot of large Target URLs you may want to adjust this value. "
840
  "It is recommended that you keep this value to <code>40</code> or below so "
841
  "the PrettyBar's format looks good across different browsers and URL sizes"
842
  msgstr ""
843
 
844
- #: pro/pretty-link-pro.php:1865
845
  msgid "Show Pretty Bar Title"
846
  msgstr ""
847
 
848
- #: pro/pretty-link-pro.php:1866
849
  msgid ""
850
  "Make sure this is checked if you want the title of your blog (and link) to "
851
  "show up on the PrettyBar."
852
  msgstr ""
853
 
854
- #: pro/pretty-link-pro.php:1871
855
  msgid "Show Pretty Bar Description"
856
  msgstr ""
857
 
858
- #: pro/pretty-link-pro.php:1872
859
  msgid ""
860
  "Make sure this is checked if you want your site description to show up on "
861
  "the PrettyBar."
862
  msgstr ""
863
 
864
- #: pro/pretty-link-pro.php:1877
865
  msgid "Show Pretty Bar Share Links"
866
  msgstr ""
867
 
868
- #: pro/pretty-link-pro.php:1878
869
  msgid ""
870
  "Make sure this is checked if you want \"share links\" to show up on the "
871
  "PrettyBar."
872
  msgstr ""
873
 
874
- #: pro/pretty-link-pro.php:1883
875
  msgid "Show Pretty Bar Target URL"
876
  msgstr ""
877
 
878
- #: pro/pretty-link-pro.php:1884
879
  msgid ""
880
  "Make sure this is checked if you want a link displaying the Target URL to "
881
  "show up on the PrettyBar."
882
  msgstr ""
883
 
884
- #: pro/pretty-link-pro.php:1914
885
  msgid "Logo Image URL must be a correctly formatted URL"
886
  msgstr ""
887
 
888
- #: pro/pretty-link-pro.php:1917
889
  msgid "Background Image URL must be a correctly formatted URL"
890
  msgstr ""
891
 
892
- #: pro/pretty-link-pro.php:1920
893
  msgid "PrettyBar Background Color must be an actual RGB Value"
894
  msgstr ""
895
 
896
- #: pro/pretty-link-pro.php:1923
897
  msgid "PrettyBar Text Color must be an actual RGB Value"
898
  msgstr ""
899
 
900
- #: pro/pretty-link-pro.php:1926
901
  msgid "PrettyBar Link Color must be an actual RGB Value"
902
  msgstr ""
903
 
904
- #: pro/pretty-link-pro.php:1929 pro/pretty-link-pro.php:1932
905
  msgid "PrettyBar Hover Color must be an actual RGB Value"
906
  msgstr ""
907
 
908
- #: pro/pretty-link-pro.php:1935
909
  msgid "PrettyBar Title Character Limit must not be blank"
910
  msgstr ""
911
 
912
- #: pro/pretty-link-pro.php:1938
913
  msgid "PrettyBar Description Character Limit must not be blank"
914
  msgstr ""
915
 
916
- #: pro/pretty-link-pro.php:1941
917
  msgid "PrettyBar Link Character Limit must not be blank"
918
  msgstr ""
919
 
920
- #: pro/pretty-link-pro.php:1944
921
  msgid "PrettyBar Title Character Limit must be a number"
922
  msgstr ""
923
 
924
- #: pro/pretty-link-pro.php:1947
925
  msgid "PrettyBar Description Character Limit must be a number"
926
  msgstr ""
927
 
928
- #: pro/pretty-link-pro.php:1950
929
  msgid "PrettyBar Link Character Limit must be a number"
930
  msgstr ""
931
 
932
- #: pro/pretty-link-pro.php:2073
933
  msgid "You are unauthorized to view this resource"
934
  msgstr ""
935
 
936
- #: pro/pretty-link-pro.php:2103
937
  msgid "View QR Code for this link: %s"
938
  msgstr ""
939
 
940
- #: pro/pretty-link-pro.php:2111
941
  msgid "Download QR Code for this link: %s"
942
  msgstr ""
943
 
944
- #: pro/pretty-link-pro.php:2204
945
  msgid "Double Redirection Enabled"
946
  msgstr ""
947
 
@@ -1117,6 +1117,27 @@ msgstr ""
1117
  msgid "Add Link Report"
1118
  msgstr ""
1119
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1120
  #: pro/classes/views/prli-reports/list.php:7
1121
  msgid "Link Reports"
1122
  msgstr ""
2
  # This file is distributed under the same license as the Pretty Link Lite package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Pretty Link Lite 1.6.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/pretty-link\n"
7
+ "POT-Creation-Date: 2012-11-07 05:44:16+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
639
  msgid "Unauthorized"
640
  msgstr ""
641
 
642
+ #: pro/pretty-link-pro.php:907
643
  msgid "Delay Redirect must be a number"
644
  msgstr ""
645
 
646
+ #: pro/pretty-link-pro.php:970
647
  msgid "This Link Has additional Target URL rotations"
648
  msgstr ""
649
 
650
+ #: pro/pretty-link-pro.php:1368
651
  msgid "Alternate Pretty Bar Attribution URL:"
652
  msgstr ""
653
 
654
+ #: pro/pretty-link-pro.php:1460
655
  msgid "End-Point URL:"
656
  msgstr ""
657
 
658
+ #: pro/pretty-link-pro.php:1461
659
  msgid "This can be used to integrate with your twitter client."
660
  msgstr ""
661
 
662
+ #: pro/pretty-link-pro.php:1464
663
  msgid "Show TweetDeck Integration Instructions"
664
  msgstr ""
665
 
666
+ #: pro/pretty-link-pro.php:1466 pro/pretty-link-pro.php:1472
667
  msgid "Follow the"
668
  msgstr ""
669
 
670
+ #: pro/pretty-link-pro.php:1466
671
  msgid "TweetDeck Custom URL Instructions"
672
  msgstr ""
673
 
674
+ #: pro/pretty-link-pro.php:1466
675
  msgid " and add the following URL to TweetDeck"
676
  msgstr ""
677
 
678
+ #: pro/pretty-link-pro.php:1470
679
  msgid "Show Twitter for iPhone Integration Instructions"
680
  msgstr ""
681
 
682
+ #: pro/pretty-link-pro.php:1472
683
  msgid "Twitter for iPhone Custom URL Instructions"
684
  msgstr ""
685
 
686
+ #: pro/pretty-link-pro.php:1472
687
  msgid " and add the following URL to Twitter for iPhone"
688
  msgstr ""
689
 
690
+ #: pro/pretty-link-pro.php:1482
691
  msgid "Label:"
692
  msgstr ""
693
 
694
+ #: pro/pretty-link-pro.php:1487 pro/prlipro-create-public-link-widget.php:46
695
  msgid "Redirection:"
696
  msgstr ""
697
 
698
+ #: pro/pretty-link-pro.php:1498 pro/prlipro-create-public-link-widget.php:57
699
  msgid "Tracking Enabled:"
700
  msgstr ""
701
 
702
+ #: pro/pretty-link-pro.php:1507 pro/prlipro-create-public-link-widget.php:66
703
  msgid "Group:"
704
  msgstr ""
705
 
706
+ #: pro/pretty-link-pro.php:1613 pro/pretty-link-pro.php:1653
707
  msgid "There was an error saving your Twitter account."
708
  msgstr ""
709
 
710
+ #: pro/pretty-link-pro.php:1649
711
  msgid "Your Twitter Account was successfully saved."
712
  msgstr ""
713
 
714
+ #: pro/pretty-link-pro.php:1667 pro/pretty-link-pro.php:1745
715
  msgid "Pretty Bar"
716
  msgstr ""
717
 
718
+ #: pro/pretty-link-pro.php:1668
719
  msgid "Cloaked"
720
  msgstr ""
721
 
722
+ #: pro/pretty-link-pro.php:1669 pro/pretty-link-pro.php:1747
723
  msgid "Pixel"
724
  msgstr ""
725
 
726
+ #: pro/pretty-link-pro.php:1670 pro/pretty-link-pro.php:1748
727
  msgid "Meta Refresh"
728
  msgstr ""
729
 
730
+ #: pro/pretty-link-pro.php:1671 pro/pretty-link-pro.php:1749
731
  msgid "Javascript"
732
  msgstr ""
733
 
734
+ #: pro/pretty-link-pro.php:1746
735
  msgid "Cloak"
736
  msgstr ""
737
 
738
+ #: pro/pretty-link-pro.php:1777
739
  msgid "Image URL:"
740
  msgstr ""
741
 
742
+ #: pro/pretty-link-pro.php:1780
743
  msgid ""
744
  "If set, this will replace the logo image on the PrettyBar. The image that "
745
  "this URL references should be 48x48 Pixels to fit."
746
  msgstr ""
747
 
748
+ #: pro/pretty-link-pro.php:1784
749
  msgid "Background Image URL:"
750
  msgstr ""
751
 
752
+ #: pro/pretty-link-pro.php:1787
753
  msgid ""
754
  "If set, this will replace the background image on PrettyBar. The image that "
755
  "this URL references should be 65px tall - this image will be repeated "
756
  "horizontally across the bar."
757
  msgstr ""
758
 
759
+ #: pro/pretty-link-pro.php:1791
760
  msgid "Background Color:"
761
  msgstr ""
762
 
763
+ #: pro/pretty-link-pro.php:1794
764
  msgid ""
765
  "This will alter the background color of the PrettyBar if you haven't "
766
  "specified a PrettyBar background image."
767
  msgstr ""
768
 
769
+ #: pro/pretty-link-pro.php:1798
770
  msgid "Text Color:"
771
  msgstr ""
772
 
773
+ #: pro/pretty-link-pro.php:1801
774
  msgid ""
775
  "If not set, this defaults to black (RGB value <code>#000000</code>) but you "
776
  "can change it to whatever color you like."
777
  msgstr ""
778
 
779
+ #: pro/pretty-link-pro.php:1805
780
  msgid "Link Color:"
781
  msgstr ""
782
 
783
+ #: pro/pretty-link-pro.php:1808
784
  msgid ""
785
  "If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you "
786
  "can change it to whatever color you like."
787
  msgstr ""
788
 
789
+ #: pro/pretty-link-pro.php:1812
790
  msgid "Link Hover Color:"
791
  msgstr ""
792
 
793
+ #: pro/pretty-link-pro.php:1815
794
  msgid ""
795
  "If not set, this defaults to RGB value <code>#ababab</code> but you can "
796
  "change it to whatever color you like."
797
  msgstr ""
798
 
799
+ #: pro/pretty-link-pro.php:1819
800
  msgid "Visited Link Color:"
801
  msgstr ""
802
 
803
+ #: pro/pretty-link-pro.php:1822
804
  msgid ""
805
  "If not set, this defaults to RGB value <code>#551a8b</code> but you can "
806
  "change it to whatever color you like."
807
  msgstr ""
808
 
809
+ #: pro/pretty-link-pro.php:1826
810
  msgid "Title Char Limit*:"
811
  msgstr ""
812
 
813
+ #: pro/pretty-link-pro.php:1829
814
  msgid ""
815
  "If your Website has a long title then you may need to adjust this value so "
816
  "that it will all fit on the PrettyBar. It is recommended that you keep this "
818
  "good across different browsers and screen resolutions."
819
  msgstr ""
820
 
821
+ #: pro/pretty-link-pro.php:1833
822
  msgid "Description Char Limit*:"
823
  msgstr ""
824
 
825
+ #: pro/pretty-link-pro.php:1836
826
  msgid ""
827
  "If your Website has a long Description (tagline) then you may need to adjust "
828
  "this value so that it will all fit on the PrettyBar. It is recommended that "
830
  "format looks good across different browsers and screen resolutions."
831
  msgstr ""
832
 
833
+ #: pro/pretty-link-pro.php:1840
834
  msgid "Target URL Char Limit*:"
835
  msgstr ""
836
 
837
+ #: pro/pretty-link-pro.php:1843
838
  msgid ""
839
  "If you link to a lot of large Target URLs you may want to adjust this value. "
840
  "It is recommended that you keep this value to <code>40</code> or below so "
841
  "the PrettyBar's format looks good across different browsers and URL sizes"
842
  msgstr ""
843
 
844
+ #: pro/pretty-link-pro.php:1848
845
  msgid "Show Pretty Bar Title"
846
  msgstr ""
847
 
848
+ #: pro/pretty-link-pro.php:1849
849
  msgid ""
850
  "Make sure this is checked if you want the title of your blog (and link) to "
851
  "show up on the PrettyBar."
852
  msgstr ""
853
 
854
+ #: pro/pretty-link-pro.php:1854
855
  msgid "Show Pretty Bar Description"
856
  msgstr ""
857
 
858
+ #: pro/pretty-link-pro.php:1855
859
  msgid ""
860
  "Make sure this is checked if you want your site description to show up on "
861
  "the PrettyBar."
862
  msgstr ""
863
 
864
+ #: pro/pretty-link-pro.php:1860
865
  msgid "Show Pretty Bar Share Links"
866
  msgstr ""
867
 
868
+ #: pro/pretty-link-pro.php:1861
869
  msgid ""
870
  "Make sure this is checked if you want \"share links\" to show up on the "
871
  "PrettyBar."
872
  msgstr ""
873
 
874
+ #: pro/pretty-link-pro.php:1866
875
  msgid "Show Pretty Bar Target URL"
876
  msgstr ""
877
 
878
+ #: pro/pretty-link-pro.php:1867
879
  msgid ""
880
  "Make sure this is checked if you want a link displaying the Target URL to "
881
  "show up on the PrettyBar."
882
  msgstr ""
883
 
884
+ #: pro/pretty-link-pro.php:1897
885
  msgid "Logo Image URL must be a correctly formatted URL"
886
  msgstr ""
887
 
888
+ #: pro/pretty-link-pro.php:1900
889
  msgid "Background Image URL must be a correctly formatted URL"
890
  msgstr ""
891
 
892
+ #: pro/pretty-link-pro.php:1903
893
  msgid "PrettyBar Background Color must be an actual RGB Value"
894
  msgstr ""
895
 
896
+ #: pro/pretty-link-pro.php:1906
897
  msgid "PrettyBar Text Color must be an actual RGB Value"
898
  msgstr ""
899
 
900
+ #: pro/pretty-link-pro.php:1909
901
  msgid "PrettyBar Link Color must be an actual RGB Value"
902
  msgstr ""
903
 
904
+ #: pro/pretty-link-pro.php:1912 pro/pretty-link-pro.php:1915
905
  msgid "PrettyBar Hover Color must be an actual RGB Value"
906
  msgstr ""
907
 
908
+ #: pro/pretty-link-pro.php:1918
909
  msgid "PrettyBar Title Character Limit must not be blank"
910
  msgstr ""
911
 
912
+ #: pro/pretty-link-pro.php:1921
913
  msgid "PrettyBar Description Character Limit must not be blank"
914
  msgstr ""
915
 
916
+ #: pro/pretty-link-pro.php:1924
917
  msgid "PrettyBar Link Character Limit must not be blank"
918
  msgstr ""
919
 
920
+ #: pro/pretty-link-pro.php:1927
921
  msgid "PrettyBar Title Character Limit must be a number"
922
  msgstr ""
923
 
924
+ #: pro/pretty-link-pro.php:1930
925
  msgid "PrettyBar Description Character Limit must be a number"
926
  msgstr ""
927
 
928
+ #: pro/pretty-link-pro.php:1933
929
  msgid "PrettyBar Link Character Limit must be a number"
930
  msgstr ""
931
 
932
+ #: pro/pretty-link-pro.php:2056
933
  msgid "You are unauthorized to view this resource"
934
  msgstr ""
935
 
936
+ #: pro/pretty-link-pro.php:2086
937
  msgid "View QR Code for this link: %s"
938
  msgstr ""
939
 
940
+ #: pro/pretty-link-pro.php:2094
941
  msgid "Download QR Code for this link: %s"
942
  msgstr ""
943
 
944
+ #: pro/pretty-link-pro.php:2187
945
  msgid "Double Redirection Enabled"
946
  msgstr ""
947
 
1117
  msgid "Add Link Report"
1118
  msgstr ""
1119
 
1120
+ #: pro/classes/views/prli-reports/new.php:20
1121
+ msgid "Name*:"
1122
+ msgstr ""
1123
+
1124
+ #: pro/classes/views/prli-reports/new.php:22
1125
+ #: pro/classes/views/prli-reports/edit.php:22
1126
+ msgid "This is how you'll identify your Report."
1127
+ msgstr ""
1128
+
1129
+ #: pro/classes/views/prli-reports/new.php:86
1130
+ #: pro/classes/views/prli-reports/edit.php:86
1131
+ msgid "Select some links to be analyzed in this report."
1132
+ msgstr ""
1133
+
1134
+ #: pro/classes/views/prli-reports/new.php:111
1135
+ #: pro/classes/views/prli-reports/edit.php:111
1136
+ msgid ""
1137
+ "If you want to enable conversion tracking in this report then select a goal "
1138
+ "link."
1139
+ msgstr ""
1140
+
1141
  #: pro/classes/views/prli-reports/list.php:7
1142
  msgid "Link Reports"
1143
  msgstr ""
includes/php/php_browsecap.ini CHANGED
@@ -1,18 +1,28 @@
1
- ;;; Provided courtesy of http://browsers.garykeith.com
2
- ;;; Created on Friday, December 11, 2009 at 3:27 PM GMT
 
 
 
 
 
 
 
 
3
 
4
  [GJK_Browscap_Version]
5
- Version=4523
6
- Released=Fri, 11 Dec 2009 15:27:01 -0000
7
 
8
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties
9
 
10
  [DefaultProperties]
 
11
  Browser="DefaultProperties"
12
- Version=0
13
  MajorVer=0
14
  MinorVer=0
15
- Platform=unknown
 
16
  Alpha=false
17
  Beta=false
18
  Win16=false
@@ -23,26 +33,24 @@ IFrames=false
23
  Tables=false
24
  Cookies=false
25
  BackgroundSounds=false
26
- CDF=false
27
  VBScript=false
28
  JavaApplets=false
29
- JavaScript=false
30
  ActiveXControls=false
31
- isBanned=false
32
  isMobileDevice=false
33
  isSyndicationReader=false
34
  Crawler=false
35
  CssVersion=0
36
- supportsCSS=false
37
- AOL=false
38
- aolVersion=0
39
 
40
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ask
41
 
42
  [Ask]
43
  Parent=DefaultProperties
 
44
  Browser="Ask"
45
  Frames=true
 
46
  Tables=true
47
  Crawler=true
48
 
@@ -58,12 +66,46 @@ Browser="AskJeeves"
58
 
59
  [Baidu]
60
  Parent=DefaultProperties
 
61
  Browser="Baidu"
62
  Frames=true
 
63
  Tables=true
64
  Crawler=true
65
 
66
- [AC-BaiduBot/1.*]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  Parent=Baidu
68
  Browser="AC-BaiduBot"
69
 
@@ -71,66 +113,88 @@ Browser="AC-BaiduBot"
71
  Parent=Baidu
72
  Browser="BaiduImageSpider"
73
 
74
- [Baiduspider*]
75
  Parent=Baidu
76
- Browser="BaiDu"
 
 
 
77
 
78
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google
79
 
80
  [Google]
81
  Parent=DefaultProperties
 
82
  Browser="Google"
83
  Frames=true
84
  IFrames=true
85
  Tables=true
86
- JavaScript=true
87
  Crawler=true
88
 
89
- [* (compatible; Googlebot-Mobile/2.1; *http://www.google.com/bot.html)]
 
 
 
 
90
  Parent=Google
91
  Browser="Googlebot-Mobile"
92
  Frames=false
93
  IFrames=false
94
  Tables=false
95
 
96
- [*Google Wireless Transcoder*]
97
  Parent=Google
98
- Browser="Google Wireless Transcoder"
 
 
 
99
 
100
- [AdsBot-Google (?http://www.google.com/adsbot.html)]
101
  Parent=Google
102
  Browser="AdsBot-Google"
103
 
104
- [Feedfetcher-Google-iGoogleGadgets;*]
105
  Parent=Google
106
- Browser="iGoogleGadgets"
107
- isBanned=true
108
- isSyndicationReader=true
 
 
109
 
110
- [Feedfetcher-Google;*]
111
  Parent=Google
112
  Browser="Feedfetcher-Google"
113
- isBanned=true
114
  isSyndicationReader=true
115
 
116
- [Google OpenSocial agent (http://www.google.com/feedfetcher.html)]
 
 
 
 
 
 
 
 
 
117
  Parent=Google
118
  Browser="Google OpenSocial"
119
 
120
- [Google-Site-Verification/1.0]
121
  Parent=Google
122
- Browser="Google-Site-Verification"
 
 
 
123
 
124
- [Google-Sitemaps/*]
125
  Parent=Google
126
  Browser="Google-Sitemaps"
127
 
128
- [Googlebot-Image/*]
129
  Parent=Google
130
  Browser="Googlebot-Image"
131
- CDF=true
132
 
133
- [Googlebot-News/*]
134
  Parent=Google
135
  Browser="Googlebot-News"
136
 
@@ -138,276 +202,46 @@ Browser="Googlebot-News"
138
  Parent=Google
139
  Browser="googlebot-urlconsole"
140
 
141
- [Googlebot-Video/1.0]
142
  Parent=Google
143
  Browser="Google-Video"
144
 
145
- [Googlebot/2.1 (?http://www.google.com/bot.html)]
146
- Parent=Google
147
- Browser="Googlebot"
148
-
149
- [Googlebot/2.1 (?http://www.googlebot.com/bot.html)]
150
- Parent=Google
151
- Browser="Googlebot"
152
-
153
  [Googlebot/Test*]
154
  Parent=Google
155
  Browser="Googlebot/Test"
156
 
157
- [GoogleFriendConnect/1.*]
158
  Parent=Google
159
  Browser="Google Friend Connect"
160
 
161
  [gsa-crawler*]
162
  Parent=Google
163
  Browser="Google Search Appliance"
164
- isBanned=true
165
 
166
  [Mediapartners-Google*]
167
  Parent=Google
168
  Browser="Mediapartners-Google"
169
 
170
- [Mozilla/?.0 (compatible; Google Desktop*)]
171
  Parent=Google
172
- Browser="Google Desktop"
173
 
174
- [Mozilla/5.0 (compatible; Google Keyword Tool;*)]
175
  Parent=Google
176
- Browser="Google Keyword Tool"
177
 
178
- [Mozilla/5.0 (compatible; Googlebot/2.1; ?http://www.google.com/bot.html)]
179
  Parent=Google
180
- Browser="Google Webmaster Tools"
181
-
182
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Inktomi
183
-
184
- [Inktomi]
185
- Parent=DefaultProperties
186
- Browser="Inktomi"
187
- Frames=true
188
- Tables=true
189
- Crawler=true
190
-
191
- [* (compatible;YahooSeeker/M1A1-R2D2; *)]
192
- Parent=Inktomi
193
- Browser="YahooSeeker-Mobile"
194
- Frames=false
195
- Tables=false
196
-
197
- [Mozilla/4.0]
198
- Parent=Inktomi
199
-
200
- [Mozilla/4.0 (compatible; MSIE 5.0; Windows NT)]
201
- Parent=Inktomi
202
- Win32=true
203
-
204
- [Mozilla/4.0 (compatible; Yahoo Japan; for robot study; kasugiya)]
205
- Parent=Inktomi
206
- Browser="Yahoo! RobotStudy"
207
- isBanned=true
208
-
209
- [Mozilla/5.0 (compatible; BMC/1.0 (Y!J-AGENT))]
210
- Parent=Inktomi
211
- Browser="Y!J-AGENT/BMC"
212
-
213
- [Mozilla/5.0 (compatible; BMF/1.0 (Y!J-AGENT))]
214
- Parent=Inktomi
215
- Browser="Y!J-AGENT/BMF"
216
-
217
- [Mozilla/5.0 (compatible; BMI/1.0 (Y!J-AGENT; 1.0))]
218
- Parent=Inktomi
219
- Browser="Y!J-AGENT/BMI"
220
-
221
- [Mozilla/5.0 (compatible; Yahoo! DE Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
222
- Parent=Inktomi
223
- Browser="Yahoo! Directory Engine"
224
-
225
- [Mozilla/5.0 (compatible; Yahoo! SearchMonkey 1.0; *)]
226
- Parent=Inktomi
227
- Browser="Yahoo! Search Monkey"
228
-
229
- [Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)]
230
- Parent=Inktomi
231
- Browser="Yahoo! Slurp China"
232
-
233
- [Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)]
234
- Parent=Inktomi
235
- Browser="Yahoo! Slurp"
236
- Version=3.0
237
- MajorVer=3
238
- MinorVer=0
239
-
240
- [Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
241
- Parent=Inktomi
242
- Browser="Yahoo! Slurp"
243
-
244
- [Mozilla/5.0 (compatible; Yahoo! Verifier/1.1)]
245
- Parent=Inktomi
246
- Browser="Yahoo! Verifier"
247
- Version=1.1
248
- MajorVer=1
249
- MinorVer=1
250
-
251
- [Mozilla/5.0 (Slurp/cat; slurp@inktomi.com; http://www.inktomi.com/slurp.html)]
252
- Parent=Inktomi
253
- Browser="Slurp/cat"
254
-
255
- [Mozilla/5.0 (Slurp/si; slurp@inktomi.com; http://www.inktomi.com/slurp.html)]
256
- Parent=Inktomi
257
-
258
- [Mozilla/5.0 (Yahoo-MMCrawler/4.0; mailto:vertical-crawl-support@yahoo-inc.com)]
259
- Parent=Inktomi
260
- Browser="Yahoo-MMCrawler"
261
- Version=4.0
262
- MajorVer=4
263
- MinorVer=0
264
-
265
- [Scooter/*]
266
- Parent=Inktomi
267
- Browser="Scooter"
268
-
269
- [Scooter/3.3Y!CrawlX]
270
- Parent=Inktomi
271
- Browser="Scooter/3.3Y!CrawlX"
272
- Version=3.3
273
- MajorVer=3
274
- MinorVer=3
275
-
276
- [slurp]
277
- Parent=Inktomi
278
- Browser="slurp"
279
-
280
- [Y!J SearchMonkey/1.0*]
281
- Parent=Inktomi
282
- Browser="YahooFeedSeeker"
283
- isSyndicationReader=true
284
-
285
- [Y!J-BRE*]
286
- Parent=Inktomi
287
- Browser="YahooFeedSeeker"
288
- isSyndicationReader=true
289
-
290
- [Y!J-BRG/GSC*]
291
- Parent=Inktomi
292
- Browser="YahooFeedSeeker"
293
- isSyndicationReader=true
294
-
295
- [Y!J-BRI*]
296
- Parent=Inktomi
297
- Browser="YahooFeedSeeker"
298
- isSyndicationReader=true
299
-
300
- [Y!J-BRO/YFSJ*]
301
- Parent=Inktomi
302
- Browser="YahooFeedSeeker"
303
- isSyndicationReader=true
304
-
305
- [Y!J-BRP/YFSBJ*]
306
- Parent=Inktomi
307
- Browser="YahooFeedSeeker"
308
- isSyndicationReader=true
309
-
310
- [Y!J-BRQ/DLCK*]
311
- Parent=Inktomi
312
- Browser="YahooFeedSeeker"
313
- isSyndicationReader=true
314
-
315
- [Y!J-BSC/1.0*]
316
- Parent=Inktomi
317
- Browser="YahooFeedSeeker"
318
- Version=1.0
319
- MajorVer=1
320
- MinorVer=0
321
- isSyndicationReader=true
322
-
323
- [Y!J-DSC*]
324
- Parent=Inktomi
325
- Browser="YahooFeedSeeker"
326
- isSyndicationReader=true
327
-
328
- [Y!J-NSC/1.0*]
329
- Parent=Inktomi
330
- Browser="YahooFeedSeeker"
331
- isSyndicationReader=true
332
-
333
- [Y!J-PSC*]
334
- Parent=Inktomi
335
- Browser="YahooFeedSeeker"
336
- isSyndicationReader=true
337
-
338
- [Y!J-SRD/1.0]
339
- Parent=Inktomi
340
- Browser="YahooFeedSeeker"
341
- Version=1.0
342
- MajorVer=1
343
- MinorVer=0
344
-
345
- [Y!J-VSC/ViSe*]
346
- Parent=Inktomi
347
- Browser="YahooFeedSeeker"
348
- isSyndicationReader=true
349
-
350
- [Yahoo Mindset]
351
- Parent=Inktomi
352
- Browser="Yahoo Mindset"
353
-
354
- [Yahoo Pipes*]
355
- Parent=Inktomi
356
- Browser="Yahoo Pipes"
357
-
358
- [Yahoo! Mindset]
359
- Parent=Inktomi
360
- Browser="Yahoo! Mindset"
361
-
362
- [Yahoo! Slurp/Site Explorer]
363
- Parent=Inktomi
364
- Browser="Yahoo! Site Explorer"
365
-
366
- [Yahoo-Blogs/*]
367
- Parent=Inktomi
368
- Browser="Yahoo-Blogs"
369
-
370
- [Yahoo-MMAudVid*]
371
- Parent=Inktomi
372
- Browser="Yahoo-MMAudVid"
373
-
374
- [Yahoo-MMCrawler*]
375
- Parent=Inktomi
376
- Browser="Yahoo-MMCrawler"
377
- isBanned=true
378
-
379
- [YahooFeedSeeker*]
380
- Parent=Inktomi
381
- Browser="YahooFeedSeeker"
382
- isSyndicationReader=true
383
- Crawler=false
384
-
385
- [YahooSeeker/*]
386
- Parent=Inktomi
387
- Browser="YahooSeeker"
388
- isMobileDevice=true
389
-
390
- [YahooSeeker/CafeKelsa (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)]
391
- Parent=Inktomi
392
- Browser="YahooSeeker/CafeKelsa"
393
-
394
- [YahooSeeker/CafeKelsa-dev (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)]
395
- Parent=Inktomi
396
-
397
- [YahooVideoSearch*]
398
- Parent=Inktomi
399
- Browser="YahooVideoSearch"
400
-
401
- [YahooYSMcm*]
402
- Parent=Inktomi
403
- Browser="YahooYSMcm"
404
 
405
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN
406
 
407
  [MSN]
408
  Parent=DefaultProperties
 
409
  Browser="MSN"
410
  Frames=true
 
411
  Tables=true
412
  Crawler=true
413
 
@@ -426,6 +260,14 @@ Version=1.0
426
  MajorVer=1
427
  MinorVer=0
428
 
 
 
 
 
 
 
 
 
429
  [Mozilla/5.0 (Danger hiptop 3.*; U; rv:1.7.*) Gecko/*]
430
  Parent=MSN
431
  Browser="Danger"
@@ -470,6 +312,12 @@ Parent=MSN
470
  Browser="MSNBot-NewsBlogs"
471
  Version=1
472
  MajorVer=1
 
 
 
 
 
 
473
  MinorVer=0
474
 
475
  [msnbot-products]
@@ -496,6 +344,7 @@ MinorVer=1
496
 
497
  [msnbot/2.0b*]
498
  Parent=MSN
 
499
  Version=2.0
500
  MajorVer=2
501
  MinorVer=0
@@ -517,12 +366,18 @@ Browser="renlifangbot"
517
  Parent=MSN
518
  Browser="msnbot-mobile"
519
 
 
 
 
 
520
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo
521
 
522
  [Yahoo]
523
  Parent=DefaultProperties
 
524
  Browser="Yahoo"
525
  Frames=true
 
526
  Tables=true
527
  Crawler=true
528
 
@@ -530,99 +385,321 @@ Crawler=true
530
  Parent=Yahoo
531
  Browser="Y!J"
532
 
533
- [Mozilla/5.0 (Yahoo-Test/4.0*)]
534
  Parent=Yahoo
535
- Browser="Yahoo-Test"
536
- Version=4.0
537
- MajorVer=4
538
- MinorVer=0
539
 
540
- [mp3Spider cn-search-devel at yahoo-inc dot com]
541
  Parent=Yahoo
542
- Browser="Yahoo! Media"
543
- isBanned=true
544
 
545
- [My Browser]
546
  Parent=Yahoo
547
- Browser="Yahoo! My Browser"
548
 
549
- [Y!OASIS/*]
550
  Parent=Yahoo
551
- Browser="Y!OASIS"
552
- isBanned=true
553
 
554
- [YahooYSMcm/2.0.0]
555
  Parent=Yahoo
556
- Browser="YahooYSMcm"
557
- Version=2.0
558
- MajorVer=2
 
 
 
 
 
 
 
 
559
  MinorVer=0
560
- isBanned=true
561
 
562
- [YRL_ODP_CRAWLER]
563
  Parent=Yahoo
564
- Browser="YRL_ODP_CRAWLER"
565
- isBanned=true
 
 
566
 
567
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yandex
 
 
568
 
569
- [Yandex]
570
- Parent=DefaultProperties
571
- Browser="Yandex"
572
- Frames=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
573
  IFrames=true
574
  Tables=true
575
- Cookies=true
576
  Crawler=true
577
 
578
- [Mozilla/4.0 (compatible; MSIE 5.0; YANDEX)]
579
  Parent=Yandex
 
580
 
581
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9) Gecko VisualParser/3.0]
582
  Parent=Yandex
583
- Browser="VisualParser"
584
- isBanned=true
585
 
586
- [YaDirectBot/*]
587
  Parent=Yandex
588
- Browser="YaDirectBot"
589
 
590
- [Yandex/*]
591
  Parent=Yandex
 
592
 
593
- [YandexBlog/*]
594
  Parent=Yandex
595
- Browser="YandexBlog"
596
- isSyndicationReader=true
597
 
598
- [YandexSomething/*]
599
  Parent=Yandex
600
- Browser="YandexSomething"
601
- isSyndicationReader=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
602
 
603
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Best of the Web
604
 
605
  [Best of the Web]
606
  Parent=DefaultProperties
 
607
  Browser="Best of the Web"
608
  Frames=true
609
  Tables=true
 
610
 
611
  [Mozilla/4.0 (compatible; BOTW Feed Grabber; *http://botw.org)]
612
  Parent=Best of the Web
613
  Browser="BOTW Feed Grabber"
614
  isSyndicationReader=true
615
- Crawler=false
616
 
617
  [Mozilla/4.0 (compatible; BOTW Spider; *http://botw.org)]
618
  Parent=Best of the Web
619
  Browser="BOTW Spider"
620
- isBanned=true
621
 
622
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Boitho
623
 
624
  [Boitho]
625
  Parent=DefaultProperties
 
626
  Browser="Boitho"
627
  Frames=true
628
  Tables=true
@@ -640,6 +717,7 @@ Browser="boitho.com-robot"
640
 
641
  [Convera]
642
  Parent=DefaultProperties
 
643
  Browser="Convera"
644
  Frames=true
645
  Tables=true
@@ -664,10 +742,10 @@ Browser="CrawlConvera"
664
 
665
  [DotBot]
666
  Parent=DefaultProperties
 
667
  Browser="DotBot"
668
  Frames=true
669
  Tables=true
670
- isBanned=true
671
  Crawler=true
672
 
673
  [DotBot/* (http://www.dotnetdotcom.org/*)]
@@ -680,31 +758,30 @@ Parent=DotBot
680
 
681
  [Entireweb]
682
  Parent=DefaultProperties
 
683
  Browser="Entireweb"
684
  Frames=true
685
- IFrames=true
686
  Tables=true
687
- isBanned=true
688
  Crawler=true
689
 
690
- [Mozilla/4.0 (compatible; SpeedySpider; www.entireweb.com)]
691
  Parent=Entireweb
692
 
693
- [Speedy Spider (*Beta/*)]
694
  Parent=Entireweb
 
695
 
696
- [Speedy?Spider?(http://www.entireweb.com*)]
697
  Parent=Entireweb
698
 
699
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Envolk
700
 
701
  [Envolk]
702
  Parent=DefaultProperties
 
703
  Browser="Envolk"
704
  Frames=true
705
- IFrames=true
706
  Tables=true
707
- isBanned=true
708
  Crawler=true
709
 
710
  [envolk/* (?http://www.envolk.com/envolk*)]
@@ -717,10 +794,10 @@ Parent=Envolk
717
 
718
  [Exalead]
719
  Parent=DefaultProperties
 
720
  Browser="Exalead"
721
  Frames=true
722
  Tables=true
723
- isBanned=true
724
  Crawler=true
725
 
726
  [Exabot-Images/1.0]
@@ -737,6 +814,9 @@ Browser="Exabot-Test"
737
  [Exabot/2.0]
738
  Parent=Exalead
739
  Browser="Exabot"
 
 
 
740
 
741
  [Exabot/3.0]
742
  Parent=Exalead
@@ -744,60 +824,69 @@ Browser="Exabot"
744
  Version=3.0
745
  MajorVer=3
746
  MinorVer=0
747
- Platform=Liberate
748
 
749
  [Exalead NG/*]
750
  Parent=Exalead
751
  Browser="Exalead NG"
752
- isBanned=true
753
 
754
- [Mozilla/5.0 (compatible; Exabot-Images/3.0;*)]
755
  Parent=Exalead
756
  Browser="Exabot-Images"
 
 
 
757
 
758
- [Mozilla/5.0 (compatible; Exabot/3.0 (BiggerBetter); *)]
759
  Parent=Exalead
760
  Browser="Exabot/BiggerBetter"
 
 
 
761
 
762
- [Mozilla/5.0 (compatible; Exabot/3.0;*)]
763
  Parent=Exalead
764
- Browser="Exabot"
765
- isBanned=false
766
 
767
- [Mozilla/5.0 (compatible; NGBot/*)]
768
  Parent=Exalead
 
769
 
770
  [ng/*]
771
  Parent=Exalead
772
  Browser="Exalead Previewer"
 
 
 
 
 
 
 
 
 
 
 
 
 
773
  Version=1.0
774
  MajorVer=1
775
  MinorVer=0
776
- isBanned=true
 
 
 
 
 
 
777
 
778
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fast/AllTheWeb
779
 
780
  [Fast/AllTheWeb]
781
  Parent=DefaultProperties
 
782
  Browser="Fast/AllTheWeb"
783
- Alpha=true
784
- Beta=true
785
- Win16=true
786
- Win32=true
787
- Win64=true
788
  Frames=true
789
- IFrames=true
790
  Tables=true
791
- Cookies=true
792
- BackgroundSounds=true
793
- CDF=true
794
- VBScript=true
795
- JavaApplets=true
796
- JavaScript=true
797
- ActiveXControls=true
798
- isBanned=true
799
- isMobileDevice=true
800
- isSyndicationReader=true
801
  Crawler=true
802
 
803
  [*FAST Enterprise Crawler*]
@@ -844,9 +933,9 @@ Browser="FastSearch Web Crawler"
844
 
845
  [Gigabot]
846
  Parent=DefaultProperties
 
847
  Browser="Gigabot"
848
  Frames=true
849
- IFrames=true
850
  Tables=true
851
  Crawler=true
852
 
@@ -861,6 +950,7 @@ Browser="GigabotSiteSearch"
861
 
862
  [Ilse]
863
  Parent=DefaultProperties
 
864
  Browser="Ilse"
865
  Frames=true
866
  Tables=true
@@ -871,26 +961,23 @@ Parent=Ilse
871
 
872
  [INGRID/?.0*]
873
  Parent=Ilse
874
- Browser="Ilse"
875
 
876
  [Mozilla/3.0 (INGRID/*]
877
  Parent=Ilse
878
- Browser="Ilse"
879
 
880
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iVia Project
881
 
882
  [iVia Project]
883
  Parent=DefaultProperties
 
884
  Browser="iVia Project"
885
  Frames=true
886
- IFrames=true
887
  Tables=true
888
  Crawler=true
889
 
890
  [DataFountains/DMOZ Downloader*]
891
  Parent=iVia Project
892
  Browser="DataFountains/DMOZ Downloader"
893
- isBanned=true
894
 
895
  [DataFountains/DMOZ Feature Vector Corpus Creator*]
896
  Parent=iVia Project
@@ -900,6 +987,7 @@ Browser="DataFountains/DMOZ Feature Vector Corpus"
900
 
901
  [Jayde Online]
902
  Parent=DefaultProperties
 
903
  Browser="Jayde Online"
904
  Frames=true
905
  Tables=true
@@ -912,7 +1000,6 @@ Browser="ExactSeek Crawler"
912
  [exactseek-pagereaper-* (crawler@exactseek.com)]
913
  Parent=Jayde Online
914
  Browser="exactseek-pagereaper"
915
- isBanned=true
916
 
917
  [exactseek.com]
918
  Parent=Jayde Online
@@ -926,6 +1013,7 @@ Browser="Jayde Crawler"
926
 
927
  [Lycos]
928
  Parent=DefaultProperties
 
929
  Browser="Lycos"
930
  Frames=true
931
  Tables=true
@@ -947,55 +1035,32 @@ Browser="Lycos-Spider_(modspider)"
947
  Parent=Lycos
948
  Browser="Lycos-Spider_(T-Rex)"
949
 
950
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Naver
951
-
952
- [Naver]
953
- Parent=DefaultProperties
954
- Browser="Naver"
955
- isBanned=true
956
- Crawler=true
957
-
958
- [Cowbot-* (NHN Corp*naver.com)]
959
- Parent=Naver
960
- Browser="Naver Cowbot"
961
-
962
- [Mozilla/4.0 (compatible; NaverBot/*; *)]
963
- Parent=Naver
964
-
965
- [Mozilla/4.0 (compatible; NaverBot/*; nhnbot@naver.com)]
966
- Parent=Naver
967
- Browser="Naver NaverBot"
968
-
969
- [NaverBot-* (NHN Corp*naver.com)]
970
- Parent=Naver
971
- Browser="Naver NHN Corp"
972
-
973
- [Yeti/*]
974
- Parent=Naver
975
- Browser="Yeti"
976
-
977
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Snap
978
 
979
  [Snap]
980
  Parent=DefaultProperties
 
981
  Browser="Snap"
982
- isBanned=true
 
983
  Crawler=true
984
 
985
  [Mozilla/5.0 (SnapPreviewBot) Gecko/* Firefox/*]
986
  Parent=Snap
 
987
 
988
  [Snapbot/*]
989
  Parent=Snap
 
990
 
991
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sogou
992
 
993
  [Sogou]
994
  Parent=DefaultProperties
 
995
  Browser="Sogou"
996
  Frames=true
997
  Tables=true
998
- isBanned=true
999
  Crawler=true
1000
 
1001
  [shaboyi spider]
@@ -1008,7 +1073,7 @@ Browser="Sogou Develop Spider"
1008
 
1009
  [Sogou head spider*]
1010
  Parent=Sogou
1011
- Browser="Sogou/HEAD Spider"
1012
 
1013
  [sogou js robot(*)]
1014
  Parent=Sogou
@@ -1021,7 +1086,7 @@ Browser="Sogou Orion spider"
1021
  Parent=Sogou
1022
  Browser="Sogou/Image Crawler"
1023
 
1024
- [Sogou Pic Spider]
1025
  Parent=Sogou
1026
  Browser="Sogou Pic Spider"
1027
 
@@ -1045,11 +1110,10 @@ Browser="Sogou-Test-Spider"
1045
 
1046
  [YodaoBot]
1047
  Parent=DefaultProperties
 
1048
  Browser="YodaoBot"
1049
  Frames=true
1050
- IFrames=true
1051
  Tables=true
1052
- isBanned=true
1053
  Crawler=true
1054
 
1055
  [Mozilla/5.0 (compatible; YodaoBot/1.*)]
@@ -1073,10 +1137,6 @@ Browser="Best Whois"
1073
  Parent=DNS Tools
1074
  Browser="DNS Group Crawler"
1075
 
1076
- [NG-Search/*]
1077
- Parent=Exalead
1078
- Browser="NG-SearchBot"
1079
-
1080
  [TouchStone]
1081
  Parent=Feeds Syndicators
1082
  Browser="TouchStone"
@@ -1086,31 +1146,57 @@ isSyndicationReader=true
1086
 
1087
  [General Crawlers]
1088
  Parent=DefaultProperties
 
1089
  Browser="General Crawlers"
1090
  Crawler=true
1091
 
1092
- [A .NET Web Crawler]
1093
  Parent=General Crawlers
1094
- isBanned=true
1095
 
1096
- [BabalooSpider/1.*]
1097
  Parent=General Crawlers
1098
- Browser="BabalooSpider"
1099
 
1100
- [BilgiBot/*]
1101
  Parent=General Crawlers
1102
- Browser="BilgiBot"
1103
- isBanned=true
1104
 
1105
- [bot/* (bot; *bot@bot.bot)]
1106
  Parent=General Crawlers
1107
- Browser="bot"
1108
- isBanned=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1109
 
1110
  [CyberPatrol*]
1111
  Parent=General Crawlers
1112
  Browser="CyberPatrol"
1113
- isBanned=true
1114
 
1115
  [Cynthia 1.0]
1116
  Parent=General Crawlers
@@ -1122,7 +1208,6 @@ MinorVer=0
1122
  [cz32ts]
1123
  Parent=General Crawlers
1124
  Browser="cz32ts"
1125
- isBanned=true
1126
 
1127
  [ddetailsbot (http://www.displaydetails.com)]
1128
  Parent=General Crawlers
@@ -1135,12 +1220,15 @@ Browser="DomainCrawler"
1135
  [DomainsBotBot/1.*]
1136
  Parent=General Crawlers
1137
  Browser="DomainsBotBot"
1138
- isBanned=true
1139
 
1140
  [DomainsDB.net MetaCrawler*]
1141
  Parent=General Crawlers
1142
  Browser="DomainsDB"
1143
 
 
 
 
 
1144
  [Drupal (*)]
1145
  Parent=General Crawlers
1146
  Browser="Drupal"
@@ -1160,31 +1248,30 @@ Browser="eventax"
1160
  [FANGCrawl/*]
1161
  Parent=General Crawlers
1162
  Browser="Safe-t.net Web Filtering Service"
1163
- isBanned=true
1164
 
1165
  [favorstarbot/*]
1166
  Parent=General Crawlers
1167
  Browser="favorstarbot"
1168
- isBanned=true
1169
 
1170
  [FollowSite.com (*)]
1171
  Parent=General Crawlers
1172
  Browser="FollowSite"
1173
- isBanned=true
1174
 
1175
  [Gaisbot*]
1176
  Parent=General Crawlers
1177
  Browser="Gaisbot"
1178
 
 
 
 
 
1179
  [Healthbot/Health_and_Longevity_Project_(HealthHaven.com) ]
1180
  Parent=General Crawlers
1181
  Browser="Healthbot"
1182
- isBanned=true
1183
 
1184
  [hitcrawler_0.*]
1185
  Parent=General Crawlers
1186
  Browser="hitcrawler"
1187
- isBanned=true
1188
 
1189
  [htdig/*]
1190
  Parent=General Crawlers
@@ -1193,12 +1280,23 @@ Browser="ht://Dig"
1193
  [http://hilfe.acont.de/bot.html ACONTBOT]
1194
  Parent=General Crawlers
1195
  Browser="ACONTBOT"
1196
- isBanned=true
 
 
 
 
 
 
 
1197
 
1198
  [JetBrains*]
1199
  Parent=General Crawlers
1200
  Browser="Omea Pro"
1201
 
 
 
 
 
1202
  [KakleBot - www.kakle.com/0.1]
1203
  Parent=General Crawlers
1204
  Browser="KakleBot"
@@ -1206,7 +1304,6 @@ Browser="KakleBot"
1206
  [KBeeBot/0.*]
1207
  Parent=General Crawlers
1208
  Browser="KBeeBot"
1209
- isBanned=true
1210
 
1211
  [Keyword Density/*]
1212
  Parent=General Crawlers
@@ -1215,37 +1312,38 @@ Browser="Keyword Density"
1215
  [LetsCrawl.com/1.0*]
1216
  Parent=General Crawlers
1217
  Browser="LetsCrawl.com"
1218
- isBanned=true
1219
 
1220
  [Lincoln State Web Browser]
1221
  Parent=General Crawlers
1222
  Browser="Lincoln State Web Browser"
1223
- isBanned=true
 
 
 
1224
 
1225
  [Links4US-Crawler,*]
1226
  Parent=General Crawlers
1227
  Browser="Links4US-Crawler"
1228
- isBanned=true
1229
 
1230
  [Lorkyll *.* -- lorkyll@444.net]
1231
  Parent=General Crawlers
1232
  Browser="Lorkyll"
1233
- isBanned=true
1234
 
1235
  [Lsearch/sondeur]
1236
  Parent=General Crawlers
1237
  Browser="Lsearch/sondeur"
1238
- isBanned=true
1239
 
1240
  [LucidMedia ClickSense/4.?]
1241
  Parent=General Crawlers
1242
  Browser="LucidMedia-ClickSense"
1243
- isBanned=true
1244
 
1245
  [Made by ZmEu @ WhiteHat v0.* (www.WhiteHat.ro)]
1246
  Parent=General Crawlers
1247
  Browser="ZmEu"
1248
- isBanned=true
 
 
 
1249
 
1250
  [Mahalobot/1.0 (?http://www.mahalo.com/)]
1251
  Parent=General Crawlers
@@ -1254,7 +1352,6 @@ Browser="Mahalobot"
1254
  [MapoftheInternet.com?(?http://MapoftheInternet.com)]
1255
  Parent=General Crawlers
1256
  Browser="MapoftheInternet"
1257
- isBanned=true
1258
 
1259
  [Marvin v0.3]
1260
  Parent=General Crawlers
@@ -1277,12 +1374,10 @@ MinorVer=01
1277
  [metatagsdir/*]
1278
  Parent=General Crawlers
1279
  Browser="metatagsdir"
1280
- isBanned=true
1281
 
1282
  [Microsoft Windows Network Diagnostics]
1283
  Parent=General Crawlers
1284
  Browser="Microsoft Windows Network Diagnostics"
1285
- isBanned=true
1286
 
1287
  [Miva (AlgoFeedback@miva.com)]
1288
  Parent=General Crawlers
@@ -1292,18 +1387,18 @@ Browser="Miva"
1292
  Parent=General Crawlers
1293
  Browser="Goo"
1294
 
1295
- [Mozdex/0.7.2*]
1296
  Parent=General Crawlers
1297
  Browser="Mozdex"
1298
 
1299
- [Mozilla Compatible (MS IE 3.01 WinNT)]
1300
- Parent=General Crawlers
1301
- isBanned=true
1302
-
1303
  [Mozilla/* (compatible; WebCapture*)]
1304
  Parent=General Crawlers
1305
  Browser="WebCapture"
1306
 
 
 
 
 
1307
  [Mozilla/4.0 (compatible; DepSpid/*)]
1308
  Parent=General Crawlers
1309
  Browser="DepSpid"
@@ -1311,14 +1406,10 @@ Browser="DepSpid"
1311
  [Mozilla/4.0 (compatible; MSIE 4.01; Vonna.com b o t)]
1312
  Parent=General Crawlers
1313
  Browser="Vonna.com"
1314
- isBanned=true
1315
 
1316
  [Mozilla/4.0 (compatible; MSIE 4.01; Windows95)]
1317
  Parent=General Crawlers
1318
- Win32=true
1319
-
1320
- [Mozilla/4.0 (compatible; MSIE 4.5; Windows 98; )]
1321
- Parent=General Crawlers
1322
  Win32=true
1323
 
1324
  [Mozilla/4.0 (compatible; MyFamilyBot/*)]
@@ -1331,29 +1422,24 @@ Browser="N-Stealth"
1331
 
1332
  [Mozilla/4.0 (compatible; Scumbot/*; Linux/*)]
1333
  Parent=General Crawlers
1334
- isBanned=true
1335
 
1336
  [Mozilla/4.0 (compatible; Spider; Linux)]
1337
  Parent=General Crawlers
1338
- isBanned=true
1339
 
1340
  [Mozilla/4.0 (compatible; Win32)]
1341
  Parent=General Crawlers
1342
  Browser="Unknown Crawler"
1343
- isBanned=true
1344
-
1345
- [Mozilla/4.1]
1346
- Parent=General Crawlers
1347
- isBanned=true
1348
-
1349
- [Mozilla/4.5]
1350
- Parent=General Crawlers
1351
- isBanned=true
1352
 
1353
  [Mozilla/5.0 (*http://gnomit.com/) Gecko/* Gnomit/1.0]
1354
  Parent=General Crawlers
1355
  Browser="Gnomit"
1356
- isBanned=true
 
 
 
 
1357
 
1358
  [Mozilla/5.0 (compatible; *; http://www.80legs.com/spider.html;) Gecko/*]
1359
  Parent=General Crawlers
@@ -1362,57 +1448,106 @@ Browser="80Legs"
1362
  [Mozilla/5.0 (compatible; AboutUsBot/*)]
1363
  Parent=General Crawlers
1364
  Browser="AboutUsBot"
1365
- isBanned=true
 
 
 
 
 
 
 
1366
 
1367
  [Mozilla/5.0 (compatible; BuzzRankingBot/*)]
1368
  Parent=General Crawlers
1369
  Browser="BuzzRankingBot"
1370
- isBanned=true
1371
 
1372
- [Mozilla/5.0 (compatible; Diffbot/0.1; http://www.diffbot.com)]
 
 
 
 
 
 
 
 
1373
  Parent=General Crawlers
1374
  Browser="Diffbot"
1375
 
 
 
 
 
 
 
 
1376
  [Mozilla/5.0 (compatible; FirstSearchBot/1.0; *)]
1377
  Parent=General Crawlers
1378
  Browser="FirstSearchBot"
1379
 
1380
- [mozilla/5.0 (compatible; genevabot http://www.healthdash.com)]
1381
  Parent=General Crawlers
1382
  Browser="Healthdash"
1383
 
1384
  [Mozilla/5.0 (compatible; JadynAveBot; *http://www.jadynave.com/robot*]
1385
  Parent=General Crawlers
1386
  Browser="JadynAveBot"
1387
- isBanned=true
1388
 
1389
  [Mozilla/5.0 (compatible; Kyluka crawl; http://www.kyluka.com/crawl.html; crawl@kyluka.com)]
1390
  Parent=General Crawlers
1391
  Browser="Kyluka"
1392
 
 
 
 
 
1393
  [Mozilla/5.0 (compatible; MJ12bot/v1.*)]
1394
  Parent=General Crawlers
1395
  Browser="MJ12bot"
1396
- isBanned=true
1397
 
1398
  [Mozilla/5.0 (compatible; MSIE 7.0 ?http://www.europarchive.org)]
1399
  Parent=General Crawlers
1400
  Browser="Europe Web Archive"
1401
 
 
 
 
 
 
 
 
 
1402
  [Mozilla/5.0 (compatible; Plukkie/1.?; http://www.botje.com/plukkie.htm)]
1403
  Parent=General Crawlers
1404
  Browser="Plukkie"
1405
 
 
 
 
 
1406
  [Mozilla/5.0 (compatible; Seznam screenshot-generator 2.0;*)]
1407
  Parent=General Crawlers
1408
  Browser="Seznam screenshot-generator"
1409
- isBanned=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1410
 
1411
  [Mozilla/5.0 (compatible; Twingly Recon; http://www.twingly.com/)]
1412
  Parent=General Crawlers
1413
  Browser="Twingly Recon"
1414
 
1415
- [Mozilla/5.0 (compatible; unwrapbot/2.*; http://www.unwrap.jp*)]
1416
  Parent=General Crawlers
1417
  Browser="UnWrap"
1418
 
@@ -1423,12 +1558,10 @@ Browser="Vermut"
1423
  [Mozilla/5.0 (compatible; Viralheat Bot/*) ]
1424
  Parent=General Crawlers
1425
  Browser="Viralheat"
1426
- isBanned=true
1427
 
1428
  [Mozilla/5.0 (compatible; Webbot/*)]
1429
  Parent=General Crawlers
1430
  Browser="Webbot.ru"
1431
- isBanned=true
1432
 
1433
  [n4p_bot*]
1434
  Parent=General Crawlers
@@ -1441,17 +1574,14 @@ Browser="Nabot"
1441
  [NetCarta_WebMapper/*]
1442
  Parent=General Crawlers
1443
  Browser="NetCarta_WebMapper"
1444
- isBanned=true
1445
 
1446
  [Netchart Adv Crawler*]
1447
  Parent=General Crawlers
1448
  Browser="Netchart Adv Crawler"
1449
- isBanned=true
1450
 
1451
  [NetID.com Bot*]
1452
  Parent=General Crawlers
1453
  Browser="NetID.com Bot"
1454
- isBanned=true
1455
 
1456
  [neTVision AG andreas.heidoetting@thomson-webcast.net]
1457
  Parent=General Crawlers
@@ -1464,7 +1594,6 @@ Browser="NextopiaBOT"
1464
  [nicebot]
1465
  Parent=General Crawlers
1466
  Browser="nicebot"
1467
- isBanned=true
1468
 
1469
  [niXXieBot?Foster*]
1470
  Parent=General Crawlers
@@ -1473,17 +1602,18 @@ Browser="niXXiebot-Foster"
1473
  [Nozilla/P.N (Just for IDS woring)]
1474
  Parent=General Crawlers
1475
  Browser="Nozilla/P.N"
1476
- isBanned=true
 
 
 
1477
 
1478
  [Nudelsalat/*]
1479
  Parent=General Crawlers
1480
  Browser="Nudelsalat"
1481
- isBanned=true
1482
 
1483
  [NV32ts]
1484
  Parent=General Crawlers
1485
  Browser="NV32ts"
1486
- isBanned=true
1487
 
1488
  [Ocelli/*]
1489
  Parent=General Crawlers
@@ -1496,7 +1626,6 @@ Browser="OpenTaggerBot"
1496
  [Oracle Enterprise Search]
1497
  Parent=General Crawlers
1498
  Browser="Oracle Enterprise Search"
1499
- isBanned=true
1500
 
1501
  [Oracle Ultra Search]
1502
  Parent=General Crawlers
@@ -1505,12 +1634,10 @@ Browser="Oracle Ultra Search"
1505
  [Pajaczek/*]
1506
  Parent=General Crawlers
1507
  Browser="Pajaczek"
1508
- isBanned=true
1509
 
1510
  [panscient.com]
1511
  Parent=General Crawlers
1512
  Browser="panscient.com"
1513
- isBanned=true
1514
 
1515
  [Patwebbot (http://www.herz-power.de/technik.html)]
1516
  Parent=General Crawlers
@@ -1523,7 +1650,6 @@ Browser="PDFBot"
1523
  [Pete-Spider/1.*]
1524
  Parent=General Crawlers
1525
  Browser="Pete-Spider"
1526
- isBanned=true
1527
 
1528
  [PhpDig/*]
1529
  Parent=General Crawlers
@@ -1532,18 +1658,15 @@ Browser="PhpDig"
1532
  [PlantyNet_WebRobot*]
1533
  Parent=General Crawlers
1534
  Browser="PlantyNet"
1535
- isBanned=true
1536
-
1537
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PluckIt
1538
 
1539
- [PluckItCrawler/1.0 (*)]
1540
  Parent=General Crawlers
 
1541
  isMobileDevice=true
1542
 
1543
  [PMAFind]
1544
  Parent=General Crawlers
1545
  Browser="PMAFind"
1546
- isBanned=true
1547
 
1548
  [Poodle_predictor_1.0]
1549
  Parent=General Crawlers
@@ -1552,22 +1675,27 @@ Browser="Poodle Predictor"
1552
  [QuickFinder Crawler]
1553
  Parent=General Crawlers
1554
  Browser="QuickFinder"
1555
- isBanned=true
1556
 
1557
  [Radiation Retriever*]
1558
  Parent=General Crawlers
1559
  Browser="Radiation Retriever"
1560
- isBanned=true
1561
 
1562
  [RedCarpet/*]
1563
  Parent=General Crawlers
1564
  Browser="RedCarpet"
1565
- isBanned=true
1566
 
1567
  [RixBot (http://babelserver.org/rix)]
1568
  Parent=General Crawlers
1569
  Browser="RixBot"
1570
 
 
 
 
 
 
 
 
 
1571
  [Rome Client (http://tinyurl.com/64t5n) Ver: 0.*]
1572
  Parent=General Crawlers
1573
  Browser="TinyURL"
@@ -1579,7 +1707,6 @@ Browser="SiteSell"
1579
  [ScollSpider/2.*]
1580
  Parent=General Crawlers
1581
  Browser="ScollSpider"
1582
- isBanned=true
1583
 
1584
  [Search Fst]
1585
  Parent=General Crawlers
@@ -1588,12 +1715,10 @@ Browser="Search Fst"
1588
  [searchbot admin@google.com]
1589
  Parent=General Crawlers
1590
  Browser="searchbot"
1591
- isBanned=true
1592
 
1593
  [Seeker.lookseek.com]
1594
  Parent=General Crawlers
1595
  Browser="LookSeek"
1596
- isBanned=true
1597
 
1598
  [semanticdiscovery/*]
1599
  Parent=General Crawlers
@@ -1602,17 +1727,14 @@ Browser="Semantic Discovery"
1602
  [SeznamBot/*]
1603
  Parent=General Crawlers
1604
  Browser="SeznamBot"
1605
- isBanned=true
1606
 
1607
  [Shelob (shelob@gmx.net)]
1608
  Parent=General Crawlers
1609
  Browser="Shelob"
1610
- isBanned=true
1611
 
1612
  [shelob v1.*]
1613
  Parent=General Crawlers
1614
  Browser="shelob"
1615
- isBanned=true
1616
 
1617
  [ShopWiki/1.0*]
1618
  Parent=General Crawlers
@@ -1624,7 +1746,6 @@ MinorVer=0
1624
  [ShowXML/1.0 libwww/5.4.0]
1625
  Parent=General Crawlers
1626
  Browser="ShowXML"
1627
- isBanned=true
1628
 
1629
  [sitecheck.internetseer.com*]
1630
  Parent=General Crawlers
@@ -1637,22 +1758,18 @@ Browser="SMBot"
1637
  [sohu*]
1638
  Parent=General Crawlers
1639
  Browser="sohu-search"
1640
- isBanned=true
1641
 
1642
  [SpankBot*]
1643
  Parent=General Crawlers
1644
  Browser="SpankBot"
1645
- isBanned=true
1646
 
1647
  [spider (tspyyp@tom.com)]
1648
  Parent=General Crawlers
1649
  Browser="spider (tspyyp@tom.com)"
1650
- isBanned=true
1651
 
1652
  [Sunrise/0.*]
1653
  Parent=General Crawlers
1654
  Browser="Sunrise"
1655
- isBanned=true
1656
 
1657
  [Superpages URL Verification Engine]
1658
  Parent=General Crawlers
@@ -1661,17 +1778,14 @@ Browser="Superpages"
1661
  [Surf Knight]
1662
  Parent=General Crawlers
1663
  Browser="Surf Knight"
1664
- isBanned=true
1665
 
1666
  [SurveyBot/*]
1667
  Parent=General Crawlers
1668
  Browser="SurveyBot"
1669
- isBanned=true
1670
 
1671
  [SynapticSearch/AI Crawler 1.?]
1672
  Parent=General Crawlers
1673
  Browser="SynapticSearch"
1674
- isBanned=true
1675
 
1676
  [SyncMgr]
1677
  Parent=General Crawlers
@@ -1684,12 +1798,10 @@ Browser="Tagyu"
1684
  [Talkro Web-Shot/*]
1685
  Parent=General Crawlers
1686
  Browser="Talkro Web-Shot"
1687
- isBanned=true
1688
 
1689
  [Tasap-image-robot/0.* (http://www.tasap.com)]
1690
  Parent=General Crawlers
1691
  Browser="Tasap-image-robot"
1692
- isBanned=true
1693
 
1694
  [Tecomi Bot (http://www.tecomi.com/bot.htm)]
1695
  Parent=General Crawlers
@@ -1702,16 +1814,18 @@ Browser="TencentTraveler"
1702
  [TheInformant*]
1703
  Parent=General Crawlers
1704
  Browser="TheInformant"
1705
- isBanned=true
1706
 
1707
  [Toata dragostea*]
1708
  Parent=General Crawlers
1709
  Browser="Toata dragostea"
1710
- isBanned=true
1711
 
1712
  [Tutorial Crawler*]
1713
  Parent=General Crawlers
1714
- isBanned=true
 
 
 
 
1715
 
1716
  [UbiCrawler/*]
1717
  Parent=General Crawlers
@@ -1723,12 +1837,11 @@ Browser="UCmore"
1723
 
1724
  [User*Agent:*]
1725
  Parent=General Crawlers
1726
- isBanned=true
1727
 
1728
  [USER_AGENT]
1729
  Parent=General Crawlers
1730
- Browser="USER_AGENT"
1731
- isBanned=true
1732
 
1733
  [VadixBot]
1734
  Parent=General Crawlers
@@ -1737,7 +1850,6 @@ Browser="VadixBot"
1737
  [VengaBot/*]
1738
  Parent=General Crawlers
1739
  Browser="VengaBot"
1740
- isBanned=true
1741
 
1742
  [Visicom Toolbar]
1743
  Parent=General Crawlers
@@ -1747,19 +1859,13 @@ Browser="Visicom Toolbar"
1747
  Parent=General Crawlers
1748
  Browser="geek-tools.org"
1749
 
1750
- [W3C-WebCon/*]
1751
- Parent=General Crawlers
1752
- Browser="W3C-WebCon"
1753
-
1754
  [Webclipping.com]
1755
  Parent=General Crawlers
1756
  Browser="Webclipping.com"
1757
- isBanned=true
1758
 
1759
- [webcollage/*]
1760
  Parent=General Crawlers
1761
  Browser="WebCollage"
1762
- isBanned=true
1763
 
1764
  [WebCrawler_1.*]
1765
  Parent=General Crawlers
@@ -1780,7 +1886,6 @@ Browser="WebTrends"
1780
  [West Wind Internet Protocols*]
1781
  Parent=General Crawlers
1782
  Browser="Versatel"
1783
- isBanned=true
1784
 
1785
  [WhizBang]
1786
  Parent=General Crawlers
@@ -1790,10 +1895,9 @@ Browser="WhizBang"
1790
  Parent=General Crawlers
1791
  Browser="Willow Internet Crawler"
1792
 
1793
- [WIRE/* (Linux*; i686; Bot,Robot,Spider,Crawler)]
1794
  Parent=General Crawlers
1795
  Browser="WIRE"
1796
- isBanned=true
1797
 
1798
  [www.fi crawler, contact crawler@www.fi]
1799
  Parent=General Crawlers
@@ -1802,7 +1906,6 @@ Browser="www.fi crawler"
1802
  [Xerka WebBot v1.*]
1803
  Parent=General Crawlers
1804
  Browser="Xerka"
1805
- isBanned=true
1806
 
1807
  [XML Sitemaps Generator*]
1808
  Parent=General Crawlers
@@ -1811,27 +1914,28 @@ Browser="XML Sitemaps Generator"
1811
  [XSpider*]
1812
  Parent=General Crawlers
1813
  Browser="XSpider"
1814
- isBanned=true
1815
 
1816
  [YooW!/* (?http://www.yoow.eu)]
1817
  Parent=General Crawlers
1818
  Browser="YooW!"
1819
- isBanned=true
 
 
 
1820
 
1821
  [HiddenMarket-*]
1822
  Parent=General RSS
1823
  Browser="HiddenMarket"
1824
- isBanned=true
1825
 
1826
  [FOTOCHECKER]
1827
  Parent=Image Crawlers
1828
  Browser="FOTOCHECKER"
1829
- isBanned=true
1830
 
1831
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Search Engines
1832
 
1833
  [Search Engines]
1834
  Parent=DefaultProperties
 
1835
  Browser="Search Engines"
1836
  Crawler=true
1837
 
@@ -1865,6 +1969,7 @@ Browser="Amfibi"
1865
 
1866
  [AnswerBus (http://www.answerbus.com/)]
1867
  Parent=Search Engines
 
1868
 
1869
  [antibot-V*]
1870
  Parent=Search Engines
@@ -1878,6 +1983,10 @@ Browser="Walhello"
1878
  Parent=Search Engines
1879
  Browser="ASPSeek"
1880
 
 
 
 
 
1881
  [BigCliqueBOT/*]
1882
  Parent=Search Engines
1883
  Browser="BigClique.com/BigClic.com"
@@ -1893,9 +2002,8 @@ Browser="Bit Torrent Search Engine"
1893
  [Busiversebot/v1.0 (http://www.busiverse.com/bot.php)]
1894
  Parent=Search Engines
1895
  Browser="Busiversebot"
1896
- isBanned=true
1897
 
1898
- [CatchBot/*; http://www.catchbot.com]
1899
  Parent=Search Engines
1900
  Browser="CatchBot"
1901
  Version=1.0
@@ -1957,12 +2065,10 @@ Browser="Flatland"
1957
  [Fooky.com/ScorpionBot/ScoutOut;*]
1958
  Parent=Search Engines
1959
  Browser="ScorpionBot"
1960
- isBanned=true
1961
 
1962
  [FyberSpider*]
1963
  Parent=Search Engines
1964
  Browser="FyberSpider"
1965
- isBanned=true
1966
 
1967
  [Gaisbot/*]
1968
  Parent=Search Engines
@@ -1991,7 +2097,6 @@ Browser="GroschoBot"
1991
  [GurujiBot/1.*]
1992
  Parent=Search Engines
1993
  Browser="GurujiBot"
1994
- isBanned=true
1995
 
1996
  [HenryTheMiragoRobot*]
1997
  Parent=Search Engines
@@ -2008,7 +2113,6 @@ Browser="Hotzonu"
2008
  [HyperEstraier/*]
2009
  Parent=Search Engines
2010
  Browser="HyperEstraier"
2011
- isBanned=true
2012
 
2013
  [i1searchbot/*]
2014
  Parent=Search Engines
@@ -2025,7 +2129,6 @@ Browser="Iltrovatore-Setaccio"
2025
  [InfociousBot (?http://corp.infocious.com/tech_crawler.php)]
2026
  Parent=Search Engines
2027
  Browser="InfociousBot"
2028
- isBanned=true
2029
 
2030
  [Infoseek SideWinder/*]
2031
  Parent=Search Engines
@@ -2042,17 +2145,19 @@ Browser="Knight"
2042
  [Kolinka Forum Search (www.kolinka.com)]
2043
  Parent=Search Engines
2044
  Browser="Kolinka Forum Search"
2045
- isBanned=true
2046
 
2047
  [KRetrieve/]
2048
  Parent=Search Engines
2049
  Browser="KRetrieve"
2050
- isBanned=true
2051
 
2052
  [LapozzBot/*]
2053
  Parent=Search Engines
2054
  Browser="LapozzBot"
2055
 
 
 
 
 
2056
  [Linknzbot*]
2057
  Parent=Search Engines
2058
  Browser="Linknzbot"
@@ -2083,7 +2188,6 @@ Browser="Mnogosearch"
2083
  [Mozilla/0.9* no dos :) (Linux*)]
2084
  Parent=Search Engines
2085
  Browser="goliat"
2086
- isBanned=true
2087
 
2088
  [Mozilla/4.0 (compatible; *Vagabondo/*; webcrawler at wise-guys dot nl; *)]
2089
  Parent=Search Engines
@@ -2096,7 +2200,6 @@ Browser="Arachmo"
2096
  [Mozilla/4.0 (compatible; http://search.thunderstone.com/texis/websearch/about.html)]
2097
  Parent=Search Engines
2098
  Browser="ThunderStone"
2099
- isBanned=true
2100
 
2101
  [Mozilla/4.0 (compatible; MSIE *; Windows NT; Girafabot; girafabot at girafa dot com; http://www.girafa.com)]
2102
  Parent=Search Engines
@@ -2114,13 +2217,16 @@ Browser="Inxight Software"
2114
  [Mozilla/5.0 (*) VoilaBot*]
2115
  Parent=Search Engines
2116
  Browser="VoilaBot"
2117
- isBanned=true
2118
 
2119
  [Mozilla/5.0 (compatible; ActiveTouristBot*; http://www.activetourist.com)]
2120
  Parent=Search Engines
2121
  Browser="ActiveTouristBot"
2122
 
2123
- [Mozilla/5.0 (compatible; ayna-crawler http://www.ayna.com)]
 
 
 
 
2124
  Parent=Search Engines
2125
  Browser="ayna-crawler"
2126
 
@@ -2132,7 +2238,6 @@ Browser="Butterfly"
2132
  Parent=Search Engines
2133
  Browser="Charlotte"
2134
  Beta=true
2135
- isBanned=true
2136
 
2137
  [Mozilla/5.0 (compatible; CXL-FatAssANT*)]
2138
  Parent=Search Engines
@@ -2153,6 +2258,10 @@ Browser="EARTHCOM"
2153
  Parent=Search Engines
2154
  Browser="Lipperhey Spider"
2155
 
 
 
 
 
2156
  [Mozilla/5.0 (compatible; MojeekBot/*; http://www.mojeek.com/bot.html)]
2157
  Parent=Search Engines
2158
  Browser="MojeekBot"
@@ -2164,7 +2273,6 @@ Browser="Northern Light Web Search"
2164
  [Mozilla/5.0 (compatible; OsO;*]
2165
  Parent=Search Engines
2166
  Browser="Octopodus"
2167
- isBanned=true
2168
 
2169
  [Mozilla/5.0 (compatible; ParchBot/1.0;*)]
2170
  Parent=Search Engines
@@ -2178,15 +2286,13 @@ Browser="Pogodak"
2178
  Parent=Search Engines
2179
  Browser="Quantcastbot"
2180
 
2181
- [Mozilla/5.0 (compatible; ScoutJet; *http://www.scoutjet.com/)]
2182
  Parent=Search Engines
2183
  Browser="ScoutJet"
2184
- isBanned=true
2185
 
2186
- [Mozilla/5.0 (compatible; Scrubby/*; http://www.scrubtheweb.com/abs/meta-check.html)]
2187
  Parent=Search Engines
2188
  Browser="Scrubby"
2189
- isBanned=true
2190
 
2191
  [Mozilla/5.0 (compatible; YoudaoBot/1.*; http://www.youdao.com/help/webmaster/spider/*)]
2192
  Parent=Search Engines
@@ -2198,7 +2304,6 @@ MinorVer=0
2198
  [Mozilla/5.0 (Twiceler*)]
2199
  Parent=Search Engines
2200
  Browser="Twiceler"
2201
- isBanned=true
2202
 
2203
  [Mozilla/5.0 CostaCider Search*]
2204
  Parent=Search Engines
@@ -2215,7 +2320,6 @@ Browser="NavissoBot"
2215
  [NextGenSearchBot*(for information visit *)]
2216
  Parent=Search Engines
2217
  Browser="ZoomInfo"
2218
- isBanned=true
2219
 
2220
  [Norbert the Spider(Burf.com)]
2221
  Parent=Search Engines
@@ -2229,6 +2333,10 @@ Browser="nuSearch"
2229
  Parent=Search Engines
2230
  Browser="ObjectsSearch"
2231
 
 
 
 
 
2232
  [OpenISearch/1.*]
2233
  Parent=Search Engines
2234
  Browser="OpenISearch (Amazon)"
@@ -2281,10 +2389,14 @@ Browser="Searchmee!"
2281
  Parent=Search Engines
2282
  Browser="Seekbot"
2283
 
2284
- [SiteSpider (http://www.SiteSpider.com/)]
2285
  Parent=Search Engines
2286
  Browser="SiteSpider"
2287
 
 
 
 
 
2288
  [Spinne/*]
2289
  Parent=Search Engines
2290
  Browser="Spinne"
@@ -2296,12 +2408,10 @@ Browser="Sproose"
2296
  [Sqeobot/0.*]
2297
  Parent=Search Engines
2298
  Browser="Branzel"
2299
- isBanned=true
2300
 
2301
  [SquigglebotBot/*]
2302
  Parent=Search Engines
2303
  Browser="SquigglebotBot"
2304
- isBanned=true
2305
 
2306
  [StackRambler/*]
2307
  Parent=Search Engines
@@ -2322,12 +2432,10 @@ Browser="Szukacz"
2322
  [Tarantula/*]
2323
  Parent=Search Engines
2324
  Browser="Tarantula"
2325
- isBanned=true
2326
 
2327
  [TerrawizBot/*]
2328
  Parent=Search Engines
2329
  Browser="TerrawizBot"
2330
- isBanned=true
2331
 
2332
  [Tkensaku/*]
2333
  Parent=Search Engines
@@ -2336,12 +2444,14 @@ Browser="Tkensaku"
2336
  [TMCrawler]
2337
  Parent=Search Engines
2338
  Browser="TMCrawler"
2339
- isBanned=true
 
 
 
2340
 
2341
  [Twingly Recon]
2342
  Parent=Search Engines
2343
  Browser="Twingly Recon"
2344
- isBanned=true
2345
 
2346
  [updated/*]
2347
  Parent=Search Engines
@@ -2366,17 +2476,14 @@ Browser="Voyager"
2366
  [wadaino.jp-crawler*]
2367
  Parent=Search Engines
2368
  Browser="wadaino.jp"
2369
- isBanned=true
2370
 
2371
  [WebAlta Crawler/*]
2372
  Parent=Search Engines
2373
  Browser="WebAlta Crawler"
2374
- isBanned=true
2375
 
2376
  [WebCorp/*]
2377
  Parent=Search Engines
2378
  Browser="WebCorp"
2379
- isBanned=true
2380
 
2381
  [webcrawl.net]
2382
  Parent=Search Engines
@@ -2385,7 +2492,6 @@ Browser="webcrawl.net"
2385
  [WISEbot/*]
2386
  Parent=Search Engines
2387
  Browser="WISEbot"
2388
- isBanned=true
2389
 
2390
  [Wotbox/*]
2391
  Parent=Search Engines
@@ -2406,7 +2512,6 @@ Browser="YadowsCrawler"
2406
  [YodaoBot/*]
2407
  Parent=Search Engines
2408
  Browser="YodaoBot"
2409
- isBanned=true
2410
 
2411
  [ZeBot_www.ze.bz*]
2412
  Parent=Search Engines
@@ -2424,16 +2529,80 @@ Browser="ZipppBot"
2424
  Parent=Translators
2425
  Browser="ATA-Translation-Service"
2426
 
2427
- [GJK_Browser_Check]
2428
- Parent=Version Checkers
2429
- Browser="GJK_Browser_Check"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2430
 
2431
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Hatena
2432
 
2433
  [Hatena]
2434
  Parent=DefaultProperties
 
2435
  Browser="Hatena"
2436
- isBanned=true
2437
  Crawler=true
2438
 
2439
  [Feed::Find/*]
@@ -2470,17 +2639,16 @@ Browser="URI::Fetch"
2470
 
2471
  [Internet Archive]
2472
  Parent=DefaultProperties
 
2473
  Browser="Internet Archive"
2474
  Frames=true
2475
  IFrames=true
2476
  Tables=true
2477
- isBanned=true
2478
  Crawler=true
2479
 
2480
  [*heritrix*]
2481
  Parent=Internet Archive
2482
  Browser="Heritrix"
2483
- isBanned=true
2484
 
2485
  [ia_archiver*]
2486
  Parent=Internet Archive
@@ -2490,20 +2658,21 @@ Browser="Internet Archive"
2490
  Parent=Internet Archive
2491
  Browser="InternetArchive"
2492
 
2493
- [Mozilla/5.0 (compatible; archive.org_bot/1.*)]
2494
  Parent=Internet Archive
2495
 
2496
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nutch
2497
 
2498
  [Nutch]
2499
  Parent=DefaultProperties
 
2500
  Browser="Nutch"
2501
- isBanned=true
 
2502
  Crawler=true
2503
 
2504
  [*Nutch*]
2505
  Parent=Nutch
2506
- isBanned=true
2507
 
2508
  [CazoodleBot/*]
2509
  Parent=Nutch
@@ -2520,11 +2689,16 @@ Parent=Nutch
2520
 
2521
  [Webaroo]
2522
  Parent=DefaultProperties
 
2523
  Browser="Webaroo"
 
 
 
2524
 
2525
  [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Webaroo/*)]
2526
  Parent=Webaroo
2527
  Browser="Webaroo"
 
2528
 
2529
  [Mozilla/5.0 (Windows; U; Windows *; *; rv:*) Gecko/* Firefox/* webaroo/*]
2530
  Parent=Webaroo
@@ -2534,25 +2708,10 @@ Browser="Webaroo"
2534
 
2535
  [Word Press]
2536
  Parent=DefaultProperties
 
2537
  Browser="Word Press"
2538
- Alpha=true
2539
- Beta=true
2540
- Win16=true
2541
- Win32=true
2542
- Win64=true
2543
  Frames=true
2544
- IFrames=true
2545
  Tables=true
2546
- Cookies=true
2547
- BackgroundSounds=true
2548
- CDF=true
2549
- VBScript=true
2550
- JavaApplets=true
2551
- JavaScript=true
2552
- ActiveXControls=true
2553
- isBanned=true
2554
- isMobileDevice=true
2555
- isSyndicationReader=true
2556
  Crawler=true
2557
 
2558
  [WordPress-B-/2.*]
@@ -2587,8 +2746,8 @@ Browser="Bluecoat"
2587
 
2588
  [Copyright/Plagiarism]
2589
  Parent=DefaultProperties
 
2590
  Browser="Copyright/Plagiarism"
2591
- isBanned=true
2592
  Crawler=true
2593
 
2594
  [BDFetch]
@@ -2643,6 +2802,7 @@ Browser="TutorGig"
2643
 
2644
  [DNS Tools]
2645
  Parent=DefaultProperties
 
2646
  Browser="DNS Tools"
2647
  Crawler=true
2648
 
@@ -2662,11 +2822,8 @@ Browser="OpenDNS Domain Crawler"
2662
 
2663
  [Download Managers]
2664
  Parent=DefaultProperties
 
2665
  Browser="Download Managers"
2666
- Frames=true
2667
- IFrames=true
2668
- Tables=true
2669
- isBanned=true
2670
  Crawler=true
2671
 
2672
  [A1 Website Download/1.* (*) miggibot]
@@ -2689,10 +2846,6 @@ Browser="Beamer"
2689
  Parent=Download Managers
2690
  Browser="BitBeamer"
2691
 
2692
- [BitTorrent/*]
2693
- Parent=Download Managers
2694
- Browser="BitTorrent"
2695
-
2696
  [DA *]
2697
  Parent=Download Managers
2698
  Browser="Download Accelerator"
@@ -2893,11 +3046,8 @@ Browser="Xaldon WebSpider"
2893
 
2894
  [E-Mail Harvesters]
2895
  Parent=DefaultProperties
 
2896
  Browser="E-Mail Harvesters"
2897
- Frames=true
2898
- IFrames=true
2899
- Tables=true
2900
- isBanned=true
2901
  Crawler=true
2902
 
2903
  [*E-Mail Address Extractor*]
@@ -3004,6 +3154,7 @@ Browser="ZIBB Crawler"
3004
 
3005
  [Feeds Blogs]
3006
  Parent=DefaultProperties
 
3007
  Browser="Feeds Blogs"
3008
  isSyndicationReader=true
3009
  Crawler=true
@@ -3056,8 +3207,10 @@ Browser="WordPress"
3056
 
3057
  [Feeds Syndicators]
3058
  Parent=DefaultProperties
 
3059
  Browser="Feeds Syndicators"
3060
  isSyndicationReader=true
 
3061
 
3062
  [*LinkLint*]
3063
  Parent=Feeds Syndicators
@@ -3065,6 +3218,7 @@ Browser="LinkLint"
3065
 
3066
  [*NetNewsWire/*]
3067
  Parent=Feeds Syndicators
 
3068
 
3069
  [*NetVisualize*]
3070
  Parent=Feeds Syndicators
@@ -3077,21 +3231,23 @@ Browser="AideRSS"
3077
  [AideRSS/2.0 (aiderss.com)]
3078
  Parent=Feeds Syndicators
3079
  Browser="AideRSS"
3080
- isBanned=true
3081
 
3082
  [Akregator/*]
3083
  Parent=Feeds Syndicators
3084
  Browser="Akregator"
3085
 
 
 
 
 
3086
  [AppleSyndication/*]
3087
  Parent=Feeds Syndicators
3088
  Browser="Safari RSS"
3089
- Platform=MacOSX
3090
 
3091
  [Cocoal.icio.us/* (*)*]
3092
  Parent=Feeds Syndicators
3093
  Browser="Cocoal.icio.us"
3094
- isBanned=true
3095
 
3096
  [Feed43 Proxy/* (*)]
3097
  Parent=Feeds Syndicators
@@ -3104,7 +3260,7 @@ Browser="FeedBurner"
3104
  [FeedDemon/* (*)]
3105
  Parent=Feeds Syndicators
3106
  Browser="FeedDemon"
3107
- Platform=Win32
3108
 
3109
  [FeedDigest/* (*)]
3110
  Parent=Feeds Syndicators
@@ -3154,12 +3310,10 @@ Browser="intraVnews"
3154
  [JetBrains Omea Reader*]
3155
  Parent=Feeds Syndicators
3156
  Browser="Omea Reader"
3157
- isBanned=true
3158
 
3159
- [Liferea/1.5* (Linux; *; http://liferea.sf.net/)]
3160
  Parent=Feeds Syndicators
3161
  Browser="Liferea"
3162
- isBanned=true
3163
 
3164
  [livedoor FeedFetcher/0.0* (http://reader.livedoor.com/;*)]
3165
  Parent=Feeds Syndicators
@@ -3175,7 +3329,7 @@ Browser="MagpieRSS"
3175
  [Mobitype * (compatible; Mozilla/*; MSIE *.*; Windows *)]
3176
  Parent=Feeds Syndicators
3177
  Browser="Mobitype"
3178
- Platform=Win32
3179
 
3180
  [Mozilla/5.0 (*; Rojo *; http://www.rojo.com/corporate/help/agg; *)*]
3181
  Parent=Feeds Syndicators
@@ -3271,7 +3425,6 @@ Browser="SimplePie"
3271
  [Strategic Board Bot (?http://www.strategicboard.com)]
3272
  Parent=Feeds Syndicators
3273
  Browser="Strategic Board Bot"
3274
- isBanned=true
3275
 
3276
  [TargetYourNews.com bot]
3277
  Parent=Feeds Syndicators
@@ -3301,8 +3454,10 @@ Browser="Wizz"
3301
 
3302
  [General RSS]
3303
  Parent=DefaultProperties
 
3304
  Browser="General RSS"
3305
  isSyndicationReader=true
 
3306
 
3307
  [AideRSS/1.0 (aiderss.com); * subscribers]
3308
  Parent=General RSS
@@ -3311,6 +3466,10 @@ Version=1.0
3311
  MajorVer=1
3312
  MinorVer=0
3313
 
 
 
 
 
3314
  [CC Metadata Scaper http://wiki.creativecommons.org/Metadata_Scraper]
3315
  Parent=General RSS
3316
  Browser="CC Metadata Scaper"
@@ -3327,64 +3486,41 @@ Browser="Inclue"
3327
  Parent=General RSS
3328
  Browser="Ruunk"
3329
 
3330
- [Windows-RSS-Platform/2.0 (MSIE 8.0; Windows NT 6.0)]
3331
  Parent=General RSS
3332
- Browser="Windows-RSS-Platform"
3333
- Platform=WinVista
3334
 
3335
- [Mozilla/5.0 (X11; ?; Linux; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.4]
3336
- Parent=Google Code
3337
- Browser="Arora"
3338
- Version=0.4
3339
- MajorVer=0
3340
- MinorVer=4
3341
- Platform=Linux
3342
- CssVersion=2
3343
- supportsCSS=true
3344
 
3345
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Validation Checkers
3346
 
3347
  [HTML Validators]
3348
  Parent=DefaultProperties
 
3349
  Browser="HTML Validators"
3350
- Frames=true
3351
- IFrames=true
3352
- Tables=true
3353
  Crawler=true
3354
 
3355
  [(HTML Validator http://www.searchengineworld.com/validator/)]
3356
  Parent=HTML Validators
3357
  Browser="Search Engine World HTML Validator"
3358
 
3359
- [FeedValidator/1.3]
3360
  Parent=HTML Validators
3361
  Browser="FeedValidator"
3362
- Version=1.3
3363
- MajorVer=1
3364
- MinorVer=3
3365
-
3366
- [Jigsaw/* W3C_CSS_Validator_JFouffa/*]
3367
- Parent=HTML Validators
3368
- Browser="Jigsaw CSS Validator"
3369
 
3370
  [Search Engine World Robots.txt Validator*]
3371
  Parent=HTML Validators
3372
  Browser="Search Engine World Robots.txt Validator"
3373
 
3374
- [W3C_Validator/*]
3375
- Parent=HTML Validators
3376
- Browser="W3C Validator"
3377
-
3378
- [W3CLineMode/*]
3379
- Parent=HTML Validators
3380
- Browser="W3C Line Mode"
3381
-
3382
- [Weblide/2.? beta*]
3383
  Parent=HTML Validators
3384
  Browser="Weblide"
3385
- Version=2.0
3386
- MajorVer=2
3387
- MinorVer=0
3388
  Beta=true
3389
 
3390
  [WebmasterWorld StickyMail Server Header Checker*]
@@ -3393,16 +3529,14 @@ Browser="WebmasterWorld Server Header Checker"
3393
 
3394
  [WWWC/*]
3395
  Parent=HTML Validators
 
3396
 
3397
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Image Crawlers
3398
 
3399
  [Image Crawlers]
3400
  Parent=DefaultProperties
 
3401
  Browser="Image Crawlers"
3402
- Frames=true
3403
- IFrames=true
3404
- Tables=true
3405
- isBanned=true
3406
  Crawler=true
3407
 
3408
  [*CFNetwork*]
@@ -3420,7 +3554,6 @@ Browser="Camcrawler"
3420
  [CydralSpider/*]
3421
  Parent=Image Crawlers
3422
  Browser="Cydral Web Image Search"
3423
- isBanned=true
3424
 
3425
  [Der gro\xdfe BilderSauger*]
3426
  Parent=Image Crawlers
@@ -3442,14 +3575,14 @@ Browser="HTML2JPG"
3442
  Parent=Image Crawlers
3443
  Browser="IconSurf"
3444
 
3445
- [kalooga/KaloogaBot*]
3446
- Parent=Image Crawlers
3447
- Browser="KaloogaBot"
3448
-
3449
  [Mister PIX*]
3450
  Parent=Image Crawlers
3451
  Browser="Mister PIX"
3452
 
 
 
 
 
3453
  [Mozilla/5.0 (Macintosh; U; *Mac OS X; *) AppleWebKit/* (*) Pandora/2.*]
3454
  Parent=Image Crawlers
3455
  Browser="Pandora"
@@ -3462,6 +3595,10 @@ Browser="naoFavicon4IE"
3462
  Parent=Image Crawlers
3463
  Browser="pixfinder"
3464
 
 
 
 
 
3465
  [rssImagesBot/0.1 (*http://herbert.groot.jebbink.nl/?app=rssImages)]
3466
  Parent=Image Crawlers
3467
  Browser="rssImagesBot"
@@ -3482,10 +3619,8 @@ Browser="Custo"
3482
 
3483
  [Link Checkers]
3484
  Parent=DefaultProperties
 
3485
  Browser="Link Checkers"
3486
- Frames=true
3487
- IFrames=true
3488
- Tables=true
3489
  Crawler=true
3490
 
3491
  [!Susie (http://www.sync2it.com/susie)]
@@ -3508,10 +3643,6 @@ Browser="LinksManager"
3508
  Parent=Link Checkers
3509
  Browser="Powermarks"
3510
 
3511
- [*W3C-checklink/*]
3512
- Parent=Link Checkers
3513
- Browser="W3C Link Checker"
3514
-
3515
  [*Web Link Validator*]
3516
  Parent=Link Checkers
3517
  Browser="Web Link Validator"
@@ -3519,7 +3650,6 @@ Browser="Web Link Validator"
3519
  [*Zeus*]
3520
  Parent=Link Checkers
3521
  Browser="Zeus"
3522
- isBanned=true
3523
 
3524
  [ActiveBookmark *]
3525
  Parent=Link Checkers
@@ -3600,7 +3730,6 @@ Browser="JRTwine"
3600
  [Link Valet Online*]
3601
  Parent=Link Checkers
3602
  Browser="Link Valet"
3603
- isBanned=true
3604
 
3605
  [LinkAlarm/*]
3606
  Parent=Link Checkers
@@ -3617,7 +3746,6 @@ Browser="LinkChecker"
3617
  [LinkextractorPro*]
3618
  Parent=Link Checkers
3619
  Browser="LinkextractorPro"
3620
- isBanned=true
3621
 
3622
  [LinkLint-checkonly/*]
3623
  Parent=Link Checkers
@@ -3642,7 +3770,6 @@ Browser="MetaGer-LinkChecker"
3642
  [Mozilla/* (compatible; linktiger/*; *http://www.linktiger.com*)]
3643
  Parent=Link Checkers
3644
  Browser="LinkTiger"
3645
- isBanned=true
3646
 
3647
  [Mozilla/4.0 (Compatible); URLBase*]
3648
  Parent=Link Checkers
@@ -3655,6 +3782,7 @@ Browser="NetPromoter Link Utility"
3655
  [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Web Link Validator*]
3656
  Parent=Link Checkers
3657
  Browser="Web Link Validator"
 
3658
  Win32=true
3659
 
3660
  [Mozilla/4.0 (compatible; MSIE 7.0; Win32) Link Commander 3.0]
@@ -3663,7 +3791,7 @@ Browser="Link Commander"
3663
  Version=3.0
3664
  MajorVer=3
3665
  MinorVer=0
3666
- Platform=Win32
3667
 
3668
  [Mozilla/4.0 (compatible; smartBot/1.*; checking links; *)]
3669
  Parent=Link Checkers
@@ -3676,7 +3804,6 @@ Browser="SuperCleaner"
3676
  [Mozilla/5.0 gURLChecker/*]
3677
  Parent=Link Checkers
3678
  Browser="gURLChecker"
3679
- isBanned=true
3680
 
3681
  [Newsgroupreporter LinkCheck]
3682
  Parent=Link Checkers
@@ -3689,7 +3816,6 @@ Browser="onCHECK Linkchecker"
3689
  [online link validator (http://www.dead-links.com/)]
3690
  Parent=Link Checkers
3691
  Browser="Dead-Links.com"
3692
- isBanned=true
3693
 
3694
  [REL Link Checker*]
3695
  Parent=Link Checkers
@@ -3706,14 +3832,12 @@ Browser="Robozilla"
3706
  [RPT-HTTPClient/*]
3707
  Parent=Link Checkers
3708
  Browser="RPT-HTTPClient"
3709
- isBanned=true
3710
 
3711
  [SafariBookmarkChecker*(?http://www.coriolis.ch/)]
3712
  Parent=Link Checkers
3713
  Browser="SafariBookmarkChecker"
3714
- Platform=MacOSX
3715
  CssVersion=2
3716
- supportsCSS=true
3717
 
3718
  [Simpy/* (Simpy; http://www.simpy.com/?ref=bot; feedback at simpy dot com)]
3719
  Parent=Link Checkers
@@ -3727,8 +3851,9 @@ Browser="SiteBar"
3727
  Parent=Link Checkers
3728
  Browser="Susie"
3729
 
3730
- [URLBase/6.*]
3731
  Parent=Link Checkers
 
3732
 
3733
  [VSE/*]
3734
  Parent=Link Checkers
@@ -3745,7 +3870,6 @@ Browser="WorQmada"
3745
  [Xenu* Link Sleuth*]
3746
  Parent=Link Checkers
3747
  Browser="Xenu's Link Sleuth"
3748
- isBanned=true
3749
 
3750
  [Z-Add Link Checker*]
3751
  Parent=Link Checkers
@@ -3755,13 +3879,13 @@ Browser="Z-Add Link Checker"
3755
 
3756
  [Microsoft]
3757
  Parent=DefaultProperties
 
3758
  Browser="Microsoft"
3759
- isBanned=true
3760
 
3761
  [Live (http://www.live.com/)]
3762
  Parent=Microsoft
3763
  Browser="Microsoft Live"
3764
- isBanned=false
3765
  isSyndicationReader=true
3766
 
3767
  [MFC Foundation Class Library*]
@@ -3822,12 +3946,11 @@ Browser="Microsoft Excel"
3822
  Version=12.0
3823
  MajorVer=12
3824
  MinorVer=0
3825
- Platform=MacOSX
3826
 
3827
  [MSN Feed Manager]
3828
  Parent=Microsoft
3829
  Browser="MSN Feed Manager"
3830
- isBanned=false
3831
  isSyndicationReader=true
3832
 
3833
  [MSProxy/*]
@@ -3838,15 +3961,14 @@ Browser="MS Proxy"
3838
 
3839
  [Miscellaneous Browsers]
3840
  Parent=DefaultProperties
 
3841
  Browser="Miscellaneous Browsers"
3842
- Frames=true
3843
- Tables=true
3844
- Cookies=true
3845
 
3846
  [*Amiga*]
3847
  Parent=Miscellaneous Browsers
3848
  Browser="Amiga"
3849
- Platform=Amiga
3850
 
3851
  [*avantbrowser*]
3852
  Parent=Miscellaneous Browsers
@@ -3855,7 +3977,6 @@ Browser="Avant Browser"
3855
  [12345]
3856
  Parent=Miscellaneous Browsers
3857
  Browser="12345"
3858
- isBanned=true
3859
 
3860
  [1st ZipCommander (Net) - http://www.zipcommander.com/]
3861
  Parent=Miscellaneous Browsers
@@ -3875,11 +3996,10 @@ Browser="EVE-minibrowser"
3875
  IFrames=false
3876
  Tables=false
3877
  BackgroundSounds=false
 
3878
  VBScript=false
3879
  JavaApplets=false
3880
- JavaScript=false
3881
  ActiveXControls=false
3882
- isBanned=false
3883
  Crawler=false
3884
 
3885
  [Godzilla/* (Basic*; *; Commodore C=64; *; rv:1.*)*]
@@ -3894,22 +4014,20 @@ IFrames=true
3894
  Tables=true
3895
  Cookies=true
3896
  BackgroundSounds=true
 
3897
  VBScript=true
3898
  JavaApplets=true
3899
- JavaScript=true
3900
  ActiveXControls=true
3901
  CssVersion=2
3902
- supportsCSS=true
3903
 
3904
  [Kopiczek/* (WyderOS*; *)]
3905
  Parent=Miscellaneous Browsers
3906
  Browser="Kopiczek"
3907
- Platform=WyderOS
3908
  IFrames=true
 
3909
  JavaApplets=true
3910
- JavaScript=true
3911
  CssVersion=2
3912
- supportsCSS=true
3913
 
3914
  [Mozilla/* (*) - BrowseX (*)]
3915
  Parent=Miscellaneous Browsers
@@ -3918,7 +4036,7 @@ Browser="BrowseX"
3918
  [Mozilla/* (Win32;*Escape?*; ?)]
3919
  Parent=Miscellaneous Browsers
3920
  Browser="Escape"
3921
- Platform=Win32
3922
 
3923
  [Mozilla/4.0 (compatible; ibisBrowser)]
3924
  Parent=Miscellaneous Browsers
@@ -3928,6 +4046,21 @@ Browser="ibisBrowser"
3928
  Parent=Miscellaneous Browsers
3929
  Browser="HistoryHound"
3930
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3931
  [NetRecorder*]
3932
  Parent=Miscellaneous Browsers
3933
  Browser="NetRecorder"
@@ -3957,24 +4090,19 @@ Browser="WWW Browser"
3957
  Version=1.69
3958
  MajorVer=1
3959
  MinorVer=69
3960
- Platform=Win16
3961
  CssVersion=3
3962
- supportsCSS=true
3963
 
3964
  [*Netcraft Webserver Survey*]
3965
  Parent=Netcraft
3966
  Browser="Netcraft Webserver Survey"
3967
- isBanned=true
3968
 
3969
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Offline Browsers
3970
 
3971
  [Offline Browsers]
3972
  Parent=DefaultProperties
 
3973
  Browser="Offline Browsers"
3974
- Frames=true
3975
- Tables=true
3976
- Cookies=true
3977
- isBanned=true
3978
  Crawler=true
3979
 
3980
  [*Check&Get*]
@@ -4013,13 +4141,12 @@ Browser="Teleport"
4013
 
4014
  [Online Scanners]
4015
  Parent=DefaultProperties
 
4016
  Browser="Online Scanners"
4017
- isBanned=true
4018
 
4019
  [JoeDog/* (X11; I; Siege *)]
4020
  Parent=Online Scanners
4021
  Browser="JoeDog"
4022
- isBanned=false
4023
 
4024
  [Morfeus Fucking Scanner]
4025
  Parent=Online Scanners
@@ -4041,8 +4168,8 @@ Browser="Secure Computing Corporation"
4041
 
4042
  [Proxy Servers]
4043
  Parent=DefaultProperties
 
4044
  Browser="Proxy Servers"
4045
- isBanned=true
4046
 
4047
  [*squid*]
4048
  Parent=Proxy Servers
@@ -4091,7 +4218,6 @@ Browser="SaferSurf"
4091
  [Mozilla/5.0 (compatible; del.icio.us-thumbnails/*; *) KHTML/* (like Gecko)]
4092
  Parent=Proxy Servers
4093
  Browser="Yahoo!"
4094
- isBanned=true
4095
  Crawler=true
4096
 
4097
  [Nutscrape]
@@ -4109,7 +4235,6 @@ Browser="Privoxy"
4109
  [ProxyTester*]
4110
  Parent=Proxy Servers
4111
  Browser="ProxyTester"
4112
- isBanned=true
4113
  Crawler=true
4114
 
4115
  [SilentSurf*]
@@ -4136,12 +4261,13 @@ Browser="SurfControl"
4136
 
4137
  [Research Projects]
4138
  Parent=DefaultProperties
 
4139
  Browser="Research Projects"
4140
- isBanned=true
4141
  Crawler=true
4142
 
4143
  [*research*]
4144
  Parent=Research Projects
 
4145
 
4146
  [AcadiaUniversityWebCensusClient]
4147
  Parent=Research Projects
@@ -4174,16 +4300,28 @@ Browser="Gulper Web Bot"
4174
  Parent=Research Projects
4175
  Browser="HooWWWer"
4176
 
4177
- [http://buytaert.net/crawler]
4178
- Parent=Research Projects
4179
-
4180
  [inetbot/* (?http://www.inetbot.com/bot.html)]
4181
  Parent=Research Projects
4182
  Browser="inetbot"
4183
 
4184
- [IRLbot/*]
4185
  Parent=Research Projects
4186
  Browser="IRLbot"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4187
 
4188
  [JUST-CRAWLER(*)]
4189
  Parent=Research Projects
@@ -4204,7 +4342,7 @@ MinorVer=0
4204
  Parent=Research Projects
4205
  Browser="Theophrastus"
4206
 
4207
- [Mozilla/5.0 (compatible; Webscan v0.*; http://otc.dyndns.org/webscan/)]
4208
  Parent=Research Projects
4209
  Browser="Webscan"
4210
 
@@ -4265,11 +4403,8 @@ Browser="Zao"
4265
 
4266
  [Rippers]
4267
  Parent=DefaultProperties
4268
- Browser="Rippers"
4269
- Frames=true
4270
- IFrames=true
4271
- Tables=true
4272
- isBanned=true
4273
  Crawler=true
4274
 
4275
  [*grub*]
@@ -4282,13 +4417,15 @@ Browser="IP*Works"
4282
 
4283
  [*java*]
4284
  Parent=Rippers
 
4285
 
4286
- [*libwww-perl*]
4287
  Parent=Rippers
4288
- Browser="libwww-perl"
4289
 
4290
  [*WebGrabber*]
4291
  Parent=Rippers
 
4292
 
4293
  [*WinHttpRequest*]
4294
  Parent=Rippers
@@ -4381,6 +4518,7 @@ Browser="DISCo Pump"
4381
  [eStyleSearch * (compatible; MSIE 6.0; Windows NT 5.0)]
4382
  Parent=Rippers
4383
  Browser="eStyleSearch"
 
4384
  Win32=true
4385
 
4386
  [ezic.com http agent *]
@@ -4389,11 +4527,16 @@ Browser="Ezic.com"
4389
 
4390
  [fetch libfetch/*]
4391
  Parent=Rippers
 
4392
 
4393
  [FGet*]
4394
  Parent=Rippers
4395
  Browser="FGet"
4396
 
 
 
 
 
4397
  [Flaming AttackBot*]
4398
  Parent=Rippers
4399
  Browser="Flaming AttackBot"
@@ -4440,6 +4583,7 @@ Browser="arachnode"
4440
 
4441
  [httpclient*]
4442
  Parent=Rippers
 
4443
 
4444
  [httperf/*]
4445
  Parent=Rippers
@@ -4467,6 +4611,7 @@ Browser="ICE_GetFile"
4467
 
4468
  [iexplore.exe]
4469
  Parent=Rippers
 
4470
 
4471
  [Inet - Eureka App]
4472
  Parent=Rippers
@@ -4482,6 +4627,7 @@ Browser="InetURL"
4482
 
4483
  [Internet Exploiter/*]
4484
  Parent=Rippers
 
4485
 
4486
  [Internet Explore *]
4487
  Parent=Rippers
@@ -4525,6 +4671,7 @@ Browser="libWeb/clsHTTP"
4525
 
4526
  [lwp*]
4527
  Parent=Rippers
 
4528
 
4529
  [MFC_Tear_Sample]
4530
  Parent=Rippers
@@ -4538,28 +4685,26 @@ Browser="Moozilla"
4538
  Parent=Rippers
4539
  Browser="MovableType Web Log"
4540
 
4541
- [Mozilla/2.0 (compatible; NEWT ActiveX; Win32)]
4542
  Parent=Rippers
4543
- Browser="NEWT ActiveX"
4544
- Platform=Win32
 
 
4545
 
4546
- [Mozilla/3.0 (compatible)]
4547
  Parent=Rippers
 
 
4548
 
4549
  [Mozilla/3.0 (compatible; Indy Library)]
4550
  Parent=Rippers
4551
  Cookies=true
4552
 
4553
- [Mozilla/3.01 (compatible;)]
4554
- Parent=Rippers
4555
-
4556
  [Mozilla/4.0 (compatible; BorderManager*)]
4557
  Parent=Rippers
4558
  Browser="Novell BorderManager"
4559
 
4560
- [Mozilla/4.0 (compatible;)]
4561
- Parent=Rippers
4562
-
4563
  [Mozilla/5.0 (compatible; IPCheck Server Monitor*)]
4564
  Parent=Rippers
4565
  Browser="IPCheck Server Monitor"
@@ -4603,6 +4748,7 @@ Browser="PHP"
4603
  [PigBlock (Windows NT 5.1; U)*]
4604
  Parent=Rippers
4605
  Browser="PigBlock"
 
4606
  Win32=true
4607
 
4608
  [Pockey*]
@@ -4685,10 +4831,6 @@ Browser="UtilMind HTTPGet"
4685
  Parent=Rippers
4686
  Browser="VCI WebViewer"
4687
 
4688
- [W3CRobot/*]
4689
- Parent=Rippers
4690
- Browser="W3CRobot"
4691
-
4692
  [Web Downloader*]
4693
  Parent=Rippers
4694
  Browser="Web Downloader"
@@ -4703,6 +4845,7 @@ Browser="Web Magnet"
4703
 
4704
  [WebAuto/*]
4705
  Parent=Rippers
 
4706
 
4707
  [webbandit/*]
4708
  Parent=Rippers
@@ -4778,6 +4921,7 @@ Browser="WebWhacker"
4778
 
4779
  [WinHttp*]
4780
  Parent=Rippers
 
4781
 
4782
  [WinScripter iNet Tools]
4783
  Parent=Rippers
@@ -4795,9 +4939,8 @@ Browser="Zend_Http_Client"
4795
 
4796
  [Site Monitors]
4797
  Parent=DefaultProperties
 
4798
  Browser="Site Monitors"
4799
- Cookies=true
4800
- isBanned=true
4801
  Crawler=true
4802
 
4803
  [*EasyRider*]
@@ -4807,7 +4950,10 @@ Browser="EasyRider"
4807
  [*maxamine.com--robot*]
4808
  Parent=Site Monitors
4809
  Browser="maxamine.com--robot"
4810
- isBanned=true
 
 
 
4811
 
4812
  [*WebMon ?.*]
4813
  Parent=Site Monitors
@@ -4820,12 +4966,29 @@ Browser="Kenjin Spider"
4820
  [Kevin http://*]
4821
  Parent=Site Monitors
4822
  Browser="Kevin"
4823
- isBanned=true
4824
 
4825
  [Mozilla/4.0 (compatible; ChangeDetection/*]
4826
  Parent=Site Monitors
4827
  Browser="ChangeDetection"
4828
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4829
  [Myst Monitor Service v*]
4830
  Parent=Site Monitors
4831
  Browser="Myst Monitor Service"
@@ -4842,14 +5005,13 @@ Browser="NetMechanic"
4842
  Parent=Site Monitors
4843
  Browser="NetReality"
4844
 
4845
- [Pingdom GIGRIB*]
4846
  Parent=Site Monitors
4847
  Browser="Pingdom"
4848
 
4849
  [Site Valet Online*]
4850
  Parent=Site Monitors
4851
  Browser="Site Valet"
4852
- isBanned=true
4853
 
4854
  [SITECHECKER]
4855
  Parent=Site Monitors
@@ -4858,7 +5020,6 @@ Browser="SITECHECKER"
4858
  [sitemonitor@dnsvr.com/*]
4859
  Parent=Site Monitors
4860
  Browser="ZoneEdit Failover Monitor"
4861
- isBanned=false
4862
 
4863
  [UpTime Checker*]
4864
  Parent=Site Monitors
@@ -4870,6 +5031,7 @@ Browser="URL Control"
4870
 
4871
  [URL_Access/*]
4872
  Parent=Site Monitors
 
4873
 
4874
  [URLCHECK]
4875
  Parent=Site Monitors
@@ -4898,11 +5060,9 @@ Browser="websitepulse checker"
4898
 
4899
  [Social Networking]
4900
  Parent=DefaultProperties
 
4901
  Browser="Social Bookmarkers"
4902
- Frames=true
4903
- Tables=true
4904
- Cookies=true
4905
- JavaScript=true
4906
 
4907
  [BookmarkBase(2/;http://bookmarkbase.com)]
4908
  Parent=Social Networking
@@ -4915,16 +5075,14 @@ Browser="Cocoalicious"
4915
  [Mozilla/5.0 (*) Gecko/* Firefox/2.0 OneRiot/1.0 (http://www.oneriot.com) ]
4916
  Parent=Social Networking
4917
  Browser="OneRiot"
4918
- isBanned=true
4919
 
4920
- [Mozilla/5.0 (compatible; FriendFeedBot/0.*; Http://friendfeed.com/about/bot)]
4921
  Parent=Social Networking
4922
  Browser="FriendFeedBot"
4923
 
4924
- [Mozilla/5.0 (compatible; Twitturls; http://twitturls.com)]
4925
  Parent=Social Networking
4926
  Browser="Twitturls"
4927
- isBanned=true
4928
 
4929
  [SocialSpider-Finder/0.*]
4930
  Parent=Social Networking
@@ -4933,7 +5091,6 @@ Browser="SocialSpider-Finder"
4933
  [Twitturly*]
4934
  Parent=Social Networking
4935
  Browser="Twitturly"
4936
- isBanned=true
4937
 
4938
  [WinkBot/*]
4939
  Parent=Social Networking
@@ -4943,10 +5100,11 @@ Browser="WinkBot"
4943
 
4944
  [Translators]
4945
  Parent=DefaultProperties
 
4946
  Browser="Translators"
4947
  Frames=true
4948
  Tables=true
4949
- Cookies=true
4950
 
4951
  [Seram Server]
4952
  Parent=Translators
@@ -4971,23 +5129,21 @@ Browser="WebTrans"
4971
 
4972
  [Version Checkers]
4973
  Parent=DefaultProperties
 
4974
  Browser="Version Checkers"
4975
  Crawler=true
4976
 
4977
- [Automated Browscap.ini Updater. To report issues contact us at http://www.skycomp.ca]
4978
  Parent=Version Checkers
4979
- Browser="Automated Browscap.ini Updater"
4980
 
4981
- [BMC Link Validator (http://www.briansmodelcars.com/links/)]
4982
  Parent=Version Checkers
4983
- Browser="BMC Link Validator"
4984
- MajorVer=1
4985
- MinorVer=0
4986
- Platform=Win2000
4987
 
4988
  [Browscap Mirror System/1.* (browscap.giantrealm.com)]
4989
  Parent=Version Checkers
4990
- Browser="Browscap Mirror"
4991
 
4992
  [Browscap Mirror v1.30]
4993
  Parent=Version Checkers
@@ -4997,101 +5153,121 @@ Browser="Browscap Mirror"
4997
  Parent=Version Checkers
4998
  Browser="Browscap updater"
4999
 
 
 
 
 
5000
  [BrowscapUpdater1.0]
5001
  Parent=Version Checkers
 
5002
 
5003
- [Browser Capabilities Project (http://browsers.garykeith.com; http://browsers.garykeith.com/sitemail/contact-me.asp)]
5004
  Parent=Version Checkers
5005
- Browser="Gary Keith's Version Checker"
 
 
 
5006
 
5007
  [Browser Capabilities Project AutoDownloader; created by Tom Kelleher Consulting, Inc. (tkelleher.com); used with special permission from Gary Joel Keith; uses Microsoft's WinHTTP component]
5008
  Parent=Version Checkers
5009
  Browser="TKC AutoDownloader"
5010
 
5011
- [browsers.garykeith.com browscap.ini bot BETA]
5012
  Parent=Version Checkers
5013
-
5014
- [Code Sample Web Client]
5015
- Parent=Version Checkers
5016
- Browser="Code Sample Web Client"
5017
 
5018
  [Desktop Sidebar*]
5019
  Parent=Version Checkers
5020
  Browser="Desktop Sidebar"
5021
- isBanned=true
5022
 
5023
  [Mono Browser Capabilities Updater*]
5024
  Parent=Version Checkers
5025
  Browser="Mono Browser Capabilities Updater"
5026
- isBanned=true
5027
 
5028
- [PHP Browser Capabilities Project/0.7 socket]
5029
  Parent=Version Checkers
5030
  Browser="PHP Browser Capabilities Project"
5031
 
5032
- [Rewmi/*]
5033
- Parent=Version Checkers
5034
- isBanned=true
5035
-
5036
- [Subtext Version 1.9* - http://subtextproject.com/ (Microsoft Windows NT 5.2.*)]
5037
- Parent=Version Checkers
5038
- Browser="Subtext"
5039
-
5040
- [TherapeuticResearch]
5041
- Parent=Version Checkers
5042
- Browser="TherapeuticResearch"
5043
-
5044
  [UpdateBrowscap*]
5045
  Parent=Version Checkers
5046
  Browser="UpdateBrowscap"
5047
 
5048
- [www.garykeith.com browscap.ini bot*]
5049
  Parent=Version Checkers
5050
- Browser="clarkson.edu "
5051
-
5052
- [www.substancia.com AutoHTTPAgent (ver *)]
5053
- Parent=Version Checkers
5054
- Browser="Subst�ncia"
5055
 
5056
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; W3C
5057
 
5058
  [W3C]
5059
  Parent=DefaultProperties
 
5060
  Browser="W3C"
5061
  Crawler=true
5062
 
 
 
 
 
5063
  [Jigsaw/* W3C_CSS_Validator*/*]
5064
  Parent=W3C
5065
- Browser="W3C CSS Validator"
 
 
 
 
 
 
 
 
5066
 
5067
- [W3C-checklink/*]
5068
  Parent=W3C
5069
- Browser="W3C Link Checker"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5070
 
5071
  [W3C-mobileOK/DDC-*]
5072
  Parent=W3C
5073
- Browser="W3C Mobile Validator"
5074
  isMobileDevice=true
5075
 
5076
  [W3C-WebCon/*]
5077
  Parent=W3C
5078
- Browser="W3C WebCon"
5079
 
5080
  [W3C_Validator/*]
5081
  Parent=W3C
5082
- Browser="W3C Validator"
5083
 
5084
  [W3CLineMode/*]
5085
  Parent=W3C
5086
- Browser="W3C LineMode"
 
 
 
 
5087
 
5088
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Become
5089
 
5090
  [Become]
5091
  Parent=DefaultProperties
 
5092
  Browser="Become"
5093
- Frames=true
5094
- Tables=true
5095
  isSyndicationReader=true
5096
  Crawler=true
5097
 
@@ -5119,27 +5295,18 @@ Browser="BecomeJPBot"
5119
 
5120
  [Blue Coat Systems]
5121
  Parent=DefaultProperties
 
5122
  Browser="Blue Coat Systems"
5123
- isBanned=true
5124
  Crawler=true
5125
 
5126
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Abusers
5127
-
5128
- [Browscap Abusers]
5129
- Parent=DefaultProperties
5130
- Browser="Browscap Abusers"
5131
- isBanned=true
5132
-
5133
- [Apple-PubSub/*]
5134
- Parent=Browscap Abusers
5135
- Browser="Apple-PubSub"
5136
-
5137
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FeedHub
5138
 
5139
  [FeedHub]
5140
  Parent=DefaultProperties
 
5141
  Browser="FeedHub"
5142
  isSyndicationReader=true
 
5143
 
5144
  [FeedHub FeedDiscovery/1.0 (http://www.feedhub.com)]
5145
  Parent=FeedHub
@@ -5162,13 +5329,14 @@ Version=1.0
5162
  MajorVer=1
5163
  MinorVer=0
5164
 
 
 
5165
  [Internet Content Rating Association]
5166
  Parent=DefaultProperties
 
5167
  Browser=""
5168
  Frames=true
5169
- IFrames=true
5170
  Tables=true
5171
- Cookies=true
5172
  Crawler=true
5173
 
5174
  [ICRA_label_generator/1.?]
@@ -5179,12 +5347,50 @@ Browser="ICRA_label_generator"
5179
  Parent=Internet Content Rating Association
5180
  Browser="ICRA_Semantic_spider"
5181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5182
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NameProtect
5183
 
5184
  [NameProtect]
5185
  Parent=DefaultProperties
 
5186
  Browser="NameProtect"
5187
- isBanned=true
5188
  Crawler=true
5189
 
5190
  [abot/*]
@@ -5203,14 +5409,13 @@ Browser="NameProtect"
5203
 
5204
  [Netcraft]
5205
  Parent=DefaultProperties
 
5206
  Browser="Netcraft"
5207
- isBanned=true
5208
  Crawler=true
5209
 
5210
  [*Netcraft Web Server Survey*]
5211
  Parent=Netcraft
5212
  Browser="Netcraft Webserver Survey"
5213
- isBanned=true
5214
 
5215
  [Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; *info@netcraft.com)]
5216
  Parent=Netcraft
@@ -5220,8 +5425,10 @@ Browser="NetcraftSurveyAgent"
5220
 
5221
  [NewsGator]
5222
  Parent=DefaultProperties
 
5223
  Browser="NewsGator"
5224
  isSyndicationReader=true
 
5225
 
5226
  [MarsEdit*]
5227
  Parent=NewsGator
@@ -5230,7 +5437,7 @@ Browser="MarsEdit"
5230
  [NetNewsWire*/*]
5231
  Parent=NewsGator
5232
  Browser="NetNewsWire"
5233
- Platform=MacOSX
5234
 
5235
  [NewsFire/*]
5236
  Parent=NewsGator
@@ -5243,10468 +5450,17573 @@ Browser="NewsGator FetchLinks"
5243
  [NewsGator/*]
5244
  Parent=NewsGator
5245
  Browser="NewsGator"
5246
- isBanned=true
5247
 
5248
  [NewsGatorOnline/*]
5249
  Parent=NewsGator
5250
  Browser="NewsGatorOnline"
5251
 
5252
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.2
5253
 
5254
- [Chrome 0.2]
5255
  Parent=DefaultProperties
5256
- Browser="Chrome"
5257
- Version=0.2
5258
- MinorVer=2
5259
- Beta=true
5260
- Win32=true
 
5261
  Frames=true
5262
  IFrames=true
5263
  Tables=true
5264
  Cookies=true
5265
- JavaApplets=true
5266
  JavaScript=true
 
5267
  CssVersion=3
5268
- supportsCSS=true
5269
 
5270
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
5271
- Parent=Chrome 0.2
5272
- Platform=WinXP
5273
 
5274
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
5275
- Parent=Chrome 0.2
5276
- Platform=Win2003
5277
 
5278
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
5279
- Parent=Chrome 0.2
5280
- Platform=WinVista
5281
 
5282
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.3
5283
-
5284
- [Chrome 0.3]
5285
  Parent=DefaultProperties
5286
- Browser="Chrome"
5287
- Version=0.3
5288
- MinorVer=3
5289
- Beta=true
5290
- Win32=true
 
5291
  Frames=true
5292
  IFrames=true
5293
  Tables=true
5294
  Cookies=true
5295
- JavaApplets=true
5296
  JavaScript=true
 
5297
  CssVersion=3
5298
- supportsCSS=true
5299
-
5300
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
5301
- Parent=Chrome 0.3
5302
- Platform=WinXP
5303
 
5304
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
5305
- Parent=Chrome 0.3
5306
- Platform=Win2003
5307
 
5308
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
5309
- Parent=Chrome 0.3
5310
- Platform=WinVista
5311
 
5312
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.4
5313
 
5314
- [Chrome 0.4]
5315
  Parent=DefaultProperties
5316
- Browser="Chrome"
5317
- Version=0.4
5318
- MinorVer=4
5319
- Win32=true
 
 
5320
  Frames=true
5321
  IFrames=true
5322
  Tables=true
5323
  Cookies=true
5324
- JavaApplets=true
5325
  JavaScript=true
 
5326
  CssVersion=3
5327
- supportsCSS=true
5328
-
5329
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
5330
- Parent=Chrome 0.4
5331
- Platform=WinXP
5332
 
5333
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
5334
- Parent=Chrome 0.4
5335
- Platform=Win2003
5336
 
5337
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
5338
- Parent=Chrome 0.4
5339
- Platform=WinVista
5340
 
5341
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.5
5342
 
5343
- [Chrome 0.5]
5344
  Parent=DefaultProperties
5345
- Browser="Chrome"
5346
- Version=0.5
5347
- MinorVer=5
5348
- Beta=true
5349
- Win32=true
 
5350
  Frames=true
5351
  IFrames=true
5352
  Tables=true
5353
  Cookies=true
5354
- JavaApplets=true
5355
  JavaScript=true
 
5356
  CssVersion=3
5357
- supportsCSS=true
5358
 
5359
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
5360
- Parent=Chrome 0.5
5361
- Platform=WinXP
5362
 
5363
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
5364
- Parent=Chrome 0.5
5365
- Platform=Win2003
5366
 
5367
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
5368
- Parent=Chrome 0.5
5369
- Platform=WinVista
5370
 
5371
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 1.0
5372
-
5373
- [Chrome 1.0]
5374
  Parent=DefaultProperties
5375
- Browser="Chrome"
5376
- Version=1.0
5377
- MajorVer=1
5378
- Win32=true
 
 
5379
  Frames=true
5380
  IFrames=true
5381
  Tables=true
5382
  Cookies=true
5383
- JavaApplets=true
5384
  JavaScript=true
 
5385
  CssVersion=3
5386
- supportsCSS=true
5387
 
5388
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
5389
- Parent=Chrome 1.0
5390
- Platform=WinXP
5391
 
5392
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
5393
- Parent=Chrome 1.0
5394
- Platform=Win2003
5395
 
5396
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
5397
- Parent=Chrome 1.0
5398
- Platform=WinVista
5399
 
5400
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
5401
- Parent=Chrome 1.0
5402
- Platform=Win7
5403
-
5404
- [Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
5405
- Parent=Chrome 1.0
5406
- Platform=Win7
5407
-
5408
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 2.0
5409
-
5410
- [Chrome 2.0]
5411
  Parent=DefaultProperties
5412
- Browser="Chrome"
5413
- Version=2.0
5414
- MajorVer=2
5415
- Win32=true
 
 
5416
  Frames=true
5417
  IFrames=true
5418
  Tables=true
5419
  Cookies=true
5420
- JavaApplets=true
5421
  JavaScript=true
 
5422
  CssVersion=3
5423
- supportsCSS=true
5424
-
5425
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
5426
- Parent=Chrome 2.0
5427
- Platform=WinXP
5428
-
5429
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
5430
- Parent=Chrome 2.0
5431
- Platform=Win2003
5432
 
5433
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
5434
- Parent=Chrome 2.0
5435
- Platform=WinVista
5436
 
5437
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
5438
- Parent=Chrome 2.0
5439
- Platform=Win7
5440
 
5441
- [Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
5442
- Parent=Chrome 2.0
5443
- Platform=Win7
5444
 
5445
- [Mozilla/5.0 (X11; U; Linux i686*; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
5446
- Parent=Chrome 2.0
5447
- Platform=Linux
5448
-
5449
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 3.0
5450
-
5451
- [Chrome 3.0]
5452
  Parent=DefaultProperties
5453
- Browser="Chrome"
5454
- Version=3.0
5455
- MajorVer=3
5456
- Win32=true
 
 
5457
  Frames=true
5458
  IFrames=true
5459
  Tables=true
5460
  Cookies=true
5461
- JavaApplets=true
5462
  JavaScript=true
 
5463
  CssVersion=3
5464
- supportsCSS=true
5465
-
5466
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
5467
- Parent=Chrome 3.0
5468
- Platform=WinXP
5469
-
5470
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
5471
- Parent=Chrome 3.0
5472
- Platform=Win2003
5473
-
5474
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
5475
- Parent=Chrome 3.0
5476
- Platform=WinVista
5477
 
5478
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
5479
- Parent=Chrome 3.0
5480
- Platform=Win7
5481
 
5482
- [Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
5483
- Parent=Chrome 3.0
5484
- Platform=Win7
5485
 
5486
- [Mozilla/5.0 (X11; U; Linux i686*; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
5487
- Parent=Chrome 3.0
5488
- Platform=Linux
5489
 
5490
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 4.0
5491
-
5492
- [Chrome 4.0]
5493
  Parent=DefaultProperties
5494
- Browser="Chrome"
5495
- Version=4.0
5496
- MajorVer=4
5497
- Beta=true
5498
- Win32=true
 
5499
  Frames=true
5500
  IFrames=true
5501
  Tables=true
5502
  Cookies=true
5503
- JavaApplets=true
5504
  JavaScript=true
 
5505
  CssVersion=3
5506
- supportsCSS=true
5507
-
5508
- [Mozilla/5.0 (Macintosh; U; Intel Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
5509
- Parent=Chrome 4.0
5510
- Platform=MacOSX
5511
-
5512
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
5513
- Parent=Chrome 4.0
5514
- Platform=WinXP
5515
-
5516
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
5517
- Parent=Chrome 4.0
5518
- Platform=Win2003
5519
 
5520
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
5521
- Parent=Chrome 4.0
5522
- Platform=WinVista
5523
 
5524
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
5525
- Parent=Chrome 4.0
5526
- Platform=Win7
5527
-
5528
- [Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
5529
- Parent=Chrome 4.0
5530
- Platform=Win7
5531
-
5532
- [Mozilla/5.0 (X11; U; Linux i686*; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
5533
- Parent=Chrome 4.0
5534
- Platform=Linux
5535
-
5536
- [Mozilla/5.0 (X11; U; Linux x86_64; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
5537
- Parent=Chrome 4.0
5538
- Win32=false
5539
- Win64=true
5540
 
5541
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Code
5542
 
5543
- [Google Code]
5544
  Parent=DefaultProperties
5545
- Browser="Google Code"
 
 
 
 
 
 
 
5546
  Tables=true
5547
  Cookies=true
 
5548
  JavaApplets=true
 
 
 
 
5549
 
5550
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.2
 
5551
 
5552
- [Iron 0.2]
 
 
5553
  Parent=DefaultProperties
5554
- Browser="Iron"
5555
- Version=0.2
5556
- MinorVer=2
5557
- Win32=true
 
 
5558
  Frames=true
5559
  IFrames=true
5560
  Tables=true
5561
  Cookies=true
5562
- JavaApplets=true
5563
  JavaScript=true
 
5564
  CssVersion=3
5565
- supportsCSS=true
5566
-
5567
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
5568
- Parent=Iron 0.2
5569
- Platform=WinXP
5570
-
5571
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
5572
- Parent=Iron 0.2
5573
- Platform=Win2003
5574
 
5575
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
5576
- Parent=Iron 0.2
5577
- Platform=WinVista
5578
 
5579
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
5580
- Parent=Iron 0.2
5581
- Platform=Win7
5582
 
5583
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.3
5584
 
5585
- [Iron 0.3]
5586
  Parent=DefaultProperties
5587
- Browser="Iron"
5588
- Version=0.3
5589
- MinorVer=3
5590
- Win32=true
 
 
5591
  Frames=true
5592
  IFrames=true
5593
  Tables=true
5594
  Cookies=true
5595
- JavaApplets=true
5596
  JavaScript=true
 
5597
  CssVersion=3
5598
- supportsCSS=true
5599
-
5600
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
5601
- Parent=Iron 0.3
5602
- Platform=WinXP
5603
 
5604
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
5605
- Parent=Iron 0.3
5606
- Platform=Win2003
5607
 
5608
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
5609
- Parent=Iron 0.3
5610
- Platform=WinVista
5611
 
5612
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
5613
- Parent=Iron 0.3
5614
- Platform=Win7
5615
 
5616
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.4
5617
-
5618
- [Iron 0.4]
5619
  Parent=DefaultProperties
5620
- Browser="Iron"
5621
- Version=0.4
5622
- MinorVer=4
5623
- Win32=true
 
 
5624
  Frames=true
5625
  IFrames=true
5626
  Tables=true
5627
  Cookies=true
5628
- JavaApplets=true
5629
  JavaScript=true
 
5630
  CssVersion=3
5631
- supportsCSS=true
5632
 
5633
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
5634
- Parent=Iron 0.4
5635
- Platform=WinXP
5636
 
5637
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
5638
- Parent=Iron 0.4
5639
- Platform=Win2003
5640
 
5641
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
5642
- Parent=Iron 0.4
5643
- Platform=WinVista
5644
 
5645
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
5646
- Parent=Iron 0.4
5647
- Platform=Win7
5648
-
5649
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 1.0
5650
-
5651
- [Iron 1.0]
5652
  Parent=DefaultProperties
5653
- Browser="Iron"
5654
- Version=1.0
5655
- MajorVer=1
5656
- Win32=true
 
 
5657
  Frames=true
5658
  IFrames=true
5659
  Tables=true
5660
  Cookies=true
5661
- JavaApplets=true
5662
  JavaScript=true
 
5663
  CssVersion=3
5664
- supportsCSS=true
5665
-
5666
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/1.0.* Safari/*]
5667
- Parent=Iron 1.0
5668
- Platform=WinXP
5669
 
5670
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/1.0.* Safari/*]
5671
- Parent=Iron 1.0
5672
- Platform=Win2003
5673
 
5674
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/1.0.* Safari/*]
5675
- Parent=Iron 1.0
5676
- Platform=WinVista
5677
 
5678
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/1.0.* Safari/*]
5679
- Parent=Iron 1.0
5680
- Platform=Win7
5681
 
5682
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 2.0
5683
-
5684
- [Iron 2.0]
5685
  Parent=DefaultProperties
5686
- Browser="Iron"
5687
- Version=2.0
5688
- MajorVer=2
5689
- Win32=true
 
 
5690
  Frames=true
5691
  IFrames=true
5692
  Tables=true
5693
  Cookies=true
5694
- JavaApplets=true
5695
  JavaScript=true
 
5696
  CssVersion=3
5697
- supportsCSS=true
5698
 
5699
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/2.0.* Safari/*]
5700
- Parent=Iron 2.0
5701
- Platform=WinXP
5702
 
5703
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/2.0.* Safari/*]
5704
- Parent=Iron 2.0
5705
- Platform=Win2003
5706
 
5707
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/2.0.* Safari/*]
5708
- Parent=Iron 2.0
5709
- Platform=WinVista
5710
 
5711
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/2.0.* Safari/*]
5712
- Parent=Iron 2.0
5713
- Platform=Win7
5714
-
5715
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Media Players
5716
-
5717
- [Media Players]
5718
  Parent=DefaultProperties
5719
- Browser="Media Players"
 
 
 
 
 
 
 
 
5720
  Cookies=true
 
 
 
5721
 
5722
- [Microsoft NetShow(TM) Player with RealVideo(R)]
5723
- Parent=Media Players
5724
- Browser="Microsoft NetShow"
5725
 
5726
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; *) AppleWebKit/* RealPlayer]
5727
- Parent=Media Players
5728
- Browser="RealPlayer"
5729
- Platform=MacOSX
5730
 
5731
- [MPlayer 0.9*]
5732
- Parent=Media Players
5733
- Browser="MPlayer"
5734
- Version=0.9
5735
- MajorVer=0
5736
- MinorVer=9
5737
 
5738
- [MPlayer 1.*]
5739
- Parent=Media Players
5740
- Browser="MPlayer"
5741
- Version=1.0
5742
- MajorVer=1
 
5743
  MinorVer=0
 
 
 
 
 
 
 
 
5744
 
5745
- [MPlayer HEAD CVS]
5746
- Parent=Media Players
5747
- Browser="MPlayer"
5748
-
5749
- [RealPlayer*]
5750
- Parent=Media Players
5751
- Browser="RealPlayer"
5752
-
5753
- [RMA/*]
5754
- Parent=Media Players
5755
- Browser="RMA"
5756
-
5757
- [VLC media player*]
5758
- Parent=Media Players
5759
- Browser="VLC"
5760
-
5761
- [vobsub]
5762
- Parent=Media Players
5763
- Browser="vobsub"
5764
- isBanned=true
5765
 
5766
- [WinampMPEG/*]
5767
- Parent=Media Players
5768
- Browser="WinAmp"
5769
 
5770
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Zune
5771
 
5772
- [Microsoft Zune]
5773
  Parent=DefaultProperties
5774
- Browser=""
 
 
 
 
 
 
 
 
5775
  Cookies=true
 
 
 
5776
 
5777
- [Mozilla/4.0 (compatible; MSIE ?.0; Microsoft ZuneHD 4.*)]
5778
- Parent=Microsoft Zune
5779
- Version=4.0
5780
- MajorVer=4
5781
- MinorVer=0
5782
 
5783
- [Mozilla/4.0 (compatible; ZuneHD 4.*)]
5784
- Parent=Microsoft Zune
5785
- Browser="ZuneHD"
5786
- Version=4
5787
- MajorVer=4
5788
 
5789
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nintendo
5790
 
5791
- [Nintendo Wii]
5792
  Parent=DefaultProperties
5793
- Browser=""
5794
- isMobileDevice=true
 
 
5795
 
5796
- [Opera/* (Nintendo DSi; Opera/*; *; *)]
5797
- Parent=Nintendo Wii
5798
- Browser="DSi"
5799
 
5800
- [Opera/* (Nintendo Wii; U; *)]
5801
- Parent=Nintendo Wii
5802
- Browser="Wii"
5803
 
5804
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Media Player
5805
 
5806
- [Windows Media Player]
5807
  Parent=DefaultProperties
5808
- Browser="Windows Media Player"
5809
- Cookies=true
5810
-
5811
- [NSPlayer/10.*]
5812
- Parent=Windows Media Player
5813
  Version=10.0
5814
  MajorVer=10
5815
  MinorVer=0
 
 
 
 
 
 
 
 
5816
 
5817
- [NSPlayer/11.*]
5818
- Parent=Windows Media Player
5819
- Browser="Windows Media Player"
5820
- Version=11.0
5821
- MajorVer=11
5822
- MinorVer=0
5823
 
5824
- [NSPlayer/4.*]
5825
- Parent=Windows Media Player
5826
- Browser="Windows Media Player"
5827
- Version=4.0
5828
- MajorVer=4
5829
- MinorVer=0
5830
 
5831
- [NSPlayer/7.*]
5832
- Parent=Windows Media Player
5833
- Browser="Windows Media Player"
5834
- Version=7.0
5835
- MajorVer=7
5836
- MinorVer=0
5837
 
5838
- [NSPlayer/8.*]
5839
- Parent=Windows Media Player
5840
- Browser="Windows Media Player"
5841
- Version=8.0
5842
- MajorVer=8
5843
- MinorVer=0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5844
 
5845
- [NSPlayer/9.*]
5846
- Parent=Windows Media Player
5847
- Browser="Windows Media Player"
5848
- Version=9.0
5849
- MajorVer=9
5850
- MinorVer=0
5851
 
5852
- [Windows-Media-Player/10.*]
5853
- Parent=Windows Media Player
5854
- Browser="Windows-Media-Player"
5855
- Version=10.0
5856
- MajorVer=10
5857
- MinorVer=0
5858
- Win32=true
5859
 
5860
- [Windows-Media-Player/11.*]
5861
- Parent=Windows Media Player
5862
- Version=11.0
5863
- MajorVer=11
5864
- MinorVer=0
5865
- Win32=true
5866
 
5867
- [Windows-Media-Player/7.*]
5868
- Parent=Windows Media Player
5869
- Browser="Windows Media Player"
5870
- Version=7.0
5871
- MajorVer=7
5872
- MinorVer=0
5873
- Win32=true
5874
 
5875
- [Windows-Media-Player/8.*]
5876
- Parent=Windows Media Player
5877
- Browser="Windows Media Player"
5878
- Version=8.0
5879
- MajorVer=8
5880
- MinorVer=0
5881
- Win32=true
5882
 
5883
- [Windows-Media-Player/9.*]
5884
- Parent=Windows Media Player
5885
- Version=9.0
5886
- MajorVer=9
5887
- MinorVer=0
5888
- Win32=true
5889
 
5890
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.0
5891
 
5892
- [QuickTime 7.0]
5893
  Parent=DefaultProperties
5894
- Browser="QuickTime"
5895
- Version=7.0
5896
- MajorVer=7
 
 
 
 
 
 
5897
  Cookies=true
 
 
 
5898
 
5899
- [QuickTime (qtver=7.0*;cpu=PPC;os=Mac 10.*)]
5900
- Parent=QuickTime 7.0
5901
- Platform=MacOSX
 
5902
 
5903
- [QuickTime (qtver=7.0*;cpu=PPC;os=Mac 9.*)]
5904
- Parent=QuickTime 7.0
5905
- Platform=MacPPC
 
5906
 
5907
- [QuickTime (qtver=7.0*;os=Windows 95*)]
5908
- Parent=QuickTime 7.0
5909
- Platform=Win95
5910
- Win32=true
5911
 
5912
- [QuickTime (qtver=7.0*;os=Windows 98*)]
5913
- Parent=QuickTime 7.0
5914
- Platform=Win98
5915
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5916
 
5917
- [QuickTime (qtver=7.0*;os=Windows Me*)]
5918
- Parent=QuickTime 7.0
5919
- Platform=WinME
5920
- Win32=true
5921
 
5922
- [QuickTime (qtver=7.0*;os=Windows NT 4.0*)]
5923
- Parent=QuickTime 7.0
5924
- Platform=WinNT
5925
- Win32=true
 
 
5926
 
5927
- [QuickTime (qtver=7.0*;os=Windows NT 5.0*)]
5928
- Parent=QuickTime 7.0
5929
- Platform=Win2000
5930
- Win32=true
5931
 
5932
- [QuickTime (qtver=7.0*;os=Windows NT 5.1*)]
5933
- Parent=QuickTime 7.0
5934
- Platform=WinXP
5935
- Win32=true
 
 
5936
 
5937
- [QuickTime (qtver=7.0*;os=Windows NT 5.2*)]
5938
- Parent=QuickTime 7.0
5939
- Platform=Win2003
5940
- Win32=true
5941
 
5942
- [QuickTime/7.0.* (qtver=7.0.*;*;os=Mac 10.*)*]
5943
- Parent=QuickTime 7.0
5944
- Platform=MacOSX
 
 
 
5945
 
5946
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.1
5947
 
5948
- [QuickTime 7.1]
5949
  Parent=DefaultProperties
5950
- Browser="QuickTime"
5951
- Version=7.1
5952
- MajorVer=7
5953
- MinorVer=1
5954
- Cookies=true
5955
-
5956
- [QuickTime (qtver=7.1*;cpu=PPC;os=Mac 10.*)]
5957
- Parent=QuickTime 7.1
5958
- Platform=MacOSX
5959
-
5960
- [QuickTime (qtver=7.1*;cpu=PPC;os=Mac 9.*)]
5961
- Parent=QuickTime 7.1
5962
- Platform=MacPPC
5963
-
5964
- [QuickTime (qtver=7.1*;os=Windows 98*)]
5965
- Parent=QuickTime 7.1
5966
- Platform=Win98
5967
  Win32=true
 
 
 
 
 
 
 
5968
 
5969
- [QuickTime (qtver=7.1*;os=Windows NT 4.0*)]
5970
- Parent=QuickTime 7.1
5971
- Platform=WinNT
5972
- Win32=true
5973
 
5974
- [QuickTime (qtver=7.1*;os=Windows NT 5.0*)]
5975
- Parent=QuickTime 7.1
5976
- Platform=Win2000
5977
- Win32=true
5978
 
5979
- [QuickTime (qtver=7.1*;os=Windows NT 5.1*)]
5980
- Parent=QuickTime 7.1
5981
- Platform=WinXP
5982
- Win32=true
5983
 
5984
- [QuickTime (qtver=7.1*;os=Windows NT 5.2*)]
5985
- Parent=QuickTime 7.1
5986
- Platform=Win2003
5987
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5988
 
5989
- [QuickTime/7.1.* (qtver=7.1.*;*;os=Mac 10.*)*]
5990
- Parent=QuickTime 7.1
5991
- Platform=MacOSX
 
5992
 
5993
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.2
 
 
 
 
 
5994
 
5995
- [QuickTime 7.2]
5996
- Parent=DefaultProperties
5997
- Browser="QuickTime"
5998
- Version=7.2
5999
- MajorVer=7
6000
- MinorVer=2
6001
- Platform=MacOSX
6002
- Cookies=true
6003
 
6004
- [QuickTime (qtver=7.2*;cpu=PPC;os=Mac 10.*)]
6005
- Parent=QuickTime 7.2
6006
- Platform=MacOSX
 
 
 
6007
 
6008
- [QuickTime (qtver=7.2*;cpu=PPC;os=Mac 9.*)]
6009
- Parent=QuickTime 7.2
6010
- Platform=MacPPC
 
6011
 
6012
- [QuickTime (qtver=7.2*;os=Windows 98*)]
6013
- Parent=QuickTime 7.2
6014
- Platform=Win98
6015
- Win32=true
 
 
6016
 
6017
- [QuickTime (qtver=7.2*;os=Windows NT 4.0*)]
6018
- Parent=QuickTime 7.2
6019
- Platform=WinNT
6020
- Win32=true
6021
 
6022
- [QuickTime (qtver=7.2*;os=Windows NT 5.0*)]
6023
- Parent=QuickTime 7.2
6024
- Platform=Win2000
 
 
 
 
6025
  Win32=true
 
 
 
 
 
 
 
6026
 
6027
- [QuickTime (qtver=7.2*;os=Windows NT 5.1*)]
6028
- Parent=QuickTime 7.2
6029
- Platform=WinXP
6030
- Win32=true
6031
 
6032
- [QuickTime (qtver=7.2*;os=Windows NT 5.2*)]
6033
- Parent=QuickTime 7.2
6034
- Platform=Win2003
6035
- Win32=true
6036
 
6037
- [QuickTime/7.2.* (qtver=7.2.*;*;os=Mac 10.*)*]
6038
- Parent=QuickTime 7.2
6039
- Platform=MacOSX
 
6040
 
6041
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6042
 
6043
- [QuickTime 7.3]
6044
- Parent=DefaultProperties
6045
- Browser="QuickTime"
6046
- Version=7.3
6047
- MajorVer=7
6048
- MinorVer=3
6049
- Platform=MacOSX
6050
- Cookies=true
6051
 
6052
- [QuickTime (qtver=7.3*;cpu=PPC;os=Mac 10.*)]
6053
- Parent=QuickTime 7.3
6054
- Platform=MacOSX
 
 
 
6055
 
6056
- [QuickTime (qtver=7.3*;cpu=PPC;os=Mac 9.*)]
6057
- Parent=QuickTime 7.3
6058
- Platform=MacPPC
 
6059
 
6060
- [QuickTime (qtver=7.3*;os=Windows 98*)]
6061
- Parent=QuickTime 7.3
6062
- Platform=Win98
6063
- Win32=true
 
 
6064
 
6065
- [QuickTime (qtver=7.3*;os=Windows NT 4.0*)]
6066
- Parent=QuickTime 7.3
6067
- Platform=WinNT
6068
- Win32=true
6069
 
6070
- [QuickTime (qtver=7.3*;os=Windows NT 5.0*)]
6071
- Parent=QuickTime 7.3
6072
- Platform=Win2000
6073
- Win32=true
 
 
6074
 
6075
- [QuickTime (qtver=7.3*;os=Windows NT 5.1*)]
6076
- Parent=QuickTime 7.3
6077
- Platform=WinXP
6078
- Win32=true
6079
 
6080
- [QuickTime (qtver=7.3*;os=Windows NT 5.2*)]
6081
- Parent=QuickTime 7.3
6082
- Platform=Win2003
 
 
 
 
6083
  Win32=true
 
 
 
 
 
 
 
6084
 
6085
- [QuickTime/7.3.* (qtver=7.3.*;*;os=Mac 10.*)*]
6086
- Parent=QuickTime 7.3
6087
- Platform=MacOSX
 
6088
 
6089
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.4
 
 
 
6090
 
6091
- [QuickTime 7.4]
6092
- Parent=DefaultProperties
6093
- Browser="QuickTime"
6094
- Version=7.4
6095
- MajorVer=7
6096
- MinorVer=4
6097
- Platform=MacOSX
6098
- Cookies=true
6099
 
6100
- [QuickTime (qtver=7.4*;cpu=PPC;os=Mac 10.*)]
6101
- Parent=QuickTime 7.4
6102
- Platform=MacOSX
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6103
 
6104
- [QuickTime (qtver=7.4*;cpu=PPC;os=Mac 9.*)]
6105
- Parent=QuickTime 7.4
6106
- Platform=MacPPC
 
6107
 
6108
- [QuickTime (qtver=7.4*;os=Windows 98*)]
6109
- Parent=QuickTime 7.4
6110
- Platform=Win98
6111
- Win32=true
 
 
6112
 
6113
- [QuickTime (qtver=7.4*;os=Windows NT 4.0*)]
6114
- Parent=QuickTime 7.4
6115
- Platform=WinNT
6116
- Win32=true
6117
 
6118
- [QuickTime (qtver=7.4*;os=Windows NT 5.0*)]
6119
- Parent=QuickTime 7.4
6120
- Platform=Win2000
6121
- Win32=true
 
 
6122
 
6123
- [QuickTime (qtver=7.4*;os=Windows NT 5.1*)]
6124
- Parent=QuickTime 7.4
6125
- Platform=WinXP
6126
- Win32=true
6127
 
6128
- [QuickTime (qtver=7.4*;os=Windows NT 5.2*)]
6129
- Parent=QuickTime 7.4
6130
- Platform=Win2003
6131
- Win32=true
 
 
 
 
 
 
 
6132
 
6133
- [QuickTime/7.4.* (qtver=7.4.*;*;os=Mac 10.*)*]
6134
- Parent=QuickTime 7.4
6135
- Platform=MacOSX
 
 
 
6136
 
6137
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Android
6138
 
6139
- [Android]
6140
  Parent=DefaultProperties
6141
- Browser="Android"
6142
- Platform=Android
 
 
 
 
6143
  Frames=true
6144
  IFrames=true
6145
  Tables=true
6146
  Cookies=true
6147
- JavaApplets=true
6148
  JavaScript=true
6149
- isMobileDevice=true
 
6150
 
6151
- [Mozilla/5.0 (Linux; U; Android *; *) AppleWebKit/* (KHTML, like Gecko) Safari/*]
6152
- Parent=Android
6153
- Browser="Android"
6154
- isMobileDevice=true
6155
 
6156
- [Mozilla/5.0 (Linux; U; Android *; *) AppleWebKit/* (KHTML, like Gecko) Version/3.0.* Mobile Safari/*]
6157
- Parent=Android
6158
- Browser="Android"
6159
- Version=3.0
6160
- MajorVer=3
6161
- MinorVer=0
6162
- isMobileDevice=true
6163
 
6164
- [Mozilla/5.0 (Linux; U; Android *; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1.* Mobile Safari/*]
6165
- Parent=Android
6166
- Version=3.0
6167
- MajorVer=3
6168
- MinorVer=0
6169
 
6170
- [Mozilla/5.0 (Linux; U; Android 2.0*; *; Droid Build/*) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17]
6171
- Parent=Android
6172
- Browser="Mobile Safari"
6173
- Version=2.0
6174
- MajorVer=2
6175
- MinorVer=0
6176
- CssVersion=3
6177
- supportsCSS=true
 
 
 
 
 
 
 
 
 
 
 
 
 
6178
 
6179
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BlackBerry
 
 
 
6180
 
6181
- [BlackBerry]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6182
  Parent=DefaultProperties
6183
- Browser="BlackBerry"
 
 
 
 
 
6184
  Frames=true
 
6185
  Tables=true
6186
  Cookies=true
6187
  JavaScript=true
6188
- isMobileDevice=true
 
6189
 
6190
- [*BlackBerry*]
6191
- Parent=BlackBerry
 
 
6192
 
6193
- [*BlackBerrySimulator/*]
6194
- Parent=BlackBerry
 
 
6195
 
6196
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Handspring Blazer
 
 
 
6197
 
6198
- [Blazer]
6199
- Parent=DefaultProperties
6200
- Browser="Handspring Blazer"
6201
- Platform=Palm
6202
- Frames=true
6203
- Tables=true
6204
- Cookies=true
6205
- isMobileDevice=true
 
 
 
 
 
 
 
 
 
 
 
 
 
6206
 
6207
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 95; PalmSource; Blazer 3.0) 16;160x160]
6208
- Parent=Blazer
6209
- Version=3.0
6210
- MajorVer=3
6211
- MinorVer=0
6212
 
6213
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.0) 16;320x448]
6214
- Parent=Blazer
6215
- Version=4.0
6216
- MajorVer=4
6217
- MinorVer=0
 
6218
 
6219
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.1) 16;320x320]
6220
- Parent=Blazer
6221
- Version=4.1
6222
- MajorVer=4
6223
- MinorVer=1
6224
 
6225
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.2) 16;320x320]
6226
- Parent=Blazer
6227
- Version=4.2
6228
- MajorVer=4
6229
- MinorVer=2
 
6230
 
6231
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.4) 16;320x320]
6232
- Parent=Blazer
6233
- Version=4.4
6234
- MajorVer=4
6235
- MinorVer=4
6236
 
6237
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.5) 16;320x320]
6238
- Parent=Blazer
6239
- Version=4.5
6240
- MajorVer=4
6241
- MinorVer=5
 
6242
 
6243
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DoCoMo
 
 
 
6244
 
6245
- [DoCoMo]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6246
  Parent=DefaultProperties
6247
- Browser="DoCoMo"
 
 
 
 
 
6248
  Frames=true
 
6249
  Tables=true
6250
  Cookies=true
6251
  JavaScript=true
6252
- isMobileDevice=true
 
6253
 
6254
- [DoCoMo/1.0*]
6255
- Parent=DoCoMo
6256
- Version=1.0
6257
- MajorVer=1
6258
- MinorVer=0
6259
- Platform=WAP
6260
 
6261
- [DoCoMo/2.0*]
6262
- Parent=DoCoMo
6263
- Version=2.0
6264
- MajorVer=2
6265
- MinorVer=0
6266
- Platform=WAP
6267
 
6268
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile
 
 
 
6269
 
6270
- [IEMobile]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6271
  Parent=DefaultProperties
6272
- Browser="IEMobile"
6273
- Platform=WinCE
 
 
 
6274
  Win32=true
6275
  Frames=true
6276
  IFrames=true
6277
  Tables=true
6278
  Cookies=true
6279
- VBScript=true
6280
  JavaScript=true
6281
- ActiveXControls=true
6282
- isMobileDevice=true
6283
- CssVersion=2
6284
- supportsCSS=true
6285
 
6286
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.*)*]
6287
- Parent=IEMobile
6288
- Version=6.0
6289
- MajorVer=6
6290
- MinorVer=0
6291
 
6292
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.*)*]
6293
- Parent=IEMobile
6294
- Version=7.0
6295
- MajorVer=7
6296
- MinorVer=0
6297
 
6298
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iPhone
 
 
 
6299
 
6300
- [iPhone]
6301
- Parent=DefaultProperties
6302
- Browser="iPhone"
6303
- Platform=iPhone OSX
6304
- Frames=true
6305
- IFrames=true
6306
- Tables=true
6307
- Cookies=true
6308
- BackgroundSounds=true
6309
- JavaApplets=true
6310
- JavaScript=true
6311
- isMobileDevice=true
6312
- CssVersion=3
6313
- supportsCSS=true
 
 
 
 
 
 
 
6314
 
6315
- [Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)*]
6316
- Parent=iPhone
6317
- Browser="iPhone Simulator"
6318
- Version=2.0
6319
- MajorVer=2
6320
- MinorVer=0
6321
 
6322
- [Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 3* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)*]
6323
- Parent=iPhone
6324
- Version=3.0
6325
- MajorVer=3
6326
- MinorVer=0
 
6327
 
6328
- [Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 3_1* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)*]
6329
- Parent=iPhone
6330
- Version=3.1
6331
- MajorVer=3
6332
- MinorVer=1
6333
 
6334
- [Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)*]
6335
- Parent=iPhone
6336
- Version=2.0
6337
- MajorVer=2
6338
- MinorVer=0
 
6339
 
6340
- [Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_* like Mac OS X; *)*]
6341
- Parent=iPhone
6342
- Version=2.0
6343
- MajorVer=2
6344
- MinorVer=0
6345
 
6346
- [Mozilla/5.0 (iPhone; U; CPU iPhone OS 3* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)*]
6347
- Parent=iPhone
6348
- Version=3.0
6349
- MajorVer=3
6350
- MinorVer=0
 
6351
 
6352
- [Mozilla/5.0 (iPhone; U; CPU iPhone OS 3* like Mac OS X; *)*]
6353
- Parent=iPhone
6354
- Version=3.0
6355
- MajorVer=3
6356
- MinorVer=0
6357
 
6358
- [Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)*]
6359
- Parent=iPhone
6360
- Version=3.1
6361
- MajorVer=3
6362
- MinorVer=1
 
6363
 
6364
- [Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1* like Mac OS X; *)*]
6365
- Parent=iPhone
6366
- Version=3.1
6367
- MajorVer=3
6368
- MinorVer=1
 
6369
 
6370
- [Mozilla/5.0 (iPod; U; CPU iPhone OS 2_* like Mac OS X; *)*]
6371
- Parent=iPhone
6372
- Browser="iPod Touch"
6373
- Version=2.0
6374
- MajorVer=2
6375
- MinorVer=0
6376
 
6377
- [Mozilla/5.0 (iPod; U; CPU iPhone OS 3* like Mac OS X; *)*]
6378
- Parent=iPhone
6379
- Browser="iPod Touch"
6380
- Version=3.0
6381
- MajorVer=3
6382
- MinorVer=0
6383
 
6384
- [Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1* like Mac OS X; *)*]
6385
- Parent=iPhone
6386
- Version=3.1
6387
- MajorVer=3
6388
- MinorVer=1
 
6389
 
6390
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; KDDI
 
 
 
 
 
6391
 
6392
- [KDDI]
6393
- Parent=DefaultProperties
6394
- Browser="KDDI"
6395
- Frames=true
6396
- Tables=true
6397
- Cookies=true
6398
- BackgroundSounds=true
6399
- VBScript=true
6400
- JavaScript=true
6401
- ActiveXControls=true
6402
  isMobileDevice=true
6403
- CssVersion=1
6404
- supportsCSS=true
6405
 
6406
- [KDDI-* UP.Browser/* (GUI) MMP/*]
6407
- Parent=KDDI
 
 
 
 
6408
 
6409
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Miscellaneous Mobile
 
 
 
 
 
6410
 
6411
- [Miscellaneous Mobile]
6412
- Parent=DefaultProperties
6413
- Browser=""
6414
- IFrames=true
6415
- Tables=true
6416
- Cookies=true
6417
- JavaScript=true
6418
  isMobileDevice=true
6419
- CssVersion=2
6420
- supportsCSS=true
6421
 
6422
- [Mozilla/5.0 (X11; *; CentOS; *) AppleWebKit/* (KHTML, like Gecko) Bolt/0.* Version/3.0 Safari/*]
6423
- Parent=Miscellaneous Mobile
6424
- Browser="Bolt"
 
 
6425
 
6426
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Motorola Internet Browser
6427
 
6428
- [Motorola Internet Browser]
6429
  Parent=DefaultProperties
6430
- Browser="Motorola Internet Browser"
 
 
 
 
 
6431
  Frames=true
 
6432
  Tables=true
6433
  Cookies=true
6434
- isMobileDevice=true
 
 
6435
 
6436
- [MOT-*/*]
6437
- Parent=Motorola Internet Browser
 
 
6438
 
6439
- [MOT-1*/* UP.Browser/*]
6440
- Parent=Motorola Internet Browser
 
 
6441
 
6442
- [MOT-8700_/* UP.Browser/*]
6443
- Parent=Motorola Internet Browser
 
 
6444
 
6445
- [MOT-A-0A/* UP.Browser/*]
6446
- Parent=Motorola Internet Browser
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6447
 
6448
- [MOT-A-2B/* UP.Browser/*]
6449
- Parent=Motorola Internet Browser
 
 
6450
 
6451
- [MOT-A-88/* UP.Browser/*]
6452
- Parent=Motorola Internet Browser
 
 
 
 
6453
 
6454
- [MOT-C???/* MIB/*]
6455
- Parent=Motorola Internet Browser
 
 
6456
 
6457
- [MOT-GATW_/* UP.Browser/*]
6458
- Parent=Motorola Internet Browser
 
 
 
 
6459
 
6460
- [MOT-L6/* MIB/*]
6461
- Parent=Motorola Internet Browser
 
 
6462
 
6463
- [MOT-L7/* MIB/*]
6464
- Parent=Motorola Internet Browser
 
 
 
 
6465
 
6466
- [MOT-M*/* UP.Browser/*]
6467
- Parent=Motorola Internet Browser
 
 
6468
 
6469
- [MOT-MP*/* Mozilla/* (compatible; MSIE *; Windows CE; *)]
6470
- Parent=Motorola Internet Browser
6471
- Win32=true
 
 
 
6472
 
6473
- [MOT-MP*/* Mozilla/4.0 (compatible; MSIE *; Windows CE; *)]
6474
- Parent=Motorola Internet Browser
6475
- Win32=true
 
 
 
6476
 
6477
- [MOT-SAP4_/* UP.Browser/*]
6478
- Parent=Motorola Internet Browser
 
 
 
 
6479
 
6480
- [MOT-T*/*]
6481
- Parent=Motorola Internet Browser
 
 
 
 
6482
 
6483
- [MOT-T7*/* MIB/*]
6484
- Parent=Motorola Internet Browser
 
 
 
 
6485
 
6486
- [MOT-T721*]
6487
- Parent=Motorola Internet Browser
 
 
 
 
6488
 
6489
- [MOT-TA02/* MIB/*]
6490
- Parent=Motorola Internet Browser
 
 
 
 
6491
 
6492
- [MOT-V*/*]
6493
- Parent=Motorola Internet Browser
 
 
 
 
6494
 
6495
- [MOT-V*/* MIB/*]
6496
- Parent=Motorola Internet Browser
 
 
 
 
6497
 
6498
- [MOT-V*/* UP.Browser/*]
6499
- Parent=Motorola Internet Browser
 
 
 
 
6500
 
6501
- [MOT-V3/* MIB/*]
6502
- Parent=Motorola Internet Browser
 
 
 
 
6503
 
6504
- [MOT-V4*/* MIB/*]
6505
- Parent=Motorola Internet Browser
 
 
 
 
 
 
 
 
 
 
6506
 
6507
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN Mobile Proxy
6508
 
6509
- [MSN Mobile Proxy]
6510
  Parent=DefaultProperties
6511
- Browser="MSN Mobile Proxy"
 
 
 
 
 
6512
  Win32=true
6513
  Frames=true
 
6514
  Tables=true
6515
  Cookies=true
6516
  JavaScript=true
6517
- ActiveXControls=true
6518
- isMobileDevice=true
6519
 
6520
- [Mozilla/* (compatible; MSIE *; Windows*; MSN Mobile Proxy)]
6521
- Parent=MSN Mobile Proxy
 
 
6522
 
6523
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetFront
 
 
 
6524
 
6525
- [NetFront]
6526
- Parent=DefaultProperties
6527
- Browser="NetFront"
6528
- Frames=true
6529
- Tables=true
6530
- Cookies=true
6531
- JavaScript=true
6532
- isMobileDevice=true
6533
 
6534
- [*NetFront/*]
6535
- Parent=NetFront
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6536
 
6537
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia
 
 
 
6538
 
6539
- [Nokia]
6540
- Parent=DefaultProperties
6541
- Browser="Nokia"
6542
- Tables=true
6543
- Cookies=true
6544
- isMobileDevice=true
6545
 
6546
- [*Nokia*/*]
6547
- Parent=Nokia
 
 
6548
 
6549
- [Mozilla/* (SymbianOS/*; ?; *) AppleWebKit/* (KHTML, like Gecko) Safari/*]
6550
- Parent=Nokia
6551
- Platform=SymbianOS
 
 
 
6552
 
6553
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Openwave Mobile Browser
 
 
 
6554
 
6555
- [Openwave Mobile Browser]
6556
- Parent=DefaultProperties
6557
- Browser="Openwave Mobile Browser"
6558
- Alpha=true
6559
- Win32=true
6560
  Win64=true
6561
- Frames=true
6562
- Tables=true
6563
- Cookies=true
6564
- isMobileDevice=true
6565
 
6566
- [*UP.Browser/*]
6567
- Parent=Openwave Mobile Browser
 
 
6568
 
6569
- [*UP.Link/*]
6570
- Parent=Openwave Mobile Browser
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6571
 
6572
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini
6573
 
6574
- [Opera Mini]
6575
  Parent=DefaultProperties
6576
- Browser="Opera Mini"
 
 
 
 
 
 
6577
  Frames=true
6578
  IFrames=true
6579
  Tables=true
6580
  Cookies=true
6581
  JavaScript=true
6582
- isMobileDevice=true
 
6583
 
6584
- [Opera/* (J2ME/MIDP; Opera Mini/1.0*)*]
6585
- Parent=Opera Mini
6586
- Version=1.0
6587
- MajorVer=1
6588
- MinorVer=0
6589
 
6590
- [Opera/* (J2ME/MIDP; Opera Mini/1.1*)*]
6591
- Parent=Opera Mini
6592
- Version=1.1
6593
- MajorVer=1
6594
- MinorVer=1
6595
 
6596
- [Opera/* (J2ME/MIDP; Opera Mini/1.2*)*]
6597
- Parent=Opera Mini
6598
- Version=1.2
6599
- MajorVer=1
6600
- MinorVer=2
6601
 
6602
- [Opera/* (J2ME/MIDP; Opera Mini/2.0*)*]
6603
- Parent=Opera Mini
6604
- Version=2.0
6605
- MajorVer=2
6606
- MinorVer=0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6607
 
6608
- [Opera/* (J2ME/MIDP; Opera Mini/3.0*)*]
6609
- Parent=Opera Mini
6610
- Version=3.0
6611
- MajorVer=3
6612
- MinorVer=0
6613
 
6614
- [Opera/* (J2ME/MIDP; Opera Mini/3.1*)*]
6615
- Parent=Opera Mini
6616
- Version=3.1
6617
- MajorVer=3
6618
- MinorVer=1
 
6619
 
6620
- [Opera/* (J2ME/MIDP; Opera Mini/4.0*)*]
6621
- Parent=Opera Mini
6622
- Version=4.0
6623
- MajorVer=4
6624
- MinorVer=0
6625
 
6626
- [Opera/* (J2ME/MIDP; Opera Mini/4.1*)*]
6627
- Parent=Opera Mini
6628
- Version=4.1
6629
- MajorVer=4
6630
- MinorVer=1
 
6631
 
6632
- [Opera/* (J2ME/MIDP; Opera Mini/4.2*)*]
6633
- Parent=Opera Mini
6634
- Version=4.2
6635
- MajorVer=4
6636
- MinorVer=2
6637
 
6638
- [Opera/* (J2ME/MIDP; Opera Mini/5.0*)*]
6639
- Parent=Opera Mini
6640
- Version=5.0
6641
- MajorVer=5
6642
- MinorVer=0
 
6643
 
6644
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile
 
 
 
6645
 
6646
- [Opera Mobile]
6647
- Parent=DefaultProperties
6648
- Browser="Opera Mobi"
6649
- Frames=true
6650
- Tables=true
6651
- Cookies=true
 
 
 
 
 
 
6652
  isMobileDevice=true
6653
 
6654
- [Opera/9.* (*SymbOS; Opera Mobi/*; U; *) Presto/2.* Version/10.*]
6655
- Parent=Opera Mobile
6656
- Version=10.0
6657
- MajorVer=10
6658
- MinorVer=0
6659
- Platform=SymbianOS
6660
 
6661
- [Opera/9.* (Microsoft Windows; PPC; Opera Mobi/*; U; *)]
6662
- Parent=Opera Mobile
6663
- Version=9.0
6664
- MajorVer=9
6665
- MinorVer=0
6666
- Platform=Win
6667
 
6668
- [Opera/9.* (Windows Mobile; *; Opera Mobi/*; U; *) Presto/2.*]
6669
- Parent=Opera Mobile
6670
- Version=9.0
6671
- MajorVer=9
6672
- MinorVer=0
6673
- Platform=Win
6674
 
6675
- [Opera/9.5 (Microsoft Windows; PPC; *Opera Mobile/*)]
6676
- Parent=Opera Mobile
6677
- Version=9.5
6678
- MajorVer=9
6679
- MinorVer=5
 
6680
 
6681
- [Opera/9.5 (Microsoft Windows; PPC; Opera Mobi/*)]
6682
- Parent=Opera Mobile
6683
- Version=9.5
6684
- MajorVer=9
6685
- MinorVer=5
 
6686
 
6687
- [Opera/9.51 Beta (Microsoft Windows; PPC; Opera Mobi/*)*]
6688
- Parent=Opera Mobile
6689
- Version=9.51
6690
- MajorVer=9
6691
- MinorVer=51
6692
- Beta=true
 
 
 
 
 
 
 
6693
 
6694
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Palm
 
 
 
 
 
 
 
 
 
 
 
6695
 
6696
- [Palm]
 
 
6697
  Parent=DefaultProperties
6698
- Browser=""
6699
- Platform=webOS
 
 
 
 
6700
  Win32=true
6701
  Frames=true
 
6702
  Tables=true
6703
  Cookies=true
6704
  JavaScript=true
6705
- ActiveXControls=true
6706
- isMobileDevice=true
6707
 
6708
- [Mozilla/5.0 (webOS/1.0*; U; *) AppleWebKit/525.* (KHTML, like Gecko) Version/1.0 Safari/525.* Pre/1.0]
6709
- Parent=Palm
6710
- Browser="Palm Pre"
6711
- Version=1.0
6712
- MajorVer=1
6713
- MinorVer=0
6714
- CssVersion=2
6715
- supportsCSS=true
6716
 
6717
- [Mozilla/5.0 (webOS/1.1*; U; *) AppleWebKit/525.* (KHTML, like Gecko) Version/1.0 Safari/525.* Pre/1.0]
6718
- Parent=Palm
6719
- Browser="Palm Pre"
6720
- Version=1.1
6721
- MajorVer=1
6722
- MinorVer=1
6723
- CssVersion=2
6724
- supportsCSS=true
6725
 
6726
- [Mozilla/5.0 (webOS/1.2*; U; *) AppleWebKit/525.* (KHTML, like Gecko) Version/1.0 Safari/525.* Pre/1.0]
6727
- Parent=Palm
6728
- Browser="Palm Pre"
6729
- Version=1.2
6730
- MajorVer=1
6731
- MinorVer=2
6732
 
6733
- [Mozilla/5.0 (webOS/1.3*; U; *) AppleWebKit/525.* (KHTML, like Gecko) Version/1.0 Safari/525.* Pre/1.0]
6734
- Parent=Palm
6735
- Version=1.3
6736
- MajorVer=1
6737
- MinorVer=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6738
 
6739
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Playstation
 
 
 
6740
 
6741
- [Playstation]
6742
- Parent=DefaultProperties
6743
- Browser="Playstation"
6744
- Platform=WAP
6745
- Frames=true
6746
- Tables=true
6747
- Cookies=true
6748
- isMobileDevice=true
6749
 
6750
- [Mozilla/* (PLAYSTATION *; *)]
6751
- Parent=Playstation
6752
- Browser="PlayStation 3"
6753
- Frames=false
6754
 
6755
- [Mozilla/* (PSP (PlayStation Portable); *)]
6756
- Parent=Playstation
 
 
 
 
6757
 
6758
- [Sony PS2 (Linux)]
6759
- Parent=Playstation
6760
- Browser="Sony PS2"
6761
- Platform=Linux
6762
 
6763
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Pocket PC
 
 
 
 
 
6764
 
6765
- [Pocket PC]
6766
- Parent=DefaultProperties
6767
- Browser="Pocket PC"
6768
- Platform=WinCE
6769
- Win32=true
6770
- Frames=true
6771
- Tables=true
6772
- Cookies=true
6773
- JavaScript=true
6774
- ActiveXControls=true
 
 
 
 
 
 
 
6775
  isMobileDevice=true
6776
- CssVersion=1
6777
- supportsCSS=true
6778
 
6779
- [*(compatible; MSIE *.*; Windows CE; PPC; *)]
6780
- Parent=Pocket PC
 
 
 
 
6781
 
6782
- [HTC-*/* Mozilla/* (compatible; MSIE *.*; Windows CE*)*]
6783
- Parent=Pocket PC
6784
- Win32=true
 
 
 
6785
 
6786
- [Mozilla/* (compatible; MSPIE *.*; *Windows CE*)*]
6787
- Parent=Pocket PC
6788
- Win32=true
 
 
 
6789
 
6790
- [T-Mobile* Mozilla/* (compatible; MSIE *.*; Windows CE; *)]
6791
- Parent=Pocket PC
 
 
 
 
6792
 
6793
- [Vodafone* Mozilla/* (compatible; MSIE *.*; Windows CE; *)*]
6794
- Parent=Pocket PC
 
 
 
 
6795
 
6796
- [Windows CE (Pocket PC) - Version *.*]
6797
- Parent=Pocket PC
6798
- Win32=true
 
 
 
6799
 
6800
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SEMC Browser
 
 
 
 
 
6801
 
6802
- [SEMC Browser]
6803
- Parent=DefaultProperties
6804
- Browser="SEMC Browser"
6805
- Platform=JAVA
6806
- Tables=true
6807
  isMobileDevice=true
6808
- CssVersion=1
6809
- supportsCSS=true
6810
 
6811
- [*SEMC-Browser/*]
6812
- Parent=SEMC Browser
 
 
 
6813
 
6814
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SonyEricsson
6815
 
6816
- [SonyEricsson]
6817
  Parent=DefaultProperties
6818
- Browser="SonyEricsson"
 
 
 
 
 
6819
  Frames=true
 
6820
  Tables=true
6821
  Cookies=true
6822
  JavaScript=true
6823
- isMobileDevice=true
6824
- CssVersion=1
6825
- supportsCSS=true
6826
 
6827
- [*Ericsson*]
6828
- Parent=SonyEricsson
 
 
6829
 
6830
- [*SonyEricsson*]
6831
- Parent=SonyEricsson
 
 
6832
 
6833
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netbox
 
 
 
6834
 
6835
- [Netbox]
6836
- Parent=DefaultProperties
6837
- Browser="Netbox"
6838
- Frames=true
6839
- Tables=true
6840
- Cookies=true
6841
- JavaScript=true
6842
- CssVersion=1
6843
- supportsCSS=true
 
 
 
 
 
 
 
 
 
 
 
 
6844
 
6845
- [Mozilla/3.01 (compatible; Netbox/*; Linux*)]
6846
- Parent=Netbox
6847
- Browser="Netbox"
6848
- Platform=Linux
6849
 
6850
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PowerTV
 
 
 
 
 
6851
 
6852
- [PowerTV]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6853
  Parent=DefaultProperties
6854
- Browser="PowerTV"
6855
- Platform=PowerTV
 
 
 
 
6856
  Frames=true
 
6857
  Tables=true
6858
  Cookies=true
6859
  JavaScript=true
 
 
6860
 
6861
- [Mozilla/4.0 PowerTV/1.5 (Compatible; Spyglass DM 3.2.1, EXPLORER)]
6862
- Parent=PowerTV
6863
- Version=1.5
6864
- MajorVer=1
6865
- MinorVer=5
6866
 
6867
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WebTV/MSNTV
 
 
 
6868
 
6869
- [WebTV]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6870
  Parent=DefaultProperties
6871
- Browser="WebTV/MSNTV"
6872
- Platform=WebTV
 
 
 
 
6873
  Frames=true
 
6874
  Tables=true
6875
  Cookies=true
6876
  JavaScript=true
 
 
6877
 
6878
- [Mozilla/3.0 WebTV/1.*(compatible; MSIE 2.0)]
6879
- Parent=WebTV
6880
- Version=1.0
6881
- MajorVer=1
6882
- MinorVer=0
6883
-
6884
- [Mozilla/4.0 WebTV/2.0*(compatible; MSIE 3.0)]
6885
- Parent=WebTV
6886
- Version=2.0
6887
- MajorVer=2
6888
- MinorVer=0
6889
 
6890
- [Mozilla/4.0 WebTV/2.1*(compatible; MSIE 3.0)]
6891
- Parent=WebTV
6892
- Version=2.1
6893
- MajorVer=2
6894
- MinorVer=1
6895
 
6896
- [Mozilla/4.0 WebTV/2.2*(compatible; MSIE 3.0)]
6897
- Parent=WebTV
6898
- Version=2.2
6899
- MajorVer=2
6900
- MinorVer=2
6901
 
6902
- [Mozilla/4.0 WebTV/2.3*(compatible; MSIE 3.0)]
6903
- Parent=WebTV
6904
- Version=2.3
6905
- MajorVer=2
6906
- MinorVer=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6907
 
6908
- [Mozilla/4.0 WebTV/2.4*(compatible; MSIE 3.0)]
6909
- Parent=WebTV
6910
- Version=2.4
6911
- MajorVer=2
6912
- MinorVer=4
6913
 
6914
- [Mozilla/4.0 WebTV/2.5*(compatible; MSIE 4.0)]
6915
- Parent=WebTV
6916
- Version=2.5
6917
- MajorVer=2
6918
- MinorVer=5
6919
- CssVersion=1
6920
- supportsCSS=true
6921
 
6922
- [Mozilla/4.0 WebTV/2.6*(compatible; MSIE 4.0)]
6923
- Parent=WebTV
6924
- Version=2.6
6925
- MajorVer=2
6926
- MinorVer=6
6927
- CssVersion=1
6928
- supportsCSS=true
6929
 
6930
- [Mozilla/4.0 WebTV/2.7*(compatible; MSIE 4.0)]
6931
- Parent=WebTV
6932
- Version=2.7
6933
- MajorVer=2
6934
- MinorVer=7
6935
- CssVersion=1
6936
- supportsCSS=true
6937
 
6938
- [Mozilla/4.0 WebTV/2.8*(compatible; MSIE 4.0)]
6939
- Parent=WebTV
6940
- Version=2.8
6941
- MajorVer=2
6942
- MinorVer=8
6943
- JavaApplets=true
6944
- CssVersion=1
6945
- supportsCSS=true
6946
 
6947
- [Mozilla/4.0 WebTV/2.9*(compatible; MSIE 4.0)]
6948
- Parent=WebTV
6949
- Version=2.9
6950
- MajorVer=2
6951
- MinorVer=9
6952
- JavaApplets=true
6953
- CssVersion=1
6954
- supportsCSS=true
6955
 
6956
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Amaya
6957
 
6958
- [Amaya]
6959
  Parent=DefaultProperties
6960
- Browser="Amaya"
 
 
 
 
 
 
 
6961
  Tables=true
6962
  Cookies=true
 
 
 
6963
 
6964
- [amaya/10.*]
6965
- Parent=Amaya
6966
- Version=10.0
6967
- MajorVer=10
6968
- MinorVer=0
6969
 
6970
- [amaya/11.*]
6971
- Parent=Amaya
6972
- Version=11.0
6973
- MajorVer=11
6974
- MinorVer=0
6975
 
6976
- [amaya/7.*]
6977
- Parent=Amaya
6978
- Version=7.0
6979
- MajorVer=7
6980
- MinorVer=0
6981
 
6982
- [amaya/8.*]
6983
- Parent=Amaya
6984
- Version=8.0
6985
- MajorVer=8
6986
- MinorVer=0
6987
- CssVersion=2
6988
- supportsCSS=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6989
 
6990
- [amaya/9.*]
6991
- Parent=Amaya
6992
- Version=9.0
6993
- MajorVer=9
6994
- MinorVer=0
6995
 
6996
- [Emacs-w3m/*]
6997
- Parent=Emacs/W3
 
 
 
 
6998
 
6999
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Links
 
 
 
7000
 
7001
- [Links]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7002
  Parent=DefaultProperties
7003
- Browser="Links"
7004
- Frames=true
7005
- Tables=true
7006
 
7007
- [Links (0.9*; CYGWIN_NT-5.1*)]
7008
- Parent=Links
7009
- Browser="Links"
7010
- Version=0.9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7011
  MajorVer=0
7012
- MinorVer=9
7013
- Platform=WinXP
7014
 
7015
- [Links (0.9*; Darwin*)]
7016
- Parent=Links
7017
- Version=0.9
 
7018
  MajorVer=0
7019
- MinorVer=9
7020
- Platform=MacPPC
7021
 
7022
- [Links (0.9*; FreeBSD*)]
7023
- Parent=Links
7024
- Browser="Links"
7025
- Version=0.9
7026
  MajorVer=0
7027
- MinorVer=9
7028
- Platform=FreeBSD
7029
 
7030
- [Links (0.9*; Linux*)]
7031
- Parent=Links
7032
- Browser="Links"
7033
- Version=0.9
7034
  MajorVer=0
7035
- MinorVer=9
7036
- Platform=Linux
7037
 
7038
- [Links (0.9*; OS/2*)]
7039
- Parent=Links
7040
- Browser="Links"
7041
- Version=0.9
7042
- MajorVer=0
7043
- MinorVer=9
7044
- Platform=OS/2
7045
-
7046
- [Links (0.9*; Unix*)]
7047
- Parent=Links
7048
- Browser="Links"
7049
- Version=0.9
7050
- MajorVer=0
7051
- MinorVer=9
7052
- Platform=Unix
7053
 
7054
- [Links (0.9*; Win32*)]
7055
- Parent=Links
7056
- Browser="Links"
7057
- Version=0.9
7058
- MajorVer=0
7059
- MinorVer=9
7060
- Platform=Win32
7061
  Win32=true
 
 
 
 
 
 
 
7062
 
7063
- [Links (1.0*; CYGWIN_NT-5.1*)]
7064
- Parent=Links
7065
- Browser="Links"
7066
- Version=1.0
7067
- MajorVer=1
7068
- MinorVer=0
7069
- Platform=WinXP
7070
 
7071
- [Links (1.0*; FreeBSD*)]
7072
- Parent=Links
7073
- Browser="Links"
7074
- Version=1.0
7075
- MajorVer=1
7076
- MinorVer=0
7077
- Platform=FreeBSD
7078
 
7079
- [Links (1.0*; Linux*)]
7080
- Parent=Links
7081
- Browser="Links"
7082
- Version=1.0
7083
- MajorVer=1
7084
- MinorVer=0
7085
- Platform=Linux
7086
 
7087
- [Links (1.0*; OS/2*)]
7088
- Parent=Links
7089
- Browser="Links"
7090
- Version=1.0
7091
- MajorVer=1
7092
- MinorVer=0
7093
- Platform=OS/2
7094
 
7095
- [Links (1.0*; Unix*)]
7096
- Parent=Links
7097
- Browser="Links"
7098
- Version=1.0
7099
- MajorVer=1
7100
- MinorVer=0
7101
- Platform=Unix
7102
 
7103
- [Links (1.0*; Win32*)]
7104
- Parent=Links
7105
- Browser="Links"
7106
- Version=1.0
7107
- MajorVer=1
 
 
 
 
 
 
 
 
 
 
 
 
 
7108
  MinorVer=0
7109
- Platform=Win32
7110
  Win32=true
 
 
 
 
 
 
 
7111
 
7112
- [Links (2.0*; Linux*)]
7113
- Parent=Links
7114
- Browser="Links"
7115
- Version=2.0
7116
- MajorVer=2
7117
- MinorVer=0
7118
- Platform=Linux
7119
 
7120
- [Links (2.1*; FreeBSD*)]
7121
- Parent=Links
7122
- Browser="Links"
7123
- Version=2.1
7124
- MajorVer=2
7125
- MinorVer=1
7126
- Platform=FreeBSD
7127
 
7128
- [Links (2.1*; Linux *)]
7129
- Parent=Links
7130
- Browser="Links"
7131
- Version=2.1
7132
- MajorVer=2
7133
- MinorVer=1
7134
- Platform=Linux
7135
 
7136
- [Links (2.1*; OpenBSD*)]
7137
- Parent=Links
7138
- Browser="Links"
7139
- Version=2.1
7140
- MajorVer=2
7141
- MinorVer=1
7142
- Platform=OpenBSD
7143
 
7144
- [Links (2.2*; FreeBSD*)]
7145
- Parent=Links
7146
- Version=2.2
7147
- MajorVer=2
7148
- MinorVer=2
7149
- Platform=FreeBSD
7150
 
7151
- [Links (2.2*; Linux *)]
7152
- Parent=Links
7153
- Version=2.2
7154
- MajorVer=2
7155
- MinorVer=2
7156
- Platform=Linux
7157
 
7158
- [Links (2.2*; OpenBSD*)]
7159
- Parent=Links
7160
- Version=2.2
7161
- MajorVer=2
7162
- MinorVer=2
7163
- Platform=OpenBSD
7164
 
7165
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lynx
7166
 
7167
- [Lynx]
7168
  Parent=DefaultProperties
7169
- Browser="Lynx"
 
 
 
 
 
7170
  Frames=true
 
7171
  Tables=true
 
 
 
 
7172
 
7173
- [Lynx *]
7174
- Parent=Lynx
7175
- Browser="Lynx"
7176
-
7177
- [Lynx/2.3*]
7178
- Parent=Lynx
7179
- Browser="Lynx"
7180
- Version=2.3
7181
- MajorVer=2
7182
- MinorVer=3
7183
-
7184
- [Lynx/2.4*]
7185
- Parent=Lynx
7186
- Browser="Lynx"
7187
- Version=2.4
7188
- MajorVer=2
7189
- MinorVer=4
7190
 
7191
- [Lynx/2.5*]
7192
- Parent=Lynx
7193
- Browser="Lynx"
7194
- Version=2.5
7195
- MajorVer=2
7196
- MinorVer=5
7197
 
7198
- [Lynx/2.6*]
7199
- Parent=Lynx
7200
- Browser="Lynx"
7201
- Version=2.6
7202
- MajorVer=2
7203
- MinorVer=6
7204
 
7205
- [Lynx/2.7*]
7206
- Parent=Lynx
7207
- Browser="Lynx"
7208
- Version=2.7
7209
- MajorVer=2
7210
- MinorVer=7
7211
 
7212
- [Lynx/2.8*]
7213
- Parent=Lynx
7214
- Browser="Lynx"
7215
- Version=2.8
7216
- MajorVer=2
7217
- MinorVer=8
7218
 
7219
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NCSA Mosaic
 
 
 
7220
 
7221
- [Mosaic]
7222
- Parent=DefaultProperties
7223
- Browser="Mosaic"
 
7224
 
7225
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; w3m
7226
 
7227
- [w3m]
7228
  Parent=DefaultProperties
7229
- Browser="w3m"
 
 
 
 
 
7230
  Frames=true
 
7231
  Tables=true
 
 
 
 
7232
 
7233
- [w3m/0.1*]
7234
- Parent=w3m
7235
- Browser="w3m"
7236
- Version=0.1
7237
- MajorVer=0
7238
- MinorVer=1
7239
 
7240
- [w3m/0.2*]
7241
- Parent=w3m
7242
- Browser="w3m"
7243
- Version=0.2
7244
- MajorVer=0
7245
- MinorVer=2
7246
 
7247
- [w3m/0.3*]
7248
- Parent=w3m
7249
- Browser="w3m"
7250
- Version=0.3
7251
- MajorVer=0
7252
- MinorVer=3
7253
 
7254
- [w3m/0.4*]
7255
- Parent=w3m
7256
- Browser="w3m"
7257
- Version=0.4
7258
- MajorVer=0
7259
- MinorVer=4
7260
- Cookies=true
7261
 
7262
- [w3m/0.5*]
7263
- Parent=w3m
7264
- Browser="w3m"
7265
- Version=0.5
7266
- MajorVer=0
7267
- MinorVer=5
7268
- Cookies=true
7269
 
7270
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.10
 
 
 
7271
 
7272
- [ELinks 0.10]
 
 
 
 
 
 
 
7273
  Parent=DefaultProperties
7274
- Browser="ELinks"
7275
- Version=0.10
7276
- MinorVer=10
 
 
 
7277
  Frames=true
 
7278
  Tables=true
 
 
 
 
7279
 
7280
- [ELinks (0.10*; *AIX*)]
7281
- Parent=ELinks 0.10
7282
- Platform=AIX
 
7283
 
7284
- [ELinks (0.10*; *BeOS*)]
7285
- Parent=ELinks 0.10
7286
- Platform=BeOS
 
7287
 
7288
- [ELinks (0.10*; *CygWin*)]
7289
- Parent=ELinks 0.10
7290
- Platform=CygWin
 
7291
 
7292
- [ELinks (0.10*; *Darwin*)]
7293
- Parent=ELinks 0.10
7294
- Platform=Darwin
 
7295
 
7296
- [ELinks (0.10*; *Digital Unix*)]
7297
- Parent=ELinks 0.10
7298
- Platform=Digital Unix
 
7299
 
7300
- [ELinks (0.10*; *FreeBSD*)]
7301
- Parent=ELinks 0.10
7302
- Platform=FreeBSD
 
7303
 
7304
- [ELinks (0.10*; *HPUX*)]
7305
- Parent=ELinks 0.10
7306
- Platform=HP-UX
 
7307
 
7308
- [ELinks (0.10*; *IRIX*)]
7309
- Parent=ELinks 0.10
7310
- Platform=IRIX
7311
 
7312
- [ELinks (0.10*; *Linux*)]
7313
- Parent=ELinks 0.10
7314
- Platform=Linux
 
 
 
 
 
 
 
 
 
 
 
 
7315
 
7316
- [ELinks (0.10*; *NetBSD*)]
7317
- Parent=ELinks 0.10
7318
- Platform=NetBSD
 
7319
 
7320
- [ELinks (0.10*; *OpenBSD*)]
7321
- Parent=ELinks 0.10
7322
- Platform=OpenBSD
 
7323
 
7324
- [ELinks (0.10*; *OS/2*)]
7325
- Parent=ELinks 0.10
7326
- Platform=OS/2
 
7327
 
7328
- [ELinks (0.10*; *RISC*)]
7329
- Parent=ELinks 0.10
7330
- Platform=RISC OS
 
7331
 
7332
- [ELinks (0.10*; *Solaris*)]
7333
- Parent=ELinks 0.10
7334
- Platform=Solaris
 
7335
 
7336
- [ELinks (0.10*; *Unix*)]
7337
- Parent=ELinks 0.10
7338
- Platform=Unix
 
7339
 
7340
- [ELinks/0.10* (*AIX*)]
7341
- Parent=ELinks 0.10
7342
- Platform=AIX
 
7343
 
7344
- [ELinks/0.10* (*BeOS*)]
7345
- Parent=ELinks 0.10
7346
- Platform=BeOS
7347
 
7348
- [ELinks/0.10* (*CygWin*)]
7349
- Parent=ELinks 0.10
7350
- Platform=CygWin
 
 
 
 
 
 
 
 
 
 
 
 
7351
 
7352
- [ELinks/0.10* (*Darwin*)]
7353
- Parent=ELinks 0.10
7354
- Platform=Darwin
 
7355
 
7356
- [ELinks/0.10* (*Digital Unix*)]
7357
- Parent=ELinks 0.10
7358
- Platform=Digital Unix
 
7359
 
7360
- [ELinks/0.10* (*FreeBSD*)]
7361
- Parent=ELinks 0.10
7362
- Platform=FreeBSD
 
7363
 
7364
- [ELinks/0.10* (*HPUX*)]
7365
- Parent=ELinks 0.10
7366
- Platform=HP-UX
 
7367
 
7368
- [ELinks/0.10* (*IRIX*)]
7369
- Parent=ELinks 0.10
7370
- Platform=IRIX
 
7371
 
7372
- [ELinks/0.10* (*Linux*)]
7373
- Parent=ELinks 0.10
7374
- Platform=Linux
 
7375
 
7376
- [ELinks/0.10* (*NetBSD*)]
7377
- Parent=ELinks 0.10
7378
- Platform=NetBSD
 
7379
 
7380
- [ELinks/0.10* (*OpenBSD*)]
7381
- Parent=ELinks 0.10
7382
- Platform=OpenBSD
7383
 
7384
- [ELinks/0.10* (*OS/2*)]
7385
- Parent=ELinks 0.10
7386
- Platform=OS/2
 
 
 
 
 
 
 
 
 
 
 
 
7387
 
7388
- [ELinks/0.10* (*RISC*)]
7389
- Parent=ELinks 0.10
7390
- Platform=RISC OS
 
7391
 
7392
- [ELinks/0.10* (*Solaris*)]
7393
- Parent=ELinks 0.10
7394
- Platform=Solaris
 
7395
 
7396
- [ELinks/0.10* (*Unix*)]
7397
- Parent=ELinks 0.10
7398
- Platform=Unix
 
7399
 
7400
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.11
 
 
 
7401
 
7402
- [ELinks 0.11]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7403
  Parent=DefaultProperties
7404
- Browser="ELinks"
7405
- Version=0.11
7406
- MinorVer=11
 
 
 
7407
  Frames=true
 
7408
  Tables=true
 
 
 
 
7409
 
7410
- [ELinks (0.11*; *AIX*)]
7411
- Parent=ELinks 0.11
7412
- Platform=AIX
 
7413
 
7414
- [ELinks (0.11*; *BeOS*)]
7415
- Parent=ELinks 0.11
7416
- Platform=BeOS
 
7417
 
7418
- [ELinks (0.11*; *CygWin*)]
7419
- Parent=ELinks 0.11
7420
- Platform=CygWin
 
7421
 
7422
- [ELinks (0.11*; *Darwin*)]
7423
- Parent=ELinks 0.11
7424
- Platform=Darwin
 
7425
 
7426
- [ELinks (0.11*; *Digital Unix*)]
7427
- Parent=ELinks 0.11
7428
- Platform=Digital Unix
 
7429
 
7430
- [ELinks (0.11*; *FreeBSD*)]
7431
- Parent=ELinks 0.11
7432
- Platform=FreeBSD
 
7433
 
7434
- [ELinks (0.11*; *HPUX*)]
7435
- Parent=ELinks 0.11
7436
- Platform=HP-UX
 
7437
 
7438
- [ELinks (0.11*; *IRIX*)]
7439
- Parent=ELinks 0.11
7440
- Platform=IRIX
7441
 
7442
- [ELinks (0.11*; *Linux*)]
7443
- Parent=ELinks 0.11
7444
- Platform=Linux
 
 
 
 
 
 
 
 
 
 
 
 
7445
 
7446
- [ELinks (0.11*; *NetBSD*)]
7447
- Parent=ELinks 0.11
7448
- Platform=NetBSD
 
7449
 
7450
- [ELinks (0.11*; *OpenBSD*)]
7451
- Parent=ELinks 0.11
7452
- Platform=OpenBSD
 
7453
 
7454
- [ELinks (0.11*; *OS/2*)]
7455
- Parent=ELinks 0.11
7456
- Platform=OS/2
 
7457
 
7458
- [ELinks (0.11*; *RISC*)]
7459
- Parent=ELinks 0.11
7460
- Platform=RISC OS
 
7461
 
7462
- [ELinks (0.11*; *Solaris*)]
7463
- Parent=ELinks 0.11
7464
- Platform=Solaris
 
7465
 
7466
- [ELinks (0.11*; *Unix*)]
7467
- Parent=ELinks 0.11
7468
- Platform=Unix
 
7469
 
7470
- [ELinks/0.11* (*AIX*)]
7471
- Parent=ELinks 0.11
7472
- Platform=AIX
 
7473
 
7474
- [ELinks/0.11* (*BeOS*)]
7475
- Parent=ELinks 0.11
7476
- Platform=BeOS
7477
 
7478
- [ELinks/0.11* (*CygWin*)]
7479
- Parent=ELinks 0.11
7480
- Platform=CygWin
 
 
 
 
 
 
 
 
 
 
 
 
7481
 
7482
- [ELinks/0.11* (*Darwin*)]
7483
- Parent=ELinks 0.11
7484
- Platform=Darwin
 
7485
 
7486
- [ELinks/0.11* (*Digital Unix*)]
7487
- Parent=ELinks 0.11
7488
- Platform=Digital Unix
 
7489
 
7490
- [ELinks/0.11* (*FreeBSD*)]
7491
- Parent=ELinks 0.11
7492
- Platform=FreeBSD
 
7493
 
7494
- [ELinks/0.11* (*HPUX*)]
7495
- Parent=ELinks 0.11
7496
- Platform=HP-UX
 
7497
 
7498
- [ELinks/0.11* (*IRIX*)]
7499
- Parent=ELinks 0.11
7500
- Platform=IRIX
 
7501
 
7502
- [ELinks/0.11* (*Linux*)]
7503
- Parent=ELinks 0.11
7504
- Platform=Linux
 
7505
 
7506
- [ELinks/0.11* (*NetBSD*)]
7507
- Parent=ELinks 0.11
7508
- Platform=NetBSD
 
7509
 
7510
- [ELinks/0.11* (*OpenBSD*)]
7511
- Parent=ELinks 0.11
7512
- Platform=OpenBSD
7513
 
7514
- [ELinks/0.11* (*OS/2*)]
7515
- Parent=ELinks 0.11
7516
- Platform=OS/2
 
 
 
 
 
 
 
 
 
 
 
 
7517
 
7518
- [ELinks/0.11* (*RISC*)]
7519
- Parent=ELinks 0.11
7520
- Platform=RISC OS
 
7521
 
7522
- [ELinks/0.11* (*Solaris*)]
7523
- Parent=ELinks 0.11
7524
- Platform=Solaris
 
7525
 
7526
- [ELinks/0.11* (*Unix*)]
7527
- Parent=ELinks 0.11
7528
- Platform=Unix
 
7529
 
7530
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.12
 
 
 
7531
 
7532
- [ELinks 0.12]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7533
  Parent=DefaultProperties
7534
- Browser="ELinks"
7535
- Version=0.12
7536
- MinorVer=12
 
 
 
7537
  Frames=true
 
7538
  Tables=true
 
 
 
 
7539
 
7540
- [ELinks (0.12*; *AIX*)]
7541
- Parent=ELinks 0.12
7542
- Platform=AIX
 
7543
 
7544
- [ELinks (0.12*; *BeOS*)]
7545
- Parent=ELinks 0.12
7546
- Platform=BeOS
 
7547
 
7548
- [ELinks (0.12*; *CygWin*)]
7549
- Parent=ELinks 0.12
7550
- Platform=CygWin
 
7551
 
7552
- [ELinks (0.12*; *Darwin*)]
7553
- Parent=ELinks 0.12
7554
- Platform=Darwin
 
7555
 
7556
- [ELinks (0.12*; *Digital Unix*)]
7557
- Parent=ELinks 0.12
7558
- Platform=Digital Unix
 
7559
 
7560
- [ELinks (0.12*; *FreeBSD*)]
7561
- Parent=ELinks 0.12
7562
- Platform=FreeBSD
 
7563
 
7564
- [ELinks (0.12*; *HPUX*)]
7565
- Parent=ELinks 0.12
7566
- Platform=HP-UX
 
7567
 
7568
- [ELinks (0.12*; *IRIX*)]
7569
- Parent=ELinks 0.12
7570
- Platform=IRIX
7571
 
7572
- [ELinks (0.12*; *Linux*)]
7573
- Parent=ELinks 0.12
7574
- Platform=Linux
 
 
 
 
 
 
 
 
 
 
 
 
7575
 
7576
- [ELinks (0.12*; *NetBSD*)]
7577
- Parent=ELinks 0.12
7578
- Platform=NetBSD
 
7579
 
7580
- [ELinks (0.12*; *OpenBSD*)]
7581
- Parent=ELinks 0.12
7582
- Platform=OpenBSD
 
7583
 
7584
- [ELinks (0.12*; *OS/2*)]
7585
- Parent=ELinks 0.12
7586
- Platform=OS/2
 
7587
 
7588
- [ELinks (0.12*; *RISC*)]
7589
- Parent=ELinks 0.12
7590
- Platform=RISC OS
 
7591
 
7592
- [ELinks (0.12*; *Solaris*)]
7593
- Parent=ELinks 0.12
7594
- Platform=Solaris
 
7595
 
7596
- [ELinks (0.12*; *Unix*)]
7597
- Parent=ELinks 0.12
7598
- Platform=Unix
 
7599
 
7600
- [ELinks/0.12* (*AIX*)]
7601
- Parent=ELinks 0.12
7602
- Platform=AIX
 
7603
 
7604
- [ELinks/0.12* (*BeOS*)]
7605
- Parent=ELinks 0.12
7606
- Platform=BeOS
7607
 
7608
- [ELinks/0.12* (*CygWin*)]
7609
- Parent=ELinks 0.12
7610
- Platform=CygWin
 
 
 
 
 
 
 
 
7611
 
7612
- [ELinks/0.12* (*Darwin*)]
7613
- Parent=ELinks 0.12
7614
- Platform=Darwin
 
7615
 
7616
- [ELinks/0.12* (*Digital Unix*)]
7617
- Parent=ELinks 0.12
7618
- Platform=Digital Unix
 
7619
 
7620
- [ELinks/0.12* (*FreeBSD*)]
7621
- Parent=ELinks 0.12
7622
- Platform=FreeBSD
 
7623
 
7624
- [ELinks/0.12* (*HPUX*)]
7625
- Parent=ELinks 0.12
7626
- Platform=HP-UX
 
7627
 
7628
- [ELinks/0.12* (*IRIX*)]
7629
- Parent=ELinks 0.12
7630
- Platform=IRIX
 
7631
 
7632
- [ELinks/0.12* (*Linux*)]
7633
- Parent=ELinks 0.12
7634
- Platform=Linux
 
7635
 
7636
- [ELinks/0.12* (*NetBSD*)]
7637
- Parent=ELinks 0.12
7638
- Platform=NetBSD
 
7639
 
7640
- [ELinks/0.12* (*OpenBSD*)]
7641
- Parent=ELinks 0.12
7642
- Platform=OpenBSD
7643
 
7644
- [ELinks/0.12* (*OS/2*)]
7645
- Parent=ELinks 0.12
7646
- Platform=OS/2
 
 
 
 
 
 
 
 
 
7647
 
7648
- [ELinks/0.12* (*RISC*)]
7649
- Parent=ELinks 0.12
7650
- Platform=RISC OS
 
7651
 
7652
- [ELinks/0.12* (*Solaris*)]
7653
- Parent=ELinks 0.12
7654
- Platform=Solaris
 
7655
 
7656
- [ELinks/0.12* (*Unix*)]
7657
- Parent=ELinks 0.12
7658
- Platform=Unix
 
7659
 
7660
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.13
 
 
 
7661
 
7662
- [ELinks 0.13]
 
 
7663
  Parent=DefaultProperties
7664
- Browser="ELinks"
7665
- Version=0.13
7666
- MinorVer=13
 
 
 
7667
  Frames=true
 
7668
  Tables=true
 
 
 
 
7669
 
7670
- [ELinks (0.13*; *AIX*)]
7671
- Parent=ELinks 0.13
7672
- Platform=AIX
7673
-
7674
- [ELinks (0.13*; *BeOS*)]
7675
- Parent=ELinks 0.13
7676
- Platform=BeOS
7677
-
7678
- [ELinks (0.13*; *CygWin*)]
7679
- Parent=ELinks 0.13
7680
- Platform=CygWin
7681
 
7682
- [ELinks (0.13*; *Darwin*)]
7683
- Parent=ELinks 0.13
7684
- Platform=Darwin
 
7685
 
7686
- [ELinks (0.13*; *Digital Unix*)]
7687
- Parent=ELinks 0.13
7688
- Platform=Digital Unix
 
7689
 
7690
- [ELinks (0.13*; *FreeBSD*)]
7691
- Parent=ELinks 0.13
7692
- Platform=FreeBSD
 
7693
 
7694
- [ELinks (0.13*; *HPUX*)]
7695
- Parent=ELinks 0.13
7696
- Platform=HP-UX
 
7697
 
7698
- [ELinks (0.13*; *IRIX*)]
7699
- Parent=ELinks 0.13
7700
- Platform=IRIX
 
7701
 
7702
- [ELinks (0.13*; *Linux*)]
7703
- Parent=ELinks 0.13
7704
- Platform=Linux
 
7705
 
7706
- [ELinks (0.13*; *NetBSD*)]
7707
- Parent=ELinks 0.13
7708
- Platform=NetBSD
 
7709
 
7710
- [ELinks (0.13*; *OpenBSD*)]
7711
- Parent=ELinks 0.13
7712
- Platform=OpenBSD
7713
 
7714
- [ELinks (0.13*; *OS/2*)]
7715
- Parent=ELinks 0.13
7716
- Platform=OS/2
 
 
 
 
 
 
 
 
 
 
 
 
7717
 
7718
- [ELinks (0.13*; *RISC*)]
7719
- Parent=ELinks 0.13
7720
- Platform=RISC OS
 
7721
 
7722
- [ELinks (0.13*; *Solaris*)]
7723
- Parent=ELinks 0.13
7724
- Platform=Solaris
 
7725
 
7726
- [ELinks (0.13*; *Unix*)]
7727
- Parent=ELinks 0.13
7728
- Platform=Unix
 
7729
 
7730
- [ELinks/0.13* (*AIX*)]
7731
- Parent=ELinks 0.13
7732
- Platform=AIX
 
7733
 
7734
- [ELinks/0.13* (*BeOS*)]
7735
- Parent=ELinks 0.13
7736
- Platform=BeOS
 
7737
 
7738
- [ELinks/0.13* (*CygWin*)]
7739
- Parent=ELinks 0.13
7740
- Platform=CygWin
 
7741
 
7742
- [ELinks/0.13* (*Darwin*)]
7743
- Parent=ELinks 0.13
7744
- Platform=Darwin
 
7745
 
7746
- [ELinks/0.13* (*Digital Unix*)]
7747
- Parent=ELinks 0.13
7748
- Platform=Digital Unix
 
7749
 
7750
- [ELinks/0.13* (*FreeBSD*)]
7751
- Parent=ELinks 0.13
7752
- Platform=FreeBSD
7753
 
7754
- [ELinks/0.13* (*HPUX*)]
7755
- Parent=ELinks 0.13
7756
- Platform=HP-UX
 
 
 
 
 
 
 
 
 
 
 
 
7757
 
7758
- [ELinks/0.13* (*IRIX*)]
7759
- Parent=ELinks 0.13
7760
- Platform=IRIX
 
7761
 
7762
- [ELinks/0.13* (*Linux*)]
7763
- Parent=ELinks 0.13
7764
- Platform=Linux
 
7765
 
7766
- [ELinks/0.13* (*NetBSD*)]
7767
- Parent=ELinks 0.13
7768
- Platform=NetBSD
 
7769
 
7770
- [ELinks/0.13* (*OpenBSD*)]
7771
- Parent=ELinks 0.13
7772
- Platform=OpenBSD
 
7773
 
7774
- [ELinks/0.13* (*OS/2*)]
7775
- Parent=ELinks 0.13
7776
- Platform=OS/2
 
7777
 
7778
- [ELinks/0.13* (*RISC*)]
7779
- Parent=ELinks 0.13
7780
- Platform=RISC OS
 
7781
 
7782
- [ELinks/0.13* (*Solaris*)]
7783
- Parent=ELinks 0.13
7784
- Platform=Solaris
 
7785
 
7786
- [ELinks/0.13* (*Unix*)]
7787
- Parent=ELinks 0.13
7788
- Platform=Unix
 
7789
 
7790
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.9
7791
 
7792
- [ELinks 0.9]
7793
  Parent=DefaultProperties
7794
- Browser="ELinks"
 
7795
  Version=0.9
 
7796
  MinorVer=9
 
7797
  Frames=true
 
7798
  Tables=true
 
 
 
 
7799
 
7800
- [ELinks (0.9*; *AIX*)]
7801
- Parent=ELinks 0.9
7802
- Platform=AIX
 
7803
 
7804
- [ELinks (0.9*; *BeOS*)]
7805
- Parent=ELinks 0.9
7806
- Platform=BeOS
 
7807
 
7808
- [ELinks (0.9*; *CygWin*)]
7809
- Parent=ELinks 0.9
7810
- Platform=CygWin
 
7811
 
7812
- [ELinks (0.9*; *Darwin*)]
7813
- Parent=ELinks 0.9
7814
- Platform=Darwin
 
7815
 
7816
- [ELinks (0.9*; *Digital Unix*)]
7817
- Parent=ELinks 0.9
7818
- Platform=Digital Unix
 
7819
 
7820
- [ELinks (0.9*; *FreeBSD*)]
7821
- Parent=ELinks 0.9
7822
- Platform=FreeBSD
 
7823
 
7824
- [ELinks (0.9*; *HPUX*)]
7825
- Parent=ELinks 0.9
7826
- Platform=HP-UX
 
7827
 
7828
- [ELinks (0.9*; *IRIX*)]
7829
- Parent=ELinks 0.9
7830
- Platform=IRIX
 
7831
 
7832
- [ELinks (0.9*; *Linux*)]
7833
- Parent=ELinks 0.9
7834
- Platform=Linux
7835
 
7836
- [ELinks (0.9*; *NetBSD*)]
7837
- Parent=ELinks 0.9
7838
- Platform=NetBSD
 
 
 
 
 
 
 
 
7839
 
7840
- [ELinks (0.9*; *OpenBSD*)]
7841
- Parent=ELinks 0.9
7842
- Platform=OpenBSD
 
7843
 
7844
- [ELinks (0.9*; *OS/2*)]
7845
- Parent=ELinks 0.9
7846
- Platform=OS/2
 
7847
 
7848
- [ELinks (0.9*; *RISC*)]
7849
- Parent=ELinks 0.9
7850
- Platform=RISC OS
 
7851
 
7852
- [ELinks (0.9*; *Solaris*)]
7853
- Parent=ELinks 0.9
7854
- Platform=Solaris
 
7855
 
7856
- [ELinks (0.9*; *Unix*)]
7857
- Parent=ELinks 0.9
7858
- Platform=Unix
 
7859
 
7860
- [ELinks/0.9* (*AIX*)]
7861
- Parent=ELinks 0.9
7862
- Platform=AIX
 
7863
 
7864
- [ELinks/0.9* (*BeOS*)]
7865
- Parent=ELinks 0.9
7866
- Platform=BeOS
 
7867
 
7868
- [ELinks/0.9* (*CygWin*)]
7869
- Parent=ELinks 0.9
7870
- Platform=CygWin
 
7871
 
7872
- [ELinks/0.9* (*Darwin*)]
7873
- Parent=ELinks 0.9
7874
- Platform=Darwin
7875
 
7876
- [ELinks/0.9* (*Digital Unix*)]
7877
- Parent=ELinks 0.9
7878
- Platform=Digital Unix
 
 
7879
 
7880
- [ELinks/0.9* (*FreeBSD*)]
7881
- Parent=ELinks 0.9
7882
- Platform=FreeBSD
7883
 
7884
- [ELinks/0.9* (*HPUX*)]
7885
- Parent=ELinks 0.9
7886
- Platform=HP-UX
 
7887
 
7888
- [ELinks/0.9* (*IRIX*)]
7889
- Parent=ELinks 0.9
7890
- Platform=IRIX
 
 
 
7891
 
7892
- [ELinks/0.9* (*Linux*)]
7893
- Parent=ELinks 0.9
7894
- Platform=Linux
 
 
 
7895
 
7896
- [ELinks/0.9* (*NetBSD*)]
7897
- Parent=ELinks 0.9
7898
- Platform=NetBSD
7899
 
7900
- [ELinks/0.9* (*OpenBSD*)]
7901
- Parent=ELinks 0.9
7902
- Platform=OpenBSD
7903
 
7904
- [ELinks/0.9* (*OS/2*)]
7905
- Parent=ELinks 0.9
7906
- Platform=OS/2
7907
 
7908
- [ELinks/0.9* (*RISC*)]
7909
- Parent=ELinks 0.9
7910
- Platform=RISC OS
7911
 
7912
- [ELinks/0.9* (*Solaris*)]
7913
- Parent=ELinks 0.9
7914
- Platform=Solaris
7915
 
7916
- [ELinks/0.9* (*Unix*)]
7917
- Parent=ELinks 0.9
7918
- Platform=Unix
7919
 
7920
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AppleWebKit
7921
 
7922
- [AppleWebKit]
7923
  Parent=DefaultProperties
7924
- Browser="AppleWebKit"
7925
- Frames=true
7926
- IFrames=true
7927
- Tables=true
7928
- Cookies=true
7929
- BackgroundSounds=true
7930
- JavaApplets=true
7931
- JavaScript=true
7932
- CssVersion=2
7933
- supportsCSS=true
7934
 
7935
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (KHTML, like Gecko)]
7936
- Parent=AppleWebKit
 
 
 
7937
 
7938
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Camino
 
 
 
 
7939
 
7940
- [Camino]
 
 
7941
  Parent=DefaultProperties
7942
- Browser="Camino"
7943
- Platform=MacOSX
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7944
  Frames=true
7945
  IFrames=true
7946
  Tables=true
7947
  Cookies=true
7948
- JavaApplets=true
7949
- JavaScript=true
7950
- CssVersion=2
7951
- supportsCSS=true
7952
 
7953
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.7*]
7954
- Parent=Camino
7955
- Version=0.7
7956
- MajorVer=0
7957
- MinorVer=7
7958
- Beta=true
7959
 
7960
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.8*]
7961
- Parent=Camino
7962
- Version=0.8
7963
- MajorVer=0
7964
- MinorVer=8
7965
- Beta=true
7966
 
7967
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.9*]
7968
- Parent=Camino
7969
- Version=0.9
7970
- MajorVer=0
7971
- MinorVer=9
7972
- Beta=true
7973
 
7974
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.0*]
7975
- Parent=Camino
7976
- Version=1.0
7977
- MajorVer=1
7978
  MinorVer=0
7979
 
7980
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.2*]
7981
- Parent=Camino
7982
- Version=1.2
7983
- MajorVer=1
7984
- MinorVer=2
7985
 
7986
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.3*]
7987
- Parent=Camino
7988
- Version=1.3
7989
- MajorVer=1
7990
- MinorVer=3
7991
- Platform=MacOSX
7992
 
7993
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.4*]
7994
- Parent=Camino
7995
- Version=1.4
7996
- MajorVer=1
7997
- MinorVer=4
7998
- Platform=MacOSX
7999
 
8000
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.5*]
8001
- Parent=Camino
8002
- Version=1.5
8003
- MajorVer=1
8004
- MinorVer=5
8005
- Platform=MacOSX
8006
 
8007
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.6*]
8008
- Parent=Camino
8009
- Version=1.6
8010
- MajorVer=1
8011
- MinorVer=6
8012
- Platform=MacOSX
8013
 
8014
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chimera
 
 
 
 
8015
 
8016
- [Chimera]
 
 
 
 
 
 
 
 
8017
  Parent=DefaultProperties
8018
- Browser="Chimera"
 
 
 
 
 
8019
  Frames=true
8020
  IFrames=true
8021
  Tables=true
8022
  Cookies=true
8023
- JavaApplets=true
8024
- JavaScript=true
8025
-
8026
- [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Chimera/*]
8027
- Parent=Chimera
8028
- Platform=MacOSX
8029
 
8030
- [Mozilla/5.0 Gecko/* Chimera/*]
8031
- Parent=Chimera
 
 
8032
 
8033
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dillo
 
 
 
8034
 
8035
- [Dillo]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8036
  Parent=DefaultProperties
8037
- Browser="Dillo"
8038
- Platform=Linux
 
 
 
 
8039
  Frames=true
8040
  IFrames=true
8041
  Tables=true
8042
  Cookies=true
8043
- CssVersion=2
8044
- supportsCSS=true
8045
 
8046
- [Dillo/0.6*]
8047
- Parent=Dillo
8048
- Version=0.6
8049
- MajorVer=0
8050
- MinorVer=6
8051
 
8052
- [Dillo/0.7*]
8053
- Parent=Dillo
8054
- Version=0.7
8055
- MajorVer=0
8056
- MinorVer=7
8057
-
8058
- [Dillo/0.8*]
8059
- Parent=Dillo
8060
- Version=0.8
8061
- MajorVer=0
8062
- MinorVer=8
8063
 
8064
- [Dillo/2.0]
8065
- Parent=Dillo
8066
- Version=2.0
8067
- MajorVer=2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8068
  MinorVer=0
 
 
 
 
 
8069
 
8070
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Emacs/W3
 
 
 
8071
 
8072
- [Emacs/W3]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8073
  Parent=DefaultProperties
8074
- Browser="Emacs/W3"
 
 
 
 
 
8075
  Frames=true
 
8076
  Tables=true
8077
  Cookies=true
8078
 
8079
- [Emacs/W3/2.* (Unix*]
8080
- Parent=Emacs/W3
8081
- Version=2.0
8082
- MajorVer=2
8083
- MinorVer=0
8084
- Platform=Unix
8085
 
8086
- [Emacs/W3/2.* (X11*]
8087
- Parent=Emacs/W3
8088
- Version=2.0
8089
- MajorVer=2
8090
- MinorVer=0
8091
- Platform=Linux
8092
 
8093
- [Emacs/W3/3.* (Unix*]
8094
- Parent=Emacs/W3
8095
- Version=3.0
8096
- MajorVer=3
8097
- MinorVer=0
8098
- Platform=Unix
8099
 
8100
- [Emacs/W3/3.* (X11*]
8101
- Parent=Emacs/W3
8102
- Version=3.0
8103
- MajorVer=3
8104
- MinorVer=0
8105
- Platform=Linux
8106
 
8107
- [Emacs/W3/4.* (Unix*]
8108
- Parent=Emacs/W3
8109
- Version=4.0
8110
- MajorVer=4
8111
- MinorVer=0
8112
- Platform=Unix
8113
 
8114
- [Emacs/W3/4.* (X11*]
8115
- Parent=Emacs/W3
8116
- Version=4.0
8117
- MajorVer=4
8118
- MinorVer=0
8119
- Platform=Linux
8120
 
8121
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; fantomas
 
 
 
8122
 
8123
- [fantomas]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8124
  Parent=DefaultProperties
8125
- Browser="fantomas"
 
 
 
 
 
8126
  Frames=true
8127
  IFrames=true
8128
  Tables=true
8129
  Cookies=true
8130
- JavaScript=true
8131
 
8132
- [Mozilla/4.0 (cloakBrowser)]
8133
- Parent=fantomas
8134
- Browser="fantomas cloakBrowser"
 
8135
 
8136
- [Mozilla/4.0 (fantomas shadowMaker Browser)]
8137
- Parent=fantomas
8138
- Browser="fantomas shadowMaker Browser"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8139
 
8140
- [Mozilla/4.0 (fantomBrowser)]
8141
- Parent=fantomas
8142
- Browser="fantomas fantomBrowser"
8143
 
8144
- [Mozilla/4.0 (fantomCrew Browser)]
8145
- Parent=fantomas
8146
- Browser="fantomas fantomCrew Browser"
 
 
 
 
8147
 
8148
- [Mozilla/4.0 (stealthBrowser)]
8149
- Parent=fantomas
8150
- Browser="fantomas stealthBrowser"
8151
 
8152
- [multiBlocker browser*]
8153
- Parent=fantomas
8154
- Browser="fantomas multiBlocker browser"
 
8155
 
8156
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FrontPage
8157
 
8158
- [FrontPage]
8159
  Parent=DefaultProperties
8160
- Browser="FrontPage"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8161
  Frames=true
8162
- IFrames=true
8163
  Tables=true
8164
- Cookies=true
8165
- JavaScript=true
8166
 
8167
- [Mozilla/?* (compatible; MS FrontPage*)]
8168
- Parent=FrontPage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8169
 
8170
- [MSFrontPage/*]
8171
- Parent=FrontPage
 
 
8172
 
8173
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Galeon
 
 
 
8174
 
8175
- [Galeon]
 
 
 
 
 
 
 
 
 
8176
  Parent=DefaultProperties
8177
- Browser="Galeon"
8178
- Platform=Linux
 
 
8179
  Frames=true
8180
  IFrames=true
8181
  Tables=true
8182
  Cookies=true
8183
- JavaApplets=true
8184
  JavaScript=true
 
8185
  CssVersion=2
8186
- supportsCSS=true
8187
 
8188
- [Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/1.*]
8189
- Parent=Galeon
8190
- Version=1.0
8191
- MajorVer=1
8192
- MinorVer=0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8193
 
8194
- [Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/2.*]
8195
- Parent=Galeon
8196
- Version=2.0
8197
- MajorVer=2
8198
- MinorVer=0
8199
 
8200
- [Mozilla/5.0 Galeon/1.* (X11; Linux*)*]
8201
- Parent=Galeon
8202
- Version=1.0
8203
- MajorVer=1
 
 
8204
  MinorVer=0
 
 
 
 
 
 
 
8205
 
8206
- [Mozilla/5.0 Galeon/2.* (X11; Linux*)*]
8207
- Parent=Galeon
8208
- Version=2.0
8209
- MajorVer=2
8210
- MinorVer=0
8211
 
8212
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; HP Secure Web Browser
 
 
 
8213
 
8214
- [HP Secure Web Browser]
 
 
 
 
 
 
 
 
 
8215
  Parent=DefaultProperties
8216
- Browser="HP Secure Web Browser"
8217
- Platform=OpenVMS
 
 
8218
  Frames=true
8219
  IFrames=true
8220
  Tables=true
8221
  Cookies=true
8222
- JavaApplets=true
8223
  JavaScript=true
8224
- CssVersion=2
8225
- supportsCSS=true
8226
 
8227
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.0*) Gecko/*]
8228
- Parent=HP Secure Web Browser
8229
- Version=1.0
8230
- MajorVer=1
8231
  MinorVer=0
 
8232
 
8233
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.1*) Gecko/*]
8234
- Parent=HP Secure Web Browser
8235
- Version=1.1
8236
- MajorVer=1
 
 
 
 
 
 
 
8237
  MinorVer=1
 
8238
 
8239
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.2*) Gecko/*]
8240
- Parent=HP Secure Web Browser
8241
- Version=1.2
8242
- MajorVer=1
8243
  MinorVer=2
 
8244
 
8245
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.3*) Gecko/*]
8246
- Parent=HP Secure Web Browser
8247
- Version=1.3
8248
- MajorVer=1
8249
- MinorVer=3
8250
-
8251
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.4*) Gecko/*]
8252
- Parent=HP Secure Web Browser
8253
- Version=1.4
8254
- MajorVer=1
8255
  MinorVer=4
 
8256
 
8257
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.5*) Gecko/*]
8258
- Parent=HP Secure Web Browser
8259
- Version=1.5
8260
- MajorVer=1
8261
  MinorVer=5
 
8262
 
8263
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.6*) Gecko/*]
8264
- Parent=HP Secure Web Browser
8265
- Version=1.6
8266
- MajorVer=1
8267
- MinorVer=6
8268
 
8269
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.7*) Gecko/*]
8270
- Parent=HP Secure Web Browser
8271
- Version=1.7
8272
- MajorVer=1
8273
- MinorVer=7
8274
-
8275
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.8*) Gecko/*]
8276
- Parent=HP Secure Web Browser
8277
- Version=1.8
8278
- MajorVer=1
8279
- MinorVer=8
8280
-
8281
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IBrowse
8282
-
8283
- [IBrowse]
8284
  Parent=DefaultProperties
8285
- Browser="IBrowse"
8286
- Platform=Amiga
8287
  Frames=true
 
8288
  Tables=true
8289
  Cookies=true
8290
  JavaScript=true
 
8291
 
8292
- [Arexx (compatible; MSIE 6.0; AmigaOS5.0) IBrowse 4.0]
8293
- Parent=IBrowse
8294
- Version=4.0
8295
- MajorVer=4
8296
  MinorVer=0
 
8297
 
8298
- [IBrowse/1.22 (AmigaOS *)]
8299
- Parent=IBrowse
8300
- Version=1.22
8301
- MajorVer=1
8302
- MinorVer=22
8303
-
8304
- [IBrowse/2.1 (AmigaOS *)]
8305
- Parent=IBrowse
8306
  Version=2.1
8307
  MajorVer=2
8308
  MinorVer=1
 
8309
 
8310
- [IBrowse/2.2 (AmigaOS *)]
8311
- Parent=IBrowse
8312
- Version=2.2
8313
- MajorVer=2
8314
- MinorVer=2
8315
-
8316
- [IBrowse/2.3 (AmigaOS *)]
8317
- Parent=IBrowse
8318
- Version=2.2
8319
- MajorVer=2
8320
- MinorVer=3
8321
 
8322
- [Mozilla/* (Win98; I) IBrowse/2.1 (AmigaOS 3.1)]
8323
- Parent=IBrowse
8324
- Version=2.1
8325
- MajorVer=2
8326
  MinorVer=1
 
8327
 
8328
- [Mozilla/* (Win98; I) IBrowse/2.2 (AmigaOS 3.1)]
8329
- Parent=IBrowse
8330
- Version=2.2
8331
- MajorVer=2
8332
- MinorVer=2
8333
-
8334
- [Mozilla/* (Win98; I) IBrowse/2.3 (AmigaOS 3.1)]
8335
- Parent=IBrowse
8336
- Version=2.3
8337
- MajorVer=2
8338
- MinorVer=3
8339
-
8340
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iCab
8341
 
8342
- [iCab]
8343
  Parent=DefaultProperties
8344
- Browser="iCab"
 
 
8345
  Frames=true
 
8346
  Tables=true
8347
  Cookies=true
8348
  JavaScript=true
 
 
8349
  CssVersion=1
8350
- supportsCSS=true
8351
-
8352
- [iCab/2.7* (Macintosh; ?; 68K*)]
8353
- Parent=iCab
8354
- Version=2.7
8355
- MajorVer=2
8356
- MinorVer=7
8357
- Platform=Mac68K
8358
-
8359
- [iCab/2.7* (Macintosh; ?; PPC*)]
8360
- Parent=iCab
8361
- Version=2.7
8362
- MajorVer=2
8363
- MinorVer=7
8364
- Platform=MacPPC
8365
-
8366
- [iCab/2.8* (Macintosh; ?; *Mac OS X*)]
8367
- Parent=iCab
8368
- Version=2.8
8369
- MajorVer=2
8370
- MinorVer=8
8371
- Platform=MacOSX
8372
-
8373
- [iCab/2.8* (Macintosh; ?; 68K*)]
8374
- Parent=iCab
8375
- Version=2.8
8376
- MajorVer=2
8377
- MinorVer=8
8378
- Platform=Mac68K
8379
 
8380
- [iCab/2.8* (Macintosh; ?; PPC)]
8381
- Parent=iCab
8382
- Version=2.8
8383
- MajorVer=2
8384
- MinorVer=8
8385
- Platform=MacPPC
8386
 
8387
- [iCab/2.9* (Macintosh; ?; *Mac OS X*)]
8388
- Parent=iCab
8389
- Version=2.9
8390
  MajorVer=2
8391
- MinorVer=9
8392
- Platform=MacOSX
8393
 
8394
- [iCab/2.9* (Macintosh; ?; 68K*)]
8395
- Parent=iCab
8396
- Version=2.9
8397
- MajorVer=2
8398
- MinorVer=9
8399
- Platform=Mac68K
8400
 
8401
- [iCab/2.9* (Macintosh; ?; PPC*)]
8402
- Parent=iCab
8403
- Version=2.9
8404
- MajorVer=2
8405
- MinorVer=9
8406
- Platform=MacPPC
 
 
 
 
 
 
8407
 
8408
- [iCab/3.0* (Macintosh; ?; *Mac OS X*)]
8409
- Parent=iCab
8410
- Version=3.0
8411
- MajorVer=3
8412
  MinorVer=0
8413
- Platform=MacOSX
8414
- CssVersion=2
8415
- supportsCSS=true
8416
 
8417
- [iCab/3.0* (Macintosh; ?; PPC*)]
8418
- Parent=iCab
8419
- Version=3.0
8420
- MajorVer=3
8421
  MinorVer=0
8422
- Platform=MacPPC
8423
- CssVersion=2
8424
- supportsCSS=true
8425
 
8426
- [iCab/4.0 (Macintosh; U; *Mac OS X)]
8427
- Parent=iCab
8428
- Version=4.0
8429
- MajorVer=4
8430
  MinorVer=0
8431
- Platform=MacOSX
8432
 
8433
- [Mozilla/* (compatible; iCab 3.0*; Macintosh; *Mac OS X*)]
8434
- Parent=iCab
8435
- Version=3.0
8436
- MajorVer=3
8437
  MinorVer=0
8438
- Platform=MacOSX
8439
- CssVersion=2
8440
- supportsCSS=true
8441
 
8442
- [Mozilla/* (compatible; iCab 3.0*; Macintosh; ?; PPC*)]
8443
- Parent=iCab
8444
- Version=3.0
8445
- MajorVer=3
8446
  MinorVer=0
8447
- Platform=MacPPC
8448
- CssVersion=2
8449
- supportsCSS=true
8450
 
8451
- [Mozilla/4.5 (compatible; iCab 2.7*; Macintosh; ?; 68K*)]
8452
- Parent=iCab
8453
- Version=2.7
8454
- MajorVer=2
8455
- MinorVer=7
8456
- Platform=Mac68K
8457
 
8458
- [Mozilla/4.5 (compatible; iCab 2.7*; Macintosh; ?; PPC*)]
8459
- Parent=iCab
8460
- Version=2.7
8461
- MajorVer=2
8462
- MinorVer=7
8463
- Platform=MacPPC
8464
 
8465
- [Mozilla/4.5 (compatible; iCab 2.8*; Macintosh; ?; *Mac OS X*)]
8466
- Parent=iCab
8467
- Version=2.8
8468
- MajorVer=2
8469
- MinorVer=8
8470
- Platform=MacOSX
 
 
 
 
 
8471
 
8472
- [Mozilla/4.5 (compatible; iCab 2.8*; Macintosh; ?; PPC*)]
8473
- Parent=iCab
8474
- Version=2.8
8475
- MajorVer=2
8476
- MinorVer=8
8477
- Platform=MacPPC
8478
 
8479
- [Mozilla/4.5 (compatible; iCab 2.9*; Macintosh; *Mac OS X*)]
8480
- Parent=iCab
8481
- Version=2.9
8482
- MajorVer=2
8483
- MinorVer=9
8484
- Platform=MacOSX
8485
 
8486
- [Mozilla/4.5 (compatible; iCab 2.9*; Macintosh; ?; PPC*)]
8487
- Parent=iCab
8488
- Version=2.9
8489
- MajorVer=2
8490
- MinorVer=9
8491
- Platform=MacPPC
 
 
 
 
 
8492
 
8493
- [Mozilla/4.5 (compatible; iCab 4.2*; Macintosh; *Mac OS X*)]
8494
- Parent=iCab
8495
- Version=4.2
8496
- MajorVer=4
8497
- MinorVer=2
8498
- Platform=MacOSX
8499
 
8500
- [Mozilla/5.0 (Macintosh; U; Intel Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) iCab/4.7 Safari/*]
8501
- Parent=iCab
8502
- Version=4.7
 
 
8503
  MajorVer=4
8504
- MinorVer=7
 
8505
 
8506
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iSiloX
8507
 
8508
- [iSiloX]
8509
  Parent=DefaultProperties
8510
- Browser="iSiloX"
 
8511
  Frames=true
8512
  IFrames=true
8513
  Tables=true
8514
  Cookies=true
8515
  JavaScript=true
8516
- Crawler=true
8517
  CssVersion=2
8518
- supportsCSS=true
8519
 
8520
- [iSiloX/4.0* MacOS]
8521
- Parent=iSiloX
8522
- Version=4.0
8523
- MajorVer=4
8524
- MinorVer=0
8525
- Platform=MacPPC
8526
 
8527
- [iSiloX/4.0* Windows/32]
8528
- Parent=iSiloX
8529
- Version=4.0
8530
- MajorVer=4
8531
- MinorVer=0
8532
- Platform=Win32
8533
- Win32=true
8534
 
8535
- [iSiloX/4.1* MacOS]
8536
- Parent=iSiloX
8537
- Version=4.1
8538
- MajorVer=4
8539
- MinorVer=1
8540
- Platform=MacPPC
8541
-
8542
- [iSiloX/4.1* Windows/32]
8543
- Parent=iSiloX
8544
- Version=4.1
8545
- MajorVer=4
8546
- MinorVer=1
8547
- Platform=Win32
8548
- Win32=true
8549
-
8550
- [iSiloX/4.2* MacOS]
8551
- Parent=iSiloX
8552
- Version=4.2
8553
- MajorVer=4
8554
- MinorVer=2
8555
- Platform=MacPPC
8556
-
8557
- [iSiloX/4.2* Windows/32]
8558
- Parent=iSiloX
8559
- Version=4.2
8560
- MajorVer=4
8561
- MinorVer=2
8562
- Platform=Win32
8563
- Win32=true
8564
-
8565
- [iSiloX/4.3* MacOS]
8566
- Parent=iSiloX
8567
- Version=4.3
8568
- MajorVer=4
8569
- MinorVer=4
8570
- Platform=MacOSX
8571
-
8572
- [iSiloX/4.3* Windows/32]
8573
- Parent=iSiloX
8574
- Version=4.3
8575
- MajorVer=4
8576
- MinorVer=3
8577
- Platform=Win32
8578
- Win32=true
8579
-
8580
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycoris Desktop/LX
8581
-
8582
- [Lycoris Desktop/LX]
8583
  Parent=DefaultProperties
8584
- Browser="Lycoris Desktop/LX"
 
8585
  Frames=true
8586
  IFrames=true
8587
  Tables=true
8588
  Cookies=true
8589
- JavaApplets=true
8590
- JavaScript=true
8591
- Crawler=true
8592
 
8593
- [Mozilla/5.0 (X11; U; Linux i686*; en-US; rv:1.*: Desktop/LX Amethyst) Gecko/*]
8594
- Parent=Lycoris Desktop/LX
8595
- Version=1.1
8596
- MajorVer=1
8597
- MinorVer=1
8598
- Platform=Linux
8599
 
8600
- [Mozilla/5.0 (X11; U; Linux i686*; en-US; rv:1.*; Desktop/LX Amethyst) Gecko/*]
8601
- Parent=Lycoris Desktop/LX
8602
- Version=1.0
8603
- MajorVer=1
8604
- MinorVer=0
8605
- Platform=Linux
8606
 
8607
- [Mozilla/4.0 (VMS_Mosaic)]
8608
- Parent=Mosaic
8609
- Platform=OpenVMS
8610
 
8611
- [VMS_Mosaic/3.7*]
8612
- Parent=Mosaic
8613
- Version=3.7
8614
- MajorVer=3
8615
- MinorVer=7
8616
- Platform=OpenVMS
8617
 
8618
- [VMS_Mosaic/3.8*]
8619
- Parent=Mosaic
8620
- Version=3.8
8621
- MajorVer=3
8622
- MinorVer=8
8623
- Platform=OpenVMS
8624
 
8625
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetPositive
 
8626
 
8627
- [NetPositive]
8628
- Parent=DefaultProperties
8629
- Browser="NetPositive"
8630
- Platform=BeOS
8631
- Frames=true
8632
- IFrames=true
8633
- Tables=true
8634
- Cookies=true
8635
- JavaApplets=true
8636
- JavaScript=true
8637
 
8638
- [*NetPositive/2.2*]
8639
- Parent=NetPositive
8640
- Version=2.2
8641
- MajorVer=2
8642
- MinorVer=2
8643
 
8644
- [*NetPositive/2.2*BeOS*]
8645
- Parent=NetPositive
8646
- Version=2.2
8647
- MajorVer=2
8648
- MinorVer=2
8649
 
8650
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb
 
8651
 
8652
- [OmniWeb]
8653
- Parent=DefaultProperties
8654
- Browser="OmniWeb"
8655
- Platform=MacOSX
8656
- Frames=true
8657
- Tables=true
8658
- Cookies=true
8659
- JavaApplets=true
8660
- JavaScript=true
8661
- isMobileDevice=true
8662
- CssVersion=2
8663
- supportsCSS=true
8664
 
8665
- [Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v4*]
8666
- Parent=OmniWeb
8667
- Version=4.5
8668
- MajorVer=4
8669
- MinorVer=5
8670
- Platform=MacOSX
8671
 
8672
- [Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v5*]
8673
- Parent=OmniWeb
8674
- Version=5.
8675
- MajorVer=5
8676
- MinorVer=0
8677
- Platform=MacOSX
8678
 
8679
- [Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v6*]
8680
- Parent=OmniWeb
8681
- Version=6.0
8682
- MajorVer=6
8683
- MinorVer=0
8684
- Platform=MacOSX
8685
 
8686
- [Mozilla/* (Macintosh; ?; PPC) OmniWeb/4*]
8687
- Parent=OmniWeb
8688
- Version=4.0
8689
- MajorVer=4
8690
- MinorVer=0
8691
- Platform=MacPPC
8692
 
8693
- [Mozilla/* (Macintosh; ?; PPC) OmniWeb/5*]
8694
- Parent=OmniWeb
8695
- Version=5.0
8696
- MajorVer=5
8697
- MinorVer=0
8698
- Platform=MacOSX
8699
 
8700
- [Mozilla/* (Macintosh; ?; PPC) OmniWeb/6*]
8701
- Parent=OmniWeb
8702
- Version=6.0
8703
- MajorVer=6
8704
- MinorVer=0
8705
- Platform=MacPPC
8706
 
8707
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.34]
8708
- Parent=OmniWeb
8709
- Version=5.1
8710
- MajorVer=5
8711
- MinorVer=1
8712
 
8713
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/420+ (KHTML, like Gecko, Safari/420) OmniWeb/v607]
8714
- Parent=OmniWeb
8715
- Version=5.5
8716
- MajorVer=5
8717
- MinorVer=5
8718
 
8719
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/522+ (KHTML, like Gecko, Safari/522) OmniWeb/v613]
8720
- Parent=OmniWeb
8721
- Version=5.6
8722
- MajorVer=5
8723
- MinorVer=6
8724
 
8725
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/85 (KHTML, like Gecko) OmniWeb/v496]
8726
- Parent=OmniWeb
8727
- Version=4.5
8728
- MajorVer=4
8729
- MinorVer=5
8730
 
8731
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/85 (KHTML, like Gecko) OmniWeb/v558.36 ]
8732
- Parent=OmniWeb
8733
- Version=5.0
8734
- MajorVer=5
8735
- MinorVer=0
8736
 
8737
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Shiira
 
8738
 
8739
- [Shiira]
 
 
8740
  Parent=DefaultProperties
8741
- Browser="Shiira"
8742
- Platform=MacOSX
8743
  Frames=true
8744
  IFrames=true
8745
  Tables=true
8746
  Cookies=true
8747
- BackgroundSounds=true
8748
- JavaApplets=true
8749
  JavaScript=true
8750
- CssVersion=2
8751
- supportsCSS=true
8752
-
8753
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/0.9*]
8754
- Parent=Shiira
8755
- Version=0.9
8756
- MajorVer=0
8757
- MinorVer=9
8758
 
8759
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.0*]
8760
- Parent=Shiira
8761
- Version=1.0
8762
- MajorVer=1
8763
- MinorVer=0
8764
 
8765
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.1*]
8766
- Parent=Shiira
8767
- Version=1.1
8768
- MajorVer=1
8769
- MinorVer=1
8770
 
8771
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.2*]
8772
- Parent=Shiira
8773
- Version=1.2
8774
- MajorVer=1
 
8775
  MinorVer=2
 
 
8776
 
8777
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/2.1*]
8778
- Parent=Shiira
8779
- Version=2.1
8780
- MajorVer=2
8781
- MinorVer=1
8782
-
8783
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/2.2*]
8784
- Parent=Shiira
8785
- Version=2.2
8786
- MajorVer=2
8787
- MinorVer=2
8788
 
8789
- [Windows Maker]
8790
  Parent=DefaultProperties
8791
- Browser="WMaker"
8792
- Platform=Linux
8793
  Frames=true
8794
  IFrames=true
8795
  Tables=true
8796
  Cookies=true
8797
- VBScript=true
8798
- JavaApplets=true
8799
  JavaScript=true
8800
- CssVersion=2
8801
- supportsCSS=true
8802
 
8803
- [WMaker*]
8804
- Parent=Windows Maker
8805
 
8806
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.0
 
8807
 
8808
- [K-Meleon 1.0]
 
 
8809
  Parent=DefaultProperties
8810
- Browser="K-Meleon"
8811
- Version=1.0
8812
- MajorVer=1
8813
- Win32=true
8814
  Frames=true
8815
  IFrames=true
8816
  Tables=true
8817
  Cookies=true
8818
- JavaApplets=true
8819
  JavaScript=true
8820
- CssVersion=2
8821
- supportsCSS=true
8822
 
8823
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.0*]
8824
- Parent=K-Meleon 1.0
8825
  Version=1.0
8826
  MajorVer=1
8827
  MinorVer=0
8828
- Platform=Win95
8829
- Win32=true
8830
 
8831
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.0*]
8832
- Parent=K-Meleon 1.0
8833
- Version=1.0
8834
- MajorVer=1
8835
  MinorVer=0
8836
- Platform=Win98
8837
- Win32=true
8838
 
8839
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.0*]
8840
- Parent=K-Meleon 1.0
8841
- Version=1.0
8842
- MajorVer=1
8843
  MinorVer=0
8844
- Platform=Win2000
8845
- Win32=true
8846
 
8847
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.0*]
8848
- Parent=K-Meleon 1.0
8849
  Version=1.0
8850
  MajorVer=1
8851
  MinorVer=0
8852
- Platform=WinXP
8853
- Win32=true
8854
 
8855
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.0*]
8856
- Parent=K-Meleon 1.0
8857
- Version=1.0
8858
- MajorVer=1
8859
- MinorVer=0
8860
- Platform=Win2003
8861
- Win32=true
8862
 
8863
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.0*]
8864
- Parent=K-Meleon 1.0
8865
- Version=1.0
8866
- MajorVer=1
8867
- MinorVer=0
8868
- Platform=WinNT
8869
- Win32=true
 
 
 
 
8870
 
8871
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.1
 
 
 
8872
 
8873
- [K-Meleon 1.1]
 
 
 
 
 
 
 
 
 
 
 
8874
  Parent=DefaultProperties
8875
- Browser="K-Meleon"
8876
- Version=1.1
8877
- MajorVer=1
8878
- MinorVer=1
8879
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8880
  Frames=true
8881
  IFrames=true
8882
  Tables=true
8883
  Cookies=true
8884
- JavaApplets=true
8885
  JavaScript=true
 
8886
  CssVersion=2
8887
- supportsCSS=true
8888
 
8889
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.1*]
8890
- Parent=K-Meleon 1.1
8891
- Version=1.0
8892
- MajorVer=1
 
8893
  MinorVer=0
8894
- Platform=Win95
8895
- Win32=true
8896
 
8897
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.1*]
8898
- Parent=K-Meleon 1.1
8899
- Version=1.0
8900
- MajorVer=1
 
8901
  MinorVer=0
8902
- Platform=Win98
8903
- Win32=true
8904
 
8905
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.1*]
8906
- Parent=K-Meleon 1.1
8907
- Version=1.0
8908
- MajorVer=1
 
8909
  MinorVer=0
8910
- Platform=Win2000
8911
- Win32=true
8912
 
8913
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.1*]
8914
- Parent=K-Meleon 1.1
8915
- Version=1.0
8916
- MajorVer=1
 
8917
  MinorVer=0
8918
- Platform=WinXP
8919
- Win32=true
8920
 
8921
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.1*]
8922
- Parent=K-Meleon 1.1
8923
- Version=1.0
8924
- MajorVer=1
 
8925
  MinorVer=0
8926
- Platform=Win2003
8927
- Win32=true
8928
 
8929
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.1*]
8930
- Parent=K-Meleon 1.1
8931
- Version=1.0
8932
- MajorVer=1
 
8933
  MinorVer=0
8934
- Platform=WinNT
8935
- Win32=true
8936
 
8937
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.5
8938
 
8939
- [K-Meleon 1.5]
8940
  Parent=DefaultProperties
8941
- Browser="K-Meleon"
8942
- Version=1.5
8943
- MajorVer=1
8944
- MinorVer=5
8945
- Win32=true
8946
  Frames=true
8947
  IFrames=true
8948
  Tables=true
8949
  Cookies=true
8950
- JavaApplets=true
8951
  JavaScript=true
8952
- CssVersion=2
8953
- supportsCSS=true
8954
 
8955
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8956
- Parent=K-Meleon 1.5
8957
- Version=1.0
8958
- MajorVer=1
8959
- MinorVer=0
8960
- Platform=Win95
8961
- Win32=true
8962
 
8963
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8964
- Parent=K-Meleon 1.5
8965
- Version=1.0
8966
- MajorVer=1
8967
- MinorVer=0
8968
- Platform=Win98
8969
- Win32=true
8970
 
8971
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.5*]
8972
- Parent=K-Meleon 1.5
8973
- Version=1.0
8974
- MajorVer=1
8975
- MinorVer=0
8976
- Platform=Win2000
8977
- Win32=true
 
 
 
 
8978
 
8979
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8980
- Parent=K-Meleon 1.5
8981
  Version=1.0
8982
  MajorVer=1
8983
  MinorVer=0
8984
- Platform=WinXP
8985
- Win32=true
8986
 
8987
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8988
- Parent=K-Meleon 1.5
8989
  Version=1.0
8990
  MajorVer=1
8991
  MinorVer=0
8992
- Platform=Win2003
8993
- Win32=true
8994
 
8995
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8996
- Parent=K-Meleon 1.5
8997
- Platform=WinVista
8998
 
8999
- [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* K-Meleon/1.5*]
9000
- Parent=K-Meleon 1.5
9001
- Platform=Win7
 
 
 
 
 
 
 
 
9002
 
9003
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.5*]
9004
- Parent=K-Meleon 1.5
9005
- Version=1.0
9006
- MajorVer=1
9007
  MinorVer=0
9008
- Platform=WinNT
9009
- Win32=true
 
9010
 
9011
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 3.0
9012
 
9013
- [Konqueror 3.0]
9014
  Parent=DefaultProperties
9015
- Browser="Konqueror"
9016
- Platform=Linux
9017
  Frames=true
9018
  IFrames=true
9019
  Tables=true
9020
  Cookies=true
9021
  JavaScript=true
9022
- CssVersion=2
9023
- supportsCSS=true
9024
 
9025
- [*Konqueror/3.0*]
9026
- Parent=Konqueror 3.0
9027
  Version=3.0
9028
  MajorVer=3
9029
  MinorVer=0
9030
- IFrames=false
9031
 
9032
- [*Konqueror/3.0*FreeBSD*]
9033
- Parent=Konqueror 3.0
9034
- Version=3.0
9035
  MajorVer=3
9036
- MinorVer=0
9037
- Platform=FreeBSD
9038
- IFrames=false
9039
 
9040
- [*Konqueror/3.0*Linux*]
9041
- Parent=Konqueror 3.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9042
  Version=3.0
9043
  MajorVer=3
9044
  MinorVer=0
9045
- Platform=Linux
9046
- IFrames=false
 
 
 
 
 
 
9047
 
9048
- [*Konqueror/3.1*]
9049
- Parent=Konqueror 3.0
 
 
 
 
 
 
 
 
9050
  Version=3.1
9051
  MajorVer=3
9052
  MinorVer=1
 
9053
 
9054
- [*Konqueror/3.1*FreeBSD*]
9055
- Parent=Konqueror 3.0
9056
  Version=3.1
9057
  MajorVer=3
9058
  MinorVer=1
9059
- Platform=FreeBSD
9060
 
9061
- [*Konqueror/3.1*Linux*]
9062
- Parent=Konqueror 3.0
9063
  Version=3.1
9064
  MajorVer=3
9065
  MinorVer=1
 
9066
 
9067
- [*Konqueror/3.2*]
9068
- Parent=Konqueror 3.0
9069
- Version=3.2
9070
  MajorVer=3
9071
- MinorVer=2
 
9072
 
9073
- [*Konqueror/3.2*FreeBSD*]
9074
- Parent=Konqueror 3.0
9075
- Version=3.2
9076
  MajorVer=3
9077
- MinorVer=2
9078
- Platform=FreeBSD
9079
 
9080
- [*Konqueror/3.2*Linux*]
9081
- Parent=Konqueror 3.0
9082
- Version=3.2
9083
  MajorVer=3
9084
- MinorVer=2
9085
- Platform=Linux
9086
 
9087
- [*Konqueror/3.3*]
9088
- Parent=Konqueror 3.0
9089
- Version=3.3
9090
  MajorVer=3
9091
- MinorVer=3
 
9092
 
9093
- [*Konqueror/3.3*FreeBSD*]
9094
- Parent=Konqueror 3.0
9095
- Version=3.3
9096
- MajorVer=3
9097
- MinorVer=3
9098
- Platform=FreeBSD
9099
 
9100
- [*Konqueror/3.3*Linux*]
9101
- Parent=Konqueror 3.0
9102
- Version=3.3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9103
  MajorVer=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9104
  MinorVer=3
9105
- Platform=Linux
9106
 
9107
- [*Konqueror/3.3*OpenBSD*]
9108
- Parent=Konqueror 3.0
9109
- Version=3.3
9110
- MajorVer=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9111
  MinorVer=3
9112
- Platform=OpenBSD
9113
 
9114
- [*Konqueror/3.4*]
9115
- Parent=Konqueror 3.0
9116
- Version=3.4
9117
- MajorVer=3
9118
- MinorVer=4
9119
 
9120
- [*Konqueror/3.4*FreeBSD*]
9121
- Parent=Konqueror 3.0
9122
- Version=3.4
9123
- MajorVer=3
9124
- MinorVer=4
9125
- Platform=FreeBSD
 
 
 
9126
 
9127
- [*Konqueror/3.4*Linux*]
9128
- Parent=Konqueror 3.0
9129
- Version=3.4
9130
- MajorVer=3
9131
- MinorVer=4
9132
- Platform=Linux
 
9133
 
9134
- [*Konqueror/3.4*OpenBSD*]
9135
- Parent=Konqueror 3.0
9136
- Version=3.4
9137
- MajorVer=3
9138
- MinorVer=4
9139
- Platform=OpenBSD
 
9140
 
9141
- [*Konqueror/3.5*]
9142
- Parent=Konqueror 3.0
9143
- Version=3.5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9144
  MajorVer=3
9145
- MinorVer=5
 
 
9146
 
9147
- [*Konqueror/3.5*FreeBSD*]
9148
- Parent=Konqueror 3.0
9149
- Version=3.5
9150
  MajorVer=3
9151
- MinorVer=5
9152
- Platform=FreeBSD
 
9153
 
9154
- [*Konqueror/3.5*Linux*]
9155
- Parent=Konqueror 3.0
9156
- Version=3.5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9157
  MajorVer=3
9158
- MinorVer=5
9159
- Platform=Linux
 
9160
 
9161
- [*Konqueror/3.5*OpenBSD*]
9162
- Parent=Konqueror 3.0
9163
- Version=3.5
9164
  MajorVer=3
9165
- MinorVer=5
9166
- Platform=OpenBSD
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9167
 
9168
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.0
 
 
 
 
 
 
9169
 
9170
- [Konqueror 4.0]
 
 
9171
  Parent=DefaultProperties
9172
- Browser="Konqueror"
9173
- Version=4.0
9174
- MajorVer=4
9175
  Frames=true
9176
  IFrames=true
9177
  Tables=true
9178
  Cookies=true
9179
  JavaScript=true
9180
- CssVersion=2
9181
- supportsCSS=true
9182
-
9183
- [Mozilla/5.0 (compatible; Konqueror/4.0*) KHTML/4.0* (like Gecko)]
9184
- Parent=Konqueror 4.0
9185
 
9186
- [Mozilla/5.0 (compatible; Konqueror/4.0*; Debian) KHTML/4.0* (like Gecko)]
9187
- Parent=Konqueror 4.0
9188
- Platform=Debian
 
 
 
9189
 
9190
- [Mozilla/5.0 (compatible; Konqueror/4.0.*; *Linux) KHTML/4.0* (like Gecko)]
9191
- Parent=Konqueror 4.0
9192
- Platform=Linux
9193
 
9194
- [Mozilla/5.0 (compatible; Konqueror/4.0.*; FreeBSD) KHTML/4.0* (like Gecko)]
9195
- Parent=Konqueror 4.0
9196
- Platform=FreeBSD
 
 
 
9197
 
9198
- [Mozilla/5.0 (compatible; Konqueror/4.0.*; NetBSD) KHTML/4.0* (like Gecko)]
9199
- Parent=Konqueror 4.0
9200
- Platform=NetBSD
 
 
 
9201
 
9202
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.1
9203
 
9204
- [Konqueror 4.1]
9205
  Parent=DefaultProperties
9206
- Browser="Konqueror"
9207
- Version=4.1
9208
- MajorVer=4
9209
- MinorVer=1
9210
  Frames=true
9211
  IFrames=true
9212
  Tables=true
9213
  Cookies=true
9214
  JavaScript=true
9215
- CssVersion=2
9216
- supportsCSS=true
9217
-
9218
- [Mozilla/5.0 (compatible; Konqueror/4.1*) KHTML/4.1* (like Gecko)*]
9219
- Parent=Konqueror 4.1
9220
 
9221
- [Mozilla/5.0 (compatible; Konqueror/4.1*; *Linux*) KHTML/4.1* (like Gecko)*]
9222
- Parent=Konqueror 4.1
9223
- Platform=Linux
9224
-
9225
- [Mozilla/5.0 (compatible; Konqueror/4.1*; Debian) KHTML/4.1* (like Gecko)*]
9226
- Parent=Konqueror 4.1
9227
- Platform=Debian
9228
-
9229
- [Mozilla/5.0 (compatible; Konqueror/4.1*; FreeBSD) KHTML/4.1* (like Gecko)*]
9230
- Parent=Konqueror 4.1
9231
- Platform=FreeBSD
9232
-
9233
- [Mozilla/5.0 (compatible; Konqueror/4.1*; NetBSD) KHTML/4.1* (like Gecko)*]
9234
- Parent=Konqueror 4.1
9235
- Platform=NetBSD
9236
 
9237
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.2
9238
 
9239
- [Konqueror 4.2]
9240
  Parent=DefaultProperties
9241
- Browser="Konqueror"
9242
- Version=4.2
9243
- MajorVer=4
9244
- MinorVer=2
9245
  Frames=true
9246
  IFrames=true
9247
  Tables=true
9248
  Cookies=true
9249
  JavaScript=true
9250
  CssVersion=2
9251
- supportsCSS=true
9252
 
9253
- [Mozilla/5.0 (compatible; Konqueror/4.2*) KHTML/4.2* (like Gecko)*]
9254
- Parent=Konqueror 4.2
 
 
 
 
 
 
 
 
 
9255
 
9256
- [Mozilla/5.0 (compatible; Konqueror/4.2*; *Linux*) KHTML/4.2* (like Gecko)*]
9257
- Parent=Konqueror 4.2
9258
- Platform=Linux
 
 
9259
 
9260
- [Mozilla/5.0 (compatible; Konqueror/4.2*; Debian) KHTML/4.2* (like Gecko)*]
9261
- Parent=Konqueror 4.2
9262
- Platform=Debian
 
 
9263
 
9264
- [Mozilla/5.0 (compatible; Konqueror/4.2*; FreeBSD) KHTML/4.2* (like Gecko)*]
9265
- Parent=Konqueror 4.2
9266
- Platform=FreeBSD
 
 
9267
 
9268
- [Mozilla/5.0 (compatible; Konqueror/4.2*; NetBSD) KHTML/4.2* (like Gecko)*]
9269
- Parent=Konqueror 4.2
9270
- Platform=NetBSD
 
 
9271
 
9272
- [Mozilla/5.0 (compatible; Konqueror/4.2*; Windows) KHTML/4.2* (like Gecko)]
9273
- Parent=Konqueror 4.2
9274
- Platform=Win
 
 
9275
 
9276
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.3
9277
 
9278
- [Konqueror 4.3]
9279
  Parent=DefaultProperties
9280
- Browser="Konqueror"
9281
- Version=4.3
9282
- MajorVer=4
9283
- MinorVer=3
 
 
9284
  Frames=true
9285
  IFrames=true
9286
  Tables=true
9287
  Cookies=true
9288
  JavaScript=true
9289
  CssVersion=2
9290
- supportsCSS=true
9291
 
9292
- [Mozilla/5.0 (compatible; Konqueror/4.3*) KHTML/4.3* (like Gecko)*]
9293
- Parent=Konqueror 4.3
 
 
 
 
 
9294
 
9295
- [Mozilla/5.0 (compatible; Konqueror/4.3*; *Linux*) KHTML/4.3* (like Gecko)*]
9296
- Parent=Konqueror 4.3
9297
- Platform=Linux
 
 
 
 
9298
 
9299
- [Mozilla/5.0 (compatible; Konqueror/4.3*; Debian) KHTML/4.3* (like Gecko)*]
9300
- Parent=Konqueror 4.3
9301
- Platform=Debian
 
 
 
 
9302
 
9303
- [Mozilla/5.0 (compatible; Konqueror/4.3*; FreeBSD) KHTML/4.3* (like Gecko)*]
9304
- Parent=Konqueror 4.3
9305
- Platform=FreeBSD
 
 
 
 
9306
 
9307
- [Mozilla/5.0 (compatible; Konqueror/4.3*; NetBSD) KHTML/4.3* (like Gecko)*]
9308
- Parent=Konqueror 4.3
9309
- Platform=NetBSD
 
 
 
 
9310
 
9311
- [Mozilla/5.0 (compatible; Konqueror/4.3*; Windows) KHTML/4.3* (like Gecko)]
9312
- Parent=Konqueror 4.3
9313
- Platform=Win
 
 
 
 
9314
 
9315
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari
9316
 
9317
- [Safari]
9318
  Parent=DefaultProperties
9319
- Browser="Safari"
9320
- Platform=MacOSX
 
 
 
 
9321
  Frames=true
9322
  IFrames=true
9323
  Tables=true
9324
  Cookies=true
9325
- BackgroundSounds=true
9326
- JavaApplets=true
9327
  JavaScript=true
9328
  CssVersion=2
9329
- supportsCSS=true
9330
-
9331
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/100*]
9332
- Parent=Safari
9333
- Version=1.1
9334
- MajorVer=1
9335
- MinorVer=1
9336
-
9337
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/125*]
9338
- Parent=Safari
9339
- Version=1.2
9340
- MajorVer=1
9341
- MinorVer=2
9342
 
9343
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/312*]
9344
- Parent=Safari
9345
- Version=1.3
9346
  MajorVer=1
9347
- MinorVer=3
9348
-
9349
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/412*]
9350
- Parent=Safari
9351
- Version=2.0
9352
- MajorVer=2
9353
  MinorVer=0
 
 
9354
 
9355
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/416*]
9356
- Parent=Safari
9357
- Version=2.0
9358
- MajorVer=2
9359
  MinorVer=0
 
 
9360
 
9361
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/417*]
9362
- Parent=Safari
9363
- Version=2.0
9364
- MajorVer=2
9365
  MinorVer=0
 
 
9366
 
9367
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/418*]
9368
- Parent=Safari
9369
- Version=2.0
9370
- MajorVer=2
9371
  MinorVer=0
 
 
9372
 
9373
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/419*]
9374
- Parent=Safari
9375
- Version=2.0
9376
- MajorVer=2
9377
  MinorVer=0
 
 
9378
 
9379
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/52*]
9380
- Parent=Safari
9381
- Beta=true
9382
-
9383
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/85*]
9384
- Parent=Safari
9385
  Version=1.0
9386
  MajorVer=1
9387
  MinorVer=0
 
 
9388
 
9389
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.0
9390
 
9391
- [Safari 3.0]
9392
  Parent=DefaultProperties
9393
- Browser="Safari"
9394
- Version=3.0
9395
- MajorVer=3
9396
- Platform=MacOSX
 
 
9397
  Frames=true
9398
  IFrames=true
9399
  Tables=true
9400
  Cookies=true
9401
- BackgroundSounds=true
9402
- JavaApplets=true
9403
  JavaScript=true
9404
  CssVersion=2
9405
- supportsCSS=true
9406
 
9407
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.0* Safari/*]
9408
- Parent=Safari 3.0
9409
- Platform=MacOSX
 
 
 
 
9410
 
9411
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.0* Safari/*]
9412
- Parent=Safari 3.0
9413
- Platform=WinXP
 
 
 
 
9414
 
9415
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.0* Safari/*]
9416
- Parent=Safari 3.0
9417
- Platform=Win2003
 
 
 
 
9418
 
9419
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.0* Safari/*]
9420
- Parent=Safari 3.0
9421
- Platform=WinVista
 
 
 
 
9422
 
9423
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.0* Safari/*]
9424
- Parent=Safari 3.0
9425
- Platform=Win7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9426
 
9427
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.1
9428
 
9429
- [Safari 3.1]
9430
  Parent=DefaultProperties
9431
- Browser="Safari"
9432
- Version=3.1
9433
- MajorVer=3
9434
- MinorVer=1
9435
- Platform=MacOSX
 
9436
  Frames=true
9437
  IFrames=true
9438
  Tables=true
9439
  Cookies=true
9440
- BackgroundSounds=true
9441
- JavaApplets=true
9442
  JavaScript=true
9443
  CssVersion=2
9444
- supportsCSS=true
9445
 
9446
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.1* Safari/*]
9447
- Parent=Safari 3.1
9448
- Platform=MacOSX
 
 
 
 
9449
 
9450
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.1* Safari/*]
9451
- Parent=Safari 3.1
9452
- Platform=WinXP
 
 
 
 
9453
 
9454
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.1* Safari/*]
9455
- Parent=Safari 3.1
9456
- Platform=Win2003
 
 
 
 
9457
 
9458
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.1* Safari/*]
9459
- Parent=Safari 3.1
9460
- Platform=WinVista
 
9461
 
9462
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.1* Safari/*]
9463
- Parent=Safari 3.1
9464
- Platform=Win7
 
9465
 
9466
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.2
9467
 
9468
- [Safari 3.2]
9469
  Parent=DefaultProperties
9470
- Browser="Safari"
9471
- Version=3.2
 
9472
  MajorVer=3
9473
- MinorVer=2
9474
  Frames=true
9475
  IFrames=true
9476
  Tables=true
9477
  Cookies=true
9478
- BackgroundSounds=true
9479
- JavaApplets=true
9480
  JavaScript=true
9481
- CssVersion=3
9482
- supportsCSS=true
9483
-
9484
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.2* Safari/*]
9485
- Parent=Safari 3.2
9486
- Platform=MacOSX
9487
 
9488
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.2* Safari/*]
9489
- Parent=Safari 3.2
9490
- Platform=WinXP
 
 
 
9491
 
9492
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.2* Safari/*]
9493
- Parent=Safari 3.2
9494
- Platform=Win2003
 
 
 
 
9495
 
9496
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.2* Safari/*]
9497
- Parent=Safari 3.2
9498
- Platform=WinVista
 
 
 
9499
 
9500
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.2* Safari/*]
9501
- Parent=Safari 3.2
9502
- Platform=Win7
 
 
 
9503
 
9504
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 4.0
9505
 
9506
- [Safari 4.0]
9507
  Parent=DefaultProperties
9508
- Browser="Safari"
 
9509
  Version=4.0
9510
  MajorVer=4
 
9511
  Frames=true
9512
  IFrames=true
9513
  Tables=true
9514
  Cookies=true
9515
- BackgroundSounds=true
9516
- JavaApplets=true
9517
  JavaScript=true
9518
- CssVersion=3
9519
- supportsCSS=true
9520
-
9521
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4.0* Safari/*]
9522
- Parent=Safari 4.0
9523
- Platform=MacOSX
9524
-
9525
- [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4 Public Beta Safari/*]
9526
- Parent=Safari 4.0
9527
-
9528
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
9529
- Parent=Safari 4.0
9530
- Platform=WinXP
9531
-
9532
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4.0* Safari/*]
9533
- Parent=Safari 4.0
9534
- Platform=WinXP
9535
-
9536
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
9537
- Parent=Safari 4.0
9538
- Platform=Win2003
9539
-
9540
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4.0* Safari/*]
9541
- Parent=Safari 4.0
9542
- Platform=Win2003
9543
-
9544
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
9545
- Parent=Safari 4.0
9546
- Platform=WinVista
9547
 
9548
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/4.0* Safari/*]
9549
- Parent=Safari 4.0
9550
- Platform=WinVista
9551
 
9552
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
9553
- Parent=Safari 4.0
9554
- Platform=Win7
9555
 
9556
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/4.0* Safari/*]
9557
- Parent=Safari 4.0
9558
- Platform=Win7
9559
 
9560
- [Mozilla/5.0 (Windows; ?; Windows NT 7.0; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
9561
- Parent=Safari 4.0
9562
- Platform=Win7
9563
 
9564
- [Mozilla/5.0 (Windows; ?; Windows NT 7.0; *) AppleWebKit/* (*) Version/4.0* Safari/*]
9565
- Parent=Safari 4.0
9566
- Platform=Win7
9567
 
9568
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10
9569
 
9570
- [Opera 10]
9571
  Parent=DefaultProperties
9572
- Browser="Opera"
9573
- Version=10.0
9574
- MajorVer=10
 
 
9575
  Frames=true
9576
  IFrames=true
9577
  Tables=true
9578
  Cookies=true
9579
- BackgroundSounds=true
9580
- JavaApplets=true
9581
  JavaScript=true
9582
  CssVersion=2
9583
- supportsCSS=true
9584
-
9585
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.0; *) Opera 10.*]
9586
- Parent=Opera 10
9587
- Platform=Win2000
9588
-
9589
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.1; *) Opera 10.*]
9590
- Parent=Opera 10
9591
- Platform=WinXP
9592
-
9593
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.2; *) Opera 10.*]
9594
- Parent=Opera 10
9595
- Platform=Win2003
9596
-
9597
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.0; *) Opera 10.*]
9598
- Parent=Opera 10
9599
- Platform=WinVista
9600
-
9601
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.1; *) Opera 10.*]
9602
- Parent=Opera 10
9603
- Platform=Win7
9604
-
9605
- [Mozilla/4.0 (compatible; MSIE ?.0; X11; FreeBSD*) Opera 10.*]
9606
- Parent=Opera 10
9607
- Platform=FreeBSD
9608
-
9609
- [Mozilla/4.0 (compatible; MSIE ?.0; X11; Linux*; *) Opera 10.*]
9610
- Parent=Opera 10
9611
- Platform=Linux
9612
-
9613
- [Mozilla/4.0 (compatible; MSIE ?.0; X11; SunOS*) Opera 10.*]
9614
- Parent=Opera 10
9615
- Platform=SunOS
9616
-
9617
- [Opera/10.* (Macintosh; *Mac OS X; U; *) Presto/2.2.*]
9618
- Parent=Opera 10
9619
- Platform=MacOSX
9620
-
9621
- [Opera/10.* (Windows NT 5.0; U; *) Presto/2.2.*]
9622
- Parent=Opera 10
9623
- Platform=Win2000
9624
-
9625
- [Opera/10.* (Windows NT 5.1; U; *) Presto/2.2.*]
9626
- Parent=Opera 10
9627
- Platform=WinXP
9628
-
9629
- [Opera/10.* (Windows NT 5.2; U; *) Presto/2.2.*]
9630
- Parent=Opera 10
9631
- Platform=Win2003
9632
-
9633
- [Opera/10.* (Windows NT 6.0; U; *) Presto/2.2.*]
9634
- Parent=Opera 10
9635
- Platform=WinVista
9636
-
9637
- [Opera/10.* (Windows NT 6.1; U; *) Presto/2.2.*]
9638
- Parent=Opera 10
9639
- Platform=Win7
9640
-
9641
- [Opera/10.* (X11; FreeBSD; U; *) Presto/2.2.*]
9642
- Parent=Opera 10
9643
- Platform=FreeBSD
9644
 
9645
- [Opera/10.* (X11; Linux*; U; *) Presto/2.2.*]
9646
- Parent=Opera 10
9647
- Platform=Linux
9648
 
9649
- [Opera/10.* (X11; SunOS; U; *) Presto/2.2.*]
9650
- Parent=Opera 10
9651
- Platform=SunOS
9652
 
9653
- [Opera/9.80 (Macintosh; *Mac OS X; U; *) Presto/2.2.* Version/10.*]
9654
- Parent=Opera 10
9655
- Platform=MacOSX
9656
 
9657
- [Opera/9.80 (Windows NT 5.0; U; *) Presto/2.2.* Version/10.*]
9658
- Parent=Opera 10
9659
- Platform=Win2000
9660
 
9661
- [Opera/9.80 (Windows NT 5.1; U; *) Presto/2.2.* Version/10.*]
9662
- Parent=Opera 10
9663
- Platform=WinXP
9664
 
9665
- [Opera/9.80 (Windows NT 5.2; U; *) Presto/2.2.* Version/10.*]
9666
- Parent=Opera 10
9667
- Platform=Win2003
9668
 
9669
- [Opera/9.80 (Windows NT 6.0; U; *) Presto/2.2.* Version/10.*]
9670
- Parent=Opera 10
9671
- Platform=WinVista
9672
 
9673
- [Opera/9.80 (Windows NT 6.1; U; *) Presto/2.2.* Version/10.*]
9674
- Parent=Opera 10
9675
- Platform=Win7
9676
-
9677
- [Opera/9.80 (X11; FreeBSD; U; *) Presto/2.2.* Version/10.*]
9678
- Parent=Opera 10
9679
- Platform=FreeBSD
9680
-
9681
- [Opera/9.80 (X11; Linux*; U; *) Presto/2.2.* Version/10.*]
9682
- Parent=Opera 10
9683
- Platform=Linux
9684
-
9685
- [Opera/9.80 (X11; SunOS; U; *) Presto/2.2.* Version/10.*]
9686
- Parent=Opera 10
9687
- Platform=SunOS
9688
-
9689
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.0
9690
-
9691
- [Opera 7.0]
9692
  Parent=DefaultProperties
9693
- Browser="Opera"
9694
- Version=7.0
9695
- MajorVer=7
 
 
9696
  Frames=true
9697
  IFrames=true
9698
  Tables=true
9699
  Cookies=true
9700
- BackgroundSounds=true
9701
- JavaApplets=true
9702
  JavaScript=true
9703
  CssVersion=2
9704
- supportsCSS=true
9705
-
9706
- [Mozilla/3.0 (Windows 2000; ?) Opera 7.0*]
9707
- Parent=Opera 7.0
9708
- Platform=Win2000
9709
- Win32=true
9710
-
9711
- [Mozilla/3.0 (Windows 95; ?) Opera 7.0*]
9712
- Parent=Opera 7.0
9713
- Platform=Win95
9714
- Win32=true
9715
-
9716
- [Mozilla/3.0 (Windows 98; ?) Opera 7.0*]
9717
- Parent=Opera 7.0
9718
- Platform=Win98
9719
- Win32=true
9720
-
9721
- [Mozilla/3.0 (Windows ME; ?) Opera 7.0*]
9722
- Parent=Opera 7.0
9723
- Platform=WinME
9724
- Win32=true
9725
-
9726
- [Mozilla/3.0 (Windows NT 4.0; ?) Opera 7.0*]
9727
- Parent=Opera 7.0
9728
- Platform=WinNT
9729
- Win32=true
9730
-
9731
- [Mozilla/3.0 (Windows XP; ?) Opera 7.0*]
9732
- Parent=Opera 7.0
9733
- Platform=WinXP
9734
- Win32=true
9735
-
9736
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 2000) Opera 7.0*]
9737
- Parent=Opera 7.0
9738
- Platform=Win2000
9739
- Win32=true
9740
-
9741
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 95) Opera 7.0*]
9742
- Parent=Opera 7.0
9743
- Platform=Win95
9744
- Win32=true
9745
-
9746
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 98) Opera 7.0*]
9747
- Parent=Opera 7.0
9748
- Platform=Win98
9749
- Win32=true
9750
 
9751
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows ME) Opera 7.0*]
9752
- Parent=Opera 7.0
9753
- Platform=WinME
9754
- Win32=true
9755
-
9756
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 4.0) Opera 7.0*]
9757
- Parent=Opera 7.0
9758
- Platform=WinNT
9759
- Win32=true
9760
-
9761
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.0) Opera 7.0*]
9762
- Parent=Opera 7.0
9763
- Platform=Win2000
9764
- Win32=true
9765
-
9766
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.1) Opera 7.0*]
9767
- Parent=Opera 7.0
9768
- Platform=WinXP
9769
- Win32=true
9770
-
9771
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows XP) Opera 7.0*]
9772
- Parent=Opera 7.0
9773
- Platform=WinXP
9774
- Win32=true
9775
-
9776
- [Mozilla/4.78 (Windows 2000; ?) Opera 7.0*]
9777
- Parent=Opera 7.0
9778
- Platform=Win2000
9779
- Win32=true
9780
-
9781
- [Mozilla/4.78 (Windows 95; ?) Opera 7.0*]
9782
- Parent=Opera 7.0
9783
- Platform=Win95
9784
- Win32=true
9785
 
9786
- [Mozilla/4.78 (Windows 98; ?) Opera 7.0*]
9787
- Parent=Opera 7.0
9788
- Platform=Win98
9789
- Win32=true
9790
 
9791
- [Mozilla/4.78 (Windows ME; ?) Opera 7.0*]
9792
- Parent=Opera 7.0
9793
- Platform=WinME
9794
- Win32=true
9795
 
9796
- [Mozilla/4.78 (Windows NT 4.0; ?) Opera 7.0*]
9797
- Parent=Opera 7.0
9798
- Platform=WinNT
9799
- Win32=true
9800
 
9801
- [Mozilla/4.78 (Windows NT 5.1; ?) Opera 7.0*]
9802
- Parent=Opera 7.0
9803
- Platform=WinXP
9804
- Win32=true
9805
 
9806
- [Mozilla/4.78 (Windows Windows NT 5.0; ?) Opera 7.0*]
9807
- Parent=Opera 7.0
9808
- Platform=Win2000
9809
  Win32=true
9810
 
9811
- [Mozilla/4.78 (Windows XP; ?) Opera 7.0*]
9812
- Parent=Opera 7.0
9813
- Platform=WinXP
9814
- Win32=true
9815
 
9816
- [Mozilla/5.0 (Windows 2000; ?) Opera 7.0*]
9817
- Parent=Opera 7.0
9818
- Platform=Win2000
9819
- Win32=true
 
 
 
 
 
 
 
 
 
9820
 
9821
- [Mozilla/5.0 (Windows 95; ?) Opera 7.0*]
9822
- Parent=Opera 7.0
9823
- Platform=Win95
9824
- Win32=true
9825
 
9826
- [Mozilla/5.0 (Windows 98; ?) Opera 7.0*]
9827
- Parent=Opera 7.0
9828
- Platform=Win98
9829
- Win32=true
9830
 
9831
- [Mozilla/5.0 (Windows ME; ?) Opera 7.0*]
9832
- Parent=Opera 7.0
9833
- Platform=WinME
9834
- Win32=true
9835
 
9836
- [Mozilla/5.0 (Windows NT 4.0; ?) Opera 7.0*]
9837
- Parent=Opera 7.0
9838
- Platform=WinNT
9839
- Win32=true
9840
 
9841
- [Mozilla/5.0 (Windows NT 5.1; ?) Opera 7.0*]
9842
- Parent=Opera 7.0
9843
- Platform=WinXP
9844
- Win32=true
9845
 
9846
- [Mozilla/5.0 (Windows XP; ?) Opera 7.0*]
9847
- Parent=Opera 7.0
9848
- Platform=WinXP
9849
  Win32=true
9850
 
9851
- [Opera/7.0* (Windows 2000; ?)*]
9852
- Parent=Opera 7.0
9853
- Platform=Win2000
9854
- Win32=true
9855
 
9856
- [Opera/7.0* (Windows 95; ?)*]
9857
- Parent=Opera 7.0
9858
- Platform=Win95
9859
- Win32=true
 
 
 
 
 
 
 
 
 
9860
 
9861
- [Opera/7.0* (Windows 98; ?)*]
9862
- Parent=Opera 7.0
9863
- Platform=Win98
9864
- Win32=true
9865
 
9866
- [Opera/7.0* (Windows ME; ?)*]
9867
- Parent=Opera 7.0
9868
- Platform=WinME
9869
- Win32=true
9870
 
9871
- [Opera/7.0* (Windows NT 4.0; ?)*]
9872
- Parent=Opera 7.0
9873
- Platform=WinNT
9874
- Win32=true
9875
 
9876
- [Opera/7.0* (Windows NT 5.0; ?)*]
9877
- Parent=Opera 7.0
9878
- Platform=Win2000
9879
- Win32=true
9880
 
9881
- [Opera/7.0* (Windows NT 5.1; ?)*]
9882
- Parent=Opera 7.0
9883
- Platform=WinXP
9884
- Win32=true
9885
 
9886
- [Opera/7.0* (Windows XP; ?)*]
9887
- Parent=Opera 7.0
9888
- Platform=WinXP
9889
  Win32=true
9890
 
9891
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.1
9892
 
9893
- [Opera 7.1]
9894
  Parent=DefaultProperties
9895
- Browser="Opera"
9896
- Version=7.1
9897
- MajorVer=7
9898
- MinorVer=1
 
9899
  Frames=true
9900
  IFrames=true
9901
  Tables=true
9902
  Cookies=true
9903
- BackgroundSounds=true
9904
- JavaApplets=true
9905
  JavaScript=true
 
9906
  CssVersion=2
9907
- supportsCSS=true
9908
-
9909
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.1*]
9910
- Parent=Opera 7.1
9911
- Platform=Win2000
9912
- Win32=true
9913
 
9914
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.1*]
9915
- Parent=Opera 7.1
9916
- Platform=Win95
9917
- Win32=true
9918
 
9919
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.1*]
9920
- Parent=Opera 7.1
9921
- Platform=Win98
9922
- Win32=true
9923
 
9924
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.1*]
9925
- Parent=Opera 7.1
9926
- Platform=WinME
9927
- Win32=true
9928
 
9929
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.1*]
9930
- Parent=Opera 7.1
9931
- Platform=WinNT
9932
- Win32=true
9933
 
9934
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.1*]
9935
- Parent=Opera 7.1
9936
- Platform=Win2000
9937
- Win32=true
9938
 
9939
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.1*]
9940
- Parent=Opera 7.1
9941
- Platform=WinXP
 
9942
  Win32=true
9943
 
9944
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.1*]
9945
- Parent=Opera 7.1
9946
- Platform=WinXP
 
9947
  Win32=true
9948
 
9949
- [Mozilla/?.* (Windows 2000; ?) Opera 7.1*]
9950
- Parent=Opera 7.1
9951
- Platform=Win2000
 
9952
  Win32=true
9953
 
9954
- [Mozilla/?.* (Windows 95; ?) Opera 7.1*]
9955
- Parent=Opera 7.1
9956
- Platform=Win95
 
9957
  Win32=true
9958
 
9959
- [Mozilla/?.* (Windows 98; ?) Opera 7.1*]
9960
- Parent=Opera 7.1
9961
- Platform=Win98
 
9962
  Win32=true
9963
 
9964
- [Mozilla/?.* (Windows ME; ?) Opera 7.1*]
9965
- Parent=Opera 7.1
9966
- Platform=WinME
9967
- Win32=true
9968
 
9969
- [Mozilla/?.* (Windows NT 4.0; U) Opera 7.1*]
9970
- Parent=Opera 7.1
9971
- Platform=WinNT
9972
- Win32=true
 
 
 
 
 
 
 
 
 
 
9973
 
9974
- [Mozilla/?.* (Windows NT 5.0; U) Opera 7.1*]
9975
- Parent=Opera 7.1
9976
- Platform=Win2000
9977
- Win32=true
9978
 
9979
- [Mozilla/?.* (Windows NT 5.1; ?) Opera 7.1*]
9980
- Parent=Opera 7.1
9981
- Platform=WinXP
9982
- Win32=true
9983
 
9984
- [Opera/7.1* (Linux*; ?)*]
9985
- Parent=Opera 7.1
9986
- Platform=Linux
9987
 
9988
- [Opera/7.1* (Windows 95; ?)*]
9989
- Parent=Opera 7.1
9990
- Platform=Win95
9991
- Win32=true
9992
 
9993
- [Opera/7.1* (Windows 98; ?)*]
9994
- Parent=Opera 7.1
9995
- Platform=Win98
9996
- Win32=true
9997
 
9998
- [Opera/7.1* (Windows ME; ?)*]
9999
- Parent=Opera 7.1
10000
- Platform=WinME
 
10001
  Win32=true
10002
 
10003
- [Opera/7.1* (Windows NT 4.0; ?)*]
10004
- Parent=Opera 7.1
10005
- Platform=WinNT
 
10006
  Win32=true
10007
 
10008
- [Opera/7.1* (Windows NT 5.0; ?)*]
10009
- Parent=Opera 7.1
10010
- Platform=Win2000
 
10011
  Win32=true
10012
 
10013
- [Opera/7.1* (Windows NT 5.1; ?)*]
10014
- Parent=Opera 7.1
10015
- Platform=WinXP
 
10016
  Win32=true
10017
 
10018
- [Opera/7.1* (Windows XP; ?)*]
10019
- Parent=Opera 7.1
10020
- Platform=WinXP
 
10021
  Win32=true
10022
 
10023
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.2
10024
 
10025
- [Opera 7.2]
10026
  Parent=DefaultProperties
10027
- Browser="Opera"
10028
- Version=7.2
10029
- MajorVer=7
10030
- MinorVer=2
 
10031
  Frames=true
10032
  IFrames=true
10033
  Tables=true
10034
  Cookies=true
10035
- BackgroundSounds=true
10036
- JavaApplets=true
10037
  JavaScript=true
10038
- CssVersion=2
10039
- supportsCSS=true
10040
-
10041
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.2*]
10042
- Parent=Opera 7.2
10043
- Platform=Linux
10044
-
10045
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.2*]
10046
- Parent=Opera 7.2
10047
- Platform=Win2000
10048
- Win32=true
10049
-
10050
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.2*]
10051
- Parent=Opera 7.2
10052
- Platform=Win95
10053
- Win32=true
10054
-
10055
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.2*]
10056
- Parent=Opera 7.2
10057
- Platform=Win98
10058
- Win32=true
10059
-
10060
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.2*]
10061
- Parent=Opera 7.2
10062
- Platform=WinME
10063
- Win32=true
10064
 
10065
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.2*]
10066
- Parent=Opera 7.2
10067
- Platform=WinNT
10068
- Win32=true
10069
 
10070
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.2*]
10071
- Parent=Opera 7.2
10072
- Platform=Win2000
10073
- Win32=true
10074
 
10075
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.2*]
10076
- Parent=Opera 7.2
10077
- Platform=WinXP
10078
- Win32=true
10079
 
10080
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.2*]
10081
- Parent=Opera 7.2
10082
- Platform=Win2003
10083
- Win32=true
10084
 
10085
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.2*]
10086
- Parent=Opera 7.2
10087
- Platform=WinXP
10088
- Win32=true
10089
 
10090
- [Mozilla/?.* (Windows 2000; ?) Opera 7.2*]
10091
- Parent=Opera 7.2
10092
- Platform=Win2000
 
10093
  Win32=true
10094
 
10095
- [Mozilla/?.* (Windows 95; ?) Opera 7.2*]
10096
- Parent=Opera 7.2
10097
- Platform=Win95
 
10098
  Win32=true
10099
 
10100
- [Mozilla/?.* (Windows 98; ?) Opera 7.2*]
10101
- Parent=Opera 7.2
10102
- Platform=Win98
 
10103
  Win32=true
10104
 
10105
- [Mozilla/?.* (Windows ME; ?) Opera 7.2*]
10106
- Parent=Opera 7.2
10107
- Platform=WinME
 
10108
  Win32=true
10109
 
10110
- [Mozilla/?.* (Windows NT 4.0; U) Opera 7.2*]
10111
- Parent=Opera 7.2
10112
- Platform=WinNT
 
10113
  Win32=true
10114
 
10115
- [Mozilla/?.* (Windows NT 5.0; U) Opera 7.2*]
10116
- Parent=Opera 7.2
10117
- Platform=Win2000
10118
- Win32=true
10119
 
10120
- [Mozilla/?.* (Windows NT 5.1; ?) Opera 7.2*]
10121
- Parent=Opera 7.2
10122
- Platform=WinXP
10123
- Win32=true
 
 
 
 
 
 
 
 
 
 
10124
 
10125
- [Mozilla/?.* (Windows NT 5.2; ?) Opera 7.2*]
10126
- Parent=Opera 7.2
10127
- Platform=Win2003
10128
- Win32=true
10129
 
10130
- [Opera/7.2* (Linux*; ?)*]
10131
- Parent=Opera 7.2
10132
- Platform=Linux
10133
 
10134
- [Opera/7.2* (Windows 95; ?)*]
10135
- Parent=Opera 7.2
10136
- Platform=Win95
10137
- Win32=true
10138
 
10139
- [Opera/7.2* (Windows 98; ?)*]
10140
- Parent=Opera 7.2
10141
- Platform=Win98
10142
- Win32=true
10143
 
10144
- [Opera/7.2* (Windows ME; ?)*]
10145
- Parent=Opera 7.2
10146
- Platform=WinME
10147
- Win32=true
10148
 
10149
- [Opera/7.2* (Windows NT 4.0; ?)*]
10150
- Parent=Opera 7.2
10151
- Platform=WinNT
 
10152
  Win32=true
10153
 
10154
- [Opera/7.2* (Windows NT 5.0; ?)*]
10155
- Parent=Opera 7.2
10156
- Platform=Win2000
 
10157
  Win32=true
10158
 
10159
- [Opera/7.2* (Windows NT 5.1; ?)*]
10160
- Parent=Opera 7.2
10161
- Platform=WinXP
 
10162
  Win32=true
10163
 
10164
- [Opera/7.2* (Windows NT 5.2; ?)*]
10165
- Parent=Opera 7.2
10166
- Platform=Win2003
 
10167
  Win32=true
10168
 
10169
- [Opera/7.2* (Windows XP; ?)*]
10170
- Parent=Opera 7.2
10171
- Platform=WinXP
 
10172
  Win32=true
10173
 
10174
- [Opera/7.2* (X11; FreeBSD*; ?)*]
10175
- Parent=Opera 7.2
10176
- Platform=FreeBSD
10177
-
10178
- [Opera/7.2* (X11; Linux*; ?)*]
10179
- Parent=Opera 7.2
10180
- Platform=Linux
10181
 
10182
- [Opera/7.2* (X11; SunOS*)*]
10183
- Parent=Opera 7.2
10184
- Platform=SunOS
10185
 
10186
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.5
10187
-
10188
- [Opera 7.5]
10189
  Parent=DefaultProperties
10190
- Browser="Opera"
10191
- Version=7.5
10192
- MajorVer=7
10193
- MinorVer=5
 
10194
  Frames=true
10195
  IFrames=true
10196
  Tables=true
10197
  Cookies=true
10198
- BackgroundSounds=true
10199
- JavaApplets=true
10200
  JavaScript=true
10201
- CssVersion=2
10202
- supportsCSS=true
10203
-
10204
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.5*]
10205
- Parent=Opera 7.5
10206
- Platform=Linux
10207
-
10208
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 7.5*]
10209
- Parent=Opera 7.5
10210
- Platform=MacPPC
10211
-
10212
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.5*]
10213
- Parent=Opera 7.5
10214
- Platform=Win2000
10215
- Win32=true
10216
-
10217
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.5*]
10218
- Parent=Opera 7.5
10219
- Platform=Win95
10220
- Win32=true
10221
-
10222
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.5*]
10223
- Parent=Opera 7.5
10224
- Platform=Win98
10225
- Win32=true
10226
-
10227
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.5*]
10228
- Parent=Opera 7.5
10229
- Platform=WinME
10230
- Win32=true
10231
-
10232
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.5*]
10233
- Parent=Opera 7.5
10234
- Platform=WinNT
10235
- Win32=true
10236
-
10237
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.5*]
10238
- Parent=Opera 7.5
10239
- Platform=Win2000
10240
- Win32=true
10241
-
10242
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.5*]
10243
- Parent=Opera 7.5
10244
- Platform=WinXP
10245
- Win32=true
10246
 
10247
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.5*]
10248
- Parent=Opera 7.5
10249
- Platform=Win2003
10250
- Win32=true
10251
 
10252
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.5*]
10253
- Parent=Opera 7.5
10254
- Platform=WinXP
10255
- Win32=true
10256
 
10257
- [Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 7.5*]
10258
- Parent=Opera 7.5
10259
- Platform=Linux
10260
 
10261
- [Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 7.5*]
10262
- Parent=Opera 7.5
10263
- Platform=MacOSX
10264
 
10265
- [Mozilla/?.* (Windows 2000; ?) Opera 7.5*]
10266
- Parent=Opera 7.5
10267
- Platform=Win2000
10268
- Win32=true
10269
 
10270
- [Mozilla/?.* (Windows 95; ?) Opera 7.5*]
10271
- Parent=Opera 7.5
10272
- Platform=Win95
 
10273
  Win32=true
10274
 
10275
- [Mozilla/?.* (Windows 98; ?) Opera 7.5*]
10276
- Parent=Opera 7.5
10277
- Platform=Win98
 
10278
  Win32=true
10279
 
10280
- [Mozilla/?.* (Windows ME; ?) Opera 7.5*]
10281
- Parent=Opera 7.5
10282
- Platform=WinME
 
10283
  Win32=true
10284
 
10285
- [Mozilla/?.* (Windows NT 4.0; U) Opera 7.5*]
10286
- Parent=Opera 7.5
10287
- Platform=WinNT
 
10288
  Win32=true
10289
 
10290
- [Mozilla/?.* (Windows NT 5.0; U) Opera 7.5*]
10291
- Parent=Opera 7.5
10292
- Platform=Win2000
 
10293
  Win32=true
10294
 
10295
- [Mozilla/?.* (Windows NT 5.1; ?) Opera 7.5*]
10296
- Parent=Opera 7.5
10297
- Platform=WinXP
10298
- Win32=true
10299
 
10300
- [Mozilla/?.* (Windows NT 5.2; ?) Opera 7.5*]
10301
- Parent=Opera 7.5
10302
- Platform=Win2003
10303
- Win32=true
10304
 
10305
- [Mozilla/?.* (X11; Linux*; ?) Opera 7.5*]
10306
- Parent=Opera 7.5
10307
- Platform=Linux
 
 
 
 
 
 
 
 
 
 
 
10308
 
10309
- [Opera/7.5* (Linux*; ?)*]
10310
- Parent=Opera 7.5
10311
- Platform=Linux
10312
 
10313
- [Opera/7.5* (Macintosh; *Mac OS X; ?)*]
10314
- Parent=Opera 7.5
10315
- Platform=MacOSX
10316
 
10317
- [Opera/7.5* (Windows 95; ?)*]
10318
- Parent=Opera 7.5
10319
- Platform=Win95
10320
- Win32=true
10321
 
10322
- [Opera/7.5* (Windows 98; ?)*]
10323
- Parent=Opera 7.5
10324
- Platform=Win98
10325
- Win32=true
10326
 
10327
- [Opera/7.5* (Windows ME; ?)*]
10328
- Parent=Opera 7.5
10329
- Platform=WinME
10330
- Win32=true
10331
 
10332
- [Opera/7.5* (Windows NT 4.0; ?)*]
10333
- Parent=Opera 7.5
10334
- Platform=WinNT
 
10335
  Win32=true
10336
 
10337
- [Opera/7.5* (Windows NT 5.0; ?)*]
10338
- Parent=Opera 7.5
10339
- Platform=Win2000
 
10340
  Win32=true
10341
 
10342
- [Opera/7.5* (Windows NT 5.1; ?)*]
10343
- Parent=Opera 7.5
10344
- Platform=WinXP
 
10345
  Win32=true
10346
 
10347
- [Opera/7.5* (Windows NT 5.2; ?)*]
10348
- Parent=Opera 7.5
10349
- Platform=Win2003
 
10350
  Win32=true
10351
 
10352
- [Opera/7.5* (Windows XP; ?)*]
10353
- Parent=Opera 7.5
10354
- Platform=WinXP
 
10355
  Win32=true
10356
 
10357
- [Opera/7.5* (X11; FreeBSD*; ?)*]
10358
- Parent=Opera 7.5
10359
- Platform=FreeBSD
10360
-
10361
- [Opera/7.5* (X11; Linux*; ?)*]
10362
- Parent=Opera 7.5
10363
- Platform=Linux
10364
 
10365
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.6
10366
 
10367
- [Opera 7.6]
10368
  Parent=DefaultProperties
10369
- Browser="Opera"
10370
- Version=7.6
10371
- MajorVer=7
10372
- MinorVer=6
10373
  Frames=true
10374
  IFrames=true
10375
  Tables=true
10376
  Cookies=true
10377
- BackgroundSounds=true
10378
- JavaApplets=true
10379
  JavaScript=true
10380
- CssVersion=2
10381
- supportsCSS=true
10382
-
10383
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.6*]
10384
- Parent=Opera 7.6
10385
- Platform=Linux
10386
 
10387
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 7.6*]
10388
- Parent=Opera 7.6
10389
- Platform=MacPPC
10390
 
10391
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.6*]
10392
- Parent=Opera 7.6
10393
- Platform=Win2000
10394
- Win32=true
10395
 
10396
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.6*]
10397
- Parent=Opera 7.6
10398
- Platform=Win95
10399
- Win32=true
10400
 
10401
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.6*]
10402
- Parent=Opera 7.6
10403
- Platform=Win98
10404
- Win32=true
10405
 
10406
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.6*]
10407
- Parent=Opera 7.6
10408
- Platform=WinME
10409
- Win32=true
10410
 
10411
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.6*]
10412
- Parent=Opera 7.6
10413
- Platform=WinNT
 
10414
  Win32=true
10415
 
10416
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.6*]
10417
- Parent=Opera 7.6
10418
- Platform=Win2000
 
10419
  Win32=true
10420
 
10421
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.6*]
10422
- Parent=Opera 7.6
10423
- Platform=WinXP
 
10424
  Win32=true
10425
 
10426
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.6*]
10427
- Parent=Opera 7.6
10428
- Platform=Win2003
 
10429
  Win32=true
10430
 
10431
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.6*]
10432
- Parent=Opera 7.6
10433
- Platform=WinXP
 
10434
  Win32=true
10435
 
10436
- [Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 7.6*]
10437
- Parent=Opera 7.6
10438
- Platform=Linux
10439
-
10440
- [Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 7.6*]
10441
- Parent=Opera 7.6
10442
- Platform=MacOSX
10443
-
10444
- [Mozilla/?.* (Windows 2000; ?) Opera 7.6*]
10445
- Parent=Opera 7.6
10446
- Platform=Win2000
10447
- Win32=true
10448
 
10449
- [Mozilla/?.* (Windows 95; ?) Opera 7.6*]
10450
- Parent=Opera 7.6
10451
- Platform=Win95
 
 
 
 
 
10452
  Win32=true
 
 
 
 
 
 
10453
 
10454
- [Mozilla/?.* (Windows 98; ?) Opera 7.6*]
10455
- Parent=Opera 7.6
10456
- Platform=Win98
10457
- Win32=true
10458
 
10459
- [Mozilla/?.* (Windows ME; ?) Opera 7.6*]
10460
- Parent=Opera 7.6
10461
- Platform=WinME
10462
- Win32=true
10463
 
10464
- [Mozilla/?.* (Windows NT 4.0; U) Opera 7.6*]
10465
- Parent=Opera 7.6
10466
- Platform=WinNT
10467
- Win32=true
10468
 
10469
- [Mozilla/?.* (Windows NT 5.0; U) Opera 7.6*]
10470
- Parent=Opera 7.6
10471
- Platform=Win2000
10472
- Win32=true
10473
 
10474
- [Mozilla/?.* (Windows NT 5.1; ?) Opera 7.6*]
10475
- Parent=Opera 7.6
10476
- Platform=WinXP
 
 
 
 
 
10477
  Win32=true
 
 
 
 
 
 
10478
 
10479
- [Mozilla/?.* (Windows NT 5.2; ?) Opera 7.6*]
10480
- Parent=Opera 7.6
10481
- Platform=Win2003
10482
- Win32=true
10483
 
10484
- [Mozilla/?.* (X11; Linux*; ?) Opera 7.6*]
10485
- Parent=Opera 7.6
10486
- Platform=Linux
10487
 
10488
- [Opera/7.6* (Linux*)*]
10489
- Parent=Opera 7.6
10490
- Platform=Linux
10491
 
10492
- [Opera/7.6* (Macintosh; *Mac OS X; ?)*]
10493
- Parent=Opera 7.6
10494
- Platform=MacOSX
10495
 
10496
- [Opera/7.6* (Windows 95*)*]
10497
- Parent=Opera 7.6
10498
- Platform=Win95
 
 
 
 
 
10499
  Win32=true
 
 
 
 
 
 
10500
 
10501
- [Opera/7.6* (Windows 98*)*]
10502
- Parent=Opera 7.6
10503
- Platform=Win98
10504
- Win32=true
10505
 
10506
- [Opera/7.6* (Windows ME*)*]
10507
- Parent=Opera 7.6
10508
- Platform=WinME
10509
- Win32=true
10510
 
10511
- [Opera/7.6* (Windows NT 4.0*)*]
10512
- Parent=Opera 7.6
10513
- Platform=WinNT
10514
- Win32=true
10515
 
10516
- [Opera/7.6* (Windows NT 5.0*)*]
10517
- Parent=Opera 7.6
10518
- Platform=Win2000
10519
- Win32=true
10520
 
10521
- [Opera/7.6* (Windows NT 5.1*)*]
10522
- Parent=Opera 7.6
10523
- Platform=WinXP
 
 
 
 
10524
  Win32=true
 
 
 
 
 
 
10525
 
10526
- [Opera/7.6* (Windows NT 5.2*)*]
10527
- Parent=Opera 7.6
10528
- Platform=Win2003
10529
- Win32=true
10530
 
10531
- [Opera/7.6* (Windows XP*)*]
10532
- Parent=Opera 7.6
10533
- Platform=WinXP
10534
- Win32=true
10535
 
10536
- [Opera/7.6* (X11; FreeBSD*)*]
10537
- Parent=Opera 7.6
10538
- Platform=FreeBSD
 
10539
 
10540
- [Opera/7.6* (X11; Linux*)*]
10541
- Parent=Opera 7.6
10542
- Platform=Linux
 
10543
 
10544
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.0
 
 
 
10545
 
10546
- [Opera 8.0]
 
 
10547
  Parent=DefaultProperties
10548
- Browser="Opera"
10549
- Version=8.0
10550
- MajorVer=8
 
 
 
10551
  Frames=true
10552
  IFrames=true
10553
  Tables=true
10554
  Cookies=true
10555
- BackgroundSounds=true
10556
- JavaApplets=true
10557
  JavaScript=true
 
10558
  CssVersion=2
10559
- supportsCSS=true
10560
 
10561
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.0*]
10562
- Parent=Opera 8.0
10563
- Platform=Linux
 
10564
 
10565
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC Mac OS X; *) Opera 8.0*]
10566
- Parent=Opera 8.0
10567
- Platform=MacOSX
 
10568
 
10569
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.0*]
10570
- Parent=Opera 8.0
10571
- Platform=MacPPC
 
10572
 
10573
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.0*]
10574
- Parent=Opera 8.0
10575
- Platform=Win2000
10576
- Win32=true
10577
 
10578
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.0*]
10579
- Parent=Opera 8.0
10580
- Platform=Win95
10581
- Win32=true
10582
 
10583
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.0*]
10584
- Parent=Opera 8.0
10585
- Platform=Win98
10586
- Win32=true
10587
 
10588
- [Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.0*]
10589
- Parent=Opera 8.0
10590
- Platform=WinCE
10591
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
10592
 
10593
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.0*]
10594
- Parent=Opera 8.0
10595
- Platform=WinME
10596
- Win32=true
10597
 
10598
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.0*]
10599
- Parent=Opera 8.0
10600
- Platform=WinNT
10601
- Win32=true
 
10602
 
10603
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.0*]
10604
- Parent=Opera 8.0
10605
- Platform=Win2000
10606
- Win32=true
 
10607
 
10608
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.0*]
10609
- Parent=Opera 8.0
10610
- Platform=WinXP
10611
- Win32=true
 
10612
 
10613
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.0*]
10614
- Parent=Opera 8.0
10615
- Platform=Win2003
10616
- Win32=true
 
10617
 
10618
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.0*]
10619
- Parent=Opera 8.0
10620
- Platform=WinXP
10621
- Win32=true
 
10622
 
10623
- [Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.0*]
10624
- Parent=Opera 8.0
10625
- Platform=FreeBSD
 
 
10626
 
10627
- [Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.0*]
10628
- Parent=Opera 8.0
10629
- Platform=Linux
 
 
10630
 
10631
- [Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.0*]
10632
- Parent=Opera 8.0
10633
- Platform=MacOSX
 
 
10634
 
10635
- [Mozilla/?.* (Windows 2000; *) Opera 8.0*]
10636
- Parent=Opera 8.0
10637
- Platform=Win2000
10638
- Win32=true
10639
 
10640
- [Mozilla/?.* (Windows 95; *) Opera 8.0*]
10641
- Parent=Opera 8.0
10642
- Platform=Win95
10643
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
10644
 
10645
- [Mozilla/?.* (Windows 98; *) Opera 8.0*]
10646
- Parent=Opera 8.0
10647
- Platform=Win98
10648
- Win32=true
10649
 
10650
- [Mozilla/?.* (Windows ME; *) Opera 8.0*]
10651
- Parent=Opera 8.0
10652
- Platform=WinME
10653
- Win32=true
10654
 
10655
- [Mozilla/?.* (Windows NT 4.0; *) Opera 8.0*]
10656
- Parent=Opera 8.0
10657
- Platform=WinNT
10658
- Win32=true
10659
 
10660
- [Mozilla/?.* (Windows NT 5.0; *) Opera 8.0*]
10661
- Parent=Opera 8.0
10662
- Platform=Win2000
10663
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
10664
 
10665
- [Mozilla/?.* (Windows NT 5.1; *) Opera 8.0*]
10666
- Parent=Opera 8.0
10667
- Platform=WinXP
10668
- Win32=true
10669
 
10670
- [Mozilla/?.* (Windows NT 5.2; *) Opera 8.0*]
10671
- Parent=Opera 8.0
10672
- Platform=Win2003
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10673
  Win32=true
 
 
 
 
 
 
 
10674
 
10675
- [Mozilla/?.* (X11; Linux*; *) Opera 8.0*]
10676
- Parent=Opera 8.0
10677
- Platform=Linux
 
10678
 
10679
- [Opera/8.0* (Linux*)*]
10680
- Parent=Opera 8.0
10681
- Platform=Linux
 
10682
 
10683
- [Opera/8.0* (Macintosh; *Mac OS X; *)*]
10684
- Parent=Opera 8.0
10685
- Platform=MacOSX
 
10686
 
10687
- [Opera/8.0* (Windows 95*)*]
10688
- Parent=Opera 8.0
10689
- Platform=Win95
10690
- Win32=true
10691
 
10692
- [Opera/8.0* (Windows 98*)*]
10693
- Parent=Opera 8.0
10694
- Platform=Win98
10695
- Win32=true
10696
 
10697
- [Opera/8.0* (Windows CE*)*]
10698
- Parent=Opera 8.0
10699
- Platform=WinCE
10700
- Win32=true
10701
 
10702
- [Opera/8.0* (Windows ME*)*]
10703
- Parent=Opera 8.0
10704
- Platform=WinME
10705
- Win32=true
10706
 
10707
- [Opera/8.0* (Windows NT 4.0*)*]
10708
- Parent=Opera 8.0
10709
- Platform=WinNT
10710
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10711
 
10712
- [Opera/8.0* (Windows NT 5.0*)*]
10713
- Parent=Opera 8.0
10714
- Platform=Win2000
10715
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10716
 
10717
- [Opera/8.0* (Windows NT 5.1*)*]
10718
- Parent=Opera 8.0
10719
- Platform=WinXP
10720
- Win32=true
10721
 
10722
- [Opera/8.0* (Windows NT 5.2*)*]
10723
- Parent=Opera 8.0
10724
- Platform=Win2003
10725
- Win32=true
10726
 
10727
- [Opera/8.0* (Windows XP*)*]
10728
- Parent=Opera 8.0
10729
- Platform=WinXP
10730
- Win32=true
10731
 
10732
- [Opera/8.0* (X11; FreeBSD*)*]
10733
- Parent=Opera 8.0
10734
- Platform=FreeBSD
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10735
 
10736
- [Opera/8.0* (X11; Linux*)*]
10737
- Parent=Opera 8.0
10738
- Platform=Linux
 
10739
 
10740
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.1
 
 
 
10741
 
10742
- [Opera 8.1]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10743
  Parent=DefaultProperties
 
10744
  Browser="Opera"
10745
- Version=8.1
10746
- MajorVer=8
10747
- MinorVer=1
 
10748
  Frames=true
10749
  IFrames=true
10750
  Tables=true
10751
  Cookies=true
10752
- BackgroundSounds=true
10753
- JavaApplets=true
10754
  JavaScript=true
10755
- CssVersion=2
10756
- supportsCSS=true
10757
-
10758
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.1*]
10759
- Parent=Opera 8.1
10760
- Platform=Linux
10761
-
10762
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.1*]
10763
- Parent=Opera 8.1
10764
- Platform=MacPPC
10765
-
10766
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.1*]
10767
- Parent=Opera 8.1
10768
- Platform=Win2000
10769
- Win32=true
10770
-
10771
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.1*]
10772
- Parent=Opera 8.1
10773
- Platform=Win95
10774
- Win32=true
10775
-
10776
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.1*]
10777
- Parent=Opera 8.1
10778
- Platform=Win98
10779
- Win32=true
10780
-
10781
- [Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.1*]
10782
- Parent=Opera 8.1
10783
- Platform=WinCE
10784
- Win32=true
10785
-
10786
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.1*]
10787
- Parent=Opera 8.1
10788
- Platform=WinME
10789
- Win32=true
10790
 
10791
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.1*]
10792
- Parent=Opera 8.1
10793
- Platform=WinNT
10794
- Win32=true
10795
 
10796
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.1*]
10797
- Parent=Opera 8.1
10798
- Platform=Win2000
10799
- Win32=true
10800
 
10801
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.1*]
10802
- Parent=Opera 8.1
10803
- Platform=WinXP
10804
- Win32=true
10805
 
10806
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.1*]
10807
- Parent=Opera 8.1
10808
- Platform=Win2003
10809
- Win32=true
10810
 
10811
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.1*]
10812
- Parent=Opera 8.1
10813
- Platform=WinXP
10814
- Win32=true
10815
 
10816
- [Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.1*]
10817
- Parent=Opera 8.1
10818
- Platform=FreeBSD
 
10819
 
10820
- [Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.1*]
10821
- Parent=Opera 8.1
10822
- Platform=Linux
 
10823
 
10824
- [Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.1*]
10825
- Parent=Opera 8.1
10826
- Platform=MacOSX
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10827
 
10828
- [Mozilla/?.* (Windows 2000; *) Opera 8.1*]
10829
- Parent=Opera 8.1
10830
- Platform=Win2000
10831
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10832
 
10833
- [Mozilla/?.* (Windows 95; *) Opera 8.1*]
10834
- Parent=Opera 8.1
10835
- Platform=Win95
10836
- Win32=true
10837
 
10838
- [Mozilla/?.* (Windows 98; *) Opera 8.1*]
10839
- Parent=Opera 8.1
10840
- Platform=Win98
10841
- Win32=true
10842
 
10843
- [Mozilla/?.* (Windows ME; *) Opera 8.1*]
10844
- Parent=Opera 8.1
10845
- Platform=WinME
10846
- Win32=true
10847
 
10848
- [Mozilla/?.* (Windows NT 4.0; *) Opera 8.1*]
10849
- Parent=Opera 8.1
10850
- Platform=WinNT
10851
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10852
 
10853
- [Mozilla/?.* (Windows NT 5.0; *) Opera 8.1*]
10854
- Parent=Opera 8.1
10855
- Platform=Win2000
10856
- Win32=true
10857
 
10858
- [Mozilla/?.* (Windows NT 5.1; *) Opera 8.1*]
10859
- Parent=Opera 8.1
10860
- Platform=WinXP
10861
- Win32=true
10862
 
10863
- [Mozilla/?.* (Windows NT 5.2; *) Opera 8.1*]
10864
- Parent=Opera 8.1
10865
- Platform=Win2003
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10866
  Win32=true
 
 
 
 
 
 
 
10867
 
10868
- [Mozilla/?.* (X11; Linux*; *) Opera 8.1*]
10869
- Parent=Opera 8.1
10870
- Platform=Linux
 
10871
 
10872
- [Opera/8.1* (Linux*)*]
10873
- Parent=Opera 8.1
10874
- Platform=Linux
 
10875
 
10876
- [Opera/8.1* (Macintosh; *Mac OS X; *)*]
10877
- Parent=Opera 8.1
10878
- Platform=MacOSX
 
10879
 
10880
- [Opera/8.1* (Windows 95*)*]
10881
- Parent=Opera 8.1
10882
- Platform=Win95
10883
- Win32=true
10884
 
10885
- [Opera/8.1* (Windows 98*)*]
10886
- Parent=Opera 8.1
10887
- Platform=Win98
10888
- Win32=true
10889
 
10890
- [Opera/8.1* (Windows CE*)*]
10891
- Parent=Opera 8.1
10892
- Platform=WinCE
10893
- Win32=true
10894
 
10895
- [Opera/8.1* (Windows ME*)*]
10896
- Parent=Opera 8.1
10897
- Platform=WinME
10898
- Win32=true
10899
 
10900
- [Opera/8.1* (Windows NT 4.0*)*]
10901
- Parent=Opera 8.1
10902
- Platform=WinNT
10903
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10904
 
10905
- [Opera/8.1* (Windows NT 5.0*)*]
10906
- Parent=Opera 8.1
10907
- Platform=Win2000
10908
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10909
 
10910
- [Opera/8.1* (Windows NT 5.1*)*]
10911
- Parent=Opera 8.1
10912
- Platform=WinXP
10913
- Win32=true
10914
 
10915
- [Opera/8.1* (Windows NT 5.2*)*]
10916
- Parent=Opera 8.1
10917
- Platform=Win2003
10918
- Win32=true
10919
 
10920
- [Opera/8.1* (Windows XP*)*]
10921
- Parent=Opera 8.1
10922
- Platform=WinXP
10923
- Win32=true
10924
 
10925
- [Opera/8.1* (X11; FreeBSD*)*]
10926
- Parent=Opera 8.1
10927
- Platform=FreeBSD
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10928
 
10929
- [Opera/8.1* (X11; Linux*)*]
10930
- Parent=Opera 8.1
10931
- Platform=Linux
 
10932
 
10933
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.5
 
 
 
10934
 
10935
- [Opera 8.5]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10936
  Parent=DefaultProperties
 
10937
  Browser="Opera"
10938
- Version=8.5
10939
- MajorVer=8
10940
- MinorVer=5
 
10941
  Frames=true
10942
  IFrames=true
10943
  Tables=true
10944
  Cookies=true
10945
- BackgroundSounds=true
10946
- JavaApplets=true
10947
  JavaScript=true
10948
- CssVersion=2
10949
- supportsCSS=true
10950
-
10951
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.5*]
10952
- Parent=Opera 8.5
10953
- Platform=Linux
10954
-
10955
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC Mac OS X;*) Opera 8.5*]
10956
- Parent=Opera 8.5
10957
- Platform=MacOSX
10958
-
10959
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.5*]
10960
- Parent=Opera 8.5
10961
- Platform=MacPPC
10962
-
10963
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.5*]
10964
- Parent=Opera 8.5
10965
- Platform=Win2000
10966
- Win32=true
10967
-
10968
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.5*]
10969
- Parent=Opera 8.5
10970
- Platform=Win95
10971
- Win32=true
10972
-
10973
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.5*]
10974
- Parent=Opera 8.5
10975
- Platform=Win98
10976
- Win32=true
10977
-
10978
- [Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.5*]
10979
- Parent=Opera 8.5
10980
- Platform=WinCE
10981
- Win32=true
10982
-
10983
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.5*]
10984
- Parent=Opera 8.5
10985
- Platform=WinME
10986
- Win32=true
10987
-
10988
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.5*]
10989
- Parent=Opera 8.5
10990
- Platform=WinNT
10991
- Win32=true
10992
 
10993
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.5*]
10994
- Parent=Opera 8.5
10995
- Platform=Win2000
10996
- Win32=true
10997
 
10998
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.5*]
10999
- Parent=Opera 8.5
11000
- Platform=WinXP
11001
- Win32=true
11002
 
11003
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.5*]
11004
- Parent=Opera 8.5
11005
- Platform=Win2003
11006
- Win32=true
11007
 
11008
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.5*]
11009
- Parent=Opera 8.5
11010
- Platform=WinXP
11011
- Win32=true
11012
 
11013
- [Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.5*]
11014
- Parent=Opera 8.5
11015
- Platform=FreeBSD
 
11016
 
11017
- [Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.5*]
11018
- Parent=Opera 8.5
11019
- Platform=Linux
 
11020
 
11021
- [Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.5*]
11022
- Parent=Opera 8.5
11023
- Platform=MacOSX
 
11024
 
11025
- [Mozilla/?.* (Macintosh; PPC Mac OS X;*) Opera 8.5*]
11026
- Parent=Opera 8.5
11027
- Platform=MacOSX
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11028
 
11029
- [Mozilla/?.* (Windows 2000; *) Opera 8.5*]
11030
- Parent=Opera 8.5
11031
- Platform=Win2000
11032
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11033
 
11034
- [Mozilla/?.* (Windows 95; *) Opera 8.5*]
11035
- Parent=Opera 8.5
11036
- Platform=Win95
11037
- Win32=true
11038
 
11039
- [Mozilla/?.* (Windows 98; *) Opera 8.5*]
11040
- Parent=Opera 8.5
11041
- Platform=Win98
11042
- Win32=true
11043
 
11044
- [Mozilla/?.* (Windows ME; *) Opera 8.5*]
11045
- Parent=Opera 8.5
11046
- Platform=WinME
11047
- Win32=true
11048
 
11049
- [Mozilla/?.* (Windows NT 4.0; *) Opera 8.5*]
11050
- Parent=Opera 8.5
11051
- Platform=WinNT
11052
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11053
 
11054
- [Mozilla/?.* (Windows NT 5.0; *) Opera 8.5*]
11055
- Parent=Opera 8.5
11056
- Platform=Win2000
11057
- Win32=true
11058
 
11059
- [Mozilla/?.* (Windows NT 5.1; *) Opera 8.5*]
11060
- Parent=Opera 8.5
11061
- Platform=WinXP
11062
- Win32=true
11063
 
11064
- [Mozilla/?.* (Windows NT 5.2; *) Opera 8.5*]
11065
- Parent=Opera 8.5
11066
- Platform=Win2003
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11067
  Win32=true
 
 
 
 
 
 
 
11068
 
11069
- [Mozilla/?.* (X11; Linux*; *) Opera 8.5*]
11070
- Parent=Opera 8.5
11071
- Platform=Linux
 
11072
 
11073
- [Opera/8.5* (Linux*)*]
11074
- Parent=Opera 8.5
11075
- Platform=Linux
 
11076
 
11077
- [Opera/8.5* (Macintosh; *Mac OS X; *)*]
11078
- Parent=Opera 8.5
11079
- Platform=MacOSX
 
11080
 
11081
- [Opera/8.5* (Windows 95*)*]
11082
- Parent=Opera 8.5
11083
- Platform=Win95
11084
- Win32=true
11085
 
11086
- [Opera/8.5* (Windows 98*)*]
11087
- Parent=Opera 8.5
11088
- Platform=Win98
11089
- Win32=true
11090
 
11091
- [Opera/8.5* (Windows CE*)*]
11092
- Parent=Opera 8.5
11093
- Platform=WinCE
11094
- Win32=true
11095
 
11096
- [Opera/8.5* (Windows ME*)*]
11097
- Parent=Opera 8.5
11098
- Platform=WinME
11099
- Win32=true
11100
 
11101
- [Opera/8.5* (Windows NT 4.0*)*]
11102
- Parent=Opera 8.5
11103
- Platform=WinNT
11104
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11105
 
11106
- [Opera/8.5* (Windows NT 5.0*)*]
11107
- Parent=Opera 8.5
11108
- Platform=Win2000
11109
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11110
 
11111
- [Opera/8.5* (Windows NT 5.1*)*]
11112
- Parent=Opera 8.5
11113
- Platform=WinXP
11114
- Win32=true
11115
 
11116
- [Opera/8.5* (Windows NT 5.2*)*]
11117
- Parent=Opera 8.5
11118
- Platform=Win2003
11119
- Win32=true
11120
 
11121
- [Opera/8.5* (Windows XP*)*]
11122
- Parent=Opera 8.5
11123
- Platform=WinXP
11124
- Win32=true
11125
 
11126
- [Opera/8.5* (X11; FreeBSD*)*]
11127
- Parent=Opera 8.5
11128
- Platform=FreeBSD
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11129
 
11130
- [Opera/8.5* (X11; Linux*)*]
11131
- Parent=Opera 8.5
11132
- Platform=Linux
 
11133
 
11134
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.0
 
 
 
11135
 
11136
- [Opera 9.0]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11137
  Parent=DefaultProperties
 
11138
  Browser="Opera"
11139
- Version=9.0
11140
- MajorVer=9
 
 
 
11141
  Frames=true
11142
  IFrames=true
11143
  Tables=true
11144
  Cookies=true
11145
- BackgroundSounds=true
11146
- JavaApplets=true
11147
  JavaScript=true
11148
- CssVersion=2
11149
- supportsCSS=true
11150
-
11151
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.0*]
11152
- Parent=Opera 9.0
11153
- Platform=Linux
11154
 
11155
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.0*]
11156
- Parent=Opera 9.0
11157
- Platform=MacOSX
 
11158
 
11159
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.0*]
11160
- Parent=Opera 9.0
11161
- Platform=MacPPC
 
11162
 
11163
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.0*]
11164
- Parent=Opera 9.0
11165
- Platform=Win2000
11166
- Win32=true
11167
 
11168
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.0*]
11169
- Parent=Opera 9.0
11170
- Platform=Win95
11171
- Win32=true
11172
 
11173
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.0*]
11174
- Parent=Opera 9.0
11175
- Platform=Win98
11176
- Win32=true
11177
 
11178
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.0*]
11179
- Parent=Opera 9.0
11180
- Platform=WinCE
11181
- Win32=true
11182
 
11183
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.0*]
11184
- Parent=Opera 9.0
11185
- Platform=WinME
11186
- Win32=true
11187
 
11188
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.0*]
11189
- Parent=Opera 9.0
11190
- Platform=WinNT
11191
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11192
 
11193
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.0*]
11194
- Parent=Opera 9.0
11195
- Platform=Win2000
11196
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11197
 
11198
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.0*]
11199
- Parent=Opera 9.0
11200
- Platform=WinXP
11201
- Win32=true
11202
 
11203
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.0*]
11204
- Parent=Opera 9.0
11205
- Platform=Win2003
11206
- Win32=true
11207
 
11208
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.0*]
11209
- Parent=Opera 9.0
11210
- Platform=WinVista
11211
- Win32=true
11212
 
11213
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.0*]
11214
- Parent=Opera 9.0
11215
- Platform=WinXP
11216
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11217
 
11218
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.0*]
11219
- Parent=Opera 9.0
11220
- Platform=FreeBSD
 
11221
 
11222
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.0*]
11223
- Parent=Opera 9.0
11224
- Platform=Linux
 
11225
 
11226
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.0*]
11227
- Parent=Opera 9.0
11228
- Platform=SunOS
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11229
 
11230
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.0*]
11231
- Parent=Opera 9.0
11232
- Platform=MacOSX
 
11233
 
11234
- [Mozilla/* (Windows 2000;*) Opera 9.0*]
11235
- Parent=Opera 9.0
11236
- Platform=Win2000
11237
- Win32=true
11238
 
11239
- [Mozilla/* (Windows 95;*) Opera 9.0*]
11240
- Parent=Opera 9.0
11241
- Platform=Win95
11242
- Win32=true
11243
 
11244
- [Mozilla/* (Windows 98;*) Opera 9.0*]
11245
- Parent=Opera 9.0
11246
- Platform=Win98
11247
- Win32=true
11248
 
11249
- [Mozilla/* (Windows ME;*) Opera 9.0*]
11250
- Parent=Opera 9.0
11251
- Platform=WinME
11252
- Win32=true
11253
 
11254
- [Mozilla/* (Windows NT 4.0;*) Opera 9.0*]
11255
- Parent=Opera 9.0
11256
- Platform=WinNT
11257
- Win32=true
11258
 
11259
- [Mozilla/* (Windows NT 5.0;*) Opera 9.0*]
11260
- Parent=Opera 9.0
11261
- Platform=Win2000
11262
- Win32=true
11263
 
11264
- [Mozilla/* (Windows NT 5.1;*) Opera 9.0*]
11265
- Parent=Opera 9.0
11266
- Platform=WinXP
11267
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11268
 
11269
- [Mozilla/* (Windows NT 5.2;*) Opera 9.0*]
11270
- Parent=Opera 9.0
11271
- Platform=Win2003
11272
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11273
 
11274
- [Mozilla/* (X11; Linux*) Opera 9.0*]
11275
- Parent=Opera 9.0
11276
- Platform=Linux
 
11277
 
11278
- [Opera/9.0* (Linux*)*]
11279
- Parent=Opera 9.0
11280
- Platform=Linux
 
11281
 
11282
- [Opera/9.0* (Macintosh; *Mac OS X;*)*]
11283
- Parent=Opera 9.0
11284
- Platform=MacOSX
 
11285
 
11286
- [Opera/9.0* (Windows 95*)*]
11287
- Parent=Opera 9.0
11288
- Platform=Win95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11289
  Win32=true
 
 
 
 
11290
 
11291
- [Opera/9.0* (Windows 98*)*]
11292
- Parent=Opera 9.0
11293
- Platform=Win98
11294
- Win32=true
11295
 
11296
- [Opera/9.0* (Windows CE*)*]
11297
- Parent=Opera 9.0
11298
- Platform=WinCE
11299
- Win32=true
11300
 
11301
- [Opera/9.0* (Windows ME*)*]
11302
- Parent=Opera 9.0
11303
- Platform=WinME
11304
- Win32=true
11305
 
11306
- [Opera/9.0* (Windows NT 4.0*)*]
11307
- Parent=Opera 9.0
11308
- Platform=WinNT
11309
- Win32=true
11310
 
11311
- [Opera/9.0* (Windows NT 5.0*)*]
11312
- Parent=Opera 9.0
11313
- Platform=Win2000
11314
- Win32=true
11315
 
11316
- [Opera/9.0* (Windows NT 5.1*)*]
11317
- Parent=Opera 9.0
11318
- Platform=WinXP
11319
- Win32=true
11320
 
11321
- [Opera/9.0* (Windows NT 5.2*)*]
11322
- Parent=Opera 9.0
11323
- Platform=Win2003
11324
- Win32=true
11325
 
11326
- [Opera/9.0* (Windows NT 6.0*)*]
11327
- Parent=Opera 9.0
11328
- Platform=WinVista
11329
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11330
 
11331
- [Opera/9.0* (Windows XP*)*]
11332
- Parent=Opera 9.0
11333
- Platform=WinXP
11334
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11335
 
11336
- [Opera/9.0* (X11; FreeBSD*)*]
11337
- Parent=Opera 9.0
11338
- Platform=FreeBSD
 
11339
 
11340
- [Opera/9.0* (X11; Linux*)*]
11341
- Parent=Opera 9.0
11342
- Platform=Linux
 
11343
 
11344
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.1
 
 
 
11345
 
11346
- [Opera 9.1]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11347
  Parent=DefaultProperties
 
11348
  Browser="Opera"
11349
- Version=9.1
11350
- MajorVer=9
11351
- MinorVer=1
 
11352
  Frames=true
11353
  IFrames=true
11354
  Tables=true
11355
  Cookies=true
11356
- BackgroundSounds=true
11357
- JavaApplets=true
11358
  JavaScript=true
 
11359
  CssVersion=2
11360
- supportsCSS=true
11361
-
11362
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.1*]
11363
- Parent=Opera 9.1
11364
- Platform=Linux
11365
 
11366
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.1*]
11367
- Parent=Opera 9.1
11368
- Platform=MacOSX
 
11369
 
11370
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC;*) Opera 9.1*]
11371
- Parent=Opera 9.1
11372
- Platform=MacPPC
 
11373
 
11374
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.1*]
11375
- Parent=Opera 9.1
11376
- Platform=Win2000
11377
- Win32=true
11378
 
11379
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.1*]
11380
- Parent=Opera 9.1
11381
- Platform=Win95
11382
- Win32=true
11383
 
11384
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.1*]
11385
- Parent=Opera 9.1
11386
- Platform=Win98
11387
- Win32=true
11388
 
11389
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.1*]
11390
- Parent=Opera 9.1
11391
- Platform=WinCE
11392
- Win32=true
11393
 
11394
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.1*]
11395
- Parent=Opera 9.1
11396
- Platform=WinME
11397
- Win32=true
11398
 
11399
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.1*]
11400
- Parent=Opera 9.1
11401
- Platform=WinNT
11402
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11403
 
11404
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.1*]
11405
- Parent=Opera 9.1
11406
- Platform=Win2000
11407
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11408
 
11409
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.1*]
11410
- Parent=Opera 9.1
11411
- Platform=WinXP
11412
- Win32=true
11413
 
11414
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.1*]
11415
- Parent=Opera 9.1
11416
- Platform=Win2003
11417
- Win32=true
11418
 
11419
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.1*]
11420
- Parent=Opera 9.1
11421
- Platform=WinVista
11422
- Win32=true
11423
 
11424
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.1*]
11425
- Parent=Opera 9.1
11426
- Platform=WinXP
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11427
  Win32=true
 
 
 
 
 
 
 
11428
 
11429
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.1*]
11430
- Parent=Opera 9.1
11431
- Platform=FreeBSD
11432
-
11433
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.1*]
11434
- Parent=Opera 9.1
11435
- Platform=Linux
11436
-
11437
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.1*]
11438
- Parent=Opera 9.1
11439
- Platform=SunOS
11440
-
11441
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.1*]
11442
- Parent=Opera 9.1
11443
- Platform=MacOSX
11444
 
11445
- [Mozilla/* (Windows 2000;*) Opera 9.1*]
11446
- Parent=Opera 9.1
11447
- Platform=Win2000
11448
- Win32=true
11449
 
11450
- [Mozilla/* (Windows 95;*) Opera 9.1*]
11451
- Parent=Opera 9.1
11452
- Platform=Win95
11453
- Win32=true
11454
 
11455
- [Mozilla/* (Windows 98;*) Opera 9.1*]
11456
- Parent=Opera 9.1
11457
- Platform=Win98
11458
- Win32=true
11459
 
11460
- [Mozilla/* (Windows ME;*) Opera 9.1*]
11461
- Parent=Opera 9.1
11462
- Platform=WinME
11463
- Win32=true
11464
 
11465
- [Mozilla/* (Windows NT 4.0;*) Opera 9.1*]
11466
- Parent=Opera 9.1
11467
- Platform=WinNT
11468
- Win32=true
11469
 
11470
- [Mozilla/* (Windows NT 5.0;*) Opera 9.1*]
11471
- Parent=Opera 9.1
11472
- Platform=Win2000
11473
- Win32=true
11474
 
11475
- [Mozilla/* (Windows NT 5.1;*) Opera 9.1*]
11476
- Parent=Opera 9.1
11477
- Platform=WinXP
11478
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11479
 
11480
- [Mozilla/* (Windows NT 5.2;*) Opera 9.1*]
11481
- Parent=Opera 9.1
11482
- Platform=Win2003
11483
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11484
 
11485
- [Mozilla/* (X11; Linux*) Opera 9.1*]
11486
- Parent=Opera 9.1
11487
- Platform=Linux
 
11488
 
11489
- [Opera/9.1* (Linux*)*]
11490
- Parent=Opera 9.1
11491
- Platform=Linux
 
11492
 
11493
- [Opera/9.1* (Macintosh; *Mac OS X;*)*]
11494
- Parent=Opera 9.1
11495
- Platform=MacOSX
 
11496
 
11497
- [Opera/9.1* (Windows 95*)*]
11498
- Parent=Opera 9.1
11499
- Platform=Win95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11500
  Win32=true
 
 
 
 
 
 
 
11501
 
11502
- [Opera/9.1* (Windows 98*)*]
11503
- Parent=Opera 9.1
11504
- Platform=Win98
11505
- Win32=true
11506
 
11507
- [Opera/9.1* (Windows CE*)*]
11508
- Parent=Opera 9.1
11509
- Platform=WinCE
11510
- Win32=true
11511
 
11512
- [Opera/9.1* (Windows ME*)*]
11513
- Parent=Opera 9.1
11514
- Platform=WinME
11515
- Win32=true
11516
 
11517
- [Opera/9.1* (Windows NT 4.0*)*]
11518
- Parent=Opera 9.1
11519
- Platform=WinNT
11520
- Win32=true
11521
 
11522
- [Opera/9.1* (Windows NT 5.0*)*]
11523
- Parent=Opera 9.1
11524
- Platform=Win2000
11525
- Win32=true
11526
 
11527
- [Opera/9.1* (Windows NT 5.1*)*]
11528
- Parent=Opera 9.1
11529
- Platform=WinXP
11530
- Win32=true
11531
 
11532
- [Opera/9.1* (Windows NT 5.2*)*]
11533
- Parent=Opera 9.1
11534
- Platform=Win2003
11535
- Win32=true
11536
 
11537
- [Opera/9.1* (Windows NT 6.0*)*]
11538
- Parent=Opera 9.1
11539
- Platform=WinVista
11540
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11541
 
11542
- [Opera/9.1* (Windows XP*)*]
11543
- Parent=Opera 9.1
11544
- Platform=WinXP
11545
- Win32=true
 
11546
 
11547
- [Opera/9.1* (X11; FreeBSD*)*]
11548
- Parent=Opera 9.1
11549
- Platform=FreeBSD
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11550
 
11551
- [Opera/9.1* (X11; Linux*)*]
11552
- Parent=Opera 9.1
11553
- Platform=Linux
 
11554
 
11555
- [Opera/9.1* (X11; SunOS*)*]
11556
- Parent=Opera 9.1
11557
- Platform=SunOS
 
11558
 
11559
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.2
 
 
 
11560
 
11561
- [Opera 9.2]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11562
  Parent=DefaultProperties
 
11563
  Browser="Opera"
11564
- Version=9.2
11565
- MajorVer=9
11566
- MinorVer=2
 
11567
  Frames=true
11568
  IFrames=true
11569
  Tables=true
11570
  Cookies=true
11571
- BackgroundSounds=true
11572
- JavaApplets=true
11573
  JavaScript=true
11574
- CssVersion=2
11575
- supportsCSS=true
11576
 
11577
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.2*]
11578
- Parent=Opera 9.2
11579
- Platform=Linux
 
11580
 
11581
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.2*]
11582
- Parent=Opera 9.2
11583
- Platform=MacOSX
 
11584
 
11585
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.2*]
11586
- Parent=Opera 9.2
11587
- Platform=MacPPC
 
11588
 
11589
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.2*]
11590
- Parent=Opera 9.2
11591
- Platform=Win2000
11592
- Win32=true
11593
 
11594
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.2*]
11595
- Parent=Opera 9.2
11596
- Platform=Win95
11597
- Win32=true
11598
 
11599
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.2*]
11600
- Parent=Opera 9.2
11601
- Platform=Win98
11602
- Win32=true
11603
 
11604
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.2*]
11605
- Parent=Opera 9.2
11606
- Platform=WinCE
11607
- Win32=true
11608
 
11609
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.2*]
11610
- Parent=Opera 9.2
11611
- Platform=WinME
11612
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11613
 
11614
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.2*]
11615
- Parent=Opera 9.2
11616
- Platform=WinNT
11617
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11618
 
11619
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.2*]
11620
- Parent=Opera 9.2
11621
- Platform=Win2000
11622
- Win32=true
11623
 
11624
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.2*]
11625
- Parent=Opera 9.2
11626
- Platform=WinXP
11627
- Win32=true
11628
 
11629
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.2*]
11630
- Parent=Opera 9.2
11631
- Platform=Win2003
11632
- Win32=true
11633
 
11634
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.2*]
11635
- Parent=Opera 9.2
11636
- Platform=WinVista
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11637
  Win32=true
 
 
 
 
 
 
 
11638
 
11639
- [Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.2*]
11640
- Parent=Opera 9.2
11641
- Platform=Win7
 
11642
 
11643
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.2*]
11644
- Parent=Opera 9.2
11645
- Platform=WinXP
11646
- Win32=true
11647
 
11648
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.2*]
11649
- Parent=Opera 9.2
11650
- Platform=FreeBSD
 
11651
 
11652
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.2*]
11653
- Parent=Opera 9.2
11654
- Platform=Linux
 
11655
 
11656
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.2*]
11657
- Parent=Opera 9.2
11658
- Platform=SunOS
 
11659
 
11660
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.2*]
11661
- Parent=Opera 9.2
11662
- Platform=MacOSX
 
11663
 
11664
- [Mozilla/* (Windows 2000;*) Opera 9.2*]
11665
- Parent=Opera 9.2
11666
- Platform=Win2000
11667
- Win32=true
11668
 
11669
- [Mozilla/* (Windows 95;*) Opera 9.2*]
11670
- Parent=Opera 9.2
11671
- Platform=Win95
11672
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11673
 
11674
- [Mozilla/* (Windows 98;*) Opera 9.2*]
11675
- Parent=Opera 9.2
11676
- Platform=Win98
11677
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11678
 
11679
- [Mozilla/* (Windows ME;*) Opera 9.2*]
11680
- Parent=Opera 9.2
11681
- Platform=WinME
11682
- Win32=true
11683
 
11684
- [Mozilla/* (Windows NT 4.0;*) Opera 9.2*]
11685
- Parent=Opera 9.2
11686
- Platform=WinNT
11687
- Win32=true
11688
 
11689
- [Mozilla/* (Windows NT 5.0;*) Opera 9.2*]
11690
- Parent=Opera 9.2
11691
- Platform=Win2000
11692
- Win32=true
11693
 
11694
- [Mozilla/* (Windows NT 5.1;*) Opera 9.2*]
11695
- Parent=Opera 9.2
11696
- Platform=WinXP
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11697
  Win32=true
 
 
 
 
 
 
 
11698
 
11699
- [Mozilla/* (Windows NT 5.2;*) Opera 9.2*]
11700
- Parent=Opera 9.2
11701
- Platform=Win2003
11702
- Win32=true
11703
 
11704
- [Mozilla/* (Windows NT 6.0;*) Opera 9.2*]
11705
- Parent=Opera 9.2
11706
- Platform=WinVista
 
11707
 
11708
- [Mozilla/* (Windows NT 6.1;*) Opera 9.2*]
11709
- Parent=Opera 9.2
11710
- Platform=Win7
 
11711
 
11712
- [Mozilla/* (X11; Linux*) Opera 9.2*]
11713
- Parent=Opera 9.2
11714
- Platform=Linux
 
11715
 
11716
- [Opera/9.2* (Linux*)*]
11717
- Parent=Opera 9.2
11718
- Platform=Linux
 
11719
 
11720
- [Opera/9.2* (Macintosh; *Mac OS X;*)*]
11721
- Parent=Opera 9.2
11722
- Platform=MacOSX
 
11723
 
11724
- [Opera/9.2* (Windows 95*)*]
11725
- Parent=Opera 9.2
11726
- Platform=Win95
11727
- Win32=true
11728
 
11729
- [Opera/9.2* (Windows 98*)*]
11730
- Parent=Opera 9.2
11731
- Platform=Win98
11732
- Win32=true
11733
 
11734
- [Opera/9.2* (Windows CE*)*]
11735
- Parent=Opera 9.2
11736
- Platform=WinCE
11737
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11738
 
11739
- [Opera/9.2* (Windows ME*)*]
11740
- Parent=Opera 9.2
11741
- Platform=WinME
11742
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11743
 
11744
- [Opera/9.2* (Windows NT 4.0*)*]
11745
- Parent=Opera 9.2
11746
- Platform=WinNT
11747
- Win32=true
11748
 
11749
- [Opera/9.2* (Windows NT 5.0*)*]
11750
- Parent=Opera 9.2
11751
- Platform=Win2000
11752
- Win32=true
11753
 
11754
- [Opera/9.2* (Windows NT 5.1*)*]
11755
- Parent=Opera 9.2
11756
- Platform=WinXP
11757
- Win32=true
11758
 
11759
- [Opera/9.2* (Windows NT 5.2*)*]
11760
- Parent=Opera 9.2
11761
- Platform=Win2003
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11762
  Win32=true
 
 
 
 
 
11763
 
11764
- [Opera/9.2* (Windows NT 6.0*)*]
11765
- Parent=Opera 9.2
11766
- Platform=WinVista
11767
- Win32=true
11768
 
11769
- [Opera/9.2* (Windows NT 6.1*)*]
11770
- Parent=Opera 9.2
11771
- Platform=Win7
 
11772
 
11773
- [Opera/9.2* (Windows XP*)*]
11774
- Parent=Opera 9.2
11775
- Platform=WinXP
11776
- Win32=true
11777
 
11778
- [Opera/9.2* (X11; FreeBSD*)*]
11779
- Parent=Opera 9.2
11780
- Platform=FreeBSD
 
11781
 
11782
- [Opera/9.2* (X11; Linux*)*]
11783
- Parent=Opera 9.2
11784
- Platform=Linux
 
11785
 
11786
- [Opera/9.2* (X11; SunOS*)*]
11787
- Parent=Opera 9.2
11788
- Platform=SunOS
 
11789
 
11790
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11791
 
11792
- [Opera 9.3]
11793
- Parent=DefaultProperties
11794
- Browser="Opera"
11795
- Version=9.3
11796
- MajorVer=9
11797
- MinorVer=3
11798
- Frames=true
11799
- IFrames=true
11800
- Tables=true
11801
- Cookies=true
11802
- BackgroundSounds=true
11803
- JavaApplets=true
11804
- JavaScript=true
11805
- CssVersion=2
11806
- supportsCSS=true
11807
 
11808
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.3*]
11809
- Parent=Opera 9.3
11810
- Platform=Linux
 
11811
 
11812
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.3*]
11813
- Parent=Opera 9.3
11814
- Platform=MacOSX
 
11815
 
11816
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.3*]
11817
- Parent=Opera 9.3
11818
- Platform=MacPPC
 
11819
 
11820
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.3*]
11821
- Parent=Opera 9.3
11822
- Platform=Win2000
11823
- Win32=true
11824
 
11825
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.3*]
11826
- Parent=Opera 9.3
11827
- Platform=Win95
11828
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11829
 
11830
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.3*]
11831
- Parent=Opera 9.3
11832
- Platform=Win98
11833
- Win32=true
11834
 
11835
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.3*]
11836
- Parent=Opera 9.3
11837
- Platform=WinCE
11838
- Win32=true
11839
 
11840
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.3*]
11841
- Parent=Opera 9.3
11842
- Platform=WinME
11843
- Win32=true
11844
 
11845
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.3*]
11846
- Parent=Opera 9.3
11847
- Platform=WinNT
11848
- Win32=true
11849
 
11850
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.3*]
11851
- Parent=Opera 9.3
11852
- Platform=Win2000
11853
- Win32=true
11854
 
11855
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.3*]
11856
- Parent=Opera 9.3
11857
- Platform=WinXP
11858
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11859
 
11860
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.3*]
11861
- Parent=Opera 9.3
11862
- Platform=Win2003
11863
- Win32=true
11864
 
11865
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.3*]
11866
- Parent=Opera 9.3
11867
- Platform=WinVista
11868
- Win32=true
11869
 
11870
- [Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.3*]
11871
- Parent=Opera 9.3
11872
- Platform=Win7
 
11873
 
11874
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.3*]
11875
- Parent=Opera 9.3
11876
- Platform=WinXP
11877
- Win32=true
11878
 
11879
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.3*]
11880
- Parent=Opera 9.3
11881
- Platform=FreeBSD
 
11882
 
11883
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.3*]
11884
- Parent=Opera 9.3
11885
- Platform=Linux
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11886
 
11887
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.3*]
11888
- Parent=Opera 9.3
11889
- Platform=SunOS
11890
 
11891
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.3*]
11892
- Parent=Opera 9.3
11893
- Platform=MacOSX
 
 
 
 
 
 
 
 
 
 
11894
 
11895
- [Mozilla/* (Windows 2000;*) Opera 9.3*]
11896
- Parent=Opera 9.3
11897
- Platform=Win2000
11898
- Win32=true
11899
 
11900
- [Mozilla/* (Windows 95;*) Opera 9.3*]
11901
- Parent=Opera 9.3
11902
- Platform=Win95
 
11903
  Win32=true
11904
 
11905
- [Mozilla/* (Windows 98;*) Opera 9.3*]
11906
- Parent=Opera 9.3
11907
- Platform=Win98
11908
- Win32=true
11909
 
11910
- [Mozilla/* (Windows ME;*) Opera 9.3*]
11911
- Parent=Opera 9.3
11912
- Platform=WinME
11913
- Win32=true
11914
 
11915
- [Mozilla/* (Windows NT 4.0;*) Opera 9.3*]
11916
- Parent=Opera 9.3
11917
- Platform=WinNT
 
11918
  Win32=true
11919
 
11920
- [Mozilla/* (Windows NT 5.0;*) Opera 9.3*]
11921
- Parent=Opera 9.3
11922
- Platform=Win2000
 
11923
  Win32=true
11924
 
11925
- [Mozilla/* (Windows NT 5.1;*) Opera 9.3*]
11926
- Parent=Opera 9.3
11927
- Platform=WinXP
 
11928
  Win32=true
11929
 
11930
- [Mozilla/* (Windows NT 5.2;*) Opera 9.3*]
11931
- Parent=Opera 9.3
11932
- Platform=Win2003
11933
  Win32=true
11934
 
11935
- [Mozilla/* (Windows NT 6.0;*) Opera 9.3*]
11936
- Parent=Opera 9.3
11937
- Platform=WinVista
11938
-
11939
- [Mozilla/* (Windows NT 6.1;*) Opera 9.3*]
11940
- Parent=Opera 9.3
11941
- Platform=Win7
11942
-
11943
- [Mozilla/* (X11; Linux*) Opera 9.3*]
11944
- Parent=Opera 9.3
11945
- Platform=Linux
11946
-
11947
- [Opera/9.3* (Linux*)*]
11948
- Parent=Opera 9.3
11949
- Platform=Linux
11950
 
11951
- [Opera/9.3* (Macintosh; *Mac OS X;*)*]
11952
- Parent=Opera 9.3
11953
- Platform=MacOSX
11954
 
11955
- [Opera/9.3* (Windows 95*)*]
11956
- Parent=Opera 9.3
11957
- Platform=Win95
11958
- Win32=true
11959
 
11960
- [Opera/9.3* (Windows 98*)*]
11961
- Parent=Opera 9.3
11962
- Platform=Win98
11963
- Win32=true
 
 
 
 
 
 
 
 
 
 
11964
 
11965
- [Opera/9.3* (Windows CE*)*]
11966
- Parent=Opera 9.3
11967
- Platform=WinCE
11968
- Win32=true
11969
 
11970
- [Opera/9.3* (Windows ME*)*]
11971
- Parent=Opera 9.3
11972
- Platform=WinME
11973
- Win32=true
11974
 
11975
- [Opera/9.3* (Windows NT 4.0*)*]
11976
- Parent=Opera 9.3
11977
- Platform=WinNT
11978
- Win32=true
11979
 
11980
- [Opera/9.3* (Windows NT 5.0*)*]
11981
- Parent=Opera 9.3
11982
- Platform=Win2000
11983
- Win32=true
11984
 
11985
- [Opera/9.3* (Windows NT 5.1*)*]
11986
- Parent=Opera 9.3
11987
- Platform=WinXP
 
11988
  Win32=true
11989
 
11990
- [Opera/9.3* (Windows NT 5.2*)*]
11991
- Parent=Opera 9.3
11992
- Platform=Win2003
 
11993
  Win32=true
11994
 
11995
- [Opera/9.3* (Windows NT 6.0*)*]
11996
- Parent=Opera 9.3
11997
- Platform=WinVista
 
11998
  Win32=true
11999
 
12000
- [Opera/9.3* (Windows NT 6.1*)*]
12001
- Parent=Opera 9.3
12002
- Platform=Win7
12003
-
12004
- [Opera/9.3* (Windows XP*)*]
12005
- Parent=Opera 9.3
12006
- Platform=WinXP
12007
  Win32=true
12008
 
12009
- [Opera/9.3* (X11; FreeBSD*)*]
12010
- Parent=Opera 9.3
12011
- Platform=FreeBSD
12012
-
12013
- [Opera/9.3* (X11; Linux*)*]
12014
- Parent=Opera 9.3
12015
- Platform=Linux
12016
 
12017
- [Opera/9.3* (X11; SunOS*)*]
12018
- Parent=Opera 9.3
12019
- Platform=SunOS
12020
 
12021
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.4
12022
 
12023
- [Opera 9.4]
12024
  Parent=DefaultProperties
12025
- Browser="Opera"
12026
- Version=9.4
12027
- MajorVer=9
12028
- MinorVer=4
 
12029
  Frames=true
12030
  IFrames=true
12031
  Tables=true
12032
  Cookies=true
12033
- BackgroundSounds=true
12034
- JavaApplets=true
12035
  JavaScript=true
12036
- CssVersion=2
12037
- supportsCSS=true
12038
 
12039
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.4*]
12040
- Parent=Opera 9.4
12041
- Platform=Linux
12042
 
12043
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.4*]
12044
- Parent=Opera 9.4
12045
- Platform=MacOSX
 
12046
 
12047
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.4*]
12048
- Parent=Opera 9.4
12049
- Platform=MacPPC
12050
 
12051
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.4*]
12052
- Parent=Opera 9.4
12053
- Platform=Win2000
12054
- Win32=true
12055
 
12056
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.4*]
12057
- Parent=Opera 9.4
12058
- Platform=Win95
 
12059
  Win32=true
12060
 
12061
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.4*]
12062
- Parent=Opera 9.4
12063
- Platform=Win98
 
12064
  Win32=true
12065
 
12066
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.4*]
12067
- Parent=Opera 9.4
12068
- Platform=WinCE
 
12069
  Win32=true
12070
 
12071
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.4*]
12072
- Parent=Opera 9.4
12073
- Platform=WinME
12074
  Win32=true
12075
 
12076
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.4*]
12077
- Parent=Opera 9.4
12078
- Platform=WinNT
12079
- Win32=true
12080
 
12081
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.4*]
12082
- Parent=Opera 9.4
12083
- Platform=Win2000
12084
- Win32=true
12085
 
12086
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.4*]
12087
- Parent=Opera 9.4
12088
- Platform=WinXP
12089
- Win32=true
12090
 
12091
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.4*]
12092
- Parent=Opera 9.4
12093
- Platform=Win2003
 
 
 
 
12094
  Win32=true
 
 
 
 
 
 
 
12095
 
12096
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.4*]
12097
- Parent=Opera 9.4
12098
- Platform=WinVista
12099
- Win32=true
12100
 
12101
- [Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.4*]
12102
- Parent=Opera 9.4
12103
- Platform=Win7
 
12104
 
12105
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.4*]
12106
- Parent=Opera 9.4
12107
- Platform=WinXP
12108
- Win32=true
12109
 
12110
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.4*]
12111
- Parent=Opera 9.4
12112
- Platform=FreeBSD
12113
 
12114
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.4*]
12115
- Parent=Opera 9.4
12116
- Platform=Linux
 
12117
 
12118
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.4*]
12119
- Parent=Opera 9.4
12120
- Platform=SunOS
 
12121
 
12122
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.4*]
12123
- Parent=Opera 9.4
12124
- Platform=MacOSX
 
12125
 
12126
- [Mozilla/* (Windows 2000;*) Opera 9.4*]
12127
- Parent=Opera 9.4
12128
- Platform=Win2000
12129
- Win32=true
12130
 
12131
- [Mozilla/* (Windows 95;*) Opera 9.4*]
12132
- Parent=Opera 9.4
12133
- Platform=Win95
12134
- Win32=true
12135
 
12136
- [Mozilla/* (Windows 98;*) Opera 9.4*]
12137
- Parent=Opera 9.4
12138
- Platform=Win98
12139
- Win32=true
12140
 
12141
- [Mozilla/* (Windows ME;*) Opera 9.4*]
12142
- Parent=Opera 9.4
12143
- Platform=WinME
12144
- Win32=true
12145
 
12146
- [Mozilla/* (Windows NT 4.0;*) Opera 9.4*]
12147
- Parent=Opera 9.4
12148
- Platform=WinNT
12149
- Win32=true
12150
 
12151
- [Mozilla/* (Windows NT 5.0;*) Opera 9.4*]
12152
- Parent=Opera 9.4
12153
- Platform=Win2000
12154
- Win32=true
12155
 
12156
- [Mozilla/* (Windows NT 5.1;*) Opera 9.4*]
12157
- Parent=Opera 9.4
12158
- Platform=WinXP
12159
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12160
 
12161
- [Mozilla/* (Windows NT 5.2;*) Opera 9.4*]
12162
- Parent=Opera 9.4
12163
- Platform=Win2003
 
 
 
 
12164
  Win32=true
 
 
 
 
 
 
 
12165
 
12166
- [Mozilla/* (Windows NT 6.0;*) Opera 9.4*]
12167
- Parent=Opera 9.4
12168
- Platform=WinVista
12169
 
12170
- [Mozilla/* (Windows NT 6.1;*) Opera 9.4*]
12171
- Parent=Opera 9.4
12172
- Platform=Win7
 
12173
 
12174
- [Mozilla/* (X11; Linux*) Opera 9.4*]
12175
- Parent=Opera 9.4
12176
- Platform=Linux
12177
 
12178
- [Opera/9.4* (Linux*)*]
12179
- Parent=Opera 9.4
12180
- Platform=Linux
 
12181
 
12182
- [Opera/9.4* (Macintosh; *Mac OS X;*)*]
12183
- Parent=Opera 9.4
12184
- Platform=MacOSX
 
12185
 
12186
- [Opera/9.4* (Windows 95*)*]
12187
- Parent=Opera 9.4
12188
- Platform=Win95
12189
- Win32=true
12190
 
12191
- [Opera/9.4* (Windows 98*)*]
12192
- Parent=Opera 9.4
12193
- Platform=Win98
12194
- Win32=true
12195
 
12196
- [Opera/9.4* (Windows CE*)*]
12197
- Parent=Opera 9.4
12198
- Platform=WinCE
12199
- Win32=true
12200
 
12201
- [Opera/9.4* (Windows ME*)*]
12202
- Parent=Opera 9.4
12203
- Platform=WinME
12204
- Win32=true
12205
 
12206
- [Opera/9.4* (Windows NT 4.0*)*]
12207
- Parent=Opera 9.4
12208
- Platform=WinNT
12209
- Win32=true
12210
 
12211
- [Opera/9.4* (Windows NT 5.0*)*]
12212
- Parent=Opera 9.4
12213
- Platform=Win2000
12214
- Win32=true
12215
 
12216
- [Opera/9.4* (Windows NT 5.1*)*]
12217
- Parent=Opera 9.4
12218
- Platform=WinXP
12219
- Win32=true
12220
 
12221
- [Opera/9.4* (Windows NT 5.2*)*]
12222
- Parent=Opera 9.4
12223
- Platform=Win2003
12224
- Win32=true
12225
 
12226
- [Opera/9.4* (Windows NT 6.0*)*]
12227
- Parent=Opera 9.4
12228
- Platform=WinVista
12229
- Win32=true
12230
 
12231
- [Opera/9.4* (Windows NT 6.1*)*]
12232
- Parent=Opera 9.4
12233
- Platform=Win7
12234
 
12235
- [Opera/9.4* (Windows XP*)*]
12236
- Parent=Opera 9.4
12237
- Platform=WinXP
12238
- Win32=true
12239
 
12240
- [Opera/9.4* (X11; FreeBSD*)*]
12241
- Parent=Opera 9.4
12242
- Platform=FreeBSD
12243
 
12244
- [Opera/9.4* (X11; Linux*)*]
12245
- Parent=Opera 9.4
12246
- Platform=Linux
 
12247
 
12248
- [Opera/9.4* (X11; SunOS*)*]
12249
- Parent=Opera 9.4
12250
- Platform=SunOS
 
12251
 
12252
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.5
12253
 
12254
- [Opera 9.5]
12255
  Parent=DefaultProperties
12256
- Browser="Opera"
12257
- Version=9.5
12258
- MajorVer=9
12259
- MinorVer=5
 
 
12260
  Frames=true
12261
  IFrames=true
12262
  Tables=true
12263
  Cookies=true
12264
- BackgroundSounds=true
12265
- JavaApplets=true
12266
  JavaScript=true
 
12267
  CssVersion=2
12268
- supportsCSS=true
12269
 
12270
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.5*]
12271
- Parent=Opera 9.5
12272
- Platform=Linux
 
 
 
 
 
 
 
 
 
 
 
12273
 
12274
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.5*]
12275
- Parent=Opera 9.5
12276
- Platform=MacOSX
12277
 
12278
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.5*]
12279
- Parent=Opera 9.5
12280
- Platform=MacPPC
 
12281
 
12282
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.5*]
12283
- Parent=Opera 9.5
12284
- Platform=Win2000
12285
- Win32=true
12286
 
12287
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.5*]
12288
- Parent=Opera 9.5
12289
- Platform=Win95
12290
- Win32=true
12291
 
12292
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.5*]
12293
- Parent=Opera 9.5
12294
- Platform=Win98
12295
- Win32=true
12296
 
12297
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.5*]
12298
- Parent=Opera 9.5
12299
- Platform=WinCE
12300
- Win32=true
12301
 
12302
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.5*]
12303
- Parent=Opera 9.5
12304
- Platform=WinME
12305
- Win32=true
12306
 
12307
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.5*]
12308
- Parent=Opera 9.5
12309
- Platform=WinNT
12310
- Win32=true
12311
 
12312
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.5*]
12313
- Parent=Opera 9.5
12314
- Platform=Win2000
12315
- Win32=true
12316
 
12317
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.5*]
12318
- Parent=Opera 9.5
12319
- Platform=WinXP
12320
- Win32=true
12321
 
12322
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.5*]
12323
- Parent=Opera 9.5
12324
- Platform=Win2003
12325
- Win32=true
12326
 
12327
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.5*]
12328
- Parent=Opera 9.5
12329
- Platform=WinVista
12330
- Win32=true
12331
 
12332
- [Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.5*]
12333
- Parent=Opera 9.5
12334
- Platform=Win7
12335
 
12336
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.5*]
12337
- Parent=Opera 9.5
12338
- Platform=WinXP
12339
- Win32=true
12340
 
12341
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.5*]
12342
- Parent=Opera 9.5
12343
- Platform=FreeBSD
12344
 
12345
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.5*]
12346
- Parent=Opera 9.5
12347
- Platform=Linux
12348
 
12349
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.5*]
12350
- Parent=Opera 9.5
12351
- Platform=SunOS
 
12352
 
12353
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.5*]
12354
- Parent=Opera 9.5
12355
- Platform=MacOSX
 
12356
 
12357
- [Mozilla/* (Windows 2000;*) Opera 9.5*]
12358
- Parent=Opera 9.5
12359
- Platform=Win2000
12360
- Win32=true
12361
 
12362
- [Mozilla/* (Windows 95;*) Opera 9.5*]
12363
- Parent=Opera 9.5
12364
- Platform=Win95
 
 
 
 
12365
  Win32=true
 
 
 
 
 
 
 
12366
 
12367
- [Mozilla/* (Windows 98;*) Opera 9.5*]
12368
- Parent=Opera 9.5
12369
- Platform=Win98
12370
- Win32=true
12371
 
12372
- [Mozilla/* (Windows ME;*) Opera 9.5*]
12373
- Parent=Opera 9.5
12374
- Platform=WinME
12375
- Win32=true
12376
 
12377
- [Mozilla/* (Windows NT 4.0;*) Opera 9.5*]
12378
- Parent=Opera 9.5
12379
- Platform=WinNT
12380
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12381
 
12382
- [Mozilla/* (Windows NT 5.0;*) Opera 9.5*]
12383
- Parent=Opera 9.5
12384
- Platform=Win2000
12385
- Win32=true
12386
 
12387
- [Mozilla/* (Windows NT 5.1;*) Opera 9.5*]
12388
- Parent=Opera 9.5
12389
- Platform=WinXP
12390
- Win32=true
12391
 
12392
- [Mozilla/* (Windows NT 5.2;*) Opera 9.5*]
12393
- Parent=Opera 9.5
12394
- Platform=Win2003
 
 
 
 
12395
  Win32=true
 
 
 
 
 
 
 
12396
 
12397
- [Mozilla/* (Windows NT 6.0;*) Opera 9.5*]
12398
- Parent=Opera 9.5
12399
- Platform=WinVista
12400
-
12401
- [Mozilla/* (Windows NT 6.1;*) Opera 9.5*]
12402
- Parent=Opera 9.5
12403
- Platform=Win7
12404
 
12405
- [Mozilla/* (X11; Linux*) Opera 9.5*]
12406
- Parent=Opera 9.5
12407
- Platform=Linux
 
12408
 
12409
- [Opera/9.5* (Linux*)*]
12410
- Parent=Opera 9.5
12411
- Platform=Linux
 
12412
 
12413
- [Opera/9.5* (Macintosh; *Mac OS X;*)*]
12414
- Parent=Opera 9.5
12415
- Platform=MacOSX
 
12416
 
12417
- [Opera/9.5* (Windows 95*)*]
12418
- Parent=Opera 9.5
12419
- Platform=Win95
12420
- Win32=true
12421
 
12422
- [Opera/9.5* (Windows 98*)*]
12423
- Parent=Opera 9.5
12424
- Platform=Win98
12425
- Win32=true
12426
 
12427
- [Opera/9.5* (Windows CE*)*]
12428
- Parent=Opera 9.5
12429
- Platform=WinCE
 
 
 
 
12430
  Win32=true
 
 
 
 
 
 
 
12431
 
12432
- [Opera/9.5* (Windows ME*)*]
12433
- Parent=Opera 9.5
12434
- Platform=WinME
12435
- Win32=true
12436
 
12437
- [Opera/9.5* (Windows NT 4.0*)*]
12438
- Parent=Opera 9.5
12439
- Platform=WinNT
12440
- Win32=true
12441
 
12442
- [Opera/9.5* (Windows NT 5.0*)*]
12443
- Parent=Opera 9.5
12444
- Platform=Win2000
12445
- Win32=true
12446
 
12447
- [Opera/9.5* (Windows NT 5.1*)*]
12448
- Parent=Opera 9.5
12449
- Platform=WinXP
12450
- Win32=true
12451
 
12452
- [Opera/9.5* (Windows NT 5.2*)*]
12453
- Parent=Opera 9.5
12454
- Platform=Win2003
12455
- Win32=true
12456
 
12457
- [Opera/9.5* (Windows NT 6.0*)*]
12458
- Parent=Opera 9.5
12459
- Platform=WinVista
12460
- Win32=true
12461
 
12462
- [Opera/9.5* (Windows NT 6.1*)*]
12463
- Parent=Opera 9.5
12464
- Platform=Win7
 
12465
 
12466
- [Opera/9.5* (Windows XP*)*]
12467
- Parent=Opera 9.5
12468
- Platform=WinXP
12469
- Win32=true
12470
 
12471
- [Opera/9.5* (X11; FreeBSD*)*]
12472
- Parent=Opera 9.5
12473
- Platform=FreeBSD
 
12474
 
12475
- [Opera/9.5* (X11; Linux*)*]
12476
- Parent=Opera 9.5
12477
- Platform=Linux
 
12478
 
12479
- [Opera/9.5* (X11; SunOS*)*]
12480
- Parent=Opera 9.5
12481
- Platform=SunOS
 
12482
 
12483
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.6
12484
 
12485
- [Opera 9.6]
12486
  Parent=DefaultProperties
12487
- Browser="Opera"
12488
- Version=9.6
12489
- MajorVer=9
12490
- MinorVer=6
 
 
12491
  Frames=true
12492
  IFrames=true
12493
  Tables=true
12494
  Cookies=true
12495
- BackgroundSounds=true
12496
- JavaApplets=true
12497
  JavaScript=true
 
12498
  CssVersion=2
12499
- supportsCSS=true
12500
 
12501
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.6*]
12502
- Parent=Opera 9.6
12503
- Platform=Linux
 
12504
 
12505
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.6*]
12506
- Parent=Opera 9.6
12507
- Platform=MacOSX
12508
 
12509
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.6*]
12510
- Parent=Opera 9.6
12511
- Platform=MacPPC
 
 
12512
 
12513
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.6*]
12514
- Parent=Opera 9.6
12515
- Platform=Win2000
12516
- Win32=true
12517
 
12518
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.6*]
12519
- Parent=Opera 9.6
12520
- Platform=Win95
12521
- Win32=true
12522
 
12523
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.6*]
12524
- Parent=Opera 9.6
12525
- Platform=Win98
12526
- Win32=true
12527
 
12528
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.6*]
12529
- Parent=Opera 9.6
12530
- Platform=WinCE
12531
- Win32=true
12532
 
12533
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.6*]
12534
- Parent=Opera 9.6
12535
- Platform=WinME
12536
- Win32=true
12537
 
12538
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.6*]
12539
- Parent=Opera 9.6
12540
- Platform=WinNT
12541
- Win32=true
12542
 
12543
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.6*]
12544
- Parent=Opera 9.6
12545
- Platform=Win2000
12546
- Win32=true
12547
 
12548
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.6*]
12549
- Parent=Opera 9.6
12550
- Platform=WinXP
12551
- Win32=true
12552
 
12553
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.6*]
12554
- Parent=Opera 9.6
12555
- Platform=Win2003
12556
- Win32=true
12557
 
12558
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.6*]
12559
- Parent=Opera 9.6
12560
- Platform=WinVista
 
 
 
 
12561
  Win32=true
 
 
 
 
 
 
 
12562
 
12563
- [Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.6*]
12564
- Parent=Opera 9.6
12565
- Platform=Win7
12566
-
12567
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.6*]
12568
- Parent=Opera 9.6
12569
- Platform=WinXP
12570
- Win32=true
12571
 
12572
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.6*]
12573
- Parent=Opera 9.6
12574
- Platform=FreeBSD
12575
 
12576
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.6*]
12577
- Parent=Opera 9.6
12578
- Platform=Linux
 
12579
 
12580
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.6*]
12581
- Parent=Opera 9.6
12582
- Platform=SunOS
 
12583
 
12584
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.6*]
12585
- Parent=Opera 9.6
12586
- Platform=MacOSX
 
12587
 
12588
- [Mozilla/* (Windows 2000;*) Opera 9.6*]
12589
- Parent=Opera 9.6
12590
- Platform=Win2000
12591
- Win32=true
12592
 
12593
- [Mozilla/* (Windows 95;*) Opera 9.6*]
12594
- Parent=Opera 9.6
12595
- Platform=Win95
12596
- Win32=true
12597
 
12598
- [Mozilla/* (Windows 98;*) Opera 9.6*]
12599
- Parent=Opera 9.6
12600
- Platform=Win98
12601
- Win32=true
12602
 
12603
- [Mozilla/* (Windows ME;*) Opera 9.6*]
12604
- Parent=Opera 9.6
12605
- Platform=WinME
12606
- Win32=true
12607
 
12608
- [Mozilla/* (Windows NT 4.0;*) Opera 9.6*]
12609
- Parent=Opera 9.6
12610
- Platform=WinNT
12611
- Win32=true
12612
 
12613
- [Mozilla/* (Windows NT 5.0;*) Opera 9.6*]
12614
- Parent=Opera 9.6
12615
- Platform=Win2000
12616
- Win32=true
12617
 
12618
- [Mozilla/* (Windows NT 5.1;*) Opera 9.6*]
12619
- Parent=Opera 9.6
12620
- Platform=WinXP
12621
- Win32=true
12622
 
12623
- [Mozilla/* (Windows NT 5.2;*) Opera 9.6*]
12624
- Parent=Opera 9.6
12625
- Platform=Win2003
 
 
 
 
12626
  Win32=true
 
 
 
 
 
 
 
12627
 
12628
- [Mozilla/* (Windows NT 6.0;*) Opera 9.6*]
12629
- Parent=Opera 9.6
12630
- Platform=WinVista
12631
-
12632
- [Mozilla/* (Windows NT 6.1;*) Opera 9.6*]
12633
- Parent=Opera 9.6
12634
- Platform=Win7
12635
 
12636
- [Mozilla/* (X11; Linux*) Opera 9.6*]
12637
- Parent=Opera 9.6
12638
- Platform=Linux
 
12639
 
12640
- [Opera/9.6* (Linux*)*]
12641
- Parent=Opera 9.6
12642
- Platform=Linux
 
12643
 
12644
- [Opera/9.6* (Macintosh; *Mac OS X;*)*]
12645
- Parent=Opera 9.6
12646
- Platform=MacOSX
12647
 
12648
- [Opera/9.6* (Windows 95*)*]
12649
- Parent=Opera 9.6
12650
- Platform=Win95
 
 
 
 
12651
  Win32=true
 
 
 
 
 
 
 
12652
 
12653
- [Opera/9.6* (Windows 98*)*]
12654
- Parent=Opera 9.6
12655
- Platform=Win98
12656
- Win32=true
12657
 
12658
- [Opera/9.6* (Windows CE*)*]
12659
- Parent=Opera 9.6
12660
- Platform=WinCE
12661
- Win32=true
12662
 
12663
- [Opera/9.6* (Windows ME*)*]
12664
- Parent=Opera 9.6
12665
- Platform=WinME
12666
- Win32=true
12667
 
12668
- [Opera/9.6* (Windows NT 4.0*)*]
12669
- Parent=Opera 9.6
12670
- Platform=WinNT
12671
- Win32=true
12672
 
12673
- [Opera/9.6* (Windows NT 5.0*)*]
12674
- Parent=Opera 9.6
12675
- Platform=Win2000
 
 
 
 
12676
  Win32=true
 
 
 
 
 
 
 
12677
 
12678
- [Opera/9.6* (Windows NT 5.1*)*]
12679
- Parent=Opera 9.6
12680
- Platform=WinXP
12681
- Win32=true
12682
 
12683
- [Opera/9.6* (Windows NT 5.2*)*]
12684
- Parent=Opera 9.6
12685
- Platform=Win2003
12686
- Win32=true
12687
 
12688
- [Opera/9.6* (Windows NT 6.0*)*]
12689
- Parent=Opera 9.6
12690
- Platform=WinVista
12691
- Win32=true
12692
 
12693
- [Opera/9.6* (Windows NT 6.1*)*]
12694
- Parent=Opera 9.6
12695
- Platform=Win7
12696
 
12697
- [Opera/9.6* (Windows XP*)*]
12698
- Parent=Opera 9.6
12699
- Platform=WinXP
 
 
 
 
12700
  Win32=true
 
 
 
 
 
 
 
12701
 
12702
- [Opera/9.6* (X11; FreeBSD*)*]
12703
- Parent=Opera 9.6
12704
- Platform=FreeBSD
 
12705
 
12706
- [Opera/9.6* (X11; Linux*)*]
12707
- Parent=Opera 9.6
12708
- Platform=Linux
 
12709
 
12710
- [Opera/9.6* (X11; SunOS*)*]
12711
- Parent=Opera 9.6
12712
- Platform=SunOS
 
12713
 
12714
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.0
12715
 
12716
- [Netscape 4.0]
12717
  Parent=DefaultProperties
12718
- Browser="Netscape"
12719
- Version=4.0
12720
- MajorVer=4
 
 
 
12721
  Frames=true
 
12722
  Tables=true
12723
  Cookies=true
12724
- JavaApplets=true
12725
  JavaScript=true
12726
- CssVersion=1
12727
- supportsCSS=true
12728
-
12729
- [Mozilla/4.0*(Macintosh*]
12730
- Parent=Netscape 4.0
12731
- Version=4.03
12732
- MinorVer=03
12733
- Platform=MacPPC
12734
-
12735
- [Mozilla/4.0*(Win95;*]
12736
- Parent=Netscape 4.0
12737
- Platform=Win95
12738
 
12739
- [Mozilla/4.0*(Win98;*]
12740
- Parent=Netscape 4.0
12741
- Version=4.03
12742
- MinorVer=03
12743
- Platform=Win98
12744
 
12745
- [Mozilla/4.0*(WinNT*]
12746
- Parent=Netscape 4.0
12747
- Version=4.03
12748
- MinorVer=03
12749
- Platform=WinNT
12750
 
12751
- [Mozilla/4.0*(X11;*)]
12752
- Parent=Netscape 4.0
12753
- Platform=Linux
 
12754
 
12755
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.5
12756
 
12757
- [Netscape 4.5]
12758
  Parent=DefaultProperties
12759
- Browser="Netscape"
12760
- Version=4.5
12761
- MajorVer=4
12762
- MinorVer=5
 
 
12763
  Frames=true
 
12764
  Tables=true
12765
  Cookies=true
12766
- JavaApplets=true
12767
  JavaScript=true
12768
- CssVersion=1
12769
- supportsCSS=true
12770
-
12771
- [Mozilla/4.5*(Macintosh; ?; PPC)]
12772
- Parent=Netscape 4.5
12773
- Platform=MacPPC
12774
-
12775
- [Mozilla/4.5*(Win2000; ?)]
12776
- Parent=Netscape 4.5
12777
- Platform=Win2000
12778
-
12779
- [Mozilla/4.5*(Win95; ?)]
12780
- Parent=Netscape 4.5
12781
- Platform=Win95
12782
-
12783
- [Mozilla/4.5*(Win98; ?)]
12784
- Parent=Netscape 4.5
12785
- Platform=Win98
12786
-
12787
- [Mozilla/4.5*(WinME; ?)]
12788
- Parent=Netscape 4.5
12789
- Platform=WinME
12790
-
12791
- [Mozilla/4.5*(WinNT; ?)]
12792
- Parent=Netscape 4.5
12793
- Platform=WinNT
12794
-
12795
- [Mozilla/4.5*(WinXP; ?)]
12796
- Parent=Netscape 4.5
12797
- Platform=WinXP
12798
-
12799
- [Mozilla/4.5*(X11*)]
12800
- Parent=Netscape 4.5
12801
- Platform=Linux
12802
-
12803
- [Mozilla/4.51*(Macintosh; ?; PPC)]
12804
- Parent=Netscape 4.5
12805
- Version=4.51
12806
- MinorVer=51
12807
-
12808
- [Mozilla/4.51*(Win2000; ?)]
12809
- Parent=Netscape 4.5
12810
- Version=4.51
12811
- MinorVer=51
12812
- Platform=Win2000
12813
-
12814
- [Mozilla/4.51*(Win95; ?)]
12815
- Parent=Netscape 4.5
12816
- Version=4.51
12817
- MinorVer=51
12818
- Platform=Win95
12819
-
12820
- [Mozilla/4.51*(Win98; ?)]
12821
- Parent=Netscape 4.5
12822
- Version=4.51
12823
- MinorVer=51
12824
- Platform=Win98
12825
-
12826
- [Mozilla/4.51*(WinME; ?)]
12827
- Parent=Netscape 4.5
12828
- Version=4.51
12829
- MinorVer=51
12830
- Platform=WinME
12831
-
12832
- [Mozilla/4.51*(WinNT; ?)]
12833
- Parent=Netscape 4.5
12834
- Version=4.51
12835
- MinorVer=51
12836
- Platform=WinNT
12837
-
12838
- [Mozilla/4.51*(WinXP; ?)]
12839
- Parent=Netscape 4.5
12840
- Version=4.51
12841
- MinorVer=51
12842
- Platform=WinXP
12843
-
12844
- [Mozilla/4.51*(X11*)]
12845
- Parent=Netscape 4.5
12846
- Version=4.51
12847
- MinorVer=51
12848
- Platform=Linux
12849
-
12850
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.6
12851
-
12852
- [Netscape 4.6]
12853
- Parent=DefaultProperties
12854
- Browser="Netscape"
12855
- Version=4.6
12856
- MajorVer=4
12857
- MinorVer=6
12858
- Frames=true
12859
- Tables=true
12860
- Cookies=true
12861
  JavaApplets=true
12862
- JavaScript=true
12863
- CssVersion=1
12864
- supportsCSS=true
12865
-
12866
- [Mozilla/4.6 * (OS/2; ?)]
12867
- Parent=Netscape 4.6
12868
- Platform=OS/2
12869
-
12870
- [Mozilla/4.6*(Macintosh; ?; PPC)]
12871
- Parent=Netscape 4.6
12872
- Platform=MacPPC
12873
-
12874
- [Mozilla/4.6*(Win95; ?)]
12875
- Parent=Netscape 4.6
12876
- Platform=Win95
12877
 
12878
- [Mozilla/4.6*(Win98; ?)]
12879
- Parent=Netscape 4.6
12880
- Platform=Win98
 
12881
 
12882
- [Mozilla/4.6*(WinNT; ?)]
12883
- Parent=Netscape 4.6
12884
- Platform=WinNT
12885
 
12886
- [Mozilla/4.61*(Macintosh; ?; PPC)]
12887
- Parent=Netscape 4.6
12888
- Version=4.61
12889
- MajorVer=4
12890
- MinorVer=61
12891
- Platform=MacPPC
12892
 
12893
- [Mozilla/4.61*(OS/2; ?)]
12894
- Parent=Netscape 4.6
12895
- Version=4.61
12896
- MajorVer=4
12897
- MinorVer=61
12898
- Platform=OS/2
12899
 
12900
- [Mozilla/4.61*(Win95; ?)]
12901
- Parent=Netscape 4.6
12902
- Version=4.61
12903
- MajorVer=4
12904
- MinorVer=61
12905
- Platform=Win95
12906
 
12907
- [Mozilla/4.61*(Win98; ?)]
12908
- Parent=Netscape 4.6
12909
- Version=4.61
12910
- Platform=Win98
12911
 
12912
- [Mozilla/4.61*(WinNT; ?)]
12913
- Parent=Netscape 4.6
12914
- Version=4.61
12915
- MajorVer=4
12916
- MinorVer=61
12917
- Platform=WinNT
12918
 
12919
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.7
12920
 
12921
- [Netscape 4.7]
12922
  Parent=DefaultProperties
12923
- Browser="Netscape"
12924
- Version=4.7
12925
- MajorVer=4
12926
- MinorVer=7
 
 
12927
  Frames=true
 
12928
  Tables=true
12929
  Cookies=true
12930
- JavaApplets=true
12931
  JavaScript=true
12932
- CssVersion=1
12933
- supportsCSS=true
12934
-
12935
- [Mozilla/4.7 * (Win2000; ?)]
12936
- Parent=Netscape 4.7
12937
- Platform=Win2000
12938
-
12939
- [Mozilla/4.7*(Macintosh; ?; PPC)*]
12940
- Parent=Netscape 4.7
12941
- MinorVer=7
12942
- Platform=MacPPC
12943
-
12944
- [Mozilla/4.7*(Win95; ?)*]
12945
- Parent=Netscape 4.7
12946
- MinorVer=7
12947
- Platform=Win95
12948
 
12949
- [Mozilla/4.7*(Win98; ?)*]
12950
- Parent=Netscape 4.7
12951
- MinorVer=7
12952
- Platform=Win98
12953
 
12954
- [Mozilla/4.7*(Windows NT 4.0; ?)*]
12955
- Parent=Netscape 4.7
12956
- MinorVer=7
12957
- Platform=WinNT
12958
- Win32=true
12959
 
12960
- [Mozilla/4.7*(Windows NT 5.0; ?)*]
12961
- Parent=Netscape 4.7
12962
- MinorVer=7
12963
- Platform=Win2000
12964
- Win32=true
12965
 
12966
- [Mozilla/4.7*(Windows NT 5.1; ?)*]
12967
- Parent=Netscape 4.7
12968
- MinorVer=7
12969
- Platform=WinXP
12970
- Win32=true
12971
 
12972
- [Mozilla/4.7*(WinNT; ?)*]
12973
- Parent=Netscape 4.7
12974
- Platform=WinNT
 
12975
 
12976
- [Mozilla/4.7*(X11*)*]
12977
- Parent=Netscape 4.7
12978
- Platform=Linux
 
12979
 
12980
- [Mozilla/4.7*(X11; ?; SunOS*)*]
12981
- Parent=Netscape 4.7
12982
- Platform=SunOS
 
12983
 
12984
- [Mozilla/4.71*(Macintosh; ?; PPC)*]
12985
- Parent=Netscape 4.7
12986
- Version=4.71
12987
- MinorVer=71
12988
- Platform=MacPPC
12989
 
12990
- [Mozilla/4.71*(Win95; ?)*]
12991
- Parent=Netscape 4.7
12992
- Version=4.71
12993
- MinorVer=71
12994
- Platform=Win95
 
 
 
 
 
 
 
 
 
 
12995
 
12996
- [Mozilla/4.71*(Win98; ?)*]
12997
- Parent=Netscape 4.7
12998
- Version=4.71
12999
- MinorVer=71
13000
- Platform=Win98
 
13001
 
13002
- [Mozilla/4.71*(Windows NT 4.0; ?)*]
13003
- Parent=Netscape 4.7
13004
- Version=4.71
13005
- MinorVer=71
13006
- Platform=WinNT
13007
- Win32=true
13008
 
13009
- [Mozilla/4.71*(Windows NT 5.0; ?)*]
13010
- Parent=Netscape 4.7
13011
- Version=4.71
13012
- MinorVer=71
13013
- Platform=Win2000
 
 
13014
  Win32=true
 
 
 
 
 
 
 
13015
 
13016
- [Mozilla/4.71*(Windows NT 5.1; ?)*]
13017
- Parent=Netscape 4.7
13018
- Version=4.71
13019
- MinorVer=71
13020
- Platform=WinXP
13021
- Win32=true
13022
 
13023
- [Mozilla/4.71*(WinNT; ?)*]
13024
- Parent=Netscape 4.7
13025
- Version=4.71
13026
- MinorVer=71
13027
- Platform=WinNT
13028
 
13029
- [Mozilla/4.71*(X11*)*]
13030
- Parent=Netscape 4.7
13031
- Version=4.71
13032
- MinorVer=71
13033
- Platform=Linux
13034
 
13035
- [Mozilla/4.71*(X11; ?; SunOS*)*]
13036
- Parent=Netscape 4.7
13037
- Version=4.71
13038
- MinorVer=71
13039
- Platform=SunOS
13040
 
13041
- [Mozilla/4.72*(Macintosh; ?; PPC)*]
13042
- Parent=Netscape 4.7
13043
- MinorVer=72
13044
- Platform=MacPPC
13045
 
13046
- [Mozilla/4.72*(Win95; ?)*]
13047
- Parent=Netscape 4.7
13048
- MinorVer=72
13049
- Platform=Win95
13050
 
13051
- [Mozilla/4.72*(Win98; ?)*]
13052
- Parent=Netscape 4.7
13053
- MinorVer=72
13054
- Platform=Win98
13055
 
13056
- [Mozilla/4.72*(Windows NT 4.0; ?)*]
13057
- Parent=Netscape 4.7
13058
- MinorVer=72
13059
- Platform=WinNT
13060
- Win32=true
13061
 
13062
- [Mozilla/4.72*(Windows NT 5.0; ?)*]
13063
- Parent=Netscape 4.7
13064
- MinorVer=72
13065
- Platform=Win2000
 
 
 
13066
  Win32=true
 
 
 
 
 
 
 
13067
 
13068
- [Mozilla/4.72*(Windows NT 5.1; ?)*]
13069
- Parent=Netscape 4.7
13070
- MinorVer=72
13071
- Platform=WinXP
13072
- Win32=true
13073
 
13074
- [Mozilla/4.72*(WinNT; ?)*]
13075
- Parent=Netscape 4.7
13076
- MinorVer=72
13077
- Platform=WinNT
13078
 
13079
- [Mozilla/4.72*(X11*)*]
13080
- Parent=Netscape 4.7
13081
- MinorVer=72
13082
- Platform=Linux
13083
 
13084
- [Mozilla/4.72*(X11; ?; SunOS*)*]
13085
- Parent=Netscape 4.7
13086
- MinorVer=72
13087
- Platform=SunOS
13088
 
13089
- [Mozilla/4.73*(Macintosh; ?; PPC)*]
13090
- Parent=Netscape 4.7
13091
- MinorVer=73
13092
- Platform=MacPPC
13093
 
13094
- [Mozilla/4.73*(Win95; ?)*]
13095
- Parent=Netscape 4.7
13096
- MinorVer=73
13097
- Platform=Win95
13098
 
13099
- [Mozilla/4.73*(Win98; ?)*]
13100
- Parent=Netscape 4.7
13101
- MinorVer=73
13102
- Platform=Win98
13103
 
13104
- [Mozilla/4.73*(Windows NT 4.0; ?)*]
13105
- Parent=Netscape 4.7
13106
- MinorVer=73
13107
- Platform=WinNT
13108
- Win32=true
13109
 
13110
- [Mozilla/4.73*(Windows NT 5.0; ?)*]
13111
- Parent=Netscape 4.7
13112
- MinorVer=73
13113
- Platform=Win2000
13114
- Win32=true
13115
 
13116
- [Mozilla/4.73*(Windows NT 5.1; ?)*]
13117
- Parent=Netscape 4.7
13118
- MinorVer=73
13119
- Platform=WinXP
13120
- Win32=true
13121
 
13122
- [Mozilla/4.73*(WinNT; ?)*]
13123
- Parent=Netscape 4.7
13124
- MinorVer=73
13125
- Platform=WinNT
13126
 
13127
- [Mozilla/4.73*(X11*)*]
13128
- Parent=Netscape 4.7
13129
- MinorVer=73
13130
- Platform=Linux
13131
 
13132
- [Mozilla/4.73*(X11; ?; SunOS*)*]
13133
- Parent=Netscape 4.7
13134
- MinorVer=73
13135
- Platform=SunOS
13136
 
13137
- [Mozilla/4.74*(Macintosh; ?; PPC)*]
13138
- Parent=Netscape 4.7
13139
- MinorVer=74
13140
- Platform=MacPPC
13141
 
13142
- [Mozilla/4.74*(Win95; ?)*]
13143
- Parent=Netscape 4.7
13144
- MinorVer=74
13145
- Platform=Win95
13146
 
13147
- [Mozilla/4.74*(Win98; ?)*]
13148
- Parent=Netscape 4.7
13149
- MinorVer=74
13150
- Platform=Win98
13151
 
13152
- [Mozilla/4.74*(Windows NT 4.0; ?)*]
13153
- Parent=Netscape 4.7
13154
- MinorVer=74
13155
- Platform=WinNT
13156
- Win32=true
13157
 
13158
- [Mozilla/4.74*(Windows NT 5.0; ?)*]
13159
- Parent=Netscape 4.7
13160
- MinorVer=74
13161
- Platform=Win2000
13162
- Win32=true
13163
 
13164
- [Mozilla/4.74*(Windows NT 5.1; ?)*]
13165
- Parent=Netscape 4.7
13166
- MinorVer=74
13167
- Platform=WinXP
13168
- Win32=true
13169
 
13170
- [Mozilla/4.74*(WinNT; ?)*]
13171
- Parent=Netscape 4.7
13172
- MinorVer=74
13173
- Platform=WinNT
13174
 
13175
- [Mozilla/4.74*(X11*)*]
13176
- Parent=Netscape 4.7
13177
- MinorVer=74
13178
- Platform=Linux
13179
 
13180
- [Mozilla/4.74*(X11; ?; SunOS*)*]
13181
- Parent=Netscape 4.7
13182
- MinorVer=74
13183
- Platform=SunOS
 
 
 
 
 
 
 
 
 
 
 
13184
 
13185
- [Mozilla/4.75*(Macintosh; ?; PPC)*]
13186
- Parent=Netscape 4.7
13187
- MinorVer=75
13188
- Platform=MacPPC
13189
 
13190
- [Mozilla/4.75*(Win95; ?)*]
13191
- Parent=Netscape 4.7
13192
- MinorVer=75
13193
- Platform=Win95
13194
 
13195
- [Mozilla/4.75*(Win98; ?)*]
13196
- Parent=Netscape 4.7
13197
- MinorVer=75
13198
- Platform=Win98
13199
 
13200
- [Mozilla/4.75*(Windows NT 4.0; ?)*]
13201
- Parent=Netscape 4.7
13202
- MinorVer=75
13203
- Platform=WinNT
13204
- Win32=true
13205
 
13206
- [Mozilla/4.75*(Windows NT 5.0; ?)*]
13207
- Parent=Netscape 4.7
13208
- MinorVer=75
13209
- Platform=Win2000
13210
- Win32=true
13211
 
13212
- [Mozilla/4.75*(Windows NT 5.1; ?)*]
13213
- Parent=Netscape 4.7
13214
- MinorVer=75
13215
- Platform=WinXP
13216
- Win32=true
13217
 
13218
- [Mozilla/4.75*(WinNT; ?)*]
13219
- Parent=Netscape 4.7
13220
- MinorVer=75
13221
- Platform=WinNT
13222
 
13223
- [Mozilla/4.75*(X11*)*]
13224
- Parent=Netscape 4.7
13225
- MinorVer=75
13226
- Platform=Linux
13227
 
13228
- [Mozilla/4.75*(X11; ?; SunOS*)*]
13229
- Parent=Netscape 4.7
13230
- MinorVer=75
13231
- Platform=SunOS
13232
 
13233
- [Mozilla/4.76*(Macintosh; ?; PPC)*]
13234
- Parent=Netscape 4.7
13235
- MinorVer=76
13236
- Platform=MacPPC
 
 
13237
 
13238
- [Mozilla/4.76*(Win95; ?)*]
13239
- Parent=Netscape 4.7
13240
- MinorVer=76
13241
- Platform=Win95
13242
 
13243
- [Mozilla/4.76*(Win98; ?)*]
13244
- Parent=Netscape 4.7
13245
- MinorVer=76
13246
- Platform=Win98
 
 
13247
 
13248
- [Mozilla/4.76*(Windows NT 4.0; ?)*]
13249
- Parent=Netscape 4.7
13250
- MinorVer=76
13251
- Platform=WinNT
13252
- Win32=true
13253
 
13254
- [Mozilla/4.76*(Windows NT 5.0; ?)*]
13255
- Parent=Netscape 4.7
13256
- MinorVer=76
13257
- Platform=Win2000
13258
- Win32=true
 
13259
 
13260
- [Mozilla/4.76*(Windows NT 5.1; ?)*]
13261
- Parent=Netscape 4.7
13262
- MinorVer=76
13263
- Platform=WinXP
13264
- Win32=true
13265
 
13266
- [Mozilla/4.76*(WinNT; ?)*]
13267
- Parent=Netscape 4.7
13268
- MinorVer=76
13269
- Platform=WinNT
 
 
13270
 
13271
- [Mozilla/4.76*(X11*)*]
13272
- Parent=Netscape 4.7
13273
- MinorVer=76
13274
- Platform=Linux
13275
 
13276
- [Mozilla/4.76*(X11; ?; SunOS*)*]
13277
- Parent=Netscape 4.7
13278
- MinorVer=76
13279
- Platform=SunOS
 
13280
 
13281
- [Mozilla/4.77*(Macintosh; ?; PPC)*]
13282
- Parent=Netscape 4.7
13283
- MinorVer=77
13284
- Platform=MacPPC
13285
 
13286
- [Mozilla/4.77*(Win95; ?)*]
13287
- Parent=Netscape 4.7
13288
- MinorVer=77
13289
- Platform=Win95
 
 
 
 
 
 
 
 
 
 
 
13290
 
13291
- [Mozilla/4.77*(Win98; ?)*]
13292
- Parent=Netscape 4.7
13293
- MinorVer=77
13294
- Platform=Win98
13295
 
13296
- [Mozilla/4.77*(Windows NT 4.0; ?)*]
13297
- Parent=Netscape 4.7
13298
- MinorVer=77
13299
- Platform=WinNT
13300
- Win32=true
13301
 
13302
- [Mozilla/4.77*(Windows NT 5.0; ?)*]
13303
- Parent=Netscape 4.7
13304
- MinorVer=77
13305
- Platform=Win2000
13306
- Win32=true
13307
 
13308
- [Mozilla/4.77*(Windows NT 5.1; ?)*]
13309
- Parent=Netscape 4.7
13310
- MinorVer=77
13311
- Platform=WinXP
13312
- Win32=true
13313
 
13314
- [Mozilla/4.77*(WinNT; ?)*]
13315
- Parent=Netscape 4.7
13316
- MinorVer=77
13317
- Platform=WinNT
13318
 
13319
- [Mozilla/4.77*(X11*)*]
13320
- Parent=Netscape 4.7
13321
- MinorVer=77
13322
- Platform=Linux
13323
 
13324
- [Mozilla/4.77*(X11; ?; SunOS*)*]
13325
- Parent=Netscape 4.7
13326
- MinorVer=77
13327
- Platform=SunOS
13328
 
13329
- [Mozilla/4.78*(Macintosh; ?; PPC)*]
13330
- Parent=Netscape 4.7
13331
- MinorVer=78
13332
- Platform=MacPPC
13333
 
13334
- [Mozilla/4.78*(Win95; ?)*]
13335
- Parent=Netscape 4.7
13336
- MinorVer=78
13337
- Platform=Win95
13338
 
13339
- [Mozilla/4.78*(Win98; ?)*]
13340
- Parent=Netscape 4.7
13341
- MinorVer=78
13342
- Platform=Win98
 
 
13343
 
13344
- [Mozilla/4.78*(Windows NT 4.0; ?)*]
13345
- Parent=Netscape 4.7
13346
- MinorVer=78
13347
- Platform=WinNT
13348
- Win32=true
13349
 
13350
- [Mozilla/4.78*(Windows NT 5.0; ?)*]
13351
- Parent=Netscape 4.7
13352
- MinorVer=78
13353
- Platform=Win2000
13354
- Win32=true
 
13355
 
13356
- [Mozilla/4.78*(Windows NT 5.1; ?)*]
13357
- Parent=Netscape 4.7
13358
- MinorVer=78
13359
- Platform=WinXP
13360
- Win32=true
13361
 
13362
- [Mozilla/4.78*(WinNT; ?)*]
13363
- Parent=Netscape 4.7
13364
- MinorVer=78
13365
- Platform=WinNT
 
 
13366
 
13367
- [Mozilla/4.78*(X11*)*]
13368
- Parent=Netscape 4.7
13369
- MinorVer=78
13370
- Platform=Linux
13371
 
13372
- [Mozilla/4.78*(X11; ?; SunOS*)*]
13373
- Parent=Netscape 4.7
13374
- MinorVer=78
13375
- Platform=SunOS
 
 
13376
 
13377
- [Mozilla/4.79*(Macintosh; ?; PPC)*]
13378
- Parent=Netscape 4.7
13379
- Version=4.79
13380
- MinorVer=79
13381
- Platform=MacPPC
13382
 
13383
- [Mozilla/4.79*(Win95; ?)*]
13384
- Parent=Netscape 4.7
13385
- Version=4.79
13386
- MinorVer=79
13387
- Platform=Win95
13388
 
13389
- [Mozilla/4.79*(Win98; ?)*]
13390
- Parent=Netscape 4.7
13391
- Version=4.79
13392
- MinorVer=79
13393
- Platform=Win98
13394
 
13395
- [Mozilla/4.79*(Windows NT 4.0; ?)*]
13396
- Parent=Netscape 4.7
13397
- Version=4.79
13398
- MinorVer=79
13399
- Platform=WinNT
 
 
13400
  Win32=true
 
 
 
 
 
 
 
13401
 
13402
- [Mozilla/4.79*(Windows NT 5.0; ?)*]
13403
- Parent=Netscape 4.7
13404
- Version=4.79
13405
- MinorVer=79
13406
- Platform=Win2000
13407
- Win32=true
13408
 
13409
- [Mozilla/4.79*(Windows NT 5.1; ?)*]
13410
- Parent=Netscape 4.7
13411
- Version=4.79
13412
- MinorVer=79
13413
- Platform=WinXP
13414
- Win32=true
13415
 
13416
- [Mozilla/4.79*(WinNT; ?)*]
13417
- Parent=Netscape 4.7
13418
- Version=4.79
13419
- MinorVer=79
13420
- Platform=WinNT
13421
 
13422
- [Mozilla/4.79*(X11*)*]
13423
- Parent=Netscape 4.7
13424
- Version=4.79
13425
- MinorVer=79
13426
- Platform=Linux
13427
 
13428
- [Mozilla/4.79*(X11; ?; SunOS*)*]
13429
- Parent=Netscape 4.7
13430
- Version=4.79
13431
- MinorVer=79
13432
- Platform=SunOS
13433
 
13434
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.8
 
 
 
13435
 
13436
- [Netscape 4.8]
13437
- Parent=DefaultProperties
13438
- Browser="Netscape"
13439
- Version=4.8
13440
- MajorVer=4
13441
- MinorVer=8
13442
- Frames=true
13443
- Tables=true
13444
- Cookies=true
13445
- JavaApplets=true
13446
- JavaScript=true
13447
- CssVersion=1
13448
- supportsCSS=true
13449
 
13450
- [Mozilla/4.8*(Macintosh; ?; MacPPC)*]
13451
- Parent=Netscape 4.8
13452
- Platform=MacPPC
 
13453
 
13454
- [Mozilla/4.8*(Macintosh; ?; PPC Mac OS X*]
13455
- Parent=Netscape 4.8
13456
- Platform=MacOSX
 
13457
 
13458
- [Mozilla/4.8*(Macintosh; ?; PPC)*]
13459
- Parent=Netscape 4.8
13460
- Platform=MacPPC
 
 
 
13461
 
13462
- [Mozilla/4.8*(Win95; *)*]
13463
- Parent=Netscape 4.8
 
 
13464
 
13465
- [Mozilla/4.8*(Win98; *)*]
13466
- Parent=Netscape 4.8
13467
- Platform=Win98
 
 
 
13468
 
13469
- [Mozilla/4.8*(Windows NT 4.0; *)*]
13470
- Parent=Netscape 4.8
13471
- Platform=WinNT
13472
- Win32=true
13473
 
13474
- [Mozilla/4.8*(Windows NT 5.0; *)*]
13475
- Parent=Netscape 4.8
13476
- Platform=Win2000
13477
- Win32=true
 
 
13478
 
13479
- [Mozilla/4.8*(Windows NT 5.1; *)*]
13480
- Parent=Netscape 4.8
13481
- Platform=WinXP
13482
- Win32=true
13483
 
13484
- [Mozilla/4.8*(WinNT; *)*]
13485
- Parent=Netscape 4.8
13486
- Platform=WinNT
 
 
 
13487
 
13488
- [Mozilla/4.8*(X11; *)*]
13489
- Parent=Netscape 4.8
13490
- Platform=Linux
 
13491
 
13492
- [Mozilla/4.8*(X11; *SunOS*)*]
13493
- Parent=Netscape 4.8
13494
- Platform=SunOS
 
 
13495
 
13496
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.0
13497
 
13498
- [Netscape 6.0]
13499
  Parent=DefaultProperties
13500
- Browser="Netscape"
13501
- Version=6.0
13502
- MajorVer=6
 
 
 
13503
  Frames=true
13504
  IFrames=true
13505
  Tables=true
13506
  Cookies=true
13507
- JavaApplets=true
13508
  JavaScript=true
13509
- CssVersion=2
13510
- supportsCSS=true
13511
 
13512
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.0*]
13513
- Parent=Netscape 6.0
13514
- Platform=MacPPC
 
13515
 
13516
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.0*]
13517
- Parent=Netscape 6.0
13518
- Platform=Win95
13519
- Win32=true
13520
 
13521
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.0*]
13522
- Parent=Netscape 6.0
13523
- Platform=Win98
13524
- Win32=true
13525
 
13526
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.0*]
13527
- Parent=Netscape 6.0
13528
- Platform=WinME
13529
- Win32=true
13530
 
13531
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.0*]
13532
- Parent=Netscape 6.0
13533
- Platform=WinNT
13534
- Win32=true
13535
 
13536
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.0*]
13537
- Parent=Netscape 6.0
13538
- Platform=Win2000
13539
- Win32=true
13540
 
13541
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.0*]
13542
- Parent=Netscape 6.0
13543
- Platform=WinXP
13544
- Win32=true
13545
 
13546
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.0*]
13547
- Parent=Netscape 6.0
13548
- Platform=WinXP
 
13549
 
13550
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.0*]
13551
- Parent=Netscape 6.0
13552
- Platform=WinVista
 
13553
 
13554
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.0*]
13555
- Parent=Netscape 6.0
13556
- Platform=Win7
 
 
 
13557
 
13558
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.0*]
13559
- Parent=Netscape 6.0
13560
- Platform=WinNT
13561
- Win32=true
13562
 
13563
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.0*]
13564
- Parent=Netscape 6.0
13565
- Platform=Win2000
13566
- Win32=true
 
 
13567
 
13568
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.0*]
13569
- Parent=Netscape 6.0
13570
- Platform=WinXP
13571
- Win32=true
13572
 
13573
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.0*]
13574
- Parent=Netscape 6.0
13575
- Platform=WinXP
 
 
 
13576
 
13577
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.0*]
13578
- Parent=Netscape 6.0
13579
- Platform=WinVista
 
13580
 
13581
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.0*]
13582
- Parent=Netscape 6.0
13583
- Platform=Win7
 
 
 
13584
 
13585
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.0*]
13586
- Parent=Netscape 6.0
13587
- Platform=Linux
 
13588
 
13589
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.1
 
 
 
 
 
 
13590
 
13591
- [Netscape 6.1]
13592
  Parent=DefaultProperties
13593
- Browser="Netscape"
13594
- Version=6.1
13595
- MajorVer=6
13596
- MinorVer=1
 
 
13597
  Frames=true
13598
  IFrames=true
13599
  Tables=true
13600
  Cookies=true
13601
- JavaApplets=true
13602
  JavaScript=true
13603
- CssVersion=2
13604
- supportsCSS=true
13605
 
13606
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.1*]
13607
- Parent=Netscape 6.1
13608
- Platform=MacPPC
 
13609
 
13610
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.1*]
13611
- Parent=Netscape 6.1
13612
- Platform=Win95
13613
- Win32=true
13614
 
13615
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.1*]
13616
- Parent=Netscape 6.1
13617
- Platform=Win98
13618
- Win32=true
13619
 
13620
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.1*]
13621
- Parent=Netscape 6.1
13622
- Platform=WinME
13623
- Win32=true
13624
 
13625
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.1*]
13626
- Parent=Netscape 6.1
13627
- Platform=WinNT
13628
- Win32=true
13629
 
13630
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.1*]
13631
- Parent=Netscape 6.1
13632
- Platform=Win2000
13633
- Win32=true
13634
 
13635
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.1*]
13636
- Parent=Netscape 6.1
13637
- Platform=WinXP
13638
- Win32=true
13639
 
13640
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.1*]
13641
- Parent=Netscape 6.1
13642
- Platform=WinXP
 
13643
 
13644
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.1*]
13645
- Parent=Netscape 6.1
13646
- Platform=WinVista
 
13647
 
13648
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.1*]
13649
- Parent=Netscape 6.1
13650
- Platform=Win7
 
13651
 
13652
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.1*]
13653
- Parent=Netscape 6.1
13654
- Platform=WinNT
13655
- Win32=true
 
 
13656
 
13657
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.1*]
13658
- Parent=Netscape 6.1
13659
- Platform=Win2000
13660
- Win32=true
13661
 
13662
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.1*]
13663
- Parent=Netscape 6.1
13664
- Platform=WinXP
13665
- Win32=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13666
 
13667
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.1*]
13668
- Parent=Netscape 6.1
13669
- Platform=WinXP
 
13670
 
13671
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.1*]
13672
- Parent=Netscape 6.1
13673
- Platform=WinVista
 
 
 
13674
 
13675
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.1*]
13676
- Parent=Netscape 6.1
13677
- Platform=Win7
 
13678
 
13679
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.1*]
13680
- Parent=Netscape 6.1
13681
- Platform=Linux
 
 
13682
 
13683
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.2
13684
 
13685
- [Netscape 6.2]
13686
- Parent=DefaultProperties
13687
- Browser="Netscape"
13688
- Version=6.2
13689
- MajorVer=6
13690
- MinorVer=2
 
 
 
13691
  Frames=true
13692
  IFrames=true
13693
  Tables=true
13694
  Cookies=true
13695
- JavaApplets=true
13696
  JavaScript=true
13697
- CssVersion=2
13698
- supportsCSS=true
13699
-
13700
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X*) Gecko/* Netscape6/6.2*]
13701
- Parent=Netscape 6.2
13702
- Platform=MacOSX
13703
 
13704
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.2*]
13705
- Parent=Netscape 6.2
13706
- Platform=MacPPC
 
13707
 
13708
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape6/6.2*]
13709
- Parent=Netscape 6.2
13710
- Win32=true
 
13711
 
13712
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.2*]
13713
- Parent=Netscape 6.2
13714
- Platform=Win95
13715
- Win32=true
13716
 
13717
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.2*]
13718
- Parent=Netscape 6.2
13719
- Platform=Win98
13720
- Win32=true
13721
 
13722
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.2*]
13723
- Parent=Netscape 6.2
13724
- Platform=WinME
13725
- Win32=true
13726
 
13727
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.2*]
13728
- Parent=Netscape 6.2
13729
- Platform=WinNT
13730
- Win32=true
13731
 
13732
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.2*]
13733
- Parent=Netscape 6.2
13734
- Platform=Win2000
13735
- Win32=true
13736
 
13737
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.2*]
13738
- Parent=Netscape 6.2
13739
- Platform=WinXP
13740
- Win32=true
13741
 
13742
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.2*]
13743
- Parent=Netscape 6.2
13744
- Platform=Win2003
13745
- Win32=true
13746
 
13747
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.2*]
13748
- Parent=Netscape 6.2
13749
- Platform=WinVista
 
 
 
13750
 
13751
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.2*]
13752
- Parent=Netscape 6.2
13753
- Platform=Win7
 
13754
 
13755
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.2*]
13756
- Parent=Netscape 6.2
13757
- Platform=WinNT
13758
- Win32=true
 
 
13759
 
13760
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.2*]
13761
- Parent=Netscape 6.2
13762
- Platform=Win2000
13763
- Win32=true
13764
 
13765
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.2*]
13766
- Parent=Netscape 6.2
13767
- Platform=WinXP
13768
- Win32=true
 
 
13769
 
13770
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.2*]
13771
- Parent=Netscape 6.2
13772
- Platform=Win2003
13773
- Win32=true
13774
 
13775
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.2*]
13776
- Parent=Netscape 6.2
13777
- Platform=WinVista
 
 
 
13778
 
13779
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.2*]
13780
- Parent=Netscape 6.2
13781
- Platform=Win7
 
13782
 
13783
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.2*]
13784
- Parent=Netscape 6.2
13785
- Platform=Linux
 
 
13786
 
13787
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.0
13788
 
13789
- [Netscape 7.0]
13790
  Parent=DefaultProperties
13791
- Browser="Netscape"
13792
- Version=7.0
13793
- MajorVer=7
 
 
 
 
13794
  Frames=true
13795
  IFrames=true
13796
  Tables=true
13797
  Cookies=true
13798
- JavaApplets=true
13799
  JavaScript=true
13800
- CssVersion=2
13801
- supportsCSS=true
13802
-
13803
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.0*]
13804
- Parent=Netscape 7.0
13805
- Platform=MacOSX
13806
 
13807
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.0*]
13808
- Parent=Netscape 7.0
13809
- Platform=MacPPC
 
13810
 
13811
- [Mozilla/5.0 (Windows; ?; Win*9x 4.90; *) Gecko/* Netscape*/7.0*]
13812
- Parent=Netscape 7.0
13813
- Platform=WinME
13814
- Win32=true
13815
 
13816
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.0*]
13817
- Parent=Netscape 7.0
13818
- Platform=Win95
13819
- Win32=true
13820
 
13821
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.0*]
13822
- Parent=Netscape 7.0
13823
- Platform=Win98
13824
- Win32=true
13825
 
13826
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.0*]
13827
- Parent=Netscape 7.0
13828
- Platform=WinNT
13829
- Win32=true
13830
 
13831
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.0*]
13832
- Parent=Netscape 7.0
13833
- Platform=Win2000
13834
- Win32=true
13835
 
13836
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.0*]
13837
- Parent=Netscape 7.0
13838
- Platform=WinXP
13839
- Win32=true
13840
 
13841
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.0*]
13842
- Parent=Netscape 7.0
13843
- Platform=Win2003
13844
- Win32=true
13845
 
13846
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.0*]
13847
- Parent=Netscape 7.0
13848
- Platform=WinVista
 
13849
 
13850
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.0*]
13851
- Parent=Netscape 7.0
13852
- Platform=Win7
 
 
 
13853
 
13854
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.0*]
13855
- Parent=Netscape 7.0
13856
- Platform=WinNT
13857
- Win32=true
13858
 
13859
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.0*]
13860
- Parent=Netscape 7.0
13861
- Platform=Win2000
13862
- Win32=true
 
 
13863
 
13864
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.0*]
13865
- Parent=Netscape 7.0
13866
- Platform=WinXP
13867
- Win32=true
13868
 
13869
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.0*]
13870
- Parent=Netscape 7.0
13871
- Platform=Win2003
13872
- Win32=true
 
 
13873
 
13874
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.0*]
13875
- Parent=Netscape 7.0
13876
- Platform=WinVista
 
13877
 
13878
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.0*]
13879
- Parent=Netscape 7.0
13880
- Platform=Win7
 
 
 
13881
 
13882
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.0*]
13883
- Parent=Netscape 7.0
13884
- Platform=Linux
 
13885
 
13886
- [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.0*]
13887
- Parent=Netscape 7.0
13888
- Platform=SunOS
 
 
13889
 
13890
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.1
13891
 
13892
- [Netscape 7.1]
13893
  Parent=DefaultProperties
13894
- Browser="Netscape"
13895
- Version=7.1
13896
- MajorVer=7
13897
- MinorVer=1
 
 
 
13898
  Frames=true
13899
  IFrames=true
13900
  Tables=true
13901
  Cookies=true
13902
- JavaApplets=true
13903
  JavaScript=true
13904
- CssVersion=2
13905
- supportsCSS=true
13906
-
13907
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/7.1]
13908
- Parent=Netscape 7.1
13909
- Platform=MacOSX
13910
-
13911
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.1*]
13912
- Parent=Netscape 7.1
13913
- Platform=MacOSX
13914
-
13915
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.1*]
13916
- Parent=Netscape 7.1
13917
- Platform=MacPPC
13918
 
13919
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/7.1*]
13920
- Parent=Netscape 7.1
13921
- Platform=WinME
13922
- Win32=true
13923
 
13924
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.1*]
13925
- Parent=Netscape 7.1
13926
- Platform=Win95
13927
- Win32=true
13928
 
13929
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.1*]
13930
- Parent=Netscape 7.1
13931
- Platform=Win98
13932
- Win32=true
13933
 
13934
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/7.1*]
13935
- Parent=Netscape 7.1
13936
- Platform=WinME
13937
- Win32=true
13938
 
13939
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.1*]
13940
- Parent=Netscape 7.1
13941
- Platform=WinNT
13942
- Win32=true
13943
 
13944
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.1*]
13945
- Parent=Netscape 7.1
13946
- Platform=Win2000
13947
- Win32=true
13948
 
13949
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.1*]
13950
- Parent=Netscape 7.1
13951
- Platform=WinXP
13952
- Win32=true
13953
 
13954
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.1*]
13955
- Parent=Netscape 7.1
13956
- Platform=Win2003
13957
- Win32=true
13958
 
13959
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.1*]
13960
- Parent=Netscape 7.1
13961
- Platform=WinVista
 
13962
 
13963
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.1*]
13964
- Parent=Netscape 7.1
13965
- Platform=Win7
 
 
 
13966
 
13967
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.1*]
13968
- Parent=Netscape 7.1
13969
- Platform=WinNT
13970
- Win32=true
13971
 
13972
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.1*]
13973
- Parent=Netscape 7.1
13974
- Platform=Win2000
13975
- Win32=true
 
 
13976
 
13977
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.1*]
13978
- Parent=Netscape 7.1
13979
- Platform=WinXP
13980
- Win32=true
13981
 
13982
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.1*]
13983
- Parent=Netscape 7.1
13984
- Platform=Win2003
13985
- Win32=true
 
 
13986
 
13987
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.1*]
13988
- Parent=Netscape 7.1
13989
- Platform=WinVista
 
13990
 
13991
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.1*]
13992
- Parent=Netscape 7.1
13993
- Platform=Win7
 
 
 
13994
 
13995
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.1*]
13996
- Parent=Netscape 7.1
13997
- Platform=Linux
 
13998
 
13999
- [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.1*]
14000
- Parent=Netscape 7.1
14001
- Platform=SunOS
 
 
14002
 
14003
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.2
14004
 
14005
- [Netscape 7.2]
14006
  Parent=DefaultProperties
14007
- Browser="Netscape"
14008
- Version=7.2
14009
- MajorVer=7
14010
- MinorVer=2
 
 
14011
  Frames=true
14012
  IFrames=true
14013
  Tables=true
14014
  Cookies=true
14015
- JavaApplets=true
14016
  JavaScript=true
 
14017
  CssVersion=2
14018
- supportsCSS=true
14019
-
14020
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/7.2*]
14021
- Parent=Netscape 7.2
14022
- Platform=MacOSX
14023
-
14024
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.2*]
14025
- Parent=Netscape 7.2
14026
- Platform=MacOSX
14027
-
14028
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.2*]
14029
- Parent=Netscape 7.2
14030
- Platform=MacPPC
14031
 
14032
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/7.2*]
14033
- Parent=Netscape 7.2
14034
- Platform=WinME
14035
- Win32=true
14036
 
14037
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.2*]
14038
- Parent=Netscape 7.2
14039
- Platform=Win95
14040
- Win32=true
14041
 
14042
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.2*]
14043
- Parent=Netscape 7.2
14044
- Platform=Win98
14045
- Win32=true
14046
 
14047
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/7.2*]
14048
- Parent=Netscape 7.2
14049
- Platform=WinME
14050
- Win32=true
14051
 
14052
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.2*]
14053
- Parent=Netscape 7.2
14054
- Platform=WinNT
14055
- Win32=true
14056
 
14057
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.2*]
14058
- Parent=Netscape 7.2
14059
- Platform=Win2000
14060
- Win32=true
14061
 
14062
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.2*]
14063
- Parent=Netscape 7.2
14064
- Platform=WinXP
14065
- Win32=true
14066
 
14067
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.2*]
14068
- Parent=Netscape 7.2
14069
- Platform=Win2003
14070
- Win32=true
14071
 
14072
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.2*]
14073
- Parent=Netscape 7.2
14074
- Platform=WinVista
 
14075
 
14076
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.2*]
14077
- Parent=Netscape 7.2
14078
- Platform=Win7
 
14079
 
14080
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.2*]
14081
- Parent=Netscape 7.2
14082
- Platform=WinNT
14083
- Win32=true
14084
 
14085
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.2*]
14086
- Parent=Netscape 7.2
14087
- Platform=Win2000
14088
- Win32=true
14089
 
14090
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.2*]
14091
- Parent=Netscape 7.2
14092
- Platform=WinXP
14093
- Win32=true
14094
 
14095
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.2*]
14096
- Parent=Netscape 7.2
14097
- Platform=Win2003
14098
- Win32=true
14099
 
14100
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.2*]
14101
- Parent=Netscape 7.2
14102
- Platform=WinVista
 
14103
 
14104
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.2*]
14105
- Parent=Netscape 7.2
14106
- Platform=Win7
 
14107
 
14108
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.2*]
14109
- Parent=Netscape 7.2
14110
- Platform=Linux
 
14111
 
14112
- [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.2*]
14113
- Parent=Netscape 7.2
14114
- Platform=SunOS
 
14115
 
14116
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.0
14117
 
14118
- [Netscape 8.0]
14119
  Parent=DefaultProperties
14120
- Browser="Netscape"
14121
- Version=8.0
14122
- MajorVer=8
 
 
 
14123
  Frames=true
14124
  IFrames=true
14125
  Tables=true
14126
  Cookies=true
14127
- JavaApplets=true
14128
  JavaScript=true
14129
- CssVersion=2
14130
- supportsCSS=true
14131
-
14132
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/8.0*]
14133
- Parent=Netscape 8.0
14134
- Platform=MacOSX
14135
-
14136
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/8.0*]
14137
- Parent=Netscape 8.0
14138
- Platform=MacOSX
14139
-
14140
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.0*]
14141
- Parent=Netscape 8.0
14142
- Platform=MacPPC
14143
-
14144
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.0*]
14145
- Parent=Netscape 8.0
14146
- Platform=WinME
14147
- Win32=true
14148
-
14149
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.0*]
14150
- Parent=Netscape 8.0
14151
- Platform=Win95
14152
- Win32=true
14153
 
14154
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.0*]
14155
- Parent=Netscape 8.0
14156
- Platform=Win98
14157
- Win32=true
14158
 
14159
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.0*]
14160
- Parent=Netscape 8.0
14161
- Platform=WinME
14162
- Win32=true
14163
 
14164
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.0*]
14165
- Parent=Netscape 8.0
14166
- Platform=WinNT
14167
- Win32=true
14168
 
14169
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.0*]
14170
- Parent=Netscape 8.0
14171
- Platform=Win2000
14172
- Win32=true
14173
 
14174
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.0*]
14175
- Parent=Netscape 8.0
14176
- Platform=WinXP
14177
- Win32=true
14178
 
14179
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.0*]
14180
- Parent=Netscape 8.0
14181
- Platform=Win2003
14182
- Win32=true
14183
 
14184
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.0*]
14185
- Parent=Netscape 8.0
14186
- Platform=WinVista
 
 
 
14187
 
14188
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.0*]
14189
- Parent=Netscape 8.0
14190
- Platform=Win7
 
 
 
14191
 
14192
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.0*]
14193
- Parent=Netscape 8.0
14194
- Platform=WinNT
14195
- Win32=true
 
 
14196
 
14197
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.0*]
14198
- Parent=Netscape 8.0
14199
- Platform=Win2000
14200
- Win32=true
 
 
14201
 
14202
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.0*]
14203
- Parent=Netscape 8.0
14204
- Platform=WinXP
14205
- Win32=true
14206
 
14207
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.0*]
14208
- Parent=Netscape 8.0
14209
- Platform=Win2003
14210
- Win32=true
14211
 
14212
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.0*]
14213
- Parent=Netscape 8.0
14214
- Platform=WinVista
 
14215
 
14216
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.0*]
14217
- Parent=Netscape 8.0
14218
- Platform=Win7
 
14219
 
14220
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.0*]
14221
- Parent=Netscape 8.0
14222
- Platform=Linux
 
14223
 
14224
- [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.0*]
14225
- Parent=Netscape 8.0
14226
- Platform=SunOS
 
14227
 
14228
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.1
14229
 
14230
- [Netscape 8.1]
14231
  Parent=DefaultProperties
14232
- Browser="Netscape"
14233
- Version=8.1
14234
- MajorVer=8
 
14235
  MinorVer=1
 
14236
  Frames=true
14237
  IFrames=true
14238
  Tables=true
14239
  Cookies=true
14240
- JavaApplets=true
14241
  JavaScript=true
14242
- CssVersion=2
14243
- supportsCSS=true
14244
-
14245
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*) Gecko/* Netscape*/8.1*]
14246
- Parent=Netscape 8.1
14247
- Platform=MacOSX
14248
-
14249
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.1*]
14250
- Parent=Netscape 8.1
14251
- Platform=MacPPC
14252
-
14253
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.1*]
14254
- Parent=Netscape 8.1
14255
- Platform=WinME
14256
- Win32=true
14257
-
14258
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.1*]
14259
- Parent=Netscape 8.1
14260
- Platform=Win95
14261
- Win32=true
14262
 
14263
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.1*]
14264
- Parent=Netscape 8.1
14265
- Platform=Win98
14266
- Win32=true
14267
 
14268
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.1*]
14269
- Parent=Netscape 8.1
14270
- Platform=WinME
14271
- Win32=true
14272
 
14273
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.1*]
14274
- Parent=Netscape 8.1
14275
- Platform=WinNT
14276
- Win32=true
14277
 
14278
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.1*]
14279
- Parent=Netscape 8.1
14280
- Platform=Win2000
14281
- Win32=true
14282
 
14283
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.1*]
14284
- Parent=Netscape 8.1
14285
- Platform=WinXP
14286
- Win32=true
14287
 
14288
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.1*]
14289
- Parent=Netscape 8.1
14290
- Platform=Win2003
14291
- Win32=true
14292
 
14293
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.1*]
14294
- Parent=Netscape 8.1
14295
- Platform=WinVista
14296
- Win32=true
 
 
14297
 
14298
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.1*]
14299
- Parent=Netscape 8.1
14300
- Platform=Win7
 
 
 
14301
 
14302
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.1*]
14303
- Parent=Netscape 8.1
14304
- Platform=WinNT
14305
- Win32=true
 
 
14306
 
14307
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.1*]
14308
- Parent=Netscape 8.1
14309
- Platform=Win2000
14310
- Win32=true
 
 
14311
 
14312
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.1*]
14313
- Parent=Netscape 8.1
14314
- Platform=WinXP
14315
- Win32=true
14316
 
14317
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.1*]
14318
- Parent=Netscape 8.1
14319
- Platform=Win2003
14320
- Win32=true
14321
 
14322
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.1*]
14323
- Parent=Netscape 8.1
14324
- Platform=WinVista
14325
- Win32=true
14326
 
14327
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.1*]
14328
- Parent=Netscape 8.1
14329
- Platform=Win7
 
14330
 
14331
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.1*]
14332
- Parent=Netscape 8.1
14333
- Platform=Linux
 
14334
 
14335
- [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.1*]
14336
- Parent=Netscape 8.1
14337
- Platform=SunOS
 
14338
 
14339
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.0
14340
 
14341
- [SeaMonkey 1.0]
14342
  Parent=DefaultProperties
14343
- Browser="SeaMonkey"
14344
- Version=1.0
14345
- MajorVer=1
 
 
 
14346
  Frames=true
14347
  IFrames=true
14348
  Tables=true
14349
  Cookies=true
14350
- BackgroundSounds=true
14351
- JavaApplets=true
14352
  JavaScript=true
14353
- CssVersion=2
14354
- supportsCSS=true
14355
-
14356
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
14357
- Parent=SeaMonkey 1.0
14358
- Platform=MacOSX
14359
-
14360
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
14361
- Parent=SeaMonkey 1.0
14362
- Platform=WinME
14363
-
14364
- [Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
14365
- Parent=SeaMonkey 1.0
14366
- Platform=Win98
14367
-
14368
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
14369
- Parent=SeaMonkey 1.0
14370
- Platform=Win2000
14371
-
14372
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
14373
- Parent=SeaMonkey 1.0
14374
- Platform=WinXP
14375
-
14376
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
14377
- Parent=SeaMonkey 1.0
14378
- Platform=Win2003
14379
-
14380
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
14381
- Parent=SeaMonkey 1.0
14382
- Platform=WinVista
14383
-
14384
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
14385
- Parent=SeaMonkey 1.0
14386
- Platform=Win7
14387
 
14388
- [Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
14389
- Parent=SeaMonkey 1.0
14390
- Platform=FreeBSD
 
14391
 
14392
- [Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/20060221 SeaMonkey/1.0*]
14393
- Parent=SeaMonkey 1.0
14394
- Platform=Linux
 
14395
 
14396
- [Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
14397
- Parent=SeaMonkey 1.0
14398
- Platform=SunOS
 
14399
 
14400
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.1
 
 
 
14401
 
14402
- [SeaMonkey 1.1]
14403
- Parent=DefaultProperties
14404
- Browser="SeaMonkey"
14405
- Version=1.1
14406
- MajorVer=1
14407
- MinorVer=1
14408
- Frames=true
14409
- IFrames=true
14410
- Tables=true
14411
- Cookies=true
14412
- BackgroundSounds=true
14413
- JavaApplets=true
14414
- JavaScript=true
14415
- CssVersion=2
14416
- supportsCSS=true
14417
 
14418
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
14419
- Parent=SeaMonkey 1.1
14420
- Platform=MacOSX
 
14421
 
14422
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
14423
- Parent=SeaMonkey 1.1
14424
- Platform=WinME
 
 
 
14425
 
14426
- [Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
14427
- Parent=SeaMonkey 1.1
14428
- Platform=Win98
 
 
 
14429
 
14430
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
14431
- Parent=SeaMonkey 1.1
14432
- Platform=Win2000
 
 
 
14433
 
14434
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
14435
- Parent=SeaMonkey 1.1
14436
- Platform=WinXP
 
 
 
14437
 
14438
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
14439
- Parent=SeaMonkey 1.1
14440
- Platform=Win2003
 
14441
 
14442
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
14443
- Parent=SeaMonkey 1.1
14444
- Platform=WinVista
 
14445
 
14446
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
14447
- Parent=SeaMonkey 1.1
14448
- Platform=Win7
 
14449
 
14450
- [Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
14451
- Parent=SeaMonkey 1.1
14452
- Platform=FreeBSD
 
14453
 
14454
- [Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
14455
- Parent=SeaMonkey 1.1
14456
- Platform=Linux
 
14457
 
14458
- [Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
14459
- Parent=SeaMonkey 1.1
14460
- Platform=SunOS
 
14461
 
14462
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 2.0
14463
 
14464
- [SeaMonkey 2.0]
14465
- Parent=DefaultProperties
14466
- Browser="SeaMonkey"
14467
- Version=2.0
14468
- MajorVer=2
14469
- Alpha=true
 
 
14470
  Frames=true
14471
  IFrames=true
14472
  Tables=true
14473
  Cookies=true
14474
- BackgroundSounds=true
14475
- JavaApplets=true
14476
  JavaScript=true
14477
- CssVersion=2
14478
- supportsCSS=true
14479
 
14480
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14481
- Parent=SeaMonkey 2.0
14482
- Platform=MacOSX
 
14483
 
14484
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14485
- Parent=SeaMonkey 2.0
14486
- Platform=WinME
 
14487
 
14488
- [Mozilla/5.0 (Windows; ?; Win98; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14489
- Parent=SeaMonkey 2.0
14490
- Platform=Win98
 
14491
 
14492
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14493
- Parent=SeaMonkey 2.0
14494
- Platform=Win2000
 
14495
 
14496
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14497
- Parent=SeaMonkey 2.0
14498
- Platform=WinXP
 
14499
 
14500
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14501
- Parent=SeaMonkey 2.0
14502
- Platform=Win2003
 
14503
 
14504
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14505
- Parent=SeaMonkey 2.0
14506
- Platform=WinVista
 
 
 
14507
 
14508
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14509
- Parent=SeaMonkey 2.0
14510
- Platform=Win7
 
 
 
14511
 
14512
- [Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14513
- Parent=SeaMonkey 2.0
14514
- Platform=FreeBSD
 
 
 
14515
 
14516
- [Mozilla/5.0 (X11; ?; Linux*; *; rv:1.9*) Gecko/20060221 SeaMonkey/2.0*]
14517
- Parent=SeaMonkey 2.0
14518
- Platform=Linux
 
 
 
14519
 
14520
- [Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14521
- Parent=SeaMonkey 2.0
14522
- Platform=SunOS
 
14523
 
14524
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 1.0
 
 
 
14525
 
14526
- [Flock 1.0]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14527
  Parent=DefaultProperties
14528
- Browser="Flock"
14529
- Version=1.0
14530
- MajorVer=1
 
 
 
14531
  Frames=true
14532
  IFrames=true
14533
  Tables=true
14534
  Cookies=true
14535
- JavaApplets=true
14536
  JavaScript=true
14537
- CssVersion=2
14538
- supportsCSS=true
14539
 
14540
- [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14541
- Parent=Flock 1.0
14542
- Platform=MacOSX
 
14543
 
14544
- [Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14545
- Parent=Flock 1.0
14546
- Platform=WinME
 
14547
 
14548
- [Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14549
- Parent=Flock 1.0
14550
- Platform=Win2000
 
14551
 
14552
- [Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14553
- Parent=Flock 1.0
14554
- Platform=WinXP
 
14555
 
14556
- [Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14557
- Parent=Flock 1.0
14558
- Platform=Win2003
 
14559
 
14560
- [Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14561
- Parent=Flock 1.0
14562
- Platform=WinVista
 
14563
 
14564
- [Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14565
- Parent=Flock 1.0
14566
- Platform=Win7
 
14567
 
14568
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 2.0
 
 
 
14569
 
14570
- [Flock 2.0]
14571
- Parent=DefaultProperties
14572
- Browser="Flock"
14573
- Version=2.0
14574
- MajorVer=2
14575
- Frames=true
14576
- IFrames=true
14577
- Tables=true
14578
- Cookies=true
14579
- JavaApplets=true
14580
- JavaScript=true
14581
- CssVersion=2
14582
- supportsCSS=true
14583
 
14584
- [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14585
- Parent=Flock 2.0
14586
- Platform=MacOSX
 
 
 
14587
 
14588
- [Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14589
- Parent=Flock 2.0
14590
- Platform=WinME
 
14591
 
14592
- [Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14593
- Parent=Flock 2.0
14594
- Platform=Win2000
 
 
 
14595
 
14596
- [Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14597
- Parent=Flock 2.0
14598
- Platform=WinXP
 
14599
 
14600
- [Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14601
- Parent=Flock 2.0
14602
- Platform=Win2003
 
 
 
14603
 
14604
- [Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14605
- Parent=Flock 2.0
14606
- Platform=WinVista
 
 
 
14607
 
14608
- [Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14609
- Parent=Flock 2.0
14610
- Platform=Win7
 
14611
 
14612
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sleipnir 2.0
14613
 
14614
- [Sleipnir]
14615
  Parent=DefaultProperties
14616
- Browser="Sleipnir"
14617
- Version=2.0
14618
- MajorVer=2
 
 
 
14619
  Frames=true
14620
  IFrames=true
14621
  Tables=true
14622
  Cookies=true
14623
- JavaApplets=true
14624
  JavaScript=true
14625
- CssVersion=2
14626
- supportsCSS=true
14627
 
14628
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.0*) Sleipnir/2.*]
14629
- Parent=Sleipnir
14630
- Platform=Win2000
 
14631
 
14632
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.1*) Sleipnir/2.*]
14633
- Parent=Sleipnir
14634
- Platform=WinXP
 
14635
 
14636
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.2*) Sleipnir/2.*]
14637
- Parent=Sleipnir
14638
- Platform=Win2003
 
 
 
14639
 
14640
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.0*) Sleipnir/2.*]
14641
- Parent=Sleipnir
14642
- Platform=WinVista
 
14643
 
14644
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.1*) Sleipnir/2.*]
14645
- Parent=Sleipnir
14646
- Platform=Win7
 
 
 
14647
 
14648
- [Sleipnir*]
14649
- Parent=Sleipnir
 
 
14650
 
14651
- [Sleipnir/2.*]
14652
- Parent=Sleipnir
 
 
 
 
14653
 
14654
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 1.0
 
 
 
 
 
14655
 
14656
- [Fennec 1.0]
14657
- Parent=DefaultProperties
14658
- Browser="Firefox Mobile"
14659
- Version=1.0
14660
- MajorVer=1
14661
- Alpha=true
14662
- Frames=true
14663
- IFrames=true
14664
- Tables=true
14665
- Cookies=true
14666
- JavaApplets=true
14667
- JavaScript=true
14668
- CssVersion=3
14669
- supportsCSS=true
14670
 
14671
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9*) Gecko/* Fennec/1.0*]
14672
- Parent=Fennec 1.0
14673
- Platform=WinXP
 
14674
 
14675
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9*) Gecko/* Fennec/1.0*]
14676
- Parent=Fennec 1.0
14677
- Platform=WinVista
 
14678
 
14679
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9*) Gecko/* Fennec/1.0*]
14680
- Parent=Fennec 1.0
14681
- Platform=Win7
 
14682
 
14683
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.0
 
 
 
14684
 
14685
- [Firefox 1.0]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14686
  Parent=DefaultProperties
 
14687
  Browser="Firefox"
14688
- Version=1.0
14689
- MajorVer=1
 
 
14690
  Frames=true
14691
  IFrames=true
14692
  Tables=true
14693
  Cookies=true
14694
- JavaApplets=true
14695
  JavaScript=true
14696
- CssVersion=2
14697
- supportsCSS=true
14698
-
14699
- [Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.0*]
14700
- Parent=Firefox 1.0
14701
- Platform=MacPPC
14702
-
14703
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.0*]
14704
- Parent=Firefox 1.0
14705
- Platform=MacOSX
14706
-
14707
- [Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.0*]
14708
- Parent=Firefox 1.0
14709
- Platform=OS/2
14710
-
14711
- [Mozilla/5.0 (Windows; *; Win 9x 4.90*; *; rv:1.*) Gecko/* Firefox/1.0*]
14712
- Parent=Firefox 1.0
14713
- Platform=WinME
14714
- Win32=true
14715
 
14716
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.0*]
14717
- Parent=Firefox 1.0
14718
- Platform=Win95
14719
- Win32=true
14720
 
14721
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.0*]
14722
- Parent=Firefox 1.0
14723
- Platform=Win98
14724
- Win32=true
14725
 
14726
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.0*]
14727
- Parent=Firefox 1.0
14728
- Platform=Win2000
14729
- Win32=true
 
 
14730
 
14731
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.0*]
14732
- Parent=Firefox 1.0
14733
- Platform=WinXP
14734
- Win32=true
14735
 
14736
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; rv:1.*) Gecko/* Firefox/1.0*]
14737
- Parent=Firefox 1.0
14738
- Platform=WinXP
14739
- Win32=true
 
 
14740
 
14741
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.0*]
14742
- Parent=Firefox 1.0
14743
- Platform=Win2003
14744
- Win32=true
14745
 
14746
- [Mozilla/5.0 (Windows; *; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/1.0*]
14747
- Parent=Firefox 1.0
14748
- Platform=WinVista
14749
- Win32=true
 
 
14750
 
14751
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.0*]
14752
- Parent=Firefox 1.0
14753
- Platform=WinNT
14754
- Win32=true
14755
 
14756
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.0*]
14757
- Parent=Firefox 1.0
14758
- Platform=Linux
 
 
 
14759
 
14760
- [Mozilla/5.0 (X11; *; *Linux*; rv:1.*) Gecko/* Firefox/1.0*]
14761
- Parent=Firefox 1.0
14762
- Platform=Linux
 
14763
 
14764
- [Mozilla/5.0 (X11; *; DragonFly*; *; rv:1.*) Gecko/* Firefox/1.0*]
14765
- Parent=Firefox 1.0
 
 
14766
 
14767
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.0*]
14768
- Parent=Firefox 1.0
14769
- Platform=FreeBSD
 
14770
 
14771
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.0*]
14772
- Parent=Firefox 1.0
14773
- Platform=HP-UX
 
14774
 
14775
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.0*]
14776
- Parent=Firefox 1.0
14777
- Platform=IRIX64
 
14778
 
14779
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.0*]
14780
- Parent=Firefox 1.0
14781
- Platform=OpenBSD
 
14782
 
14783
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.0*]
14784
- Parent=Firefox 1.0
14785
- Platform=SunOS
 
14786
 
14787
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.4
14788
 
14789
- [Firefox 1.4]
14790
  Parent=DefaultProperties
 
14791
  Browser="Firefox"
14792
- Version=1.4
14793
- MajorVer=1
14794
- MinorVer=4
 
14795
  Frames=true
14796
  IFrames=true
14797
  Tables=true
14798
  Cookies=true
14799
- JavaApplets=true
14800
  JavaScript=true
14801
- CssVersion=2
14802
- supportsCSS=true
14803
 
14804
- [Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.4*]
14805
- Parent=Firefox 1.4
14806
- Platform=Linux
 
14807
 
14808
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.4*]
14809
- Parent=Firefox 1.4
14810
- Platform=MacOSX
 
14811
 
14812
- [Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.4*]
14813
- Parent=Firefox 1.4
14814
- Platform=OS/2
 
14815
 
14816
- [Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/1.4*]
14817
- Parent=Firefox 1.4
14818
- Platform=WinME
14819
- Win32=true
14820
 
14821
- [Mozilla/5.0 (Windows; *; Win95*; *; rv:1.*) Gecko/* Firefox/1.4*]
14822
- Parent=Firefox 1.4
14823
- Platform=Win95
14824
- Win32=true
14825
 
14826
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.4*]
14827
- Parent=Firefox 1.4
14828
- Platform=Win98
14829
- Win32=true
14830
 
14831
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.4*]
14832
- Parent=Firefox 1.4
14833
- Platform=Win2000
14834
- Win32=true
14835
 
14836
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.4*]
14837
- Parent=Firefox 1.4
14838
- Platform=WinXP
14839
- Win32=true
14840
 
14841
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.4*]
14842
- Parent=Firefox 1.4
14843
- Platform=Win2003
14844
- Win32=true
14845
 
14846
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* Firefox/1.4*]
14847
- Parent=Firefox 1.4
14848
- Platform=WinVista
14849
- Win32=true
 
 
14850
 
14851
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.4*]
14852
- Parent=Firefox 1.4
14853
- Platform=WinNT
14854
- Win32=true
 
 
 
 
 
 
 
14855
 
14856
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.4*]
14857
- Parent=Firefox 1.4
14858
- Platform=Linux
 
14859
 
14860
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.4*]
14861
- Parent=Firefox 1.4
14862
- Platform=FreeBSD
 
 
 
14863
 
14864
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.4*]
14865
- Parent=Firefox 1.4
14866
- Platform=HP-UX
 
14867
 
14868
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.4*]
14869
- Parent=Firefox 1.4
14870
- Platform=IRIX64
 
 
 
14871
 
14872
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.4*]
14873
- Parent=Firefox 1.4
14874
- Platform=OpenBSD
 
14875
 
14876
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.4*]
14877
- Parent=Firefox 1.4
14878
- Platform=SunOS
 
 
14879
 
14880
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.5
14881
 
14882
- [Firefox 1.5]
14883
  Parent=DefaultProperties
 
14884
  Browser="Firefox"
14885
- Version=1.5
14886
- MajorVer=1
14887
- MinorVer=5
 
14888
  Frames=true
14889
  IFrames=true
14890
  Tables=true
14891
  Cookies=true
14892
- JavaApplets=true
14893
  JavaScript=true
14894
- CssVersion=2
14895
- supportsCSS=true
14896
-
14897
- [Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.5*]
14898
- Parent=Firefox 1.5
14899
- Platform=Linux
14900
 
14901
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.5*]
14902
- Parent=Firefox 1.5
14903
- Platform=MacOSX
 
14904
 
14905
- [Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.5*]
14906
- Parent=Firefox 1.5
14907
- Platform=OS/2
 
14908
 
14909
- [Mozilla/5.0 (rv:1.*) Gecko/* Firefox/1.5*]
14910
- Parent=Firefox 1.5
 
 
14911
 
14912
- [Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/1.5*]
14913
- Parent=Firefox 1.5
14914
- Platform=WinME
14915
- Win32=true
14916
 
14917
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.5*]
14918
- Parent=Firefox 1.5
14919
- Platform=Win95
14920
- Win32=true
14921
 
14922
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.5*]
14923
- Parent=Firefox 1.5
14924
- Platform=Win98
14925
- Win32=true
14926
 
14927
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.5*]
14928
- Parent=Firefox 1.5
14929
- Platform=Win2000
14930
- Win32=true
14931
 
14932
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.5*]
14933
- Parent=Firefox 1.5
14934
- Platform=WinXP
14935
- Win32=true
14936
 
14937
- [Mozilla/5.0 (Windows; *; Windows NT 5.2 x64; *; rv:1.*) Gecko/* Firefox/1.5*]
14938
- Parent=Firefox 1.5
14939
- Platform=WinXP
14940
- Win32=true
14941
 
14942
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.5*]
14943
- Parent=Firefox 1.5
14944
- Platform=Win2003
14945
- Win32=true
 
 
14946
 
14947
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* Firefox/1.5*]
14948
- Parent=Firefox 1.5
14949
- Platform=WinVista
14950
- Win32=true
14951
 
14952
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.5*]
14953
- Parent=Firefox 1.5
14954
- Platform=WinNT
14955
- Win32=true
 
 
14956
 
14957
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.5*]
14958
- Parent=Firefox 1.5
14959
- Platform=Linux
 
14960
 
14961
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.5*]
14962
- Parent=Firefox 1.5
14963
- Platform=FreeBSD
 
 
 
14964
 
14965
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.5*]
14966
- Parent=Firefox 1.5
14967
- Platform=HP-UX
 
14968
 
14969
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.5*]
14970
- Parent=Firefox 1.5
14971
- Platform=IRIX64
 
 
 
14972
 
14973
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.5*]
14974
- Parent=Firefox 1.5
14975
- Platform=OpenBSD
 
14976
 
14977
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.5*]
14978
- Parent=Firefox 1.5
14979
- Platform=SunOS
 
 
14980
 
14981
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.0
14982
 
14983
- [Firefox 2.0]
14984
  Parent=DefaultProperties
 
14985
  Browser="Firefox"
14986
- Version=2.0
14987
- MajorVer=2
 
 
14988
  Frames=true
14989
  IFrames=true
14990
  Tables=true
14991
  Cookies=true
14992
- JavaApplets=true
14993
  JavaScript=true
14994
- CssVersion=2
14995
- supportsCSS=true
14996
 
14997
- [Mozilla/5.0 (Linux; *; PPC*; *; rv:1.8*) Gecko/* Firefox/2.0*]
14998
- Parent=Firefox 2.0
14999
- Platform=Linux
 
15000
 
15001
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.8*) Gecko/* Firefox/2.0*]
15002
- Parent=Firefox 2.0
15003
- Platform=MacOSX
 
15004
 
15005
- [Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.8*) Gecko/* Firefox/2.0*]
15006
- Parent=Firefox 2.0
15007
- Platform=OS/2
 
15008
 
15009
- [Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.8*) Gecko/* Firefox/2.0*]
15010
- Parent=Firefox 2.0
15011
- Platform=WinME
15012
- Win32=true
15013
 
15014
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.8*) Gecko/* Firefox/2.0*]
15015
- Parent=Firefox 2.0
15016
- Platform=Win95
15017
- Win32=true
15018
 
15019
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.8*) Gecko/* Firefox/2.0*]
15020
- Parent=Firefox 2.0
15021
- Platform=Win98
15022
- Win32=true
15023
 
15024
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/2.0*]
15025
- Parent=Firefox 2.0
15026
- Platform=Win2000
15027
- Win32=true
15028
 
15029
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.8*) Gecko/* Firefox/2.0*]
15030
- Parent=Firefox 2.0
15031
- Platform=WinXP
15032
- Win32=true
15033
 
15034
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.8*) Gecko/* Firefox/2.0*]
15035
- Parent=Firefox 2.0
15036
- Platform=Win2003
15037
- Win32=true
15038
 
15039
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.8*) Gecko/* Firefox/2.0*]
15040
- Parent=Firefox 2.0
15041
- Platform=WinVista
15042
- Win32=true
 
 
15043
 
15044
- [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.8*) Gecko/* Firefox/2.0*]
15045
- Parent=Firefox 2.0
15046
- Platform=Win7
 
15047
 
15048
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.8*) Gecko/* Firefox/2.0*]
15049
- Parent=Firefox 2.0
15050
- Platform=WinNT
15051
- Win32=true
 
 
15052
 
15053
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.8*) Gecko/* Firefox/2.0*]
15054
- Parent=Firefox 2.0
15055
- Platform=Linux
 
15056
 
15057
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.8*) Gecko/* Firefox/2.0*]
15058
- Parent=Firefox 2.0
15059
- Platform=FreeBSD
 
 
 
15060
 
15061
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.8*) Gecko/* Firefox/2.0*]
15062
- Parent=Firefox 2.0
15063
- Platform=HP-UX
 
15064
 
15065
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.8*) Gecko/* Firefox/2.0*]
15066
- Parent=Firefox 2.0
15067
- Platform=IRIX64
 
 
 
15068
 
15069
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.8*) Gecko/* Firefox/2.0*]
15070
- Parent=Firefox 2.0
15071
- Platform=OpenBSD
 
15072
 
15073
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.8*) Gecko/* Firefox/2.0*]
15074
- Parent=Firefox 2.0
15075
- Platform=SunOS
 
 
15076
 
15077
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.0
15078
 
15079
- [Firefox 3.0]
15080
  Parent=DefaultProperties
 
15081
  Browser="Firefox"
15082
- Version=3.0
15083
- MajorVer=3
 
 
15084
  Frames=true
15085
  IFrames=true
15086
  Tables=true
15087
  Cookies=true
15088
- JavaApplets=true
15089
  JavaScript=true
 
15090
  CssVersion=3
15091
- supportsCSS=true
15092
 
15093
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.0*]
15094
- Parent=Firefox 3.0
15095
- Platform=MacOSX
 
15096
 
15097
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/3.0*]
15098
- Parent=Firefox 3.0
15099
- Platform=Win2000
 
15100
 
15101
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.0*]
15102
- Parent=Firefox 3.0
15103
- Platform=WinXP
15104
- Win32=true
15105
 
15106
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.0*]
15107
- Parent=Firefox 3.0
15108
- Platform=Win2003
15109
- Win32=true
15110
 
15111
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.0*]
15112
- Parent=Firefox 3.0
15113
- Platform=WinVista
15114
- Win32=true
15115
 
15116
- [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* Firefox/3.0*]
15117
- Parent=Firefox 3.0
15118
- Platform=Win7
 
15119
 
15120
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9*) Gecko/* Firefox/3.0*]
15121
- Parent=Firefox 3.0
15122
- Platform=WinNT
15123
- Win32=true
15124
 
15125
- [Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
15126
- Parent=Firefox 3.0
15127
- Platform=WinXP
 
 
 
 
 
 
 
 
 
 
 
15128
  Win32=false
15129
  Win64=true
15130
 
15131
- [Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
15132
- Parent=Firefox 3.0
15133
- Platform=Win2003
 
 
 
 
 
 
15134
  Win32=false
15135
  Win64=true
15136
 
15137
- [Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
15138
- Parent=Firefox 3.0
15139
- Platform=WinVista
 
15140
 
15141
- [Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
15142
- Parent=Firefox 3.0
15143
- Platform=Win7
 
 
 
15144
 
15145
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.0*]
15146
- Parent=Firefox 3.0
15147
- Platform=Linux
 
15148
 
15149
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*]
15150
- Parent=Firefox 3.0
15151
- Platform=FreeBSD
 
 
 
15152
 
15153
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.0*]
15154
- Parent=Firefox 3.0
15155
- Platform=HP-UX
 
15156
 
15157
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.0*]
15158
- Parent=Firefox 3.0
15159
- Platform=IRIX64
 
 
15160
 
15161
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*]
15162
- Parent=Firefox 3.0
15163
- Platform=OpenBSD
 
15164
 
15165
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.0*]
15166
- Parent=Firefox 3.0
15167
- Platform=SunOS
 
15168
 
15169
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.1
 
 
 
15170
 
15171
- [Firefox 3.1]
15172
- Parent=DefaultProperties
15173
- Browser="Firefox"
15174
- Version=3.1
15175
- MajorVer=3
15176
- MinorVer=1
15177
- Beta=true
15178
- Frames=true
15179
- IFrames=true
15180
- Tables=true
15181
- Cookies=true
15182
- JavaApplets=true
15183
- JavaScript=true
15184
- CssVersion=3
15185
- supportsCSS=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15186
 
15187
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.1*]
15188
- Parent=Firefox 3.1
15189
- Platform=MacOSX
 
15190
 
15191
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.9*) Gecko/* Firefox/3.1*]
15192
- Parent=Firefox 3.1
15193
- Platform=Win2000
 
15194
 
15195
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.1*]
15196
- Parent=Firefox 3.1
15197
- Platform=WinXP
15198
- Win32=true
15199
 
15200
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.1*]
15201
- Parent=Firefox 3.1
15202
- Platform=Win2003
15203
- Win32=true
15204
 
15205
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.1*]
15206
- Parent=Firefox 3.1
15207
- Platform=WinVista
15208
- Win32=true
15209
 
15210
- [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9*) Gecko/* Firefox/3.1*]
15211
- Parent=Firefox 3.1
15212
- Platform=Win7
 
15213
 
15214
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9*) Gecko/* Firefox/3.1*]
15215
- Parent=Firefox 3.1
15216
- Platform=WinNT
15217
- Win32=true
15218
 
15219
- [Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
15220
- Parent=Firefox 3.1
15221
- Platform=WinXP
15222
- Win32=false
15223
- Win64=true
15224
 
15225
- [Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
15226
- Parent=Firefox 3.1
15227
- Platform=Win2003
 
 
 
 
 
 
 
 
 
 
15228
  Win32=false
15229
- Win64=true
15230
 
15231
- [Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
15232
- Parent=Firefox 3.1
15233
- Platform=WinVista
15234
 
15235
- [Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
15236
- Parent=Firefox 3.1
15237
- Platform=Win7
 
 
 
 
 
 
 
 
 
 
 
15238
 
15239
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.1*]
15240
- Parent=Firefox 3.1
15241
- Platform=Linux
 
15242
 
15243
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*]
15244
- Parent=Firefox 3.1
15245
- Platform=FreeBSD
 
15246
 
15247
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.1*]
15248
- Parent=Firefox 3.1
15249
- Platform=HP-UX
 
15250
 
15251
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.1*]
15252
- Parent=Firefox 3.1
15253
- Platform=IRIX64
 
15254
 
15255
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*]
15256
- Parent=Firefox 3.1
15257
- Platform=OpenBSD
 
15258
 
15259
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.1*]
15260
- Parent=Firefox 3.1
15261
- Platform=SunOS
15262
 
15263
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.5
15264
 
15265
- [Firefox 3.5]
15266
  Parent=DefaultProperties
15267
- Browser="Firefox"
15268
- Version=3.5
15269
- MajorVer=3
15270
- MinorVer=5
 
 
 
15271
  Frames=true
15272
  IFrames=true
15273
  Tables=true
15274
  Cookies=true
15275
- JavaApplets=true
15276
  JavaScript=true
 
15277
  CssVersion=3
15278
- supportsCSS=true
15279
 
15280
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15281
- Parent=Firefox 3.5
15282
- Platform=MacOSX
15283
-
15284
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15285
- Parent=Firefox 3.5
15286
- Platform=Win2000
15287
-
15288
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15289
- Parent=Firefox 3.5
15290
- Platform=WinXP
15291
- Win32=true
15292
 
15293
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15294
- Parent=Firefox 3.5
15295
- Platform=Win2003
15296
- Win32=true
15297
 
15298
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15299
- Parent=Firefox 3.5
15300
- Platform=WinVista
15301
- Win32=true
15302
 
15303
- [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15304
- Parent=Firefox 3.5
15305
- Platform=Win7
15306
 
15307
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15308
- Parent=Firefox 3.5
15309
- Platform=WinNT
 
 
 
 
15310
  Win32=true
 
 
 
 
 
 
 
15311
 
15312
- [Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15313
- Parent=Firefox 3.5
15314
- Platform=WinXP
15315
  Win32=false
15316
- Win64=true
15317
 
15318
- [Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15319
- Parent=Firefox 3.5
15320
- Platform=Win2003
15321
  Win32=false
15322
- Win64=true
15323
-
15324
- [Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15325
- Parent=Firefox 3.5
15326
- Platform=WinVista
15327
-
15328
- [Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15329
- Parent=Firefox 3.5
15330
- Platform=Win7
15331
 
15332
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15333
- Parent=Firefox 3.5
15334
- Platform=Linux
 
15335
 
15336
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15337
- Parent=Firefox 3.5
15338
- Platform=FreeBSD
 
15339
 
15340
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15341
- Parent=Firefox 3.5
15342
- Platform=HP-UX
 
15343
 
15344
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15345
- Parent=Firefox 3.5
15346
- Platform=IRIX64
 
15347
 
15348
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15349
- Parent=Firefox 3.5
15350
- Platform=OpenBSD
 
15351
 
15352
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
15353
- Parent=Firefox 3.5
15354
- Platform=SunOS
15355
 
15356
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.6
15357
 
15358
- [Firefox 3.6]
15359
  Parent=DefaultProperties
15360
- Browser="Firefox"
15361
- Version=3.6
15362
- MajorVer=3
15363
- MinorVer=6
15364
- Beta=true
 
15365
  Frames=true
15366
  IFrames=true
15367
  Tables=true
15368
  Cookies=true
15369
- JavaApplets=true
15370
  JavaScript=true
 
15371
  CssVersion=3
15372
- supportsCSS=true
15373
 
15374
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15375
- Parent=Firefox 3.6
15376
- Platform=MacOSX
 
15377
 
15378
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15379
- Parent=Firefox 3.6
15380
- Platform=Win2000
 
15381
 
15382
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15383
- Parent=Firefox 3.6
15384
- Platform=WinXP
15385
- Win32=true
15386
 
15387
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15388
- Parent=Firefox 3.6
15389
- Platform=Win2003
15390
- Win32=true
15391
 
15392
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15393
- Parent=Firefox 3.6
15394
- Platform=WinVista
15395
- Win32=true
15396
 
15397
- [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15398
- Parent=Firefox 3.6
15399
- Platform=Win7
 
15400
 
15401
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15402
- Parent=Firefox 3.6
15403
- Platform=WinNT
 
 
 
 
 
 
 
 
 
 
15404
  Win32=true
 
 
 
 
 
 
 
15405
 
15406
- [Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15407
- Parent=Firefox 3.6
15408
- Platform=WinXP
15409
  Win32=false
15410
- Win64=true
15411
 
15412
- [Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15413
- Parent=Firefox 3.6
15414
- Platform=Win2003
15415
  Win32=false
15416
- Win64=true
15417
-
15418
- [Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15419
- Parent=Firefox 3.6
15420
- Platform=WinVista
15421
-
15422
- [Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15423
- Parent=Firefox 3.6
15424
- Platform=Win7
15425
 
15426
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15427
- Parent=Firefox 3.6
15428
- Platform=Linux
 
15429
 
15430
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15431
- Parent=Firefox 3.6
15432
- Platform=FreeBSD
 
15433
 
15434
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15435
- Parent=Firefox 3.6
15436
- Platform=HP-UX
 
15437
 
15438
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15439
- Parent=Firefox 3.6
15440
- Platform=IRIX64
 
15441
 
15442
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15443
- Parent=Firefox 3.6
15444
- Platform=OpenBSD
 
15445
 
15446
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
15447
- Parent=Firefox 3.6
15448
- Platform=SunOS
15449
 
15450
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.7
15451
 
15452
- [Firefox 3.7]
15453
  Parent=DefaultProperties
15454
- Browser="Firefox"
15455
- Version=3.7
15456
- MajorVer=3
15457
- MinorVer=7
15458
- Alpha=true
 
15459
  Frames=true
15460
  IFrames=true
15461
  Tables=true
15462
  Cookies=true
15463
- JavaApplets=true
15464
  JavaScript=true
 
15465
  CssVersion=3
15466
- supportsCSS=true
15467
-
15468
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15469
- Parent=Firefox 3.7
15470
- Platform=MacOSX
15471
-
15472
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15473
- Parent=Firefox 3.7
15474
- Platform=Win2000
15475
-
15476
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15477
- Parent=Firefox 3.7
15478
- Platform=WinXP
15479
- Win32=true
15480
 
15481
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15482
- Parent=Firefox 3.7
15483
- Platform=Win2003
15484
- Win32=true
15485
-
15486
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15487
- Parent=Firefox 3.7
15488
- Platform=WinVista
15489
- Win32=true
15490
-
15491
- [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15492
- Parent=Firefox 3.7
15493
- Platform=Win7
15494
-
15495
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15496
- Parent=Firefox 3.7
15497
- Platform=WinNT
15498
- Win32=true
15499
-
15500
- [Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15501
- Parent=Firefox 3.7
15502
- Platform=WinXP
15503
  Win32=false
15504
- Win64=true
15505
 
15506
- [Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15507
- Parent=Firefox 3.7
15508
- Platform=Win2003
15509
  Win32=false
15510
- Win64=true
15511
-
15512
- [Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15513
- Parent=Firefox 3.7
15514
- Platform=WinVista
15515
 
15516
- [Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15517
- Parent=Firefox 3.7
15518
- Platform=Win7
 
15519
 
15520
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15521
- Parent=Firefox 3.7
15522
- Platform=Linux
 
15523
 
15524
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15525
- Parent=Firefox 3.7
15526
- Platform=FreeBSD
 
15527
 
15528
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15529
- Parent=Firefox 3.7
15530
- Platform=HP-UX
 
15531
 
15532
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15533
- Parent=Firefox 3.7
15534
- Platform=IRIX64
 
15535
 
15536
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15537
- Parent=Firefox 3.7
15538
- Platform=OpenBSD
15539
-
15540
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9.3) Gecko/* Minefield/3.7*]
15541
- Parent=Firefox 3.7
15542
- Platform=SunOS
15543
 
15544
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Thunderbird 1.0
15545
 
15546
  [Thunderbird 1.0]
15547
  Parent=DefaultProperties
 
15548
  Browser="Thunderbird"
15549
  Version=1.0
15550
  MajorVer=1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15551
  Frames=true
15552
  IFrames=true
15553
  Tables=true
15554
  Cookies=true
15555
- JavaApplets=true
15556
  JavaScript=true
15557
 
15558
- [Mozilla/5.0 (Macintosh; *Mac OS X; U; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
15559
- Parent=Thunderbird 1.0
15560
- Platform=MacOSX
15561
-
15562
- [Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
15563
- Parent=Thunderbird 1.0
15564
- Platform=Win2000
15565
-
15566
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
15567
- Parent=Thunderbird 1.0
15568
- Platform=WinXP
15569
-
15570
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
15571
- Parent=Thunderbird 1.0
15572
- Platform=Win2003
15573
-
15574
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
15575
- Parent=Thunderbird 1.0
15576
- Platform=WinVista
15577
-
15578
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
15579
- Parent=Thunderbird 1.0
15580
- Platform=Win7
15581
 
15582
- [Mozilla/5.0 (X11; U; Linux i686*; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
15583
- Parent=Thunderbird 1.0
15584
- Platform=Linux
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15585
 
15586
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Thunderbird 2.0
15587
 
15588
  [Thunderbird 2.0]
15589
  Parent=DefaultProperties
 
15590
  Browser="Thunderbird"
15591
  Version=2.0
15592
  MajorVer=2
 
 
15593
  Frames=true
15594
  IFrames=true
15595
  Tables=true
15596
  Cookies=true
15597
- JavaApplets=true
15598
  JavaScript=true
15599
 
15600
- [Mozilla/5.0 (Macintosh; *Mac OS X; U; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
15601
- Parent=Thunderbird 2.0
15602
- Platform=MacOSX
15603
-
15604
- [Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
15605
- Parent=Thunderbird 2.0
15606
- Platform=Win2000
15607
-
15608
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
15609
- Parent=Thunderbird 2.0
15610
- Platform=WinXP
15611
-
15612
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
15613
- Parent=Thunderbird 2.0
15614
- Platform=Win2003
15615
-
15616
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
15617
- Parent=Thunderbird 2.0
15618
- Platform=WinVista
15619
-
15620
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
15621
- Parent=Thunderbird 2.0
15622
- Platform=Win7
15623
-
15624
- [Mozilla/5.0 (X11; U; Linux i686*; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
15625
- Parent=Thunderbird 2.0
15626
- Platform=Linux
15627
-
15628
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Thunderbird 3.0
15629
 
15630
  [Thunderbird 3.0]
15631
  Parent=DefaultProperties
 
15632
  Browser="Thunderbird"
15633
  Version=3.0
15634
  MajorVer=3
 
 
15635
  Frames=true
15636
  IFrames=true
15637
  Tables=true
15638
  Cookies=true
15639
- JavaApplets=true
15640
  JavaScript=true
15641
 
15642
- [Mozilla/5.0 (Macintosh; *Mac OS X; U; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
15643
- Parent=Thunderbird 3.0
15644
- Platform=MacOSX
15645
-
15646
- [Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
15647
- Parent=Thunderbird 3.0
15648
- Platform=Win2000
15649
-
15650
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
15651
- Parent=Thunderbird 3.0
15652
- Platform=WinXP
15653
-
15654
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
15655
- Parent=Thunderbird 3.0
15656
- Platform=Win2003
15657
-
15658
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
15659
- Parent=Thunderbird 3.0
15660
- Platform=WinVista
15661
-
15662
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
15663
- Parent=Thunderbird 3.0
15664
- Platform=Win7
15665
-
15666
- [Mozilla/5.0 (X11; U; Linux i686*; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
15667
- Parent=Thunderbird 3.0
15668
- Platform=Linux
15669
-
15670
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iceweasel
15671
 
15672
  [Iceweasel]
15673
  Parent=DefaultProperties
 
15674
  Browser="Iceweasel"
15675
- Platform=Linux
15676
- Beta=true
15677
  Frames=true
15678
  IFrames=true
15679
  Tables=true
15680
  Cookies=true
15681
- JavaApplets=true
15682
  JavaScript=true
 
15683
  CssVersion=2
15684
- supportsCSS=true
15685
 
15686
- [Mozilla/5.0 (X11; U; Linux*; *; rv:1.8*) Gecko/* Iceweasel/2.0* (Debian-*)]
15687
  Parent=Iceweasel
15688
  Version=2.0
15689
  MajorVer=2
15690
  MinorVer=0
15691
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15692
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.0
15693
 
15694
  [Mozilla 1.0]
15695
  Parent=DefaultProperties
 
15696
  Browser="Mozilla"
15697
  Version=1.0
15698
  MajorVer=1
15699
- Beta=true
15700
  Frames=true
15701
  IFrames=true
15702
  Tables=true
15703
  Cookies=true
15704
- JavaApplets=true
15705
  JavaScript=true
 
15706
  CssVersion=2
15707
- supportsCSS=true
15708
 
15709
  [Mozilla/5.0 (*rv:1.0.*) Gecko/*]
15710
  Parent=Mozilla 1.0
@@ -15713,19 +23025,18 @@ Parent=Mozilla 1.0
15713
 
15714
  [Mozilla 1.1]
15715
  Parent=DefaultProperties
 
15716
  Browser="Mozilla"
15717
  Version=1.1
15718
  MajorVer=1
15719
  MinorVer=1
15720
- Beta=true
15721
  Frames=true
15722
  IFrames=true
15723
  Tables=true
15724
  Cookies=true
15725
- JavaApplets=true
15726
  JavaScript=true
 
15727
  CssVersion=2
15728
- supportsCSS=true
15729
 
15730
  [Mozilla/5.0 (*rv:1.1.*) Gecko/*]
15731
  Parent=Mozilla 1.1
@@ -15734,19 +23045,18 @@ Parent=Mozilla 1.1
15734
 
15735
  [Mozilla 1.2]
15736
  Parent=DefaultProperties
 
15737
  Browser="Mozilla"
15738
  Version=1.2
15739
  MajorVer=1
15740
  MinorVer=2
15741
- Beta=true
15742
  Frames=true
15743
  IFrames=true
15744
  Tables=true
15745
  Cookies=true
15746
- JavaApplets=true
15747
  JavaScript=true
 
15748
  CssVersion=2
15749
- supportsCSS=true
15750
 
15751
  [Mozilla/5.0 (*rv:1.2.*) Gecko/*]
15752
  Parent=Mozilla 1.2
@@ -15755,19 +23065,18 @@ Parent=Mozilla 1.2
15755
 
15756
  [Mozilla 1.3]
15757
  Parent=DefaultProperties
 
15758
  Browser="Mozilla"
15759
  Version=1.3
15760
  MajorVer=1
15761
  MinorVer=3
15762
- Beta=true
15763
  Frames=true
15764
  IFrames=true
15765
  Tables=true
15766
  Cookies=true
15767
- JavaApplets=true
15768
  JavaScript=true
 
15769
  CssVersion=2
15770
- supportsCSS=true
15771
 
15772
  [Mozilla/5.0 (*rv:1.3.*) Gecko/*]
15773
  Parent=Mozilla 1.3
@@ -15776,558 +23085,562 @@ Parent=Mozilla 1.3
15776
 
15777
  [Mozilla 1.4]
15778
  Parent=DefaultProperties
 
15779
  Browser="Mozilla"
15780
  Version=1.4
15781
  MajorVer=1
15782
  MinorVer=4
15783
- Beta=true
15784
  Frames=true
15785
  IFrames=true
15786
  Tables=true
15787
  Cookies=true
15788
- JavaApplets=true
15789
  JavaScript=true
 
15790
  CssVersion=2
15791
- supportsCSS=true
15792
 
15793
  [Mozilla/5.0 (*rv:1.4*) Gecko/*]
15794
  Parent=Mozilla 1.4
 
15795
 
15796
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.4*) Gecko/*]
15797
  Parent=Mozilla 1.4
15798
- Platform=MacOSX
 
15799
 
15800
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.4*) Gecko/*]
15801
  Parent=Mozilla 1.4
15802
- Platform=WinME
15803
- Win32=true
15804
 
15805
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.4*) Gecko/*]
15806
  Parent=Mozilla 1.4
15807
- Platform=Win31
15808
- Win32=true
 
 
15809
 
15810
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.4*) Gecko/*]
15811
  Parent=Mozilla 1.4
15812
- Platform=Win31
 
15813
  Win16=true
15814
- Win32=true
15815
 
15816
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.4*) Gecko/*]
15817
  Parent=Mozilla 1.4
15818
- Platform=Win95
15819
- Win32=true
15820
 
15821
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.4*) Gecko/*]
15822
  Parent=Mozilla 1.4
15823
- Platform=Win98
15824
- Win32=true
15825
 
15826
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.4*) Gecko/*]
15827
  Parent=Mozilla 1.4
15828
- Platform=Win2000
15829
- Win32=true
15830
 
15831
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.4*) Gecko/*]
15832
  Parent=Mozilla 1.4
15833
- Platform=WinXP
15834
- Win32=true
15835
 
15836
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.4*) Gecko/*]
15837
  Parent=Mozilla 1.4
15838
- Platform=WinNT
15839
- Win32=true
15840
 
15841
  [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.4*) Gecko/*]
15842
  Parent=Mozilla 1.4
15843
- Platform=FreeBSD
 
15844
 
15845
  [Mozilla/5.0 (X11; *Linux*; *rv:1.4*) Gecko/*]
15846
  Parent=Mozilla 1.4
15847
- Platform=Linux
 
15848
 
15849
  [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.4*) Gecko/*]
15850
  Parent=Mozilla 1.4
15851
- Platform=OpenBSD
 
15852
 
15853
  [Mozilla/5.0 (X11; *SunOS*; *rv:1.4*) Gecko/*]
15854
  Parent=Mozilla 1.4
15855
- Platform=SunOS
 
15856
 
15857
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.5
15858
 
15859
  [Mozilla 1.5]
15860
  Parent=DefaultProperties
 
15861
  Browser="Mozilla"
15862
  Version=1.5
15863
  MajorVer=1
15864
  MinorVer=5
15865
- Beta=true
15866
  Frames=true
15867
  IFrames=true
15868
  Tables=true
15869
  Cookies=true
15870
- JavaApplets=true
15871
  JavaScript=true
 
15872
  CssVersion=2
15873
- supportsCSS=true
15874
 
15875
  [Mozilla/5.0 (*rv:1.5*) Gecko/*]
15876
  Parent=Mozilla 1.5
 
15877
 
15878
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.5*) Gecko/*]
15879
  Parent=Mozilla 1.5
15880
- Platform=MacOSX
 
15881
 
15882
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.5*) Gecko/*]
15883
  Parent=Mozilla 1.5
15884
- Platform=WinME
15885
- Win32=true
15886
 
15887
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.5*) Gecko/*]
15888
  Parent=Mozilla 1.5
15889
- Platform=Win31
15890
- Win32=true
 
 
15891
 
15892
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.5*) Gecko/*]
15893
  Parent=Mozilla 1.5
15894
- Platform=Win31
 
15895
  Win16=true
15896
- Win32=true
15897
 
15898
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.5*) Gecko/*]
15899
  Parent=Mozilla 1.5
15900
- Platform=Win95
15901
- Win32=true
15902
 
15903
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.5*) Gecko/*]
15904
  Parent=Mozilla 1.5
15905
- Platform=Win98
15906
- Win32=true
15907
 
15908
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.5*) Gecko/*]
15909
  Parent=Mozilla 1.5
15910
- Platform=Win2000
15911
- Win32=true
15912
 
15913
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.5*) Gecko/*]
15914
  Parent=Mozilla 1.5
15915
- Platform=WinXP
15916
- Win32=true
15917
 
15918
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.5*) Gecko/*]
15919
  Parent=Mozilla 1.5
15920
- Platform=WinNT
15921
- Win32=true
15922
 
15923
  [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.5*) Gecko/*]
15924
  Parent=Mozilla 1.5
15925
- Platform=FreeBSD
 
15926
 
15927
  [Mozilla/5.0 (X11; *Linux*; *rv:1.5*) Gecko/*]
15928
  Parent=Mozilla 1.5
15929
- Platform=Linux
 
15930
 
15931
  [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.5*) Gecko/*]
15932
  Parent=Mozilla 1.5
15933
- Platform=OpenBSD
 
15934
 
15935
  [Mozilla/5.0 (X11; *SunOS*; *rv:1.5*) Gecko/*]
15936
  Parent=Mozilla 1.5
15937
- Platform=SunOS
 
15938
 
15939
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.6
15940
 
15941
  [Mozilla 1.6]
15942
  Parent=DefaultProperties
 
15943
  Browser="Mozilla"
15944
  Version=1.6
15945
  MajorVer=1
15946
  MinorVer=6
15947
- Beta=true
15948
  Frames=true
15949
  IFrames=true
15950
  Tables=true
15951
  Cookies=true
15952
- JavaApplets=true
15953
  JavaScript=true
 
15954
  CssVersion=2
15955
- supportsCSS=true
15956
 
15957
  [Mozilla/5.0 (*rv:1.6*) Gecko/*]
15958
  Parent=Mozilla 1.6
 
15959
 
15960
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.6*) Gecko/*]
15961
  Parent=Mozilla 1.6
15962
- Platform=MacOSX
 
15963
 
15964
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.6*) Gecko/*]
15965
  Parent=Mozilla 1.6
15966
- Platform=WinME
15967
- Win32=true
15968
 
15969
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.6*) Gecko/*]
15970
  Parent=Mozilla 1.6
15971
- Platform=Win31
15972
- Win32=true
 
 
15973
 
15974
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.6*) Gecko/*]
15975
  Parent=Mozilla 1.6
15976
- Platform=Win31
 
15977
  Win16=true
15978
- Win32=true
15979
 
15980
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.6*) Gecko/*]
15981
  Parent=Mozilla 1.6
15982
- Platform=Win95
15983
- Win32=true
15984
 
15985
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.6*) Gecko/*]
15986
  Parent=Mozilla 1.6
15987
- Platform=Win98
15988
- Win32=true
15989
 
15990
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.6*) Gecko/*]
15991
  Parent=Mozilla 1.6
15992
- Platform=Win2000
15993
- Win32=true
15994
 
15995
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.6*) Gecko/*]
15996
  Parent=Mozilla 1.6
15997
- Platform=WinXP
15998
- Win32=true
15999
 
16000
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.6*) Gecko/*]
16001
  Parent=Mozilla 1.6
16002
- Platform=WinNT
16003
- Win32=true
16004
 
16005
  [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.6*) Gecko/*]
16006
  Parent=Mozilla 1.6
16007
- Platform=FreeBSD
 
16008
 
16009
  [Mozilla/5.0 (X11; *Linux*; *rv:1.6*) Gecko/*]
16010
  Parent=Mozilla 1.6
16011
- Platform=Linux
 
16012
 
16013
  [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.6*) Gecko/*]
16014
  Parent=Mozilla 1.6
16015
- Platform=OpenBSD
 
16016
 
16017
  [Mozilla/5.0 (X11; *SunOS*; *rv:1.6*) Gecko/*]
16018
  Parent=Mozilla 1.6
16019
- Platform=SunOS
 
16020
 
16021
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.7
16022
 
16023
  [Mozilla 1.7]
16024
  Parent=DefaultProperties
 
16025
  Browser="Mozilla"
16026
  Version=1.7
16027
  MajorVer=1
16028
  MinorVer=7
16029
- Beta=true
16030
  Frames=true
16031
  IFrames=true
16032
  Tables=true
16033
  Cookies=true
16034
- JavaApplets=true
16035
  JavaScript=true
 
16036
  CssVersion=2
16037
- supportsCSS=true
16038
 
16039
  [Mozilla/5.0 (*rv:1.7*) Gecko/*]
16040
  Parent=Mozilla 1.7
 
16041
 
16042
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.7*) Gecko/*]
16043
  Parent=Mozilla 1.7
16044
- Platform=MacOSX
 
16045
 
16046
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.7*) Gecko/*]
16047
  Parent=Mozilla 1.7
16048
- Platform=WinME
16049
- Win32=true
16050
 
16051
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.7*) Gecko/*]
16052
  Parent=Mozilla 1.7
16053
- Platform=Win31
16054
- Win32=true
 
 
16055
 
16056
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.7*) Gecko/*]
16057
  Parent=Mozilla 1.7
16058
- Platform=Win31
 
16059
  Win16=true
16060
- Win32=true
16061
 
16062
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.7*) Gecko/*]
16063
  Parent=Mozilla 1.7
16064
- Platform=Win95
16065
- Win32=true
16066
 
16067
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.7*) Gecko/*]
16068
  Parent=Mozilla 1.7
16069
- Platform=Win98
 
16070
  Win32=true
16071
 
16072
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.7*) Gecko/*]
16073
  Parent=Mozilla 1.7
16074
- Platform=Win2000
16075
- Win32=true
16076
 
16077
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.7*) Gecko/*]
16078
  Parent=Mozilla 1.7
16079
- Platform=WinXP
16080
- Win32=true
16081
 
16082
  [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.7*) Gecko/*]
16083
  Parent=Mozilla 1.7
16084
- Platform=Win2003
16085
- Win32=true
16086
 
16087
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.7*) Gecko/*]
16088
  Parent=Mozilla 1.7
16089
- Platform=WinNT
16090
- Win32=true
16091
 
16092
  [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.7*) Gecko/*]
16093
  Parent=Mozilla 1.7
16094
- Platform=FreeBSD
 
16095
 
16096
  [Mozilla/5.0 (X11; *Linux*; *rv:1.7*) Gecko/*]
16097
  Parent=Mozilla 1.7
16098
- Platform=Linux
 
16099
 
16100
  [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.7*) Gecko/*]
16101
  Parent=Mozilla 1.7
16102
- Platform=OpenBSD
 
16103
 
16104
  [Mozilla/5.0 (X11; *SunOS*; *rv:1.7*) Gecko/*]
16105
  Parent=Mozilla 1.7
16106
- Platform=SunOS
 
16107
 
16108
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.8
16109
 
16110
  [Mozilla 1.8]
16111
  Parent=DefaultProperties
 
16112
  Browser="Mozilla"
16113
  Version=1.8
16114
  MajorVer=1
16115
  MinorVer=8
 
16116
  Frames=true
16117
  IFrames=true
16118
  Tables=true
16119
  Cookies=true
16120
- JavaApplets=true
16121
  JavaScript=true
 
16122
  CssVersion=2
16123
- supportsCSS=true
16124
 
16125
  [Mozilla/5.0 (*rv:1.8*) Gecko/*]
16126
  Parent=Mozilla 1.8
 
16127
 
16128
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.8*) Gecko/*]
16129
  Parent=Mozilla 1.8
16130
- Platform=MacOSX
 
16131
 
16132
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.8*) Gecko/*]
16133
  Parent=Mozilla 1.8
16134
- Platform=WinME
16135
- Win32=true
16136
 
16137
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.8*) Gecko/*]
16138
  Parent=Mozilla 1.8
16139
- Win32=true
 
 
16140
 
16141
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.8*) Gecko/*]
16142
  Parent=Mozilla 1.8
16143
- Platform=Win31
 
16144
  Win16=true
16145
- Win32=true
16146
 
16147
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.8*) Gecko/*]
16148
  Parent=Mozilla 1.8
16149
- Platform=Win95
16150
- Win32=true
16151
 
16152
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.8*) Gecko/*]
16153
  Parent=Mozilla 1.8
16154
- Platform=Win98
16155
- Win32=true
16156
 
16157
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.8*) Gecko/*]
16158
  Parent=Mozilla 1.8
16159
- Platform=Win2000
16160
- Win32=true
16161
 
16162
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.8*) Gecko/*]
16163
  Parent=Mozilla 1.8
16164
- Platform=WinXP
16165
- Win32=true
16166
 
16167
  [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.8*) Gecko/*]
16168
  Parent=Mozilla 1.8
16169
- Platform=Win2003
16170
- Win32=true
16171
 
16172
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.8*) Gecko/*]
16173
  Parent=Mozilla 1.8
16174
- Platform=WinNT
16175
- Win32=true
16176
 
16177
  [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.8*) Gecko/*]
16178
  Parent=Mozilla 1.8
16179
- Platform=FreeBSD
 
16180
 
16181
  [Mozilla/5.0 (X11; *Linux*; *rv:1.8*) Gecko/*]
16182
  Parent=Mozilla 1.8
16183
- Platform=Linux
 
16184
 
16185
  [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.8*) Gecko/*]
16186
  Parent=Mozilla 1.8
16187
- Platform=OpenBSD
 
16188
 
16189
  [Mozilla/5.0 (X11; *SunOS*; *rv:1.8*) Gecko/*]
16190
  Parent=Mozilla 1.8
16191
- Platform=SunOS
 
16192
 
16193
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.9
16194
 
16195
  [Mozilla 1.9]
16196
  Parent=DefaultProperties
 
16197
  Browser="Mozilla"
16198
  Version=1.9
16199
  MajorVer=1
16200
  MinorVer=9
16201
- Alpha=true
16202
  Frames=true
16203
  IFrames=true
16204
  Tables=true
16205
  Cookies=true
16206
- JavaApplets=true
16207
  JavaScript=true
 
16208
  CssVersion=2
16209
- supportsCSS=true
16210
 
16211
  [Mozilla/5.0 (*rv:1.9*) Gecko/*]
16212
  Parent=Mozilla 1.9
 
16213
 
16214
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.9*) Gecko/*]
16215
  Parent=Mozilla 1.9
16216
- Platform=MacOSX
 
16217
 
16218
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.9*) Gecko/*]
16219
  Parent=Mozilla 1.9
16220
- Platform=WinME
16221
- Win32=true
16222
 
16223
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.9*) Gecko/*]
16224
  Parent=Mozilla 1.9
16225
- Win32=true
 
 
16226
 
16227
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.9*) Gecko/*]
16228
  Parent=Mozilla 1.9
16229
- Platform=Win31
 
16230
  Win16=true
16231
- Win32=true
16232
 
16233
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.9*) Gecko/*]
16234
  Parent=Mozilla 1.9
16235
- Platform=Win95
16236
- Win32=true
16237
 
16238
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.9*) Gecko/*]
16239
  Parent=Mozilla 1.9
16240
- Platform=Win98
16241
- Win32=true
16242
 
16243
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.9*) Gecko/*]
16244
  Parent=Mozilla 1.9
16245
- Platform=Win2000
16246
- Win32=true
16247
 
16248
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.9*) Gecko/*]
16249
  Parent=Mozilla 1.9
16250
- Platform=WinXP
16251
- Win32=true
16252
 
16253
  [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.9*) Gecko/*]
16254
  Parent=Mozilla 1.9
16255
- Platform=Win2003
16256
- Win32=true
16257
 
16258
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.9*) Gecko/*]
16259
  Parent=Mozilla 1.9
16260
- Platform=WinNT
16261
- Win32=true
16262
-
16263
- [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.9*) Gecko/*]
16264
- Parent=Mozilla 1.9
16265
- Platform=FreeBSD
16266
-
16267
- [Mozilla/5.0 (X11; *Linux*; *rv:1.9*) Gecko/*]
16268
- Parent=Mozilla 1.9
16269
- Platform=Linux
16270
-
16271
- [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.9*) Gecko/*]
16272
- Parent=Mozilla 1.9
16273
- Platform=OpenBSD
16274
-
16275
- [Mozilla/5.0 (X11; *SunOS*; *rv:1.9*) Gecko/*]
16276
- Parent=Mozilla 1.9
16277
- Platform=SunOS
16278
-
16279
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE Mac
16280
-
16281
- [IE Mac]
16282
- Parent=DefaultProperties
16283
- Browser="IE"
16284
- Platform=MacPPC
16285
- Frames=true
16286
- IFrames=true
16287
- Tables=true
16288
- Cookies=true
16289
- BackgroundSounds=true
16290
- CDF=true
16291
- JavaApplets=true
16292
- JavaScript=true
16293
- CssVersion=1
16294
- supportsCSS=true
16295
-
16296
- [Mozilla/?.? (compatible; MSIE 4.0*; *Mac_PowerPC*]
16297
- Parent=IE Mac
16298
- Version=4.0
16299
- MajorVer=4
16300
- MinorVer=0
16301
 
16302
- [Mozilla/?.? (compatible; MSIE 4.5*; *Mac_PowerPC*]
16303
- Parent=IE Mac
16304
- Version=4.5
16305
- MajorVer=4
16306
- MinorVer=5
16307
 
16308
- [Mozilla/?.? (compatible; MSIE 5.0*; *Mac_PowerPC*]
16309
- Parent=IE Mac
16310
- Version=5.0
16311
- MajorVer=5
16312
- MinorVer=0
16313
 
16314
- [Mozilla/?.? (compatible; MSIE 5.1*; *Mac_PowerPC*]
16315
- Parent=IE Mac
16316
- Version=5.1
16317
- MajorVer=5
16318
- MinorVer=1
16319
 
16320
- [Mozilla/?.? (compatible; MSIE 5.2*; *Mac_PowerPC*]
16321
- Parent=IE Mac
16322
- Version=5.2
16323
- MajorVer=5
16324
- MinorVer=2
16325
 
16326
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 5.5
16327
 
16328
  [AOL 9.0/IE 5.5]
16329
  Parent=DefaultProperties
16330
- Browser="AOL"
 
16331
  Version=5.5
16332
  MajorVer=5
16333
  MinorVer=5
@@ -16337,1014 +23650,1293 @@ IFrames=true
16337
  Tables=true
16338
  Cookies=true
16339
  BackgroundSounds=true
16340
- CDF=true
16341
  VBScript=true
16342
  JavaApplets=true
16343
- JavaScript=true
16344
  ActiveXControls=true
16345
  CssVersion=2
16346
- supportsCSS=true
16347
- AOL=true
16348
- aolVersion=9.0
16349
-
16350
- [Mozilla/?.* (?compatible; *MSIE 5.5; *AOL 9.0*)*]
16351
- Parent=AOL 9.0/IE 5.5
16352
-
16353
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Win 9x 4.90*)*]
16354
- Parent=AOL 9.0/IE 5.5
16355
- Platform=WinME
16356
-
16357
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 95*)*]
16358
- Parent=AOL 9.0/IE 5.5
16359
- Platform=Win95
16360
-
16361
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*)*]
16362
- Parent=AOL 9.0/IE 5.5
16363
- Platform=Win98
16364
-
16365
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
16366
- Parent=AOL 9.0/IE 5.5
16367
-
16368
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
16369
- Parent=AOL 9.0/IE 5.5
16370
-
16371
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
16372
- Parent=AOL 9.0/IE 5.5
16373
- CssVersion=2
16374
- supportsCSS=true
16375
-
16376
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
16377
- Parent=AOL 9.0/IE 5.5
16378
-
16379
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
16380
- Parent=AOL 9.0/IE 5.5
16381
- Platform=WinME
16382
-
16383
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
16384
- Parent=AOL 9.0/IE 5.5
16385
- Platform=WinME
16386
-
16387
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
16388
- Parent=AOL 9.0/IE 5.5
16389
- Platform=WinME
16390
-
16391
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
16392
- Parent=AOL 9.0/IE 5.5
16393
- Platform=WinME
16394
-
16395
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
16396
- Parent=AOL 9.0/IE 5.5
16397
- Platform=WinME
16398
-
16399
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 4.0*)*]
16400
- Parent=AOL 9.0/IE 5.5
16401
- Platform=WinNT
16402
-
16403
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*)*]
16404
- Parent=AOL 9.0/IE 5.5
16405
- Platform=Win2000
16406
-
16407
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
16408
- Parent=AOL 9.0/IE 5.5
16409
- Platform=Win2000
16410
-
16411
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
16412
- Parent=AOL 9.0/IE 5.5
16413
- Platform=Win2000
16414
-
16415
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
16416
- Parent=AOL 9.0/IE 5.5
16417
- Platform=Win2000
16418
-
16419
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
16420
- Parent=AOL 9.0/IE 5.5
16421
- Platform=Win2000
16422
-
16423
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*)*]
16424
- Parent=AOL 9.0/IE 5.5
16425
- Platform=Win2000
16426
 
16427
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
16428
  Parent=AOL 9.0/IE 5.5
16429
- Platform=Win2000
16430
 
16431
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
16432
  Parent=AOL 9.0/IE 5.5
16433
- Platform=Win2000
 
16434
 
16435
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
16436
  Parent=AOL 9.0/IE 5.5
16437
- Platform=Win2000
 
16438
 
16439
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
16440
  Parent=AOL 9.0/IE 5.5
16441
- Platform=Win2000
 
16442
 
16443
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*)*]
16444
  Parent=AOL 9.0/IE 5.5
16445
- Platform=WinXP
 
16446
 
16447
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
16448
  Parent=AOL 9.0/IE 5.5
16449
- Platform=WinXP
 
16450
 
16451
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
16452
  Parent=AOL 9.0/IE 5.5
16453
- Platform=WinXP
 
16454
 
16455
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
16456
  Parent=AOL 9.0/IE 5.5
16457
- Platform=WinXP
16458
-
16459
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
16460
- Parent=AOL 9.0/IE 5.5
16461
- Platform=WinXP
16462
-
16463
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*)*]
16464
- Parent=AOL 9.0/IE 5.5
16465
- Platform=Win2003
16466
-
16467
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
16468
- Parent=AOL 9.0/IE 5.5
16469
- Platform=Win2003
16470
-
16471
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
16472
- Parent=AOL 9.0/IE 5.5
16473
- Platform=Win2003
16474
-
16475
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
16476
- Parent=AOL 9.0/IE 5.5
16477
- Platform=Win2003
16478
-
16479
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
16480
- Parent=AOL 9.0/IE 5.5
16481
- Platform=Win2003
16482
-
16483
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*)*]
16484
- Parent=AOL 9.0/IE 5.5
16485
- Platform=WinVista
16486
-
16487
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
16488
- Parent=AOL 9.0/IE 5.5
16489
- Platform=WinVista
16490
-
16491
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
16492
- Parent=AOL 9.0/IE 5.5
16493
- Platform=WinVista
16494
-
16495
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
16496
- Parent=AOL 9.0/IE 5.5
16497
- Platform=WinVista
16498
-
16499
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
16500
- Parent=AOL 9.0/IE 5.5
16501
- Platform=WinVista
16502
 
16503
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 6.0
16504
 
16505
  [AOL 9.0/IE 6.0]
16506
  Parent=DefaultProperties
16507
- Browser="AOL"
 
16508
  Version=6.0
16509
  MajorVer=6
 
16510
  Win32=true
16511
  Frames=true
16512
  IFrames=true
16513
  Tables=true
16514
  Cookies=true
16515
  BackgroundSounds=true
16516
- CDF=true
16517
  VBScript=true
16518
  JavaApplets=true
16519
- JavaScript=true
16520
  ActiveXControls=true
16521
  CssVersion=2
16522
- supportsCSS=true
16523
- AOL=true
16524
- aolVersion=9.0
16525
-
16526
- [Mozilla/?.* (?compatible; *MSIE 6.0; *AOL 9.0*)*]
16527
- Parent=AOL 9.0/IE 6.0
16528
-
16529
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Win 9x 4.90*)*]
16530
- Parent=AOL 9.0/IE 6.0
16531
- Platform=WinME
16532
-
16533
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 95*)*]
16534
- Parent=AOL 9.0/IE 6.0
16535
- Platform=Win95
16536
-
16537
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*)*]
16538
- Parent=AOL 9.0/IE 6.0
16539
- Platform=Win98
16540
-
16541
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
16542
- Parent=AOL 9.0/IE 6.0
16543
-
16544
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
16545
- Parent=AOL 9.0/IE 6.0
16546
-
16547
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
16548
- Parent=AOL 9.0/IE 6.0
16549
- CssVersion=2
16550
- supportsCSS=true
16551
-
16552
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
16553
- Parent=AOL 9.0/IE 6.0
16554
-
16555
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
16556
- Parent=AOL 9.0/IE 6.0
16557
- Platform=WinME
16558
-
16559
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
16560
- Parent=AOL 9.0/IE 6.0
16561
- Platform=WinME
16562
-
16563
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
16564
- Parent=AOL 9.0/IE 6.0
16565
- Platform=WinME
16566
-
16567
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
16568
- Parent=AOL 9.0/IE 6.0
16569
- Platform=WinME
16570
-
16571
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
16572
- Parent=AOL 9.0/IE 6.0
16573
- Platform=WinME
16574
-
16575
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 4.0*)*]
16576
- Parent=AOL 9.0/IE 6.0
16577
- Platform=WinNT
16578
-
16579
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*)*]
16580
- Parent=AOL 9.0/IE 6.0
16581
- Platform=Win2000
16582
-
16583
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
16584
- Parent=AOL 9.0/IE 6.0
16585
- Platform=Win2000
16586
-
16587
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
16588
- Parent=AOL 9.0/IE 6.0
16589
- Platform=Win2000
16590
-
16591
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
16592
- Parent=AOL 9.0/IE 6.0
16593
- Platform=Win2000
16594
-
16595
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
16596
- Parent=AOL 9.0/IE 6.0
16597
- Platform=Win2000
16598
-
16599
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*)*]
16600
- Parent=AOL 9.0/IE 6.0
16601
- Platform=Win2000
16602
-
16603
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
16604
- Parent=AOL 9.0/IE 6.0
16605
- Platform=Win2000
16606
-
16607
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
16608
- Parent=AOL 9.0/IE 6.0
16609
- Platform=Win2000
16610
-
16611
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
16612
- Parent=AOL 9.0/IE 6.0
16613
- Platform=Win2000
16614
-
16615
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
16616
- Parent=AOL 9.0/IE 6.0
16617
- Platform=Win2000
16618
-
16619
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*)*]
16620
- Parent=AOL 9.0/IE 6.0
16621
- Platform=WinXP
16622
-
16623
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
16624
- Parent=AOL 9.0/IE 6.0
16625
- Platform=WinXP
16626
-
16627
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
16628
- Parent=AOL 9.0/IE 6.0
16629
- Platform=WinXP
16630
-
16631
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
16632
- Parent=AOL 9.0/IE 6.0
16633
- Platform=WinXP
16634
-
16635
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
16636
- Parent=AOL 9.0/IE 6.0
16637
- Platform=WinXP
16638
-
16639
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*)*]
16640
- Parent=AOL 9.0/IE 6.0
16641
- Platform=Win2003
16642
 
16643
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
16644
  Parent=AOL 9.0/IE 6.0
16645
- Platform=Win2003
16646
 
16647
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
16648
  Parent=AOL 9.0/IE 6.0
16649
- Platform=Win2003
 
16650
 
16651
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
16652
  Parent=AOL 9.0/IE 6.0
16653
- Platform=Win2003
 
16654
 
16655
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
16656
  Parent=AOL 9.0/IE 6.0
16657
- Platform=Win2003
 
16658
 
16659
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*)*]
16660
  Parent=AOL 9.0/IE 6.0
16661
- Platform=WinVista
 
16662
 
16663
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
16664
  Parent=AOL 9.0/IE 6.0
16665
- Platform=WinVista
 
16666
 
16667
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
16668
  Parent=AOL 9.0/IE 6.0
16669
- Platform=WinVista
 
16670
 
16671
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
16672
  Parent=AOL 9.0/IE 6.0
16673
- Platform=WinVista
 
16674
 
16675
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
16676
  Parent=AOL 9.0/IE 6.0
16677
- Platform=WinVista
 
16678
 
16679
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 7.0
16680
 
16681
  [AOL 9.0/IE 7.0]
16682
  Parent=DefaultProperties
16683
- Browser="AOL"
 
16684
  Version=7.0
16685
  MajorVer=7
 
16686
  Win32=true
16687
  Frames=true
16688
  IFrames=true
16689
  Tables=true
16690
  Cookies=true
16691
  BackgroundSounds=true
16692
- CDF=true
16693
  VBScript=true
16694
  JavaApplets=true
16695
- JavaScript=true
16696
  ActiveXControls=true
16697
  CssVersion=2
16698
- supportsCSS=true
16699
- AOL=true
16700
- aolVersion=9.0
16701
 
16702
- [Mozilla/?.* (?compatible; *MSIE 7.0; *AOL 9.0*)*]
16703
  Parent=AOL 9.0/IE 7.0
 
16704
 
16705
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Win 9x 4.90*)*]
16706
  Parent=AOL 9.0/IE 7.0
16707
- Platform=WinME
 
16708
 
16709
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 95*)*]
16710
  Parent=AOL 9.0/IE 7.0
16711
- Platform=Win95
16712
 
16713
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*)*]
16714
  Parent=AOL 9.0/IE 7.0
16715
- Platform=Win98
16716
 
16717
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
16718
  Parent=AOL 9.0/IE 7.0
 
 
16719
 
16720
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
16721
  Parent=AOL 9.0/IE 7.0
 
 
16722
 
16723
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
16724
  Parent=AOL 9.0/IE 7.0
16725
- CssVersion=2
16726
- supportsCSS=true
16727
 
16728
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
16729
  Parent=AOL 9.0/IE 7.0
 
 
16730
 
16731
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
16732
  Parent=AOL 9.0/IE 7.0
16733
- Platform=WinME
 
16734
 
16735
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
16736
- Parent=AOL 9.0/IE 7.0
16737
- Platform=WinME
16738
 
16739
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
16740
- Parent=AOL 9.0/IE 7.0
16741
- Platform=WinME
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16742
 
16743
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
16744
- Parent=AOL 9.0/IE 7.0
16745
- Platform=WinME
 
16746
 
16747
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
16748
- Parent=AOL 9.0/IE 7.0
16749
- Platform=WinME
 
16750
 
16751
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 4.0*)*]
16752
- Parent=AOL 9.0/IE 7.0
16753
- Platform=WinNT
 
16754
 
16755
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*)*]
16756
- Parent=AOL 9.0/IE 7.0
16757
- Platform=Win2000
 
16758
 
16759
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
16760
- Parent=AOL 9.0/IE 7.0
16761
- Platform=Win2000
16762
 
16763
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
16764
- Parent=AOL 9.0/IE 7.0
16765
- Platform=Win2000
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16766
 
16767
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
16768
- Parent=AOL 9.0/IE 7.0
16769
- Platform=Win2000
 
16770
 
16771
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
16772
- Parent=AOL 9.0/IE 7.0
16773
- Platform=Win2000
 
 
 
16774
 
16775
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*)*]
16776
- Parent=AOL 9.0/IE 7.0
16777
- Platform=Win2000
 
16778
 
16779
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
16780
- Parent=AOL 9.0/IE 7.0
16781
- Platform=Win2000
 
 
16782
 
16783
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
16784
- Parent=AOL 9.0/IE 7.0
16785
- Platform=Win2000
 
 
 
 
 
 
 
16786
 
16787
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
16788
- Parent=AOL 9.0/IE 7.0
16789
- Platform=Win2000
16790
 
16791
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
16792
- Parent=AOL 9.0/IE 7.0
16793
- Platform=Win2000
 
 
 
 
 
 
 
 
 
 
 
16794
 
16795
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*)*]
16796
- Parent=AOL 9.0/IE 7.0
16797
- Platform=WinXP
16798
 
16799
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
16800
- Parent=AOL 9.0/IE 7.0
16801
- Platform=WinXP
16802
 
16803
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
16804
- Parent=AOL 9.0/IE 7.0
16805
- Platform=WinXP
16806
 
16807
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
16808
- Parent=AOL 9.0/IE 7.0
16809
- Platform=WinXP
16810
 
16811
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
16812
- Parent=AOL 9.0/IE 7.0
16813
- Platform=WinXP
16814
 
16815
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*)*]
16816
- Parent=AOL 9.0/IE 7.0
16817
- Platform=Win2003
 
 
 
 
 
 
 
 
 
 
16818
 
16819
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
16820
- Parent=AOL 9.0/IE 7.0
16821
- Platform=Win2003
 
16822
 
16823
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
16824
- Parent=AOL 9.0/IE 7.0
16825
- Platform=Win2003
 
16826
 
16827
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
16828
- Parent=AOL 9.0/IE 7.0
16829
- Platform=Win2003
16830
 
16831
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
16832
- Parent=AOL 9.0/IE 7.0
16833
- Platform=Win2003
16834
 
16835
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*)*]
16836
- Parent=AOL 9.0/IE 7.0
16837
- Platform=WinVista
 
 
 
 
 
 
 
 
 
 
16838
 
16839
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
16840
- Parent=AOL 9.0/IE 7.0
16841
- Platform=WinVista
 
16842
 
16843
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
16844
- Parent=AOL 9.0/IE 7.0
16845
- Platform=WinVista
 
16846
 
16847
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
16848
- Parent=AOL 9.0/IE 7.0
16849
- Platform=WinVista
 
16850
 
16851
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
16852
- Parent=AOL 9.0/IE 7.0
16853
- Platform=WinVista
 
16854
 
16855
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant Browser
16856
 
16857
- [Avant Browser]
16858
  Parent=DefaultProperties
16859
- Browser="Avant Browser"
 
 
 
 
 
 
16860
  Frames=true
16861
  IFrames=true
16862
  Tables=true
16863
  Cookies=true
16864
  BackgroundSounds=true
16865
- CDF=true
16866
  VBScript=true
16867
  JavaApplets=true
16868
- JavaScript=true
16869
  ActiveXControls=true
16870
- CssVersion=2
16871
- supportsCSS=true
16872
 
16873
- [Advanced Browser (http://www.avantbrowser.com)]
16874
- Parent=Avant Browser
 
 
 
 
16875
 
16876
- [Avant Browser*]
16877
- Parent=Avant Browser
 
 
16878
 
16879
- [Avant Browser/*]
16880
- Parent=Avant Browser
 
 
16881
 
16882
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 4.01
16883
 
16884
- [IE 4.01]
16885
  Parent=DefaultProperties
 
16886
  Browser="IE"
16887
- Version=4.01
16888
- MajorVer=4
16889
- MinorVer=01
16890
  Win32=true
16891
  Frames=true
16892
  IFrames=true
16893
  Tables=true
16894
  Cookies=true
16895
- BackgroundSounds=true
16896
- CDF=true
16897
- VBScript=true
16898
- JavaApplets=true
16899
  JavaScript=true
16900
- ActiveXControls=true
16901
- CssVersion=2
16902
- supportsCSS=true
16903
-
16904
- [Mozilla/?.* (?compatible; *MSIE 4.01*)*]
16905
- Parent=IE 4.01
16906
 
16907
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows 95*)*]
16908
- Parent=IE 4.01
16909
- Platform=Win95
16910
 
16911
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows 98*)*]
16912
- Parent=IE 4.01
16913
- Platform=Win98
 
16914
 
16915
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows 98; Win 9x 4.90;*)*]
16916
- Parent=IE 4.01
16917
- Platform=WinME
 
16918
 
16919
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 4.0*)*]
16920
- Parent=IE 4.01
16921
- Platform=WinNT
16922
 
16923
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 5.0*)*]
16924
- Parent=IE 4.01
16925
- Platform=Win2000
 
16926
 
16927
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 5.01*)*]
16928
- Parent=IE 4.01
16929
- Platform=Win2000
 
16930
 
16931
- [Mozilla/4.0 (compatible; MSIE 4.01; Windows NT)]
16932
- Parent=IE 4.01
16933
- Platform=WinNT
 
16934
 
16935
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.0
16936
 
16937
- [IE 5.0]
16938
  Parent=DefaultProperties
 
16939
  Browser="IE"
16940
- Version=5.0
16941
- MajorVer=5
 
16942
  Win32=true
16943
  Frames=true
16944
  IFrames=true
16945
  Tables=true
16946
  Cookies=true
16947
  BackgroundSounds=true
16948
- CDF=true
16949
  VBScript=true
16950
  JavaApplets=true
16951
- JavaScript=true
16952
  ActiveXControls=true
16953
- CssVersion=2
16954
- supportsCSS=true
16955
 
16956
- [Mozilla/?.* (?compatible; *MSIE 5.0*)*]
16957
- Parent=IE 5.0
 
16958
 
16959
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows 95*)*]
16960
- Parent=IE 5.0
16961
- Platform=Win95
 
16962
 
16963
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows 98*)*]
16964
- Parent=IE 5.0
16965
- Platform=Win98
 
16966
 
16967
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows 98; Win 9x 4.90;*)*]
16968
- Parent=IE 5.0
16969
- Platform=WinME
16970
 
16971
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 4.0*)*]
16972
- Parent=IE 5.0
16973
- Platform=WinNT
 
16974
 
16975
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 5.0*)*]
16976
- Parent=IE 5.0
16977
- Platform=Win2000
 
16978
 
16979
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 5.01*)*]
16980
- Parent=IE 5.0
16981
- Platform=Win2000
 
16982
 
16983
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.01
16984
 
16985
- [IE 5.01]
16986
  Parent=DefaultProperties
 
16987
  Browser="IE"
16988
- Version=5.01
16989
- MajorVer=5
16990
- MinorVer=01
16991
  Win32=true
16992
  Frames=true
16993
  IFrames=true
16994
  Tables=true
16995
  Cookies=true
16996
  BackgroundSounds=true
16997
- CDF=true
16998
  VBScript=true
16999
  JavaApplets=true
17000
- JavaScript=true
17001
  ActiveXControls=true
17002
- CssVersion=2
17003
- supportsCSS=true
17004
 
17005
- [Mozilla/?.* (?compatible; *MSIE 5.01*)*]
17006
- Parent=IE 5.01
 
 
 
 
 
 
17007
 
17008
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows 95*)*]
17009
- Parent=IE 5.01
17010
- Platform=Win95
 
17011
 
17012
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows 98*)*]
17013
- Parent=IE 5.01
17014
- Platform=Win98
17015
 
17016
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows 98; Win 9x 4.90;*)*]
17017
- Parent=IE 5.01
17018
- Platform=WinME
17019
 
17020
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 4.0*)*]
17021
- Parent=IE 5.01
17022
- Platform=WinNT
17023
 
17024
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 5.0*)*]
17025
- Parent=IE 5.01
17026
- Platform=Win2000
 
17027
 
17028
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 5.01*)*]
17029
- Parent=IE 5.01
17030
- Platform=Win2000
 
17031
 
17032
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.5
 
 
 
17033
 
17034
- [IE 5.5]
 
 
 
 
 
 
 
17035
  Parent=DefaultProperties
 
17036
  Browser="IE"
17037
- Version=5.5
17038
  MajorVer=5
17039
- MinorVer=5
17040
  Win32=true
17041
  Frames=true
17042
  IFrames=true
17043
  Tables=true
17044
  Cookies=true
17045
  BackgroundSounds=true
17046
- CDF=true
17047
  VBScript=true
17048
  JavaApplets=true
17049
- JavaScript=true
17050
  ActiveXControls=true
17051
- CssVersion=2
17052
- supportsCSS=true
17053
 
17054
- [Mozilla/?.* (?compatible; *MSIE 5.5*)*]
17055
- Parent=IE 5.5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17056
 
17057
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows 95*)*]
17058
- Parent=IE 5.5
17059
- Platform=Win95
 
17060
 
17061
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows 98*)*]
17062
- Parent=IE 5.5
17063
- Platform=Win98
 
17064
 
17065
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows 98; Win 9x 4.90*)*]
17066
- Parent=IE 5.5
17067
- Platform=WinME
 
17068
 
17069
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 4.0*)*]
17070
- Parent=IE 5.5
17071
- Platform=WinNT
 
17072
 
17073
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.0*)*]
17074
- Parent=IE 5.5
17075
- Platform=Win2000
 
17076
 
17077
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.01*)*]
17078
- Parent=IE 5.5
17079
- Platform=Win2000
 
17080
 
17081
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.1*)*]
17082
- Parent=IE 5.5
17083
- Platform=WinXP
 
17084
 
17085
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.2*)*]
17086
- Parent=IE 5.5
17087
- Platform=Win2003
 
17088
 
17089
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 6.0
17090
 
17091
  [IE 6.0]
17092
  Parent=DefaultProperties
 
17093
  Browser="IE"
17094
  Version=6.0
17095
  MajorVer=6
 
17096
  Win32=true
17097
  Frames=true
17098
  IFrames=true
17099
  Tables=true
17100
  Cookies=true
17101
  BackgroundSounds=true
17102
- CDF=true
17103
  VBScript=true
17104
  JavaApplets=true
17105
- JavaScript=true
17106
  ActiveXControls=true
17107
- CssVersion=2
17108
- supportsCSS=true
17109
-
17110
- [Mozilla/?.* (?compatible; *MSIE 6.0*)*]
17111
- Parent=IE 6.0
17112
-
17113
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows 95*)*]
17114
- Parent=IE 6.0
17115
- Platform=Win95
17116
-
17117
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows 98*)*]
17118
- Parent=IE 6.0
17119
- Platform=Win98
17120
-
17121
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows 98; Win 9x 4.90*)*]
17122
- Parent=IE 6.0
17123
- Platform=WinME
17124
-
17125
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 4.0*)*]
17126
- Parent=IE 6.0
17127
- Platform=WinNT
17128
 
17129
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.0*)*]
17130
  Parent=IE 6.0
17131
- Platform=Win2000
17132
 
17133
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.01*)*]
17134
  Parent=IE 6.0
17135
- Platform=Win2000
 
17136
 
17137
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.1*)*]
17138
  Parent=IE 6.0
17139
- Platform=WinXP
 
17140
 
17141
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2*)*]
17142
  Parent=IE 6.0
17143
- Platform=Win2003
 
17144
 
17145
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2;*Win64;*)*]
17146
  Parent=IE 6.0
17147
- Platform=WinXP
 
17148
  Win32=false
17149
  Win64=true
17150
 
17151
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2;*WOW64;*)*]
17152
  Parent=IE 6.0
17153
- Platform=WinXP
 
 
 
17154
 
17155
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.0*)*]
17156
  Parent=IE 6.0
17157
- Platform=WinVista
 
17158
 
17159
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0
17160
 
17161
  [IE 7.0]
17162
  Parent=DefaultProperties
 
17163
  Browser="IE"
17164
  Version=7.0
17165
  MajorVer=7
 
17166
  Win32=true
17167
  Frames=true
17168
  IFrames=true
17169
  Tables=true
17170
  Cookies=true
17171
  BackgroundSounds=true
17172
- CDF=true
17173
  VBScript=true
17174
  JavaApplets=true
17175
- JavaScript=true
17176
  ActiveXControls=true
17177
  CssVersion=2
17178
- supportsCSS=true
17179
 
17180
- [Mozilla/?.* (?compatible; *MSIE 7.0*)*]
 
 
 
 
 
17181
  Parent=IE 7.0
 
 
17182
 
17183
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows 98*)*]
17184
  Parent=IE 7.0
17185
- Platform=Win98
 
17186
 
17187
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows 98; Win 9x 4.90;*)*]
17188
  Parent=IE 7.0
17189
- Platform=WinME
 
 
 
 
 
 
 
 
17190
 
17191
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 4.0*)*]
17192
  Parent=IE 7.0
17193
- Platform=WinNT
 
 
 
17194
 
17195
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0*)*]
17196
  Parent=IE 7.0
17197
- Platform=Win2000
 
 
 
17198
 
17199
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.01*)*]
17200
  Parent=IE 7.0
17201
- Platform=Win2000
 
17202
 
17203
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*)*]
17204
  Parent=IE 7.0
17205
- Platform=WinXP
 
17206
 
17207
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*)*]
17208
  Parent=IE 7.0
17209
- Platform=Win2003
 
17210
 
17211
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64;*)*]
17212
  Parent=IE 7.0
17213
- Platform=WinXP
17214
- Win32=false
17215
- Win64=true
17216
 
17217
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*WOW64;*)*]
17218
  Parent=IE 7.0
17219
- Platform=WinXP
 
17220
 
17221
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*)*]
17222
  Parent=IE 7.0
17223
- Platform=WinVista
 
17224
 
17225
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*)*]
17226
  Parent=IE 7.0
17227
- Platform=Win7
 
 
 
17228
 
17229
- [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; *)*]
17230
  Parent=IE 7.0
17231
- Platform=Win7
 
17232
 
17233
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 8.0
17234
 
17235
  [IE 8.0]
17236
  Parent=DefaultProperties
 
17237
  Browser="IE"
17238
  Version=8.0
17239
  MajorVer=8
 
17240
  Win32=true
17241
  Frames=true
17242
  IFrames=true
17243
  Tables=true
17244
  Cookies=true
17245
  BackgroundSounds=true
17246
- CDF=true
17247
  VBScript=true
17248
  JavaApplets=true
17249
- JavaScript=true
17250
  ActiveXControls=true
17251
- CssVersion=3
17252
- supportsCSS=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17253
 
17254
- [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0*)*]
17255
  Parent=IE 8.0
17256
- Platform=WinXP
 
 
 
17257
 
17258
- [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0*)*]
17259
  Parent=IE 8.0
17260
- Platform=Win2003
 
17261
 
17262
- [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0*)*]
17263
  Parent=IE 8.0
17264
- Platform=WinVista
 
 
 
 
17265
 
17266
- [Mozilla/4.0 (compatible; MSIE 8.0; Win32*)*]
17267
  Parent=IE 8.0
17268
- Platform=Win32
 
17269
 
17270
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.0*)*]
17271
  Parent=IE 8.0
17272
- Platform=Win2000
 
 
 
17273
 
17274
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1*)*]
17275
  Parent=IE 8.0
17276
- Platform=WinXP
 
 
 
17277
 
17278
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2*)*]
17279
  Parent=IE 8.0
17280
- Platform=Win2003
 
 
 
 
17281
 
17282
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0*)*]
17283
  Parent=IE 8.0
17284
- Platform=WinVista
 
17285
 
17286
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0*)*]
17287
  Parent=IE 8.0
17288
- Platform=WinVista
 
17289
  Win32=false
17290
  Win64=true
17291
 
17292
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0*)*]
17293
  Parent=IE 8.0
17294
- Platform=WinVista
17295
- Win64=false
 
 
17296
 
17297
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1*)*]
17298
  Parent=IE 8.0
17299
- Platform=Win7
 
 
 
 
17300
 
17301
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0*)*]
17302
  Parent=IE 8.0
17303
- Platform=Win7
 
 
 
17304
 
17305
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0*)*]
17306
  Parent=IE 8.0
17307
- Platform=Win7
 
17308
  Win32=false
17309
  Win64=true
17310
 
17311
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0*)*]
17312
  Parent=IE 8.0
17313
- Platform=Win7
17314
- Win64=false
 
 
 
 
 
 
 
 
17315
 
17316
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 7.0; Trident/4.0*)*]
17317
  Parent=IE 8.0
17318
- Platform=Win7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17319
 
17320
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Default Browser
17321
 
17322
  [*]
 
17323
  Browser="Default Browser"
17324
- Version=0
17325
  MajorVer=0
17326
  MinorVer=0
17327
- Platform=unknown
 
17328
  Alpha=false
17329
  Beta=false
17330
  Win16=false
17331
  Win32=false
17332
  Win64=false
17333
- Frames=true
17334
  IFrames=false
17335
- Tables=true
17336
  Cookies=false
17337
  BackgroundSounds=false
17338
- CDF=false
17339
  VBScript=false
17340
  JavaApplets=false
17341
- JavaScript=false
17342
  ActiveXControls=false
17343
- isBanned=false
17344
  isMobileDevice=false
17345
  isSyndicationReader=false
17346
  Crawler=false
17347
  CssVersion=0
17348
- supportsCSS=false
17349
- AOL=false
17350
- aolVersion=0
1
+ ;;; Provided courtesy of https://browsers.garykeith.com
2
+ ;;; Created on Wednesday, August 15, 2012 at 12:20 AM UTC
3
+
4
+ ;;; Keep up with the latest goings-on with the project:
5
+ ;;; Follow us on Twitter <https://twitter.com/browscap>, or...
6
+ ;;; Like us on Facebook <https://facebook.com/browscap>, or...
7
+ ;;; Collaborate on GitHub <https://github.com/GaryKeith/browscap>, or...
8
+ ;;; Discuss on Google Groups <https://groups.google.com/d/forum/browscap>.
9
+
10
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Version
11
 
12
  [GJK_Browscap_Version]
13
+ Version=5011
14
+ Released=Wed, 15 Aug 2012 00:20:23 -0000
15
 
16
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties
17
 
18
  [DefaultProperties]
19
+ Comment="DefaultProperties"
20
  Browser="DefaultProperties"
21
+ Version=0.0
22
  MajorVer=0
23
  MinorVer=0
24
+ Platform="unknown"
25
+ Platform_Version="unknown"
26
  Alpha=false
27
  Beta=false
28
  Win16=false
33
  Tables=false
34
  Cookies=false
35
  BackgroundSounds=false
36
+ JavaScript=false
37
  VBScript=false
38
  JavaApplets=false
 
39
  ActiveXControls=false
 
40
  isMobileDevice=false
41
  isSyndicationReader=false
42
  Crawler=false
43
  CssVersion=0
44
+ AolVersion=0
 
 
45
 
46
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ask
47
 
48
  [Ask]
49
  Parent=DefaultProperties
50
+ Comment="Ask"
51
  Browser="Ask"
52
  Frames=true
53
+ IFrames=true
54
  Tables=true
55
  Crawler=true
56
 
66
 
67
  [Baidu]
68
  Parent=DefaultProperties
69
+ Comment="Baidu"
70
  Browser="Baidu"
71
  Frames=true
72
+ IFrames=true
73
  Tables=true
74
  Crawler=true
75
 
76
+ [*Baiduspider*]
77
+ Parent=Baidu
78
+ Browser="BaiDu"
79
+
80
+ [*Baiduspider-ads*]
81
+ Parent=Baidu
82
+ Browser="Baidu Business search"
83
+
84
+ [*Baiduspider-cpro*]
85
+ Parent=Baidu
86
+ Browser="Baidu Union"
87
+
88
+ [*Baiduspider-favo*]
89
+ Parent=Baidu
90
+ Browser="Baidu bookmark"
91
+
92
+ [*Baiduspider-image*]
93
+ Parent=Baidu
94
+ Browser="Baidu Image search"
95
+
96
+ [*Baiduspider-mobile*]
97
+ Parent=Baidu
98
+ Browser="Baidu Mobile search"
99
+
100
+ [*Baiduspider-news*]
101
+ Parent=Baidu
102
+ Browser="Baidu News search"
103
+
104
+ [*Baiduspider-video*]
105
+ Parent=Baidu
106
+ Browser="Baidu Video search"
107
+
108
+ [AC-BaiduBot/*]
109
  Parent=Baidu
110
  Browser="AC-BaiduBot"
111
 
113
  Parent=Baidu
114
  Browser="BaiduImageSpider"
115
 
116
+ [Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)]
117
  Parent=Baidu
118
+ Browser="Baiduspider"
119
+ Version=2.0
120
+ MajorVer=2
121
+ MinorVer=0
122
 
123
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google
124
 
125
  [Google]
126
  Parent=DefaultProperties
127
+ Comment="Google"
128
  Browser="Google"
129
  Frames=true
130
  IFrames=true
131
  Tables=true
 
132
  Crawler=true
133
 
134
+ [*Google Web Preview*]
135
+ Parent=Google
136
+ Browser="Google Web Preview"
137
+
138
+ [*Googlebot-Mobile/2.*]
139
  Parent=Google
140
  Browser="Googlebot-Mobile"
141
  Frames=false
142
  IFrames=false
143
  Tables=false
144
 
145
+ [*Googlebot/2.1*]
146
  Parent=Google
147
+ Browser="Googlebot"
148
+ Version=2.1
149
+ MajorVer=2
150
+ MinorVer=1
151
 
152
+ [AdsBot-Google*]
153
  Parent=Google
154
  Browser="AdsBot-Google"
155
 
156
+ [AdsBot-Google-Mobile*]
157
  Parent=Google
158
+ Browser="AdsBot-Google-Mobile"
159
+
160
+ [AppEngine-Google*]
161
+ Parent=Google
162
+ Browser="AppEngine-Google"
163
 
164
+ [Feedfetcher-Google*]
165
  Parent=Google
166
  Browser="Feedfetcher-Google"
 
167
  isSyndicationReader=true
168
 
169
+ [Feedfetcher-Google-iGoogleGadgets*]
170
+ Parent=Google
171
+ Browser="iGoogleGadgets"
172
+ isSyndicationReader=true
173
+
174
+ [google (*Enterprise*)]
175
+ Parent=Google
176
+ Browser="Google Enterprise"
177
+
178
+ [Google OpenSocial agent*]
179
  Parent=Google
180
  Browser="Google OpenSocial"
181
 
182
+ [Google-Site-Verification*]
183
  Parent=Google
184
+ Browser="Google-Site-Verification/1.0"
185
+ Version=1.0
186
+ MajorVer=1
187
+ MinorVer=0
188
 
189
+ [Google-Sitemaps*]
190
  Parent=Google
191
  Browser="Google-Sitemaps"
192
 
193
+ [Googlebot-Image*]
194
  Parent=Google
195
  Browser="Googlebot-Image"
 
196
 
197
+ [Googlebot-News*]
198
  Parent=Google
199
  Browser="Googlebot-News"
200
 
202
  Parent=Google
203
  Browser="googlebot-urlconsole"
204
 
205
+ [Googlebot-Video*]
206
  Parent=Google
207
  Browser="Google-Video"
208
 
 
 
 
 
 
 
 
 
209
  [Googlebot/Test*]
210
  Parent=Google
211
  Browser="Googlebot/Test"
212
 
213
+ [GoogleFriendConnect*]
214
  Parent=Google
215
  Browser="Google Friend Connect"
216
 
217
  [gsa-crawler*]
218
  Parent=Google
219
  Browser="Google Search Appliance"
 
220
 
221
  [Mediapartners-Google*]
222
  Parent=Google
223
  Browser="Mediapartners-Google"
224
 
225
+ [Mozilla/5.0 (*Feedfetcher-Google*)]
226
  Parent=Google
227
+ Browser="Google Feedfetcher"
228
 
229
+ [Mozilla/5.0 (*Google Desktop*)]
230
  Parent=Google
231
+ Browser="Google Desktop"
232
 
233
+ [Mozilla/5.0 (*Google Keyword Tool*)]
234
  Parent=Google
235
+ Browser="Google Keyword Tool"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
 
237
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN
238
 
239
  [MSN]
240
  Parent=DefaultProperties
241
+ Comment="MSN"
242
  Browser="MSN"
243
  Frames=true
244
+ IFrames=true
245
  Tables=true
246
  Crawler=true
247
 
260
  MajorVer=1
261
  MinorVer=0
262
 
263
+ [Microsoft Bing Mobile SocialStreams Bot]
264
+ Parent=MSN
265
+ Browser="Microsoft Bing Mobile SocialStreams Bot"
266
+
267
+ [Mozilla/5.0 (compatible; bingbot/2.*http://www.bing.com/bingbot.htm)]
268
+ Parent=MSN
269
+ Browser="BingBot"
270
+
271
  [Mozilla/5.0 (Danger hiptop 3.*; U; rv:1.7.*) Gecko/*]
272
  Parent=MSN
273
  Browser="Danger"
312
  Browser="MSNBot-NewsBlogs"
313
  Version=1
314
  MajorVer=1
315
+
316
+ [msnbot-NewsBlogs/2.* (+http://search.msn.com/msnbot.htm)]
317
+ Parent=MSN
318
+ Browser="msnbot-NewsBlogs"
319
+ Version=2.0
320
+ MajorVer=2
321
  MinorVer=0
322
 
323
  [msnbot-products]
344
 
345
  [msnbot/2.0b*]
346
  Parent=MSN
347
+ Browser="msnbot"
348
  Version=2.0
349
  MajorVer=2
350
  MinorVer=0
366
  Parent=MSN
367
  Browser="msnbot-mobile"
368
 
369
+ [Windows-Live-Social-Object-Extractor-Engine/1.0]
370
+ Parent=MSN
371
+ Browser="Windows-Live-Social-Object-Extractor-Eng"
372
+
373
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo
374
 
375
  [Yahoo]
376
  Parent=DefaultProperties
377
+ Comment="Yahoo"
378
  Browser="Yahoo"
379
  Frames=true
380
+ IFrames=true
381
  Tables=true
382
  Crawler=true
383
 
385
  Parent=Yahoo
386
  Browser="Y!J"
387
 
388
+ [Mozilla/5.0 (compatible; BMC/* (Y!J-AGENT))]
389
  Parent=Yahoo
390
+ Browser="Y!J-AGENT/BMC"
 
 
 
391
 
392
+ [Mozilla/5.0 (compatible; BMF/* (Y!J-AGENT))]
393
  Parent=Yahoo
394
+ Browser="Y!J-AGENT/BMF"
 
395
 
396
+ [Mozilla/5.0 (compatible; BMI/* (Y!J-AGENT; 1.0))]
397
  Parent=Yahoo
398
+ Browser="Y!J-AGENT/BMI"
399
 
400
+ [Mozilla/5.0 (compatible; Yahoo! DE Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
401
  Parent=Yahoo
402
+ Browser="Yahoo! Directory Engine"
 
403
 
404
+ [Mozilla/5.0 (compatible; Yahoo! SearchMonkey*)]
405
  Parent=Yahoo
406
+ Browser="Yahoo! Search Monkey"
407
+
408
+ [Mozilla/5.0 (compatible; Yahoo! Slurp China*;*http://misc.yahoo.com.cn/help.html)]
409
+ Parent=Yahoo
410
+ Browser="Yahoo! Slurp China"
411
+
412
+ [Mozilla/5.0 (compatible; Yahoo! Slurp*;*http://help.yahoo.com/help/us/ysearch/slurp)]
413
+ Parent=Yahoo
414
+ Browser="Yahoo! Slurp"
415
+ Version=3.0
416
+ MajorVer=3
417
  MinorVer=0
 
418
 
419
+ [Mozilla/5.0 (compatible; Yahoo! Verifier/*)]
420
  Parent=Yahoo
421
+ Browser="Yahoo! Verifier"
422
+ Version=1.1
423
+ MajorVer=1
424
+ MinorVer=1
425
 
426
+ [Mozilla/5.0 (compatible; Yahoo!-AdCrawler;*http://help.yahoo.com/yahoo_adcrawler)]
427
+ Parent=Yahoo
428
+ Browser="Yahoo!-AdCrawler"
429
 
430
+ [Mozilla/5.0 (compatible; YahooSeeker/M1A1-R2D2*)]
431
+ Parent=Yahoo
432
+ Browser="YahooSeeker-Mobile"
433
+
434
+ [Mozilla/5.0 (Yahoo-MMCrawler/*; mailto:vertical-crawl-support@yahoo-inc.com)]
435
+ Parent=Yahoo
436
+ Browser="Yahoo-MMCrawler"
437
+ Version=4.0
438
+ MajorVer=4
439
+ MinorVer=0
440
+
441
+ [Mozilla/5.0 (Yahoo-Test/*)]
442
+ Parent=Yahoo
443
+ Browser="Yahoo-Test"
444
+
445
+ [Mozilla/5.0 (YahooYSMcm*)]
446
+ Parent=Yahoo
447
+ Browser="YahooYSMcm"
448
+
449
+ [mp3Spider cn-search-devel at yahoo-inc dot com]
450
+ Parent=Yahoo
451
+ Browser="Yahoo! Media"
452
+
453
+ [My Browser]
454
+ Parent=Yahoo
455
+ Browser="Yahoo! My Browser"
456
+
457
+ [Scooter*]
458
+ Parent=Yahoo
459
+ Browser="Scooter"
460
+
461
+ [Scooter/*Y!CrawlX]
462
+ Parent=Yahoo
463
+ Browser="Scooter/3.3Y!CrawlX"
464
+ Version=3.3
465
+ MajorVer=3
466
+ MinorVer=3
467
+
468
+ [slurp]
469
+ Parent=Yahoo
470
+ Browser="slurp"
471
+
472
+ [Y!J SearchMonkey*]
473
+ Parent=Yahoo
474
+ Browser="YahooFeedSeeker"
475
+ isSyndicationReader=true
476
+
477
+ [Y!J-BRE*]
478
+ Parent=Yahoo
479
+ Browser="YahooFeedSeeker"
480
+ isSyndicationReader=true
481
+
482
+ [Y!J-BRG/GSC*]
483
+ Parent=Yahoo
484
+ Browser="YahooFeedSeeker"
485
+ isSyndicationReader=true
486
+
487
+ [Y!J-BRI*]
488
+ Parent=Yahoo
489
+ Browser="YahooFeedSeeker"
490
+ isSyndicationReader=true
491
+
492
+ [Y!J-BRO/YFSJ*]
493
+ Parent=Yahoo
494
+ Browser="YahooFeedSeeker"
495
+ isSyndicationReader=true
496
+
497
+ [Y!J-BRP/YFSBJ*]
498
+ Parent=Yahoo
499
+ Browser="YahooFeedSeeker"
500
+ isSyndicationReader=true
501
+
502
+ [Y!J-BRQ/DLCK*]
503
+ Parent=Yahoo
504
+ Browser="YahooFeedSeeker"
505
+ isSyndicationReader=true
506
+
507
+ [Y!J-BSC*]
508
+ Parent=Yahoo
509
+ Browser="YahooFeedSeeker"
510
+ Version=1.0
511
+ MajorVer=1
512
+ MinorVer=0
513
+ isSyndicationReader=true
514
+
515
+ [Y!J-DSC*]
516
+ Parent=Yahoo
517
+ Browser="YahooFeedSeeker"
518
+ isSyndicationReader=true
519
+
520
+ [Y!J-NSC*]
521
+ Parent=Yahoo
522
+ Browser="YahooFeedSeeker"
523
+ isSyndicationReader=true
524
+
525
+ [Y!J-PSC*]
526
+ Parent=Yahoo
527
+ Browser="YahooFeedSeeker"
528
+ isSyndicationReader=true
529
+
530
+ [Y!J-SRD*]
531
+ Parent=Yahoo
532
+ Browser="YahooFeedSeeker"
533
+ Version=1.0
534
+ MajorVer=1
535
+ MinorVer=0
536
+
537
+ [Y!J-VSC/ViSe*]
538
+ Parent=Yahoo
539
+ Browser="YahooFeedSeeker"
540
+ isSyndicationReader=true
541
+
542
+ [Y!OASIS*]
543
+ Parent=Yahoo
544
+ Browser="Y!OASIS"
545
+
546
+ [Yahoo Mindset]
547
+ Parent=Yahoo
548
+ Browser="Yahoo Mindset"
549
+
550
+ [Yahoo Pipes*]
551
+ Parent=Yahoo
552
+ Browser="Yahoo Pipes"
553
+
554
+ [Yahoo! Mindset]
555
+ Parent=Yahoo
556
+ Browser="Yahoo! Mindset"
557
+
558
+ [Yahoo! Slurp/Site Explorer]
559
+ Parent=Yahoo
560
+ Browser="Yahoo! Site Explorer"
561
+
562
+ [Yahoo-Blogs*]
563
+ Parent=Yahoo
564
+ Browser="Yahoo-Blogs"
565
+
566
+ [Yahoo-MMAudVid*]
567
+ Parent=Yahoo
568
+ Browser="Yahoo-MMAudVid"
569
+
570
+ [Yahoo-MMCrawler*]
571
+ Parent=Yahoo
572
+ Browser="Yahoo-MMCrawler"
573
+
574
+ [YahooExternalCache]
575
+ Parent=Yahoo
576
+ Browser="YahooExternalCache"
577
+
578
+ [YahooFeedSeeker*]
579
+ Parent=Yahoo
580
+ Browser="YahooFeedSeeker"
581
+ isSyndicationReader=true
582
+
583
+ [YahooSeeker*]
584
+ Parent=Yahoo
585
+ Browser="YahooSeeker"
586
+ isMobileDevice=true
587
+
588
+ [YahooSeeker/CafeKelsa*]
589
+ Parent=Yahoo
590
+ Browser="YahooSeeker/CafeKelsa"
591
+
592
+ [YahooVideoSearch*]
593
+ Parent=Yahoo
594
+ Browser="YahooVideoSearch"
595
+
596
+ [YahooYSMcm*]
597
+ Parent=Yahoo
598
+ Browser="YahooYSMcm"
599
+
600
+ [YRL_ODP_CRAWLER]
601
+ Parent=Yahoo
602
+ Browser="YRL_ODP_CRAWLER"
603
+
604
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yandex
605
+
606
+ [Yandex]
607
+ Parent=DefaultProperties
608
+ Comment="Yandex"
609
+ Browser="Yandex"
610
+ Frames=true
611
  IFrames=true
612
  Tables=true
 
613
  Crawler=true
614
 
615
+ [Mozilla/5.0 (compatible; YandexAddurl/*)]
616
  Parent=Yandex
617
+ Browser="YandexAddURL"
618
 
619
+ [Mozilla/5.0 (compatible; YandexBlogs/*)]
620
  Parent=Yandex
621
+ Browser="YandexBlogs"
 
622
 
623
+ [Mozilla/5.0 (compatible; YandexBot/*)]
624
  Parent=Yandex
625
+ Browser="YandexBot"
626
 
627
+ [Mozilla/5.0 (compatible; YandexBot/*; MirrorDetector*)]
628
  Parent=Yandex
629
+ Browser="Yandex MirrorDetector"
630
 
631
+ [Mozilla/5.0 (compatible; YandexCatalog/*)]
632
  Parent=Yandex
633
+ Browser="YandexCatalog"
 
634
 
635
+ [Mozilla/5.0 (compatible; YandexDirect/*)]
636
  Parent=Yandex
637
+ Browser="YandexDirect-Dyatel"
638
+
639
+ [Mozilla/5.0 (compatible; YandexFavicons/*)]
640
+ Parent=Yandex
641
+ Browser="YandexFavicons"
642
+
643
+ [Mozilla/5.0 (compatible; YandexImageResizer/*)]
644
+ Parent=Yandex
645
+ Browser="YandexImageResizer"
646
+
647
+ [Mozilla/5.0 (compatible; YandexImages/*)]
648
+ Parent=Yandex
649
+ Browser="YandexImages"
650
+
651
+ [Mozilla/5.0 (compatible; YandexMedia/*)]
652
+ Parent=Yandex
653
+ Browser="YandexMedia"
654
+
655
+ [Mozilla/5.0 (compatible; YandexMetrika/*)]
656
+ Parent=Yandex
657
+ Browser="YandexMetrika"
658
+
659
+ [Mozilla/5.0 (compatible; YandexNews/*)]
660
+ Parent=Yandex
661
+ Browser="YandexNews"
662
+
663
+ [Mozilla/5.0 (compatible; YandexVideo/*)]
664
+ Parent=Yandex
665
+ Browser="YandexVideo"
666
+
667
+ [Mozilla/5.0 (compatible; YandexWebmaster/*)]
668
+ Parent=Yandex
669
+ Browser="YandexWebmaster"
670
+
671
+ [Mozilla/5.0 (compatible; YandexZakladki/*)]
672
+ Parent=Yandex
673
+ Browser="YandexZakladki"
674
+
675
+ [Yandex/1.01.001 (compatible; Win16; *)]
676
+ Parent=Yandex
677
+ Browser="Yandex"
678
 
679
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Best of the Web
680
 
681
  [Best of the Web]
682
  Parent=DefaultProperties
683
+ Comment="Best of the Web"
684
  Browser="Best of the Web"
685
  Frames=true
686
  Tables=true
687
+ Crawler=true
688
 
689
  [Mozilla/4.0 (compatible; BOTW Feed Grabber; *http://botw.org)]
690
  Parent=Best of the Web
691
  Browser="BOTW Feed Grabber"
692
  isSyndicationReader=true
 
693
 
694
  [Mozilla/4.0 (compatible; BOTW Spider; *http://botw.org)]
695
  Parent=Best of the Web
696
  Browser="BOTW Spider"
 
697
 
698
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Boitho
699
 
700
  [Boitho]
701
  Parent=DefaultProperties
702
+ Comment="Boitho"
703
  Browser="Boitho"
704
  Frames=true
705
  Tables=true
717
 
718
  [Convera]
719
  Parent=DefaultProperties
720
+ Comment="Convera"
721
  Browser="Convera"
722
  Frames=true
723
  Tables=true
742
 
743
  [DotBot]
744
  Parent=DefaultProperties
745
+ Comment="DotBot"
746
  Browser="DotBot"
747
  Frames=true
748
  Tables=true
 
749
  Crawler=true
750
 
751
  [DotBot/* (http://www.dotnetdotcom.org/*)]
758
 
759
  [Entireweb]
760
  Parent=DefaultProperties
761
+ Comment="Entireweb"
762
  Browser="Entireweb"
763
  Frames=true
 
764
  Tables=true
 
765
  Crawler=true
766
 
767
+ [Mozilla/5.0 (compatible; Speedy Spider; http://www.entireweb.com/about/search_tech/speedy_spider/)]
768
  Parent=Entireweb
769
 
770
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) Speedy Spider (http://www.entireweb.com/about/search_tech/speedy_spider/)]
771
  Parent=Entireweb
772
+ Platform_Version=5.1
773
 
774
+ [Speedy Spider (http://www.entireweb.com/about/search_tech/speedy_spider/)]
775
  Parent=Entireweb
776
 
777
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Envolk
778
 
779
  [Envolk]
780
  Parent=DefaultProperties
781
+ Comment="Envolk"
782
  Browser="Envolk"
783
  Frames=true
 
784
  Tables=true
 
785
  Crawler=true
786
 
787
  [envolk/* (?http://www.envolk.com/envolk*)]
794
 
795
  [Exalead]
796
  Parent=DefaultProperties
797
+ Comment="Exalead"
798
  Browser="Exalead"
799
  Frames=true
800
  Tables=true
 
801
  Crawler=true
802
 
803
  [Exabot-Images/1.0]
814
  [Exabot/2.0]
815
  Parent=Exalead
816
  Browser="Exabot"
817
+ Version=2.0
818
+ MajorVer=2
819
+ MinorVer=0
820
 
821
  [Exabot/3.0]
822
  Parent=Exalead
824
  Version=3.0
825
  MajorVer=3
826
  MinorVer=0
827
+ Platform="Liberate"
828
 
829
  [Exalead NG/*]
830
  Parent=Exalead
831
  Browser="Exalead NG"
 
832
 
833
+ [Mozilla/5.0 (compatible; Exabot-Images/3.0*)]
834
  Parent=Exalead
835
  Browser="Exabot-Images"
836
+ Version=3.0
837
+ MajorVer=3
838
+ MinorVer=0
839
 
840
+ [Mozilla/5.0 (compatible; Exabot/3.0*)]
841
  Parent=Exalead
842
  Browser="Exabot/BiggerBetter"
843
+ Version=3.0
844
+ MajorVer=3
845
+ MinorVer=0
846
 
847
+ [Mozilla/5.0 (compatible; NGBot/*)]
848
  Parent=Exalead
849
+ Browser="NGBot"
 
850
 
851
+ [NG-Search/*]
852
  Parent=Exalead
853
+ Browser="NG-Search"
854
 
855
  [ng/*]
856
  Parent=Exalead
857
  Browser="Exalead Previewer"
858
+
859
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Facebook
860
+
861
+ [Facebook]
862
+ Parent=DefaultProperties
863
+ Comment="Facebook"
864
+ Browser="Facebook"
865
+ Frames=true
866
+ Tables=true
867
+ Crawler=true
868
+
869
+ [facebookexternalhit/1.0 (+http*://www.facebook.com/externalhit_uatext.php)*]
870
+ Parent=Facebook
871
  Version=1.0
872
  MajorVer=1
873
  MinorVer=0
874
+
875
+ [facebookexternalhit/1.1 (+http*://www.facebook.com/externalhit_uatext.php)*]
876
+ Parent=Facebook
877
+ Browser="FacebookExternalHit"
878
+ Version=1.1
879
+ MajorVer=1
880
+ MinorVer=1
881
 
882
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fast/AllTheWeb
883
 
884
  [Fast/AllTheWeb]
885
  Parent=DefaultProperties
886
+ Comment="Fast/AllTheWeb"
887
  Browser="Fast/AllTheWeb"
 
 
 
 
 
888
  Frames=true
 
889
  Tables=true
 
 
 
 
 
 
 
 
 
 
890
  Crawler=true
891
 
892
  [*FAST Enterprise Crawler*]
933
 
934
  [Gigabot]
935
  Parent=DefaultProperties
936
+ Comment="Gigabot"
937
  Browser="Gigabot"
938
  Frames=true
 
939
  Tables=true
940
  Crawler=true
941
 
950
 
951
  [Ilse]
952
  Parent=DefaultProperties
953
+ Comment="Ilse"
954
  Browser="Ilse"
955
  Frames=true
956
  Tables=true
961
 
962
  [INGRID/?.0*]
963
  Parent=Ilse
 
964
 
965
  [Mozilla/3.0 (INGRID/*]
966
  Parent=Ilse
 
967
 
968
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iVia Project
969
 
970
  [iVia Project]
971
  Parent=DefaultProperties
972
+ Comment="iVia Project"
973
  Browser="iVia Project"
974
  Frames=true
 
975
  Tables=true
976
  Crawler=true
977
 
978
  [DataFountains/DMOZ Downloader*]
979
  Parent=iVia Project
980
  Browser="DataFountains/DMOZ Downloader"
 
981
 
982
  [DataFountains/DMOZ Feature Vector Corpus Creator*]
983
  Parent=iVia Project
987
 
988
  [Jayde Online]
989
  Parent=DefaultProperties
990
+ Comment="Jayde Online"
991
  Browser="Jayde Online"
992
  Frames=true
993
  Tables=true
1000
  [exactseek-pagereaper-* (crawler@exactseek.com)]
1001
  Parent=Jayde Online
1002
  Browser="exactseek-pagereaper"
 
1003
 
1004
  [exactseek.com]
1005
  Parent=Jayde Online
1013
 
1014
  [Lycos]
1015
  Parent=DefaultProperties
1016
+ Comment="Lycos"
1017
  Browser="Lycos"
1018
  Frames=true
1019
  Tables=true
1035
  Parent=Lycos
1036
  Browser="Lycos-Spider_(T-Rex)"
1037
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1038
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Snap
1039
 
1040
  [Snap]
1041
  Parent=DefaultProperties
1042
+ Comment="Snap"
1043
  Browser="Snap"
1044
+ Frames=true
1045
+ Tables=true
1046
  Crawler=true
1047
 
1048
  [Mozilla/5.0 (SnapPreviewBot) Gecko/* Firefox/*]
1049
  Parent=Snap
1050
+ Browser="SnapPreviewBot"
1051
 
1052
  [Snapbot/*]
1053
  Parent=Snap
1054
+ Browser="Snapbot"
1055
 
1056
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sogou
1057
 
1058
  [Sogou]
1059
  Parent=DefaultProperties
1060
+ Comment="Sogou"
1061
  Browser="Sogou"
1062
  Frames=true
1063
  Tables=true
 
1064
  Crawler=true
1065
 
1066
  [shaboyi spider]
1073
 
1074
  [Sogou head spider*]
1075
  Parent=Sogou
1076
+ Browser="Sogou Head Spider"
1077
 
1078
  [sogou js robot(*)]
1079
  Parent=Sogou
1086
  Parent=Sogou
1087
  Browser="Sogou/Image Crawler"
1088
 
1089
+ [Sogou Pic Spider/*]
1090
  Parent=Sogou
1091
  Browser="Sogou Pic Spider"
1092
 
1110
 
1111
  [YodaoBot]
1112
  Parent=DefaultProperties
1113
+ Comment="YodaoBot"
1114
  Browser="YodaoBot"
1115
  Frames=true
 
1116
  Tables=true
 
1117
  Crawler=true
1118
 
1119
  [Mozilla/5.0 (compatible; YodaoBot/1.*)]
1137
  Parent=DNS Tools
1138
  Browser="DNS Group Crawler"
1139
 
 
 
 
 
1140
  [TouchStone]
1141
  Parent=Feeds Syndicators
1142
  Browser="TouchStone"
1146
 
1147
  [General Crawlers]
1148
  Parent=DefaultProperties
1149
+ Comment="General Crawlers"
1150
  Browser="General Crawlers"
1151
  Crawler=true
1152
 
1153
+ [*altervista.org*]
1154
  Parent=General Crawlers
1155
+ Browser="altervista.org"
1156
 
1157
+ [*naver*]
1158
  Parent=General Crawlers
1159
+ Browser="NaverBot"
1160
 
1161
+ [*Spinn3r*http://spinn3r.com/robot*]
1162
  Parent=General Crawlers
1163
+ Browser="Spinn3r"
 
1164
 
1165
+ [*SqwidgeBot*]
1166
  Parent=General Crawlers
1167
+ Browser="SqwidgeBot"
1168
+
1169
+ [A .NET Web Crawler]
1170
+ Parent=General Crawlers
1171
+ Browser="A .NET Web Crawler"
1172
+
1173
+ [BabalooSpider/1.*]
1174
+ Parent=General Crawlers
1175
+ Browser="BabalooSpider"
1176
+
1177
+ [BilgiBot/*]
1178
+ Parent=General Crawlers
1179
+ Browser="BilgiBot"
1180
+
1181
+ [bitlybot/2.*]
1182
+ Parent=General Crawlers
1183
+ Browser="BitlyBot"
1184
+
1185
+ [bot/* (bot; *bot@bot.bot)]
1186
+ Parent=General Crawlers
1187
+ Browser="bot"
1188
+
1189
+ [cisco-IOS]
1190
+ Parent=General Crawlers
1191
+ Browser="cisco-IOS"
1192
+
1193
+ [Covario-IDS/*]
1194
+ Parent=General Crawlers
1195
+ Browser="Covario-IDS/*"
1196
 
1197
  [CyberPatrol*]
1198
  Parent=General Crawlers
1199
  Browser="CyberPatrol"
 
1200
 
1201
  [Cynthia 1.0]
1202
  Parent=General Crawlers
1208
  [cz32ts]
1209
  Parent=General Crawlers
1210
  Browser="cz32ts"
 
1211
 
1212
  [ddetailsbot (http://www.displaydetails.com)]
1213
  Parent=General Crawlers
1220
  [DomainsBotBot/1.*]
1221
  Parent=General Crawlers
1222
  Browser="DomainsBotBot"
 
1223
 
1224
  [DomainsDB.net MetaCrawler*]
1225
  Parent=General Crawlers
1226
  Browser="DomainsDB"
1227
 
1228
+ [DomainWatcher Bot*]
1229
+ Parent=General Crawlers
1230
+ Browser="DomainWatcher Bot"
1231
+
1232
  [Drupal (*)]
1233
  Parent=General Crawlers
1234
  Browser="Drupal"
1248
  [FANGCrawl/*]
1249
  Parent=General Crawlers
1250
  Browser="Safe-t.net Web Filtering Service"
 
1251
 
1252
  [favorstarbot/*]
1253
  Parent=General Crawlers
1254
  Browser="favorstarbot"
 
1255
 
1256
  [FollowSite.com (*)]
1257
  Parent=General Crawlers
1258
  Browser="FollowSite"
 
1259
 
1260
  [Gaisbot*]
1261
  Parent=General Crawlers
1262
  Browser="Gaisbot"
1263
 
1264
+ [gosospider Mozilla/5.0 (compatible; GosoSpider*)]
1265
+ Parent=General Crawlers
1266
+ Browser="GosoSpider"
1267
+
1268
  [Healthbot/Health_and_Longevity_Project_(HealthHaven.com) ]
1269
  Parent=General Crawlers
1270
  Browser="Healthbot"
 
1271
 
1272
  [hitcrawler_0.*]
1273
  Parent=General Crawlers
1274
  Browser="hitcrawler"
 
1275
 
1276
  [htdig/*]
1277
  Parent=General Crawlers
1280
  [http://hilfe.acont.de/bot.html ACONTBOT]
1281
  Parent=General Crawlers
1282
  Browser="ACONTBOT"
1283
+
1284
+ [http://www.yellowpages.com*]
1285
+ Parent=General Crawlers
1286
+ Browser="Yellow Pages"
1287
+
1288
+ [HuaweiSymantecSpider/*]
1289
+ Parent=General Crawlers
1290
+ Browser="HuaweiSymantecSpider"
1291
 
1292
  [JetBrains*]
1293
  Parent=General Crawlers
1294
  Browser="Omea Pro"
1295
 
1296
+ [JS-Kit URL Resolver, http://js-kit.com/]
1297
+ Parent=General Crawlers
1298
+ Browser="JS-Kit/Echo"
1299
+
1300
  [KakleBot - www.kakle.com/0.1]
1301
  Parent=General Crawlers
1302
  Browser="KakleBot"
1304
  [KBeeBot/0.*]
1305
  Parent=General Crawlers
1306
  Browser="KBeeBot"
 
1307
 
1308
  [Keyword Density/*]
1309
  Parent=General Crawlers
1312
  [LetsCrawl.com/1.0*]
1313
  Parent=General Crawlers
1314
  Browser="LetsCrawl.com"
 
1315
 
1316
  [Lincoln State Web Browser]
1317
  Parent=General Crawlers
1318
  Browser="Lincoln State Web Browser"
1319
+
1320
+ [LinkedInBot/1.*]
1321
+ Parent=General Crawlers
1322
+ Browser="LinkedInBot"
1323
 
1324
  [Links4US-Crawler,*]
1325
  Parent=General Crawlers
1326
  Browser="Links4US-Crawler"
 
1327
 
1328
  [Lorkyll *.* -- lorkyll@444.net]
1329
  Parent=General Crawlers
1330
  Browser="Lorkyll"
 
1331
 
1332
  [Lsearch/sondeur]
1333
  Parent=General Crawlers
1334
  Browser="Lsearch/sondeur"
 
1335
 
1336
  [LucidMedia ClickSense/4.?]
1337
  Parent=General Crawlers
1338
  Browser="LucidMedia-ClickSense"
 
1339
 
1340
  [Made by ZmEu @ WhiteHat v0.* (www.WhiteHat.ro)]
1341
  Parent=General Crawlers
1342
  Browser="ZmEu"
1343
+
1344
+ [magpie-crawler/1.*]
1345
+ Parent=General Crawlers
1346
+ Browser="magpie-crawler"
1347
 
1348
  [Mahalobot/1.0 (?http://www.mahalo.com/)]
1349
  Parent=General Crawlers
1352
  [MapoftheInternet.com?(?http://MapoftheInternet.com)]
1353
  Parent=General Crawlers
1354
  Browser="MapoftheInternet"
 
1355
 
1356
  [Marvin v0.3]
1357
  Parent=General Crawlers
1374
  [metatagsdir/*]
1375
  Parent=General Crawlers
1376
  Browser="metatagsdir"
 
1377
 
1378
  [Microsoft Windows Network Diagnostics]
1379
  Parent=General Crawlers
1380
  Browser="Microsoft Windows Network Diagnostics"
 
1381
 
1382
  [Miva (AlgoFeedback@miva.com)]
1383
  Parent=General Crawlers
1387
  Parent=General Crawlers
1388
  Browser="Goo"
1389
 
1390
+ [Mozdex/0.7*]
1391
  Parent=General Crawlers
1392
  Browser="Mozdex"
1393
 
 
 
 
 
1394
  [Mozilla/* (compatible; WebCapture*)]
1395
  Parent=General Crawlers
1396
  Browser="WebCapture"
1397
 
1398
+ [Mozilla/*(*redditbot/*http://www.reddit.com/feedback*)]
1399
+ Parent=General Crawlers
1400
+ Browser="Reddit"
1401
+
1402
  [Mozilla/4.0 (compatible; DepSpid/*)]
1403
  Parent=General Crawlers
1404
  Browser="DepSpid"
1406
  [Mozilla/4.0 (compatible; MSIE 4.01; Vonna.com b o t)]
1407
  Parent=General Crawlers
1408
  Browser="Vonna.com"
 
1409
 
1410
  [Mozilla/4.0 (compatible; MSIE 4.01; Windows95)]
1411
  Parent=General Crawlers
1412
+ Browser="Generic Crawler"
 
 
 
1413
  Win32=true
1414
 
1415
  [Mozilla/4.0 (compatible; MyFamilyBot/*)]
1422
 
1423
  [Mozilla/4.0 (compatible; Scumbot/*; Linux/*)]
1424
  Parent=General Crawlers
1425
+ Browser="Generic Crawler"
1426
 
1427
  [Mozilla/4.0 (compatible; Spider; Linux)]
1428
  Parent=General Crawlers
1429
+ Browser="Generic Crawler"
1430
 
1431
  [Mozilla/4.0 (compatible; Win32)]
1432
  Parent=General Crawlers
1433
  Browser="Unknown Crawler"
 
 
 
 
 
 
 
 
 
1434
 
1435
  [Mozilla/5.0 (*http://gnomit.com/) Gecko/* Gnomit/1.0]
1436
  Parent=General Crawlers
1437
  Browser="Gnomit"
1438
+
1439
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) ADM/*]
1440
+ Parent=General Crawlers
1441
+ Browser="Adobe Dialog Manager"
1442
+ Platform="MacOSX"
1443
 
1444
  [Mozilla/5.0 (compatible; *; http://www.80legs.com/spider.html;) Gecko/*]
1445
  Parent=General Crawlers
1448
  [Mozilla/5.0 (compatible; AboutUsBot/*)]
1449
  Parent=General Crawlers
1450
  Browser="AboutUsBot"
1451
+
1452
+ [Mozilla/5.0 (compatible; AdHitz; http://adhitz.com/)]
1453
+ Parent=General Crawlers
1454
+ Browser="AdHitz"
1455
+
1456
+ [Mozilla/5.0 (compatible; aiHitBot*/*; +http://www.aihit.com/)]
1457
+ Parent=General Crawlers
1458
+ Browser="aiHitBot"
1459
 
1460
  [Mozilla/5.0 (compatible; BuzzRankingBot/*)]
1461
  Parent=General Crawlers
1462
  Browser="BuzzRankingBot"
 
1463
 
1464
+ [Mozilla/5.0 (compatible; ClixSense; http://www.clixsense.com/)]
1465
+ Parent=General Crawlers
1466
+ Browser="ClixSense"
1467
+
1468
+ [Mozilla/5.0 (compatible; Crawly/1.*; +http://*/crawler.html)]
1469
+ Parent=General Crawlers
1470
+ Browser="Crawly"
1471
+
1472
+ [Mozilla/5.0 (compatible; Diffbot/0.1; +http://www.diffbot.com)]
1473
  Parent=General Crawlers
1474
  Browser="Diffbot"
1475
 
1476
+ [Mozilla/5.0 (compatible; Ezooms/1.0; ezooms.bot@gmail.com)]
1477
+ Parent=General Crawlers
1478
+ Browser="Ezooms"
1479
+ Version=1.0
1480
+ MajorVer=1
1481
+ MinorVer=0
1482
+
1483
  [Mozilla/5.0 (compatible; FirstSearchBot/1.0; *)]
1484
  Parent=General Crawlers
1485
  Browser="FirstSearchBot"
1486
 
1487
+ [mozilla/5.0 (compatible; genevabot +http://www.healthdash.com)]
1488
  Parent=General Crawlers
1489
  Browser="Healthdash"
1490
 
1491
  [Mozilla/5.0 (compatible; JadynAveBot; *http://www.jadynave.com/robot*]
1492
  Parent=General Crawlers
1493
  Browser="JadynAveBot"
 
1494
 
1495
  [Mozilla/5.0 (compatible; Kyluka crawl; http://www.kyluka.com/crawl.html; crawl@kyluka.com)]
1496
  Parent=General Crawlers
1497
  Browser="Kyluka"
1498
 
1499
+ [Mozilla/5.0 (compatible; LegalAnalysisAgent/1.*; http://www.legalx.net)]
1500
+ Parent=General Crawlers
1501
+ Browser="LegalAnalysisAgent"
1502
+
1503
  [Mozilla/5.0 (compatible; MJ12bot/v1.*)]
1504
  Parent=General Crawlers
1505
  Browser="MJ12bot"
 
1506
 
1507
  [Mozilla/5.0 (compatible; MSIE 7.0 ?http://www.europarchive.org)]
1508
  Parent=General Crawlers
1509
  Browser="Europe Web Archive"
1510
 
1511
+ [Mozilla/5.0 (compatible; MSIE 7.0; MSIE 6.0; ScanAlert; +http://www.scanalert.com/bot.jsp) Firefox/*]
1512
+ Parent=General Crawlers
1513
+ Browser="McAffee Scan Alert"
1514
+
1515
+ [Mozilla/5.0 (compatible; Nigma.ru/*; crawler@nigma.ru)]
1516
+ Parent=General Crawlers
1517
+ Browser="Nigma.ru"
1518
+
1519
  [Mozilla/5.0 (compatible; Plukkie/1.?; http://www.botje.com/plukkie.htm)]
1520
  Parent=General Crawlers
1521
  Browser="Plukkie"
1522
 
1523
+ [Mozilla/5.0 (compatible; SEODat/0.* http://crawler.seodat.com)]
1524
+ Parent=General Crawlers
1525
+ Browser="SEODat"
1526
+
1527
  [Mozilla/5.0 (compatible; Seznam screenshot-generator 2.0;*)]
1528
  Parent=General Crawlers
1529
  Browser="Seznam screenshot-generator"
1530
+
1531
+ [Mozilla/5.0 (compatible; spbot/*; +http://www.seoprofiler.com/bot/ )]
1532
+ Parent=General Crawlers
1533
+ Browser="SEOprofiler"
1534
+
1535
+ [Mozilla/5.0 (compatible; SuchbaerBot/0.*; +http://bot.suchbaer.de/info.html)]
1536
+ Parent=General Crawlers
1537
+ Browser="SuchbaerBot"
1538
+
1539
+ [Mozilla/5.0 (compatible; TweetedTimes Bot/1.0; +http://tweetedtimes.com)]
1540
+ Parent=General Crawlers
1541
+ Browser="TweetedTimes Bot"
1542
+ Version=1.0
1543
+ MajorVer=1
1544
+ MinorVer=0
1545
 
1546
  [Mozilla/5.0 (compatible; Twingly Recon; http://www.twingly.com/)]
1547
  Parent=General Crawlers
1548
  Browser="Twingly Recon"
1549
 
1550
+ [Mozilla/5.0 (compatible; unwrapbot/2.*; +http://www.unwrap.jp*)]
1551
  Parent=General Crawlers
1552
  Browser="UnWrap"
1553
 
1558
  [Mozilla/5.0 (compatible; Viralheat Bot/*) ]
1559
  Parent=General Crawlers
1560
  Browser="Viralheat"
 
1561
 
1562
  [Mozilla/5.0 (compatible; Webbot/*)]
1563
  Parent=General Crawlers
1564
  Browser="Webbot.ru"
 
1565
 
1566
  [n4p_bot*]
1567
  Parent=General Crawlers
1574
  [NetCarta_WebMapper/*]
1575
  Parent=General Crawlers
1576
  Browser="NetCarta_WebMapper"
 
1577
 
1578
  [Netchart Adv Crawler*]
1579
  Parent=General Crawlers
1580
  Browser="Netchart Adv Crawler"
 
1581
 
1582
  [NetID.com Bot*]
1583
  Parent=General Crawlers
1584
  Browser="NetID.com Bot"
 
1585
 
1586
  [neTVision AG andreas.heidoetting@thomson-webcast.net]
1587
  Parent=General Crawlers
1594
  [nicebot]
1595
  Parent=General Crawlers
1596
  Browser="nicebot"
 
1597
 
1598
  [niXXieBot?Foster*]
1599
  Parent=General Crawlers
1602
  [Nozilla/P.N (Just for IDS woring)]
1603
  Parent=General Crawlers
1604
  Browser="Nozilla/P.N"
1605
+
1606
+ [NSO_Debugger_User/2.0]
1607
+ Parent=General Crawlers
1608
+ Browser="NSO_Debugger_User"
1609
 
1610
  [Nudelsalat/*]
1611
  Parent=General Crawlers
1612
  Browser="Nudelsalat"
 
1613
 
1614
  [NV32ts]
1615
  Parent=General Crawlers
1616
  Browser="NV32ts"
 
1617
 
1618
  [Ocelli/*]
1619
  Parent=General Crawlers
1626
  [Oracle Enterprise Search]
1627
  Parent=General Crawlers
1628
  Browser="Oracle Enterprise Search"
 
1629
 
1630
  [Oracle Ultra Search]
1631
  Parent=General Crawlers
1634
  [Pajaczek/*]
1635
  Parent=General Crawlers
1636
  Browser="Pajaczek"
 
1637
 
1638
  [panscient.com]
1639
  Parent=General Crawlers
1640
  Browser="panscient.com"
 
1641
 
1642
  [Patwebbot (http://www.herz-power.de/technik.html)]
1643
  Parent=General Crawlers
1650
  [Pete-Spider/1.*]
1651
  Parent=General Crawlers
1652
  Browser="Pete-Spider"
 
1653
 
1654
  [PhpDig/*]
1655
  Parent=General Crawlers
1658
  [PlantyNet_WebRobot*]
1659
  Parent=General Crawlers
1660
  Browser="PlantyNet"
 
 
 
1661
 
1662
+ [PluckItCrawler/*]
1663
  Parent=General Crawlers
1664
+ Browser="PluckItCrawler"
1665
  isMobileDevice=true
1666
 
1667
  [PMAFind]
1668
  Parent=General Crawlers
1669
  Browser="PMAFind"
 
1670
 
1671
  [Poodle_predictor_1.0]
1672
  Parent=General Crawlers
1675
  [QuickFinder Crawler]
1676
  Parent=General Crawlers
1677
  Browser="QuickFinder"
 
1678
 
1679
  [Radiation Retriever*]
1680
  Parent=General Crawlers
1681
  Browser="Radiation Retriever"
 
1682
 
1683
  [RedCarpet/*]
1684
  Parent=General Crawlers
1685
  Browser="RedCarpet"
 
1686
 
1687
  [RixBot (http://babelserver.org/rix)]
1688
  Parent=General Crawlers
1689
  Browser="RixBot"
1690
 
1691
+ [roboobot/1.* (roboo; http://wap.roboo.com; winter.pi@roboo.com)]
1692
+ Parent=General Crawlers
1693
+ Browser="roboo"
1694
+
1695
+ [rogerbot/* (http://www.seomoz.org, rogerbot-crawler@seomoz.org)]
1696
+ Parent=General Crawlers
1697
+ Browser="rogerbot"
1698
+
1699
  [Rome Client (http://tinyurl.com/64t5n) Ver: 0.*]
1700
  Parent=General Crawlers
1701
  Browser="TinyURL"
1707
  [ScollSpider/2.*]
1708
  Parent=General Crawlers
1709
  Browser="ScollSpider"
 
1710
 
1711
  [Search Fst]
1712
  Parent=General Crawlers
1715
  [searchbot admin@google.com]
1716
  Parent=General Crawlers
1717
  Browser="searchbot"
 
1718
 
1719
  [Seeker.lookseek.com]
1720
  Parent=General Crawlers
1721
  Browser="LookSeek"
 
1722
 
1723
  [semanticdiscovery/*]
1724
  Parent=General Crawlers
1727
  [SeznamBot/*]
1728
  Parent=General Crawlers
1729
  Browser="SeznamBot"
 
1730
 
1731
  [Shelob (shelob@gmx.net)]
1732
  Parent=General Crawlers
1733
  Browser="Shelob"
 
1734
 
1735
  [shelob v1.*]
1736
  Parent=General Crawlers
1737
  Browser="shelob"
 
1738
 
1739
  [ShopWiki/1.0*]
1740
  Parent=General Crawlers
1746
  [ShowXML/1.0 libwww/5.4.0]
1747
  Parent=General Crawlers
1748
  Browser="ShowXML"
 
1749
 
1750
  [sitecheck.internetseer.com*]
1751
  Parent=General Crawlers
1758
  [sohu*]
1759
  Parent=General Crawlers
1760
  Browser="sohu-search"
 
1761
 
1762
  [SpankBot*]
1763
  Parent=General Crawlers
1764
  Browser="SpankBot"
 
1765
 
1766
  [spider (tspyyp@tom.com)]
1767
  Parent=General Crawlers
1768
  Browser="spider (tspyyp@tom.com)"
 
1769
 
1770
  [Sunrise/0.*]
1771
  Parent=General Crawlers
1772
  Browser="Sunrise"
 
1773
 
1774
  [Superpages URL Verification Engine]
1775
  Parent=General Crawlers
1778
  [Surf Knight]
1779
  Parent=General Crawlers
1780
  Browser="Surf Knight"
 
1781
 
1782
  [SurveyBot/*]
1783
  Parent=General Crawlers
1784
  Browser="SurveyBot"
 
1785
 
1786
  [SynapticSearch/AI Crawler 1.?]
1787
  Parent=General Crawlers
1788
  Browser="SynapticSearch"
 
1789
 
1790
  [SyncMgr]
1791
  Parent=General Crawlers
1798
  [Talkro Web-Shot/*]
1799
  Parent=General Crawlers
1800
  Browser="Talkro Web-Shot"
 
1801
 
1802
  [Tasap-image-robot/0.* (http://www.tasap.com)]
1803
  Parent=General Crawlers
1804
  Browser="Tasap-image-robot"
 
1805
 
1806
  [Tecomi Bot (http://www.tecomi.com/bot.htm)]
1807
  Parent=General Crawlers
1814
  [TheInformant*]
1815
  Parent=General Crawlers
1816
  Browser="TheInformant"
 
1817
 
1818
  [Toata dragostea*]
1819
  Parent=General Crawlers
1820
  Browser="Toata dragostea"
 
1821
 
1822
  [Tutorial Crawler*]
1823
  Parent=General Crawlers
1824
+ Browser="Tutorial Crawler"
1825
+
1826
+ [Twitterbot/*]
1827
+ Parent=General Crawlers
1828
+ Browser="Twitterbot"
1829
 
1830
  [UbiCrawler/*]
1831
  Parent=General Crawlers
1837
 
1838
  [User*Agent:*]
1839
  Parent=General Crawlers
1840
+ Browser="Generic Crawler"
1841
 
1842
  [USER_AGENT]
1843
  Parent=General Crawlers
1844
+ Browser="Generic Crawler"
 
1845
 
1846
  [VadixBot]
1847
  Parent=General Crawlers
1850
  [VengaBot/*]
1851
  Parent=General Crawlers
1852
  Browser="VengaBot"
 
1853
 
1854
  [Visicom Toolbar]
1855
  Parent=General Crawlers
1859
  Parent=General Crawlers
1860
  Browser="geek-tools.org"
1861
 
 
 
 
 
1862
  [Webclipping.com]
1863
  Parent=General Crawlers
1864
  Browser="Webclipping.com"
 
1865
 
1866
+ [webcollage*]
1867
  Parent=General Crawlers
1868
  Browser="WebCollage"
 
1869
 
1870
  [WebCrawler_1.*]
1871
  Parent=General Crawlers
1886
  [West Wind Internet Protocols*]
1887
  Parent=General Crawlers
1888
  Browser="Versatel"
 
1889
 
1890
  [WhizBang]
1891
  Parent=General Crawlers
1895
  Parent=General Crawlers
1896
  Browser="Willow Internet Crawler"
1897
 
1898
+ [WIRE/* (Linux*Bot,Robot,Spider,Crawler)]
1899
  Parent=General Crawlers
1900
  Browser="WIRE"
 
1901
 
1902
  [www.fi crawler, contact crawler@www.fi]
1903
  Parent=General Crawlers
1906
  [Xerka WebBot v1.*]
1907
  Parent=General Crawlers
1908
  Browser="Xerka"
 
1909
 
1910
  [XML Sitemaps Generator*]
1911
  Parent=General Crawlers
1914
  [XSpider*]
1915
  Parent=General Crawlers
1916
  Browser="XSpider"
 
1917
 
1918
  [YooW!/* (?http://www.yoow.eu)]
1919
  Parent=General Crawlers
1920
  Browser="YooW!"
1921
+
1922
+ [yp-crawl@attinteractive.com]
1923
+ Parent=General Crawlers
1924
+ Browser="YellowPages"
1925
 
1926
  [HiddenMarket-*]
1927
  Parent=General RSS
1928
  Browser="HiddenMarket"
 
1929
 
1930
  [FOTOCHECKER]
1931
  Parent=Image Crawlers
1932
  Browser="FOTOCHECKER"
 
1933
 
1934
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Search Engines
1935
 
1936
  [Search Engines]
1937
  Parent=DefaultProperties
1938
+ Comment="Search Engines"
1939
  Browser="Search Engines"
1940
  Crawler=true
1941
 
1969
 
1970
  [AnswerBus (http://www.answerbus.com/)]
1971
  Parent=Search Engines
1972
+ Browser="AnswerBus"
1973
 
1974
  [antibot-V*]
1975
  Parent=Search Engines
1983
  Parent=Search Engines
1984
  Browser="ASPSeek"
1985
 
1986
+ [Atrax Solutions atraxbot/0.*; http://www.atraxsolutions.com/atraxbot]
1987
+ Parent=Search Engines
1988
+ Browser="Atrax Solutions"
1989
+
1990
  [BigCliqueBOT/*]
1991
  Parent=Search Engines
1992
  Browser="BigClique.com/BigClic.com"
2002
  [Busiversebot/v1.0 (http://www.busiverse.com/bot.php)]
2003
  Parent=Search Engines
2004
  Browser="Busiversebot"
 
2005
 
2006
+ [CatchBot/*; +http://www.catchbot.com]
2007
  Parent=Search Engines
2008
  Browser="CatchBot"
2009
  Version=1.0
2065
  [Fooky.com/ScorpionBot/ScoutOut;*]
2066
  Parent=Search Engines
2067
  Browser="ScorpionBot"
 
2068
 
2069
  [FyberSpider*]
2070
  Parent=Search Engines
2071
  Browser="FyberSpider"
 
2072
 
2073
  [Gaisbot/*]
2074
  Parent=Search Engines
2097
  [GurujiBot/1.*]
2098
  Parent=Search Engines
2099
  Browser="GurujiBot"
 
2100
 
2101
  [HenryTheMiragoRobot*]
2102
  Parent=Search Engines
2113
  [HyperEstraier/*]
2114
  Parent=Search Engines
2115
  Browser="HyperEstraier"
 
2116
 
2117
  [i1searchbot/*]
2118
  Parent=Search Engines
2129
  [InfociousBot (?http://corp.infocious.com/tech_crawler.php)]
2130
  Parent=Search Engines
2131
  Browser="InfociousBot"
 
2132
 
2133
  [Infoseek SideWinder/*]
2134
  Parent=Search Engines
2145
  [Kolinka Forum Search (www.kolinka.com)]
2146
  Parent=Search Engines
2147
  Browser="Kolinka Forum Search"
 
2148
 
2149
  [KRetrieve/]
2150
  Parent=Search Engines
2151
  Browser="KRetrieve"
 
2152
 
2153
  [LapozzBot/*]
2154
  Parent=Search Engines
2155
  Browser="LapozzBot"
2156
 
2157
+ [Linguee Bot (http://www.linguee.com/bot; bot@linguee.com)]
2158
+ Parent=Search Engines
2159
+ Browser="Linguee Bot"
2160
+
2161
  [Linknzbot*]
2162
  Parent=Search Engines
2163
  Browser="Linknzbot"
2188
  [Mozilla/0.9* no dos :) (Linux*)]
2189
  Parent=Search Engines
2190
  Browser="goliat"
 
2191
 
2192
  [Mozilla/4.0 (compatible; *Vagabondo/*; webcrawler at wise-guys dot nl; *)]
2193
  Parent=Search Engines
2200
  [Mozilla/4.0 (compatible; http://search.thunderstone.com/texis/websearch/about.html)]
2201
  Parent=Search Engines
2202
  Browser="ThunderStone"
 
2203
 
2204
  [Mozilla/4.0 (compatible; MSIE *; Windows NT; Girafabot; girafabot at girafa dot com; http://www.girafa.com)]
2205
  Parent=Search Engines
2217
  [Mozilla/5.0 (*) VoilaBot*]
2218
  Parent=Search Engines
2219
  Browser="VoilaBot"
 
2220
 
2221
  [Mozilla/5.0 (compatible; ActiveTouristBot*; http://www.activetourist.com)]
2222
  Parent=Search Engines
2223
  Browser="ActiveTouristBot"
2224
 
2225
+ [Mozilla/5.0 (compatible; AhrefsBot/*; +http://ahrefs.com/robot/)]
2226
+ Parent=Search Engines
2227
+ Browser="AhrefsBot"
2228
+
2229
+ [Mozilla/5.0 (compatible; ayna-crawler*)]
2230
  Parent=Search Engines
2231
  Browser="ayna-crawler"
2232
 
2238
  Parent=Search Engines
2239
  Browser="Charlotte"
2240
  Beta=true
 
2241
 
2242
  [Mozilla/5.0 (compatible; CXL-FatAssANT*)]
2243
  Parent=Search Engines
2258
  Parent=Search Engines
2259
  Browser="Lipperhey Spider"
2260
 
2261
+ [Mozilla/5.0 (compatible; Mail.RU/*)]
2262
+ Parent=Search Engines
2263
+ Browser="Mail.RU"
2264
+
2265
  [Mozilla/5.0 (compatible; MojeekBot/*; http://www.mojeek.com/bot.html)]
2266
  Parent=Search Engines
2267
  Browser="MojeekBot"
2273
  [Mozilla/5.0 (compatible; OsO;*]
2274
  Parent=Search Engines
2275
  Browser="Octopodus"
 
2276
 
2277
  [Mozilla/5.0 (compatible; ParchBot/1.0;*)]
2278
  Parent=Search Engines
2286
  Parent=Search Engines
2287
  Browser="Quantcastbot"
2288
 
2289
+ [Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)]
2290
  Parent=Search Engines
2291
  Browser="ScoutJet"
 
2292
 
2293
+ [Mozilla/5.0 (compatible; Scrubby/*; +http://www.scrubtheweb.com/abs/meta-check.html)]
2294
  Parent=Search Engines
2295
  Browser="Scrubby"
 
2296
 
2297
  [Mozilla/5.0 (compatible; YoudaoBot/1.*; http://www.youdao.com/help/webmaster/spider/*)]
2298
  Parent=Search Engines
2304
  [Mozilla/5.0 (Twiceler*)]
2305
  Parent=Search Engines
2306
  Browser="Twiceler"
 
2307
 
2308
  [Mozilla/5.0 CostaCider Search*]
2309
  Parent=Search Engines
2320
  [NextGenSearchBot*(for information visit *)]
2321
  Parent=Search Engines
2322
  Browser="ZoomInfo"
 
2323
 
2324
  [Norbert the Spider(Burf.com)]
2325
  Parent=Search Engines
2333
  Parent=Search Engines
2334
  Browser="ObjectsSearch"
2335
 
2336
+ [OOZBOT/0.20 ( http://www.setooz.com/oozbot.html ; agentname at setooz dot_com )]
2337
+ Parent=Search Engines
2338
+ Browser="Setooz"
2339
+
2340
  [OpenISearch/1.*]
2341
  Parent=Search Engines
2342
  Browser="OpenISearch (Amazon)"
2389
  Parent=Search Engines
2390
  Browser="Seekbot"
2391
 
2392
+ [SiteSpider]
2393
  Parent=Search Engines
2394
  Browser="SiteSpider"
2395
 
2396
+ [Sosospider?(+http://help.soso.com/webspider.htm)]
2397
+ Parent=Search Engines
2398
+ Browser="Sosospider"
2399
+
2400
  [Spinne/*]
2401
  Parent=Search Engines
2402
  Browser="Spinne"
2408
  [Sqeobot/0.*]
2409
  Parent=Search Engines
2410
  Browser="Branzel"
 
2411
 
2412
  [SquigglebotBot/*]
2413
  Parent=Search Engines
2414
  Browser="SquigglebotBot"
 
2415
 
2416
  [StackRambler/*]
2417
  Parent=Search Engines
2432
  [Tarantula/*]
2433
  Parent=Search Engines
2434
  Browser="Tarantula"
 
2435
 
2436
  [TerrawizBot/*]
2437
  Parent=Search Engines
2438
  Browser="TerrawizBot"
 
2439
 
2440
  [Tkensaku/*]
2441
  Parent=Search Engines
2444
  [TMCrawler]
2445
  Parent=Search Engines
2446
  Browser="TMCrawler"
2447
+
2448
+ [TwengaBot-Discover (http://www.twenga.fr/bot-discover.html)]
2449
+ Parent=Search Engines
2450
+ Browser="TwengaBot-Discover"
2451
 
2452
  [Twingly Recon]
2453
  Parent=Search Engines
2454
  Browser="Twingly Recon"
 
2455
 
2456
  [updated/*]
2457
  Parent=Search Engines
2476
  [wadaino.jp-crawler*]
2477
  Parent=Search Engines
2478
  Browser="wadaino.jp"
 
2479
 
2480
  [WebAlta Crawler/*]
2481
  Parent=Search Engines
2482
  Browser="WebAlta Crawler"
 
2483
 
2484
  [WebCorp/*]
2485
  Parent=Search Engines
2486
  Browser="WebCorp"
 
2487
 
2488
  [webcrawl.net]
2489
  Parent=Search Engines
2492
  [WISEbot/*]
2493
  Parent=Search Engines
2494
  Browser="WISEbot"
 
2495
 
2496
  [Wotbox/*]
2497
  Parent=Search Engines
2512
  [YodaoBot/*]
2513
  Parent=Search Engines
2514
  Browser="YodaoBot"
 
2515
 
2516
  [ZeBot_www.ze.bz*]
2517
  Parent=Search Engines
2529
  Parent=Translators
2530
  Browser="ATA-Translation-Service"
2531
 
2532
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BitTorrent Clients
2533
+
2534
+ [BitTorrent Clients]
2535
+ Parent=DefaultProperties
2536
+ Comment="BitTorrent Clients"
2537
+ Browser=""
2538
+ Crawler=true
2539
+
2540
+ [Azureus*]
2541
+ Parent=BitTorrent Clients
2542
+ Browser="Azureus"
2543
+
2544
+ [BitComet/*]
2545
+ Parent=BitTorrent Clients
2546
+ Browser="BitComet"
2547
+
2548
+ [BitTornado/*]
2549
+ Parent=BitTorrent Clients
2550
+ Browser="BitTornado"
2551
+
2552
+ [BitTorrent/*]
2553
+ Parent=BitTorrent Clients
2554
+ Browser="BitTorrent"
2555
+
2556
+ [BitTorrentMac/*]
2557
+ Parent=BitTorrent Clients
2558
+ Browser="BitTorrentMac"
2559
+
2560
+ [BTSP/*]
2561
+ Parent=BitTorrent Clients
2562
+ Browser="BTSP"
2563
+
2564
+ [Deluge*]
2565
+ Parent=BitTorrent Clients
2566
+ Browser="Deluge"
2567
+
2568
+ [FDM*]
2569
+ Parent=BitTorrent Clients
2570
+ Browser="FDM"
2571
+
2572
+ [KTorrent/*]
2573
+ Parent=BitTorrent Clients
2574
+ Browser="KTorrent"
2575
+
2576
+ [libtorrent/*]
2577
+ Parent=BitTorrent Clients
2578
+ Browser="libtorrent"
2579
+
2580
+ [MediaGet*]
2581
+ Parent=BitTorrent Clients
2582
+ Browser="MediaGet"
2583
+
2584
+ [rtorrent/*]
2585
+ Parent=BitTorrent Clients
2586
+ Browser="rtorrent"
2587
+
2588
+ [Transmission/*]
2589
+ Parent=BitTorrent Clients
2590
+ Browser="Transmission"
2591
+
2592
+ [uTorrent/*]
2593
+ Parent=BitTorrent Clients
2594
+ Browser="uTorrent"
2595
+
2596
+ [uTorrentMac/*]
2597
+ Parent=BitTorrent Clients
2598
+ Browser="uTorrentMac"
2599
 
2600
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Hatena
2601
 
2602
  [Hatena]
2603
  Parent=DefaultProperties
2604
+ Comment="Hatena"
2605
  Browser="Hatena"
 
2606
  Crawler=true
2607
 
2608
  [Feed::Find/*]
2639
 
2640
  [Internet Archive]
2641
  Parent=DefaultProperties
2642
+ Comment="Internet Archive"
2643
  Browser="Internet Archive"
2644
  Frames=true
2645
  IFrames=true
2646
  Tables=true
 
2647
  Crawler=true
2648
 
2649
  [*heritrix*]
2650
  Parent=Internet Archive
2651
  Browser="Heritrix"
 
2652
 
2653
  [ia_archiver*]
2654
  Parent=Internet Archive
2658
  Parent=Internet Archive
2659
  Browser="InternetArchive"
2660
 
2661
+ [Mozilla/5.0 (compatible; archive.org_bot*)]
2662
  Parent=Internet Archive
2663
 
2664
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nutch
2665
 
2666
  [Nutch]
2667
  Parent=DefaultProperties
2668
+ Comment="Nutch"
2669
  Browser="Nutch"
2670
+ Frames=true
2671
+ Tables=true
2672
  Crawler=true
2673
 
2674
  [*Nutch*]
2675
  Parent=Nutch
 
2676
 
2677
  [CazoodleBot/*]
2678
  Parent=Nutch
2689
 
2690
  [Webaroo]
2691
  Parent=DefaultProperties
2692
+ Comment="Webaroo"
2693
  Browser="Webaroo"
2694
+ Frames=true
2695
+ Tables=true
2696
+ Crawler=true
2697
 
2698
  [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Webaroo/*)]
2699
  Parent=Webaroo
2700
  Browser="Webaroo"
2701
+ Platform_Version=6.0
2702
 
2703
  [Mozilla/5.0 (Windows; U; Windows *; *; rv:*) Gecko/* Firefox/* webaroo/*]
2704
  Parent=Webaroo
2708
 
2709
  [Word Press]
2710
  Parent=DefaultProperties
2711
+ Comment="Word Press"
2712
  Browser="Word Press"
 
 
 
 
 
2713
  Frames=true
 
2714
  Tables=true
 
 
 
 
 
 
 
 
 
 
2715
  Crawler=true
2716
 
2717
  [WordPress-B-/2.*]
2746
 
2747
  [Copyright/Plagiarism]
2748
  Parent=DefaultProperties
2749
+ Comment="Copyright/Plagiarism"
2750
  Browser="Copyright/Plagiarism"
 
2751
  Crawler=true
2752
 
2753
  [BDFetch]
2802
 
2803
  [DNS Tools]
2804
  Parent=DefaultProperties
2805
+ Comment="DNS Tools"
2806
  Browser="DNS Tools"
2807
  Crawler=true
2808
 
2822
 
2823
  [Download Managers]
2824
  Parent=DefaultProperties
2825
+ Comment="Download Managers"
2826
  Browser="Download Managers"
 
 
 
 
2827
  Crawler=true
2828
 
2829
  [A1 Website Download/1.* (*) miggibot]
2846
  Parent=Download Managers
2847
  Browser="BitBeamer"
2848
 
 
 
 
 
2849
  [DA *]
2850
  Parent=Download Managers
2851
  Browser="Download Accelerator"
3046
 
3047
  [E-Mail Harvesters]
3048
  Parent=DefaultProperties
3049
+ Comment="E-Mail Harvesters"
3050
  Browser="E-Mail Harvesters"
 
 
 
 
3051
  Crawler=true
3052
 
3053
  [*E-Mail Address Extractor*]
3154
 
3155
  [Feeds Blogs]
3156
  Parent=DefaultProperties
3157
+ Comment="Feeds Blogs"
3158
  Browser="Feeds Blogs"
3159
  isSyndicationReader=true
3160
  Crawler=true
3207
 
3208
  [Feeds Syndicators]
3209
  Parent=DefaultProperties
3210
+ Comment="Feeds Syndicators"
3211
  Browser="Feeds Syndicators"
3212
  isSyndicationReader=true
3213
+ Crawler=true
3214
 
3215
  [*LinkLint*]
3216
  Parent=Feeds Syndicators
3218
 
3219
  [*NetNewsWire/*]
3220
  Parent=Feeds Syndicators
3221
+ Browser="NetNewsWire"
3222
 
3223
  [*NetVisualize*]
3224
  Parent=Feeds Syndicators
3231
  [AideRSS/2.0 (aiderss.com)]
3232
  Parent=Feeds Syndicators
3233
  Browser="AideRSS"
 
3234
 
3235
  [Akregator/*]
3236
  Parent=Feeds Syndicators
3237
  Browser="Akregator"
3238
 
3239
+ [Apple-PubSub/*]
3240
+ Parent=Feeds Syndicators
3241
+ Browser="Apple-PubSub"
3242
+
3243
  [AppleSyndication/*]
3244
  Parent=Feeds Syndicators
3245
  Browser="Safari RSS"
3246
+ Platform="MacOSX"
3247
 
3248
  [Cocoal.icio.us/* (*)*]
3249
  Parent=Feeds Syndicators
3250
  Browser="Cocoal.icio.us"
 
3251
 
3252
  [Feed43 Proxy/* (*)]
3253
  Parent=Feeds Syndicators
3260
  [FeedDemon/* (*)]
3261
  Parent=Feeds Syndicators
3262
  Browser="FeedDemon"
3263
+ Platform="Win32"
3264
 
3265
  [FeedDigest/* (*)]
3266
  Parent=Feeds Syndicators
3310
  [JetBrains Omea Reader*]
3311
  Parent=Feeds Syndicators
3312
  Browser="Omea Reader"
 
3313
 
3314
+ [Liferea/1.* (Linux; *; http://liferea.sf.net/)]
3315
  Parent=Feeds Syndicators
3316
  Browser="Liferea"
 
3317
 
3318
  [livedoor FeedFetcher/0.0* (http://reader.livedoor.com/;*)]
3319
  Parent=Feeds Syndicators
3329
  [Mobitype * (compatible; Mozilla/*; MSIE *.*; Windows *)]
3330
  Parent=Feeds Syndicators
3331
  Browser="Mobitype"
3332
+ Platform="Win32"
3333
 
3334
  [Mozilla/5.0 (*; Rojo *; http://www.rojo.com/corporate/help/agg; *)*]
3335
  Parent=Feeds Syndicators
3425
  [Strategic Board Bot (?http://www.strategicboard.com)]
3426
  Parent=Feeds Syndicators
3427
  Browser="Strategic Board Bot"
 
3428
 
3429
  [TargetYourNews.com bot]
3430
  Parent=Feeds Syndicators
3454
 
3455
  [General RSS]
3456
  Parent=DefaultProperties
3457
+ Comment="General RSS"
3458
  Browser="General RSS"
3459
  isSyndicationReader=true
3460
+ Crawler=true
3461
 
3462
  [AideRSS/1.0 (aiderss.com); * subscribers]
3463
  Parent=General RSS
3466
  MajorVer=1
3467
  MinorVer=0
3468
 
3469
+ [BlijbolReallySimpleAggregator/2.0*]
3470
+ Parent=General RSS
3471
+ Browser="BlijbolReallySimpleAggregator"
3472
+
3473
  [CC Metadata Scaper http://wiki.creativecommons.org/Metadata_Scraper]
3474
  Parent=General RSS
3475
  Browser="CC Metadata Scaper"
3486
  Parent=General RSS
3487
  Browser="Ruunk"
3488
 
3489
+ [UniversalFeedParser/4.* +http://feedparser.org/]
3490
  Parent=General RSS
3491
+ Browser="UniversalFeedParser"
 
3492
 
3493
+ [Windows-RSS-Platform/2.0 (MSIE ?.0; Windows NT *.*)]
3494
+ Parent=General RSS
3495
+ Browser="Windows-RSS-Platform"
3496
+ Version=2.0
3497
+ MajorVer=2
3498
+ MinorVer=0
3499
+ Platform="Win32"
 
 
3500
 
3501
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Validation Checkers
3502
 
3503
  [HTML Validators]
3504
  Parent=DefaultProperties
3505
+ Comment="Validation Checkers"
3506
  Browser="HTML Validators"
 
 
 
3507
  Crawler=true
3508
 
3509
  [(HTML Validator http://www.searchengineworld.com/validator/)]
3510
  Parent=HTML Validators
3511
  Browser="Search Engine World HTML Validator"
3512
 
3513
+ [FeedValidator/*]
3514
  Parent=HTML Validators
3515
  Browser="FeedValidator"
 
 
 
 
 
 
 
3516
 
3517
  [Search Engine World Robots.txt Validator*]
3518
  Parent=HTML Validators
3519
  Browser="Search Engine World Robots.txt Validator"
3520
 
3521
+ [Weblide/*]
 
 
 
 
 
 
 
 
3522
  Parent=HTML Validators
3523
  Browser="Weblide"
 
 
 
3524
  Beta=true
3525
 
3526
  [WebmasterWorld StickyMail Server Header Checker*]
3529
 
3530
  [WWWC/*]
3531
  Parent=HTML Validators
3532
+ Browser="WWWC"
3533
 
3534
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Image Crawlers
3535
 
3536
  [Image Crawlers]
3537
  Parent=DefaultProperties
3538
+ Comment="Image Crawlers"
3539
  Browser="Image Crawlers"
 
 
 
 
3540
  Crawler=true
3541
 
3542
  [*CFNetwork*]
3554
  [CydralSpider/*]
3555
  Parent=Image Crawlers
3556
  Browser="Cydral Web Image Search"
 
3557
 
3558
  [Der gro\xdfe BilderSauger*]
3559
  Parent=Image Crawlers
3575
  Parent=Image Crawlers
3576
  Browser="IconSurf"
3577
 
 
 
 
 
3578
  [Mister PIX*]
3579
  Parent=Image Crawlers
3580
  Browser="Mister PIX"
3581
 
3582
+ [Mozilla/5.0 (compatible; KaloogaBot; http://www.kalooga.com/info.html?page=crawler)]
3583
+ Parent=Image Crawlers
3584
+ Browser="KaloogaBot"
3585
+
3586
  [Mozilla/5.0 (Macintosh; U; *Mac OS X; *) AppleWebKit/* (*) Pandora/2.*]
3587
  Parent=Image Crawlers
3588
  Browser="Pandora"
3595
  Parent=Image Crawlers
3596
  Browser="pixfinder"
3597
 
3598
+ [psbot/* (?http://www.picsearch.com/bot.html)]
3599
+ Parent=Image Crawlers
3600
+ Browser="PicSearchBot"
3601
+
3602
  [rssImagesBot/0.1 (*http://herbert.groot.jebbink.nl/?app=rssImages)]
3603
  Parent=Image Crawlers
3604
  Browser="rssImagesBot"
3619
 
3620
  [Link Checkers]
3621
  Parent=DefaultProperties
3622
+ Comment="Link Checkers"
3623
  Browser="Link Checkers"
 
 
 
3624
  Crawler=true
3625
 
3626
  [!Susie (http://www.sync2it.com/susie)]
3643
  Parent=Link Checkers
3644
  Browser="Powermarks"
3645
 
 
 
 
 
3646
  [*Web Link Validator*]
3647
  Parent=Link Checkers
3648
  Browser="Web Link Validator"
3650
  [*Zeus*]
3651
  Parent=Link Checkers
3652
  Browser="Zeus"
 
3653
 
3654
  [ActiveBookmark *]
3655
  Parent=Link Checkers
3730
  [Link Valet Online*]
3731
  Parent=Link Checkers
3732
  Browser="Link Valet"
 
3733
 
3734
  [LinkAlarm/*]
3735
  Parent=Link Checkers
3746
  [LinkextractorPro*]
3747
  Parent=Link Checkers
3748
  Browser="LinkextractorPro"
 
3749
 
3750
  [LinkLint-checkonly/*]
3751
  Parent=Link Checkers
3770
  [Mozilla/* (compatible; linktiger/*; *http://www.linktiger.com*)]
3771
  Parent=Link Checkers
3772
  Browser="LinkTiger"
 
3773
 
3774
  [Mozilla/4.0 (Compatible); URLBase*]
3775
  Parent=Link Checkers
3782
  [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Web Link Validator*]
3783
  Parent=Link Checkers
3784
  Browser="Web Link Validator"
3785
+ Platform_Version=98
3786
  Win32=true
3787
 
3788
  [Mozilla/4.0 (compatible; MSIE 7.0; Win32) Link Commander 3.0]
3791
  Version=3.0
3792
  MajorVer=3
3793
  MinorVer=0
3794
+ Platform="Win32"
3795
 
3796
  [Mozilla/4.0 (compatible; smartBot/1.*; checking links; *)]
3797
  Parent=Link Checkers
3804
  [Mozilla/5.0 gURLChecker/*]
3805
  Parent=Link Checkers
3806
  Browser="gURLChecker"
 
3807
 
3808
  [Newsgroupreporter LinkCheck]
3809
  Parent=Link Checkers
3816
  [online link validator (http://www.dead-links.com/)]
3817
  Parent=Link Checkers
3818
  Browser="Dead-Links.com"
 
3819
 
3820
  [REL Link Checker*]
3821
  Parent=Link Checkers
3832
  [RPT-HTTPClient/*]
3833
  Parent=Link Checkers
3834
  Browser="RPT-HTTPClient"
 
3835
 
3836
  [SafariBookmarkChecker*(?http://www.coriolis.ch/)]
3837
  Parent=Link Checkers
3838
  Browser="SafariBookmarkChecker"
3839
+ Platform="MacOSX"
3840
  CssVersion=2
 
3841
 
3842
  [Simpy/* (Simpy; http://www.simpy.com/?ref=bot; feedback at simpy dot com)]
3843
  Parent=Link Checkers
3851
  Parent=Link Checkers
3852
  Browser="Susie"
3853
 
3854
+ [URLBase/*]
3855
  Parent=Link Checkers
3856
+ Browser="URLBase"
3857
 
3858
  [VSE/*]
3859
  Parent=Link Checkers
3870
  [Xenu* Link Sleuth*]
3871
  Parent=Link Checkers
3872
  Browser="Xenu's Link Sleuth"
 
3873
 
3874
  [Z-Add Link Checker*]
3875
  Parent=Link Checkers
3879
 
3880
  [Microsoft]
3881
  Parent=DefaultProperties
3882
+ Comment="Microsoft"
3883
  Browser="Microsoft"
3884
+ Crawler=true
3885
 
3886
  [Live (http://www.live.com/)]
3887
  Parent=Microsoft
3888
  Browser="Microsoft Live"
 
3889
  isSyndicationReader=true
3890
 
3891
  [MFC Foundation Class Library*]
3946
  Version=12.0
3947
  MajorVer=12
3948
  MinorVer=0
3949
+ Platform="MacOSX"
3950
 
3951
  [MSN Feed Manager]
3952
  Parent=Microsoft
3953
  Browser="MSN Feed Manager"
 
3954
  isSyndicationReader=true
3955
 
3956
  [MSProxy/*]
3961
 
3962
  [Miscellaneous Browsers]
3963
  Parent=DefaultProperties
3964
+ Comment="Miscellaneous Browsers"
3965
  Browser="Miscellaneous Browsers"
3966
+ Crawler=true
 
 
3967
 
3968
  [*Amiga*]
3969
  Parent=Miscellaneous Browsers
3970
  Browser="Amiga"
3971
+ Platform="Amiga"
3972
 
3973
  [*avantbrowser*]
3974
  Parent=Miscellaneous Browsers
3977
  [12345]
3978
  Parent=Miscellaneous Browsers
3979
  Browser="12345"
 
3980
 
3981
  [1st ZipCommander (Net) - http://www.zipcommander.com/]
3982
  Parent=Miscellaneous Browsers
3996
  IFrames=false
3997
  Tables=false
3998
  BackgroundSounds=false
3999
+ JavaScript=false
4000
  VBScript=false
4001
  JavaApplets=false
 
4002
  ActiveXControls=false
 
4003
  Crawler=false
4004
 
4005
  [Godzilla/* (Basic*; *; Commodore C=64; *; rv:1.*)*]
4014
  Tables=true
4015
  Cookies=true
4016
  BackgroundSounds=true
4017
+ JavaScript=true
4018
  VBScript=true
4019
  JavaApplets=true
 
4020
  ActiveXControls=true
4021
  CssVersion=2
 
4022
 
4023
  [Kopiczek/* (WyderOS*; *)]
4024
  Parent=Miscellaneous Browsers
4025
  Browser="Kopiczek"
4026
+ Platform="WyderOS"
4027
  IFrames=true
4028
+ VBScript=true
4029
  JavaApplets=true
 
4030
  CssVersion=2
 
4031
 
4032
  [Mozilla/* (*) - BrowseX (*)]
4033
  Parent=Miscellaneous Browsers
4036
  [Mozilla/* (Win32;*Escape?*; ?)]
4037
  Parent=Miscellaneous Browsers
4038
  Browser="Escape"
4039
+ Platform="Win32"
4040
 
4041
  [Mozilla/4.0 (compatible; ibisBrowser)]
4042
  Parent=Miscellaneous Browsers
4046
  Parent=Miscellaneous Browsers
4047
  Browser="HistoryHound"
4048
 
4049
+ [Mozilla/5.0 (X11; U; Linux*; *) AppleWebKit/*(KHTML, like Gecko) Safari/* Epiphany/2.30.*]
4050
+ Parent=Miscellaneous Browsers
4051
+ Browser="Epiphany"
4052
+ Version=2.30
4053
+ MajorVer=2
4054
+ MinorVer=30
4055
+ Platform="Linux"
4056
+ Win16=false
4057
+ Win32=false
4058
+ Win64=false
4059
+ IFrames=true
4060
+ VBScript=true
4061
+ JavaApplets=true
4062
+ CssVersion=3
4063
+
4064
  [NetRecorder*]
4065
  Parent=Miscellaneous Browsers
4066
  Browser="NetRecorder"
4090
  Version=1.69
4091
  MajorVer=1
4092
  MinorVer=69
4093
+ Platform="Win16"
4094
  CssVersion=3
 
4095
 
4096
  [*Netcraft Webserver Survey*]
4097
  Parent=Netcraft
4098
  Browser="Netcraft Webserver Survey"
 
4099
 
4100
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Offline Browsers
4101
 
4102
  [Offline Browsers]
4103
  Parent=DefaultProperties
4104
+ Comment="Offline Browsers"
4105
  Browser="Offline Browsers"
 
 
 
 
4106
  Crawler=true
4107
 
4108
  [*Check&Get*]
4141
 
4142
  [Online Scanners]
4143
  Parent=DefaultProperties
4144
+ Comment="Online Scanners"
4145
  Browser="Online Scanners"
 
4146
 
4147
  [JoeDog/* (X11; I; Siege *)]
4148
  Parent=Online Scanners
4149
  Browser="JoeDog"
 
4150
 
4151
  [Morfeus Fucking Scanner]
4152
  Parent=Online Scanners
4168
 
4169
  [Proxy Servers]
4170
  Parent=DefaultProperties
4171
+ Comment="Proxy Servers"
4172
  Browser="Proxy Servers"
 
4173
 
4174
  [*squid*]
4175
  Parent=Proxy Servers
4218
  [Mozilla/5.0 (compatible; del.icio.us-thumbnails/*; *) KHTML/* (like Gecko)]
4219
  Parent=Proxy Servers
4220
  Browser="Yahoo!"
 
4221
  Crawler=true
4222
 
4223
  [Nutscrape]
4235
  [ProxyTester*]
4236
  Parent=Proxy Servers
4237
  Browser="ProxyTester"
 
4238
  Crawler=true
4239
 
4240
  [SilentSurf*]
4261
 
4262
  [Research Projects]
4263
  Parent=DefaultProperties
4264
+ Comment="Research Projects"
4265
  Browser="Research Projects"
 
4266
  Crawler=true
4267
 
4268
  [*research*]
4269
  Parent=Research Projects
4270
+ Browser="Generic Research Crawler"
4271
 
4272
  [AcadiaUniversityWebCensusClient]
4273
  Parent=Research Projects
4300
  Parent=Research Projects
4301
  Browser="HooWWWer"
4302
 
 
 
 
4303
  [inetbot/* (?http://www.inetbot.com/bot.html)]
4304
  Parent=Research Projects
4305
  Browser="inetbot"
4306
 
4307
+ [IRLbot/1.0 (*http://irl.cs.tamu.edu/crawler*)]
4308
  Parent=Research Projects
4309
  Browser="IRLbot"
4310
+ Version=1.0
4311
+ MajorVer=1
4312
+ MinorVer=0
4313
+
4314
+ [IRLbot/2.0 (*http://irl.cs.tamu.edu/crawler*)]
4315
+ Parent=Research Projects
4316
+ Version=2.0
4317
+ MajorVer=2
4318
+ MinorVer=0
4319
+
4320
+ [IRLbot/3.0 (*http://irl.cs.tamu.edu/crawler*)]
4321
+ Parent=Research Projects
4322
+ Version=3.0
4323
+ MajorVer=3
4324
+ MinorVer=0
4325
 
4326
  [JUST-CRAWLER(*)]
4327
  Parent=Research Projects
4342
  Parent=Research Projects
4343
  Browser="Theophrastus"
4344
 
4345
+ [Mozilla/5.0 (compatible; Webscan v0.*; +http://otc.dyndns.org/webscan/)]
4346
  Parent=Research Projects
4347
  Browser="Webscan"
4348
 
4403
 
4404
  [Rippers]
4405
  Parent=DefaultProperties
4406
+ Comment="Rippers"
4407
+ Browser="Ripper"
 
 
 
4408
  Crawler=true
4409
 
4410
  [*grub*]
4417
 
4418
  [*java*]
4419
  Parent=Rippers
4420
+ Browser="Generic Java Crawler"
4421
 
4422
+ [*libwww*]
4423
  Parent=Rippers
4424
+ Browser="libwww"
4425
 
4426
  [*WebGrabber*]
4427
  Parent=Rippers
4428
+ Browser="WebGrabber"
4429
 
4430
  [*WinHttpRequest*]
4431
  Parent=Rippers
4518
  [eStyleSearch * (compatible; MSIE 6.0; Windows NT 5.0)]
4519
  Parent=Rippers
4520
  Browser="eStyleSearch"
4521
+ Platform_Version=5.0
4522
  Win32=true
4523
 
4524
  [ezic.com http agent *]
4527
 
4528
  [fetch libfetch/*]
4529
  Parent=Rippers
4530
+ Browser="fetch libfetch"
4531
 
4532
  [FGet*]
4533
  Parent=Rippers
4534
  Browser="FGet"
4535
 
4536
+ [findfiles.net/* (Robot;test_robot@gmx-topmail.de)]
4537
+ Parent=Rippers
4538
+ Browser="FindFiles"
4539
+
4540
  [Flaming AttackBot*]
4541
  Parent=Rippers
4542
  Browser="Flaming AttackBot"
4583
 
4584
  [httpclient*]
4585
  Parent=Rippers
4586
+ Browser="httpclient"
4587
 
4588
  [httperf/*]
4589
  Parent=Rippers
4611
 
4612
  [iexplore.exe]
4613
  Parent=Rippers
4614
+ Browser="iexplore.exe"
4615
 
4616
  [Inet - Eureka App]
4617
  Parent=Rippers
4627
 
4628
  [Internet Exploiter/*]
4629
  Parent=Rippers
4630
+ Browser="Internet Exploiter"
4631
 
4632
  [Internet Explore *]
4633
  Parent=Rippers
4671
 
4672
  [lwp*]
4673
  Parent=Rippers
4674
+ Browser="lwp"
4675
 
4676
  [MFC_Tear_Sample]
4677
  Parent=Rippers
4685
  Parent=Rippers
4686
  Browser="MovableType Web Log"
4687
 
4688
+ [Mozilla/* (compatible; OffByOne; Windows*) Webster Pro V3.*]
4689
  Parent=Rippers
4690
+ Browser="OffByOne"
4691
+ Version=3.0
4692
+ MajorVer=3
4693
+ MinorVer=0
4694
 
4695
+ [Mozilla/2.0 (compatible; NEWT ActiveX; Win32)]
4696
  Parent=Rippers
4697
+ Browser="NEWT ActiveX"
4698
+ Platform="Win32"
4699
 
4700
  [Mozilla/3.0 (compatible; Indy Library)]
4701
  Parent=Rippers
4702
  Cookies=true
4703
 
 
 
 
4704
  [Mozilla/4.0 (compatible; BorderManager*)]
4705
  Parent=Rippers
4706
  Browser="Novell BorderManager"
4707
 
 
 
 
4708
  [Mozilla/5.0 (compatible; IPCheck Server Monitor*)]
4709
  Parent=Rippers
4710
  Browser="IPCheck Server Monitor"
4748
  [PigBlock (Windows NT 5.1; U)*]
4749
  Parent=Rippers
4750
  Browser="PigBlock"
4751
+ Platform_Version=5.1
4752
  Win32=true
4753
 
4754
  [Pockey*]
4831
  Parent=Rippers
4832
  Browser="VCI WebViewer"
4833
 
 
 
 
 
4834
  [Web Downloader*]
4835
  Parent=Rippers
4836
  Browser="Web Downloader"
4845
 
4846
  [WebAuto/*]
4847
  Parent=Rippers
4848
+ Browser="WebAuto"
4849
 
4850
  [webbandit/*]
4851
  Parent=Rippers
4921
 
4922
  [WinHttp*]
4923
  Parent=Rippers
4924
+ Browser="WinHttp"
4925
 
4926
  [WinScripter iNet Tools]
4927
  Parent=Rippers
4939
 
4940
  [Site Monitors]
4941
  Parent=DefaultProperties
4942
+ Comment="Site Monitors"
4943
  Browser="Site Monitors"
 
 
4944
  Crawler=true
4945
 
4946
  [*EasyRider*]
4950
  [*maxamine.com--robot*]
4951
  Parent=Site Monitors
4952
  Browser="maxamine.com--robot"
4953
+
4954
+ [*Pingdom*]
4955
+ Parent=Site Monitors
4956
+ Browser="Pingdom"
4957
 
4958
  [*WebMon ?.*]
4959
  Parent=Site Monitors
4966
  [Kevin http://*]
4967
  Parent=Site Monitors
4968
  Browser="Kevin"
 
4969
 
4970
  [Mozilla/4.0 (compatible; ChangeDetection/*]
4971
  Parent=Site Monitors
4972
  Browser="ChangeDetection"
4973
 
4974
+ [Mozilla/4.0 (compatible; MSIE ?.0; GomezAgent ?.0; Windows NT)]
4975
+ Parent=Site Monitors
4976
+ Browser="Gomez Site Monitor"
4977
+
4978
+ [Mozilla/5.0 (compatible; Chirp/1.0; +http://www.binarycanary.com/chirp.cfm)]
4979
+ Parent=Site Monitors
4980
+ Browser="BinaryCanary"
4981
+ Version=1.0
4982
+ MajorVer=1
4983
+ MinorVer=0
4984
+
4985
+ [Mozilla/5.0 (compatible; UptimeRobot/1.0; http://www.uptimerobot.com/)]
4986
+ Parent=Site Monitors
4987
+ Browser="UptimeRobot"
4988
+ Version=1.0
4989
+ MajorVer=1
4990
+ MinorVer=0
4991
+
4992
  [Myst Monitor Service v*]
4993
  Parent=Site Monitors
4994
  Browser="Myst Monitor Service"
5005
  Parent=Site Monitors
5006
  Browser="NetReality"
5007
 
5008
+ [Pingdom.com_bot_version_*_(http://www.pingdom.com/)]
5009
  Parent=Site Monitors
5010
  Browser="Pingdom"
5011
 
5012
  [Site Valet Online*]
5013
  Parent=Site Monitors
5014
  Browser="Site Valet"
 
5015
 
5016
  [SITECHECKER]
5017
  Parent=Site Monitors
5020
  [sitemonitor@dnsvr.com/*]
5021
  Parent=Site Monitors
5022
  Browser="ZoneEdit Failover Monitor"
 
5023
 
5024
  [UpTime Checker*]
5025
  Parent=Site Monitors
5031
 
5032
  [URL_Access/*]
5033
  Parent=Site Monitors
5034
+ Browser="URL_Access"
5035
 
5036
  [URLCHECK]
5037
  Parent=Site Monitors
5060
 
5061
  [Social Networking]
5062
  Parent=DefaultProperties
5063
+ Comment="Social Bookmarkers"
5064
  Browser="Social Bookmarkers"
5065
+ Crawler=true
 
 
 
5066
 
5067
  [BookmarkBase(2/;http://bookmarkbase.com)]
5068
  Parent=Social Networking
5075
  [Mozilla/5.0 (*) Gecko/* Firefox/2.0 OneRiot/1.0 (http://www.oneriot.com) ]
5076
  Parent=Social Networking
5077
  Browser="OneRiot"
 
5078
 
5079
+ [Mozilla/5.0 (compatible; FriendFeedBot/0.*; +Http://friendfeed.com/about/bot)]
5080
  Parent=Social Networking
5081
  Browser="FriendFeedBot"
5082
 
5083
+ [Mozilla/5.0 (compatible; Twitturls; +http://twitturls.com)]
5084
  Parent=Social Networking
5085
  Browser="Twitturls"
 
5086
 
5087
  [SocialSpider-Finder/0.*]
5088
  Parent=Social Networking
5091
  [Twitturly*]
5092
  Parent=Social Networking
5093
  Browser="Twitturly"
 
5094
 
5095
  [WinkBot/*]
5096
  Parent=Social Networking
5100
 
5101
  [Translators]
5102
  Parent=DefaultProperties
5103
+ Comment="Translators"
5104
  Browser="Translators"
5105
  Frames=true
5106
  Tables=true
5107
+ Crawler=true
5108
 
5109
  [Seram Server]
5110
  Parent=Translators
5129
 
5130
  [Version Checkers]
5131
  Parent=DefaultProperties
5132
+ Comment="Version Checkers"
5133
  Browser="Version Checkers"
5134
  Crawler=true
5135
 
5136
+ [Automated Browscap.ini Updater. Gary contact me at serge@skycomp.ca with problems.]
5137
  Parent=Version Checkers
5138
+ Browser="Automated Browscap Updater"
5139
 
5140
+ [Automated Browscap.ini Updater. To report issues contact us at+http://www.skycomp.ca]
5141
  Parent=Version Checkers
5142
+ Browser="Automated Browscap.ini Updater"
 
 
 
5143
 
5144
  [Browscap Mirror System/1.* (browscap.giantrealm.com)]
5145
  Parent=Version Checkers
5146
+ Browser="Browscap Mirror System"
5147
 
5148
  [Browscap Mirror v1.30]
5149
  Parent=Version Checkers
5153
  Parent=Version Checkers
5154
  Browser="Browscap updater"
5155
 
5156
+ [browscap updater; interval:weekly; server:rohan.doppy.nl; questions:support@doppy.nl;]
5157
+ Parent=Version Checkers
5158
+ Browser="browscap updater"
5159
+
5160
  [BrowscapUpdater1.0]
5161
  Parent=Version Checkers
5162
+ Browser="BrowscapUpdater"
5163
 
5164
+ [Browser Capabilities Project - PHP Browscap*]
5165
  Parent=Version Checkers
5166
+ Browser="BCP - PHP Browscap"
5167
+ Version=1.0
5168
+ MajorVer=1
5169
+ MinorVer=0
5170
 
5171
  [Browser Capabilities Project AutoDownloader; created by Tom Kelleher Consulting, Inc. (tkelleher.com); used with special permission from Gary Joel Keith; uses Microsoft's WinHTTP component]
5172
  Parent=Version Checkers
5173
  Browser="TKC AutoDownloader"
5174
 
5175
+ [Decode Framework 0.* browscap library]
5176
  Parent=Version Checkers
5177
+ Browser="Decode Framework browscap library"
 
 
 
5178
 
5179
  [Desktop Sidebar*]
5180
  Parent=Version Checkers
5181
  Browser="Desktop Sidebar"
 
5182
 
5183
  [Mono Browser Capabilities Updater*]
5184
  Parent=Version Checkers
5185
  Browser="Mono Browser Capabilities Updater"
 
5186
 
5187
+ [PHP Browser Capabilities Project/*]
5188
  Parent=Version Checkers
5189
  Browser="PHP Browser Capabilities Project"
5190
 
 
 
 
 
 
 
 
 
 
 
 
 
5191
  [UpdateBrowscap*]
5192
  Parent=Version Checkers
5193
  Browser="UpdateBrowscap"
5194
 
5195
+ [WCC Browscap Updater/0.* (PHP: file_get_contents)]
5196
  Parent=Version Checkers
5197
+ Browser="WCC Browscap Updater"
 
 
 
 
5198
 
5199
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; W3C
5200
 
5201
  [W3C]
5202
  Parent=DefaultProperties
5203
+ Comment="W3C"
5204
  Browser="W3C"
5205
  Crawler=true
5206
 
5207
+ [*W3C-checklink/*]
5208
+ Parent=W3C
5209
+ Browser="W3C-checklink"
5210
+
5211
  [Jigsaw/* W3C_CSS_Validator*/*]
5212
  Parent=W3C
5213
+ Browser="Jigsaw_W3C_CSS_Validator"
5214
+
5215
+ [P3P Validator]
5216
+ Parent=W3C
5217
+ Browser="P3P Validator"
5218
+
5219
+ [Unicorn/1.*]
5220
+ Parent=W3C
5221
+ Browser="W3C Unicorn"
5222
 
5223
+ [W3C-mobileOK/*]
5224
  Parent=W3C
5225
+ Browser="W3C-mobileOK"
5226
+ Alpha=false
5227
+ Beta=false
5228
+ Win16=false
5229
+ Win32=false
5230
+ Win64=false
5231
+ Frames=false
5232
+ IFrames=false
5233
+ Tables=false
5234
+ Cookies=false
5235
+ BackgroundSounds=false
5236
+ JavaScript=false
5237
+ VBScript=false
5238
+ JavaApplets=false
5239
+ ActiveXControls=false
5240
+ isMobileDevice=false
5241
+ isSyndicationReader=false
5242
+ Crawler=true
5243
 
5244
  [W3C-mobileOK/DDC-*]
5245
  Parent=W3C
5246
+ Browser="W3C-mobileOK/DDC"
5247
  isMobileDevice=true
5248
 
5249
  [W3C-WebCon/*]
5250
  Parent=W3C
5251
+ Browser="W3C-WebCon"
5252
 
5253
  [W3C_Validator/*]
5254
  Parent=W3C
5255
+ Browser="W3C_Validator"
5256
 
5257
  [W3CLineMode/*]
5258
  Parent=W3C
5259
+ Browser="W3CLineMode"
5260
+
5261
+ [W3CRobot/*]
5262
+ Parent=W3C
5263
+ Browser="W3CRobot"
5264
 
5265
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Become
5266
 
5267
  [Become]
5268
  Parent=DefaultProperties
5269
+ Comment="Become"
5270
  Browser="Become"
 
 
5271
  isSyndicationReader=true
5272
  Crawler=true
5273
 
5295
 
5296
  [Blue Coat Systems]
5297
  Parent=DefaultProperties
5298
+ Comment="Blue Coat Systems"
5299
  Browser="Blue Coat Systems"
 
5300
  Crawler=true
5301
 
 
 
 
 
 
 
 
 
 
 
 
5302
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FeedHub
5303
 
5304
  [FeedHub]
5305
  Parent=DefaultProperties
5306
+ Comment="FeedHub"
5307
  Browser="FeedHub"
5308
  isSyndicationReader=true
5309
+ Crawler=true
5310
 
5311
  [FeedHub FeedDiscovery/1.0 (http://www.feedhub.com)]
5312
  Parent=FeedHub
5329
  MajorVer=1
5330
  MinorVer=0
5331
 
5332
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Internet Content Rating Association
5333
+
5334
  [Internet Content Rating Association]
5335
  Parent=DefaultProperties
5336
+ Comment="Internet Content Rating Association"
5337
  Browser=""
5338
  Frames=true
 
5339
  Tables=true
 
5340
  Crawler=true
5341
 
5342
  [ICRA_label_generator/1.?]
5347
  Parent=Internet Content Rating Association
5348
  Browser="ICRA_Semantic_spider"
5349
 
5350
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nagios
5351
+
5352
+ [Nagios]
5353
+ Parent=DefaultProperties
5354
+ Comment="Nagios"
5355
+ Browser="Nagios"
5356
+ Crawler=true
5357
+
5358
+ [check_http/* (nagios-plugins 1.*)]
5359
+ Parent=Nagios
5360
+ Version=1.0
5361
+ MajorVer=1
5362
+ MinorVer=0
5363
+
5364
+ [check_http/* (nagios-plugins 1.1.*)]
5365
+ Parent=Nagios
5366
+ Version=1.1
5367
+ MajorVer=1
5368
+ MinorVer=1
5369
+
5370
+ [check_http/* (nagios-plugins 1.2.*)]
5371
+ Parent=Nagios
5372
+ Version=1.2
5373
+ MajorVer=1
5374
+ MinorVer=2
5375
+
5376
+ [check_http/* (nagios-plugins 1.3.*)]
5377
+ Parent=Nagios
5378
+ Version=1.3
5379
+ MajorVer=1
5380
+ MinorVer=3
5381
+
5382
+ [check_http/* (nagios-plugins 1.4.*)]
5383
+ Parent=Nagios
5384
+ Version=1.4
5385
+ MajorVer=1
5386
+ MinorVer=4
5387
+
5388
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NameProtect
5389
 
5390
  [NameProtect]
5391
  Parent=DefaultProperties
5392
+ Comment="NameProtect"
5393
  Browser="NameProtect"
 
5394
  Crawler=true
5395
 
5396
  [abot/*]
5409
 
5410
  [Netcraft]
5411
  Parent=DefaultProperties
5412
+ Comment="Netcraft"
5413
  Browser="Netcraft"
 
5414
  Crawler=true
5415
 
5416
  [*Netcraft Web Server Survey*]
5417
  Parent=Netcraft
5418
  Browser="Netcraft Webserver Survey"
 
5419
 
5420
  [Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; *info@netcraft.com)]
5421
  Parent=Netcraft
5425
 
5426
  [NewsGator]
5427
  Parent=DefaultProperties
5428
+ Comment="NewsGator"
5429
  Browser="NewsGator"
5430
  isSyndicationReader=true
5431
+ Crawler=true
5432
 
5433
  [MarsEdit*]
5434
  Parent=NewsGator
5437
  [NetNewsWire*/*]
5438
  Parent=NewsGator
5439
  Browser="NetNewsWire"
5440
+ Platform="MacOSX"
5441
 
5442
  [NewsFire/*]
5443
  Parent=NewsGator
5450
  [NewsGator/*]
5451
  Parent=NewsGator
5452
  Browser="NewsGator"
 
5453
 
5454
  [NewsGatorOnline/*]
5455
  Parent=NewsGator
5456
  Browser="NewsGatorOnline"
5457
 
5458
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 10.0
5459
 
5460
+ [Chromium 10.0]
5461
  Parent=DefaultProperties
5462
+ Comment="Chromium 10.0"
5463
+ Browser="Chromium"
5464
+ Version=10.0
5465
+ MajorVer=10
5466
+ MinorVer=0
5467
+ Platform="Linux"
5468
  Frames=true
5469
  IFrames=true
5470
  Tables=true
5471
  Cookies=true
 
5472
  JavaScript=true
5473
+ JavaApplets=true
5474
  CssVersion=3
 
5475
 
5476
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/10.*Chrome/*Safari/*]
5477
+ Parent=Chromium 10.0
 
5478
 
5479
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/10.*Chrome/*Safari/*]
5480
+ Parent=Chromium 10.0
 
5481
 
5482
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 11.0
 
 
5483
 
5484
+ [Chromium 11.0]
 
 
5485
  Parent=DefaultProperties
5486
+ Comment="Chromium 11.0"
5487
+ Browser="Chromium"
5488
+ Version=11.0
5489
+ MajorVer=11
5490
+ MinorVer=0
5491
+ Platform="Linux"
5492
  Frames=true
5493
  IFrames=true
5494
  Tables=true
5495
  Cookies=true
 
5496
  JavaScript=true
5497
+ JavaApplets=true
5498
  CssVersion=3
 
 
 
 
 
5499
 
5500
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/11.*Chrome/*Safari/*]
5501
+ Parent=Chromium 11.0
 
5502
 
5503
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/11.*Chrome/*Safari/*]
5504
+ Parent=Chromium 11.0
 
5505
 
5506
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 12.0
5507
 
5508
+ [Chromium 12.0]
5509
  Parent=DefaultProperties
5510
+ Comment="Chromium 12.0"
5511
+ Browser="Chromium"
5512
+ Version=12.0
5513
+ MajorVer=12
5514
+ MinorVer=0
5515
+ Platform="Linux"
5516
  Frames=true
5517
  IFrames=true
5518
  Tables=true
5519
  Cookies=true
 
5520
  JavaScript=true
5521
+ JavaApplets=true
5522
  CssVersion=3
 
 
 
 
 
5523
 
5524
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/12.*Chrome/*Safari/*]
5525
+ Parent=Chromium 12.0
 
5526
 
5527
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/12.*Chrome/*Safari/*]
5528
+ Parent=Chromium 12.0
 
5529
 
5530
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 13.0
5531
 
5532
+ [Chromium 13.0]
5533
  Parent=DefaultProperties
5534
+ Comment="Chromium 13.0"
5535
+ Browser="Chromium"
5536
+ Version=13.0
5537
+ MajorVer=13
5538
+ MinorVer=0
5539
+ Platform="Linux"
5540
  Frames=true
5541
  IFrames=true
5542
  Tables=true
5543
  Cookies=true
 
5544
  JavaScript=true
5545
+ JavaApplets=true
5546
  CssVersion=3
 
5547
 
5548
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/13.*Chrome/*Safari/*]
5549
+ Parent=Chromium 13.0
 
5550
 
5551
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/13.*Chrome/*Safari/*]
5552
+ Parent=Chromium 13.0
 
5553
 
5554
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 14.0
 
 
5555
 
5556
+ [Chromium 14.0]
 
 
5557
  Parent=DefaultProperties
5558
+ Comment="Chromium 14.0"
5559
+ Browser="Chromium"
5560
+ Version=14.0
5561
+ MajorVer=14
5562
+ MinorVer=0
5563
+ Platform="Linux"
5564
  Frames=true
5565
  IFrames=true
5566
  Tables=true
5567
  Cookies=true
 
5568
  JavaScript=true
5569
+ JavaApplets=true
5570
  CssVersion=3
 
5571
 
5572
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/14.*Chrome/*Safari/*]
5573
+ Parent=Chromium 14.0
 
5574
 
5575
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/14.*Chrome/*Safari/*]
5576
+ Parent=Chromium 14.0
 
5577
 
5578
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 15.0
 
 
5579
 
5580
+ [Chromium 15.0]
 
 
 
 
 
 
 
 
 
 
5581
  Parent=DefaultProperties
5582
+ Comment="Chromium 15.0"
5583
+ Browser="Chromium"
5584
+ Version=15.0
5585
+ MajorVer=15
5586
+ MinorVer=0
5587
+ Platform="Linux"
5588
  Frames=true
5589
  IFrames=true
5590
  Tables=true
5591
  Cookies=true
 
5592
  JavaScript=true
5593
+ JavaApplets=true
5594
  CssVersion=3
 
 
 
 
 
 
 
 
 
5595
 
5596
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/15.*Chrome/*Safari/*]
5597
+ Parent=Chromium 15.0
 
5598
 
5599
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/15.*Chrome/*Safari/*]
5600
+ Parent=Chromium 15.0
 
5601
 
5602
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 16.0
 
 
5603
 
5604
+ [Chromium 16.0]
 
 
 
 
 
 
5605
  Parent=DefaultProperties
5606
+ Comment="Chromium 16.0"
5607
+ Browser="Chromium"
5608
+ Version=16.0
5609
+ MajorVer=16
5610
+ MinorVer=0
5611
+ Platform="Linux"
5612
  Frames=true
5613
  IFrames=true
5614
  Tables=true
5615
  Cookies=true
 
5616
  JavaScript=true
5617
+ JavaApplets=true
5618
  CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
 
5619
 
5620
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/16.*Chrome/*Safari/*]
5621
+ Parent=Chromium 16.0
 
5622
 
5623
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/16.*Chrome/*Safari/*]
5624
+ Parent=Chromium 16.0
 
5625
 
5626
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 17.0
 
 
5627
 
5628
+ [Chromium 17.0]
 
 
5629
  Parent=DefaultProperties
5630
+ Comment="Chromium 17.0"
5631
+ Browser="Chromium"
5632
+ Version=17.0
5633
+ MajorVer=17
5634
+ MinorVer=0
5635
+ Platform="Linux"
5636
  Frames=true
5637
  IFrames=true
5638
  Tables=true
5639
  Cookies=true
 
5640
  JavaScript=true
5641
+ JavaApplets=true
5642
  CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
 
5643
 
5644
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/17.*Chrome/*Safari/*]
5645
+ Parent=Chromium 17.0
 
5646
 
5647
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/17.*Chrome/*Safari/*]
5648
+ Parent=Chromium 17.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5649
 
5650
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 18.0
5651
 
5652
+ [Chromium 18.0]
5653
  Parent=DefaultProperties
5654
+ Comment="Chromium 18.0"
5655
+ Browser="Chromium"
5656
+ Version=18.0
5657
+ MajorVer=18
5658
+ MinorVer=0
5659
+ Platform="Linux"
5660
+ Frames=true
5661
+ IFrames=true
5662
  Tables=true
5663
  Cookies=true
5664
+ JavaScript=true
5665
  JavaApplets=true
5666
+ CssVersion=3
5667
+
5668
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/18.*Chrome/*Safari/*]
5669
+ Parent=Chromium 18.0
5670
 
5671
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/18.*Chrome/*Safari/*]
5672
+ Parent=Chromium 18.0
5673
 
5674
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 19.0
5675
+
5676
+ [Chromium 19.0]
5677
  Parent=DefaultProperties
5678
+ Comment="Chromium 19.0"
5679
+ Browser="Chromium"
5680
+ Version=19.0
5681
+ MajorVer=19
5682
+ MinorVer=0
5683
+ Platform="Linux"
5684
  Frames=true
5685
  IFrames=true
5686
  Tables=true
5687
  Cookies=true
 
5688
  JavaScript=true
5689
+ JavaApplets=true
5690
  CssVersion=3
 
 
 
 
 
 
 
 
 
5691
 
5692
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/19.*Chrome/*Safari/*]
5693
+ Parent=Chromium 19.0
 
5694
 
5695
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/19.*Chrome/*Safari/*]
5696
+ Parent=Chromium 19.0
 
5697
 
5698
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 20.0
5699
 
5700
+ [Chromium 20.0]
5701
  Parent=DefaultProperties
5702
+ Comment="Chromium 20.0"
5703
+ Browser="Chromium"
5704
+ Version=20.0
5705
+ MajorVer=20
5706
+ MinorVer=0
5707
+ Platform="Linux"
5708
  Frames=true
5709
  IFrames=true
5710
  Tables=true
5711
  Cookies=true
 
5712
  JavaScript=true
5713
+ JavaApplets=true
5714
  CssVersion=3
 
 
 
 
 
5715
 
5716
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/20.*Chrome/*Safari/*]
5717
+ Parent=Chromium 20.0
 
5718
 
5719
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/20.*Chrome/*Safari/*]
5720
+ Parent=Chromium 20.0
 
5721
 
5722
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 21.0
 
 
5723
 
5724
+ [Chromium 21.0]
 
 
5725
  Parent=DefaultProperties
5726
+ Comment="Chromium 21.0"
5727
+ Browser="Chromium"
5728
+ Version=21.0
5729
+ MajorVer=21
5730
+ MinorVer=0
5731
+ Platform="Linux"
5732
  Frames=true
5733
  IFrames=true
5734
  Tables=true
5735
  Cookies=true
 
5736
  JavaScript=true
5737
+ JavaApplets=true
5738
  CssVersion=3
 
5739
 
5740
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/21.*Chrome/*Safari/*]
5741
+ Parent=Chromium 21.0
 
5742
 
5743
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/21.*Chrome/*Safari/*]
5744
+ Parent=Chromium 21.0
 
5745
 
5746
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 22.0
 
 
5747
 
5748
+ [Chromium 22.0]
 
 
 
 
 
 
5749
  Parent=DefaultProperties
5750
+ Comment="Chromium 22.0"
5751
+ Browser="Chromium"
5752
+ Version=22.0
5753
+ MajorVer=22
5754
+ MinorVer=0
5755
+ Platform="Linux"
5756
  Frames=true
5757
  IFrames=true
5758
  Tables=true
5759
  Cookies=true
 
5760
  JavaScript=true
5761
+ JavaApplets=true
5762
  CssVersion=3
 
 
 
 
 
5763
 
5764
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/22.*Chrome/*Safari/*]
5765
+ Parent=Chromium 22.0
 
5766
 
5767
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/22.*Chrome/*Safari/*]
5768
+ Parent=Chromium 22.0
 
5769
 
5770
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 6.0
 
 
5771
 
5772
+ [Chromium 6.0]
 
 
5773
  Parent=DefaultProperties
5774
+ Comment="Chromium 6.0"
5775
+ Browser="Chromium"
5776
+ Version=6.0
5777
+ MajorVer=6
5778
+ MinorVer=0
5779
+ Platform="Linux"
5780
  Frames=true
5781
  IFrames=true
5782
  Tables=true
5783
  Cookies=true
 
5784
  JavaScript=true
5785
+ JavaApplets=true
5786
  CssVersion=3
 
5787
 
5788
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/6.*Chrome/*Safari/*]
5789
+ Parent=Chromium 6.0
 
5790
 
5791
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/6.*Chrome/*Safari/*]
5792
+ Parent=Chromium 6.0
5793
+ Platform="Linux"
5794
 
5795
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 7.0
 
 
5796
 
5797
+ [Chromium 7.0]
 
 
 
 
 
 
5798
  Parent=DefaultProperties
5799
+ Comment="Chromium 7.0"
5800
+ Browser="Chromium"
5801
+ Version=7.0
5802
+ MajorVer=7
5803
+ MinorVer=0
5804
+ Platform="Linux"
5805
+ Frames=true
5806
+ IFrames=true
5807
+ Tables=true
5808
  Cookies=true
5809
+ JavaScript=true
5810
+ JavaApplets=true
5811
+ CssVersion=3
5812
 
5813
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/7.*Chrome/*Safari/*]
5814
+ Parent=Chromium 7.0
 
5815
 
5816
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/7.*Chrome/*Safari/*]
5817
+ Parent=Chromium 7.0
 
 
5818
 
5819
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 8.0
 
 
 
 
 
5820
 
5821
+ [Chromium 8.0]
5822
+ Parent=DefaultProperties
5823
+ Comment="Chromium 8.0"
5824
+ Browser="Chromium"
5825
+ Version=8.0
5826
+ MajorVer=8
5827
  MinorVer=0
5828
+ Platform="Linux"
5829
+ Frames=true
5830
+ IFrames=true
5831
+ Tables=true
5832
+ Cookies=true
5833
+ JavaScript=true
5834
+ JavaApplets=true
5835
+ CssVersion=3
5836
 
5837
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/8.*Chrome/*Safari/*]
5838
+ Parent=Chromium 8.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5839
 
5840
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/8.*Chrome/*Safari/*]
5841
+ Parent=Chromium 8.0
 
5842
 
5843
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 9.0
5844
 
5845
+ [Chromium 9.0]
5846
  Parent=DefaultProperties
5847
+ Comment="Chromium 9.0"
5848
+ Browser="Chromium"
5849
+ Version=9.0
5850
+ MajorVer=9
5851
+ MinorVer=0
5852
+ Platform="Linux"
5853
+ Frames=true
5854
+ IFrames=true
5855
+ Tables=true
5856
  Cookies=true
5857
+ JavaScript=true
5858
+ JavaApplets=true
5859
+ CssVersion=3
5860
 
5861
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/9.*Chrome/*Safari/*]
5862
+ Parent=Chromium 9.0
 
 
 
5863
 
5864
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/9.*Chrome/*Safari/*]
5865
+ Parent=Chromium 9.0
 
 
 
5866
 
5867
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium Generic
5868
 
5869
+ [Chromium Generic]
5870
  Parent=DefaultProperties
5871
+ Comment="Chromium Generic"
5872
+ Browser="Chromium"
5873
+ Platform="Linux"
5874
+ CssVersion=1
5875
 
5876
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/*Chrome/*Safari/*]
5877
+ Parent=Chromium Generic
 
5878
 
5879
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/*Chrome/*Safari/*]
5880
+ Parent=Chromium Generic
 
5881
 
5882
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 10.0
5883
 
5884
+ [Chrome 10.0]
5885
  Parent=DefaultProperties
5886
+ Comment="Chrome 10.0"
5887
+ Browser="Chrome"
 
 
 
5888
  Version=10.0
5889
  MajorVer=10
5890
  MinorVer=0
5891
+ Win32=true
5892
+ Frames=true
5893
+ IFrames=true
5894
+ Tables=true
5895
+ Cookies=true
5896
+ JavaScript=true
5897
+ JavaApplets=true
5898
+ CssVersion=3
5899
 
5900
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5901
+ Parent=Chrome 10.0
5902
+ Platform="MacOSX"
5903
+ Win32=false
 
 
5904
 
5905
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5906
+ Parent=Chrome 10.0
5907
+ Platform="Linux"
5908
+ Win32=false
 
 
5909
 
5910
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5911
+ Parent=Chrome 10.0
5912
+ Platform="Linux"
5913
+ Win32=false
 
 
5914
 
5915
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5916
+ Parent=Chrome 10.0
5917
+ Platform="WinNT"
5918
+ Platform_Version=4.0
5919
+
5920
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5921
+ Parent=Chrome 10.0
5922
+ Platform="Win2000"
5923
+ Platform_Version=5.0
5924
+
5925
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5926
+ Parent=Chrome 10.0
5927
+ Platform="WinXP"
5928
+ Platform_Version=5.1
5929
+
5930
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5931
+ Parent=Chrome 10.0
5932
+ Platform="WinXP"
5933
+ Platform_Version=5.1
5934
+ Win32=false
5935
+ Win64=true
5936
 
5937
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5938
+ Parent=Chrome 10.0
5939
+ Platform="WinXP"
5940
+ Platform_Version=5.2
 
 
5941
 
5942
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5943
+ Parent=Chrome 10.0
5944
+ Platform="WinXP"
5945
+ Platform_Version=5.2
5946
+ Win32=false
5947
+ Win64=true
 
5948
 
5949
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5950
+ Parent=Chrome 10.0
5951
+ Platform="WinVista"
5952
+ Platform_Version=6.0
 
 
5953
 
5954
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5955
+ Parent=Chrome 10.0
5956
+ Platform="WinVista"
5957
+ Platform_Version=6.0
5958
+ Win32=false
5959
+ Win64=true
 
5960
 
5961
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5962
+ Parent=Chrome 10.0
5963
+ Platform="Win7"
5964
+ Platform_Version=6.1
 
 
 
5965
 
5966
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*]
5967
+ Parent=Chrome 10.0
5968
+ Platform="Win7"
5969
+ Platform_Version=6.1
5970
+ Win32=false
5971
+ Win64=true
5972
 
5973
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 11.0
5974
 
5975
+ [Chrome 11.0]
5976
  Parent=DefaultProperties
5977
+ Comment="Chrome 11.0"
5978
+ Browser="Chrome"
5979
+ Version=11.0
5980
+ MajorVer=11
5981
+ MinorVer=0
5982
+ Win32=true
5983
+ Frames=true
5984
+ IFrames=true
5985
+ Tables=true
5986
  Cookies=true
5987
+ JavaScript=true
5988
+ JavaApplets=true
5989
+ CssVersion=3
5990
 
5991
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
5992
+ Parent=Chrome 11.0
5993
+ Platform="MacOSX"
5994
+ Win32=false
5995
 
5996
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
5997
+ Parent=Chrome 11.0
5998
+ Platform="Linux"
5999
+ Win32=false
6000
 
6001
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
6002
+ Parent=Chrome 11.0
6003
+ Platform="Linux"
6004
+ Win32=false
6005
 
6006
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
6007
+ Parent=Chrome 11.0
6008
+ Platform="WinNT"
6009
+ Platform_Version=4.0
6010
+
6011
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
6012
+ Parent=Chrome 11.0
6013
+ Platform="Win2000"
6014
+ Platform_Version=5.0
6015
+
6016
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
6017
+ Parent=Chrome 11.0
6018
+ Platform="WinXP"
6019
+ Platform_Version=5.1
6020
+
6021
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
6022
+ Parent=Chrome 11.0
6023
+ Platform="WinXP"
6024
+ Platform_Version=5.1
6025
+ Win32=false
6026
+ Win64=true
6027
 
6028
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
6029
+ Parent=Chrome 11.0
6030
+ Platform="WinXP"
6031
+ Platform_Version=5.2
6032
 
6033
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
6034
+ Parent=Chrome 11.0
6035
+ Platform="WinXP"
6036
+ Platform_Version=5.2
6037
+ Win32=false
6038
+ Win64=true
6039
 
6040
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
6041
+ Parent=Chrome 11.0
6042
+ Platform="WinVista"
6043
+ Platform_Version=6.0
6044
 
6045
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
6046
+ Parent=Chrome 11.0
6047
+ Platform="WinVista"
6048
+ Platform_Version=6.0
6049
+ Win32=false
6050
+ Win64=true
6051
 
6052
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
6053
+ Parent=Chrome 11.0
6054
+ Platform="Win7"
6055
+ Platform_Version=6.1
6056
 
6057
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*]
6058
+ Parent=Chrome 11.0
6059
+ Platform="Win7"
6060
+ Platform_Version=6.1
6061
+ Win32=false
6062
+ Win64=true
6063
 
6064
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 12.0
6065
 
6066
+ [Chrome 12.0]
6067
  Parent=DefaultProperties
6068
+ Comment="Chrome 12.0"
6069
+ Browser="Chrome"
6070
+ Version=12.0
6071
+ MajorVer=12
6072
+ MinorVer=0
 
 
 
 
 
 
 
 
 
 
 
 
6073
  Win32=true
6074
+ Frames=true
6075
+ IFrames=true
6076
+ Tables=true
6077
+ Cookies=true
6078
+ JavaScript=true
6079
+ JavaApplets=true
6080
+ CssVersion=3
6081
 
6082
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6083
+ Parent=Chrome 12.0
6084
+ Platform="MacOSX"
6085
+ Win32=false
6086
 
6087
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6088
+ Parent=Chrome 12.0
6089
+ Platform="Linux"
6090
+ Win32=false
6091
 
6092
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6093
+ Parent=Chrome 12.0
6094
+ Platform="Linux"
6095
+ Win32=false
6096
 
6097
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6098
+ Parent=Chrome 12.0
6099
+ Platform="WinNT"
6100
+ Platform_Version=4.0
6101
+
6102
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6103
+ Parent=Chrome 12.0
6104
+ Platform="Win2000"
6105
+ Platform_Version=5.0
6106
+
6107
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6108
+ Parent=Chrome 12.0
6109
+ Platform="WinXP"
6110
+ Platform_Version=5.1
6111
+
6112
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6113
+ Parent=Chrome 12.0
6114
+ Platform="WinXP"
6115
+ Platform_Version=5.1
6116
+ Win32=false
6117
+ Win64=true
6118
 
6119
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6120
+ Parent=Chrome 12.0
6121
+ Platform="WinXP"
6122
+ Platform_Version=5.2
6123
 
6124
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6125
+ Parent=Chrome 12.0
6126
+ Platform="WinXP"
6127
+ Platform_Version=5.2
6128
+ Win32=false
6129
+ Win64=true
6130
 
6131
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6132
+ Parent=Chrome 12.0
6133
+ Platform="WinVista"
6134
+ Platform_Version=6.0
 
 
 
 
6135
 
6136
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6137
+ Parent=Chrome 12.0
6138
+ Platform="WinVista"
6139
+ Platform_Version=6.0
6140
+ Win32=false
6141
+ Win64=true
6142
 
6143
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6144
+ Parent=Chrome 12.0
6145
+ Platform="Win7"
6146
+ Platform_Version=6.1
6147
 
6148
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
6149
+ Parent=Chrome 12.0
6150
+ Platform="Win7"
6151
+ Platform_Version=6.1
6152
+ Win32=false
6153
+ Win64=true
6154
 
6155
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 13.0
 
 
 
6156
 
6157
+ [Chrome 13.0]
6158
+ Parent=DefaultProperties
6159
+ Comment="Chrome 13.0"
6160
+ Browser="Chrome"
6161
+ Version=13.0
6162
+ MajorVer=13
6163
+ MinorVer=0
6164
  Win32=true
6165
+ Frames=true
6166
+ IFrames=true
6167
+ Tables=true
6168
+ Cookies=true
6169
+ JavaScript=true
6170
+ JavaApplets=true
6171
+ CssVersion=3
6172
 
6173
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6174
+ Parent=Chrome 13.0
6175
+ Platform="MacOSX"
6176
+ Win32=false
6177
 
6178
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6179
+ Parent=Chrome 13.0
6180
+ Platform="Linux"
6181
+ Win32=false
6182
 
6183
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6184
+ Parent=Chrome 13.0
6185
+ Platform="Linux"
6186
+ Win32=false
6187
 
6188
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6189
+ Parent=Chrome 13.0
6190
+ Platform="WinNT"
6191
+ Platform_Version=4.0
6192
+
6193
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6194
+ Parent=Chrome 13.0
6195
+ Platform="Win2000"
6196
+ Platform_Version=5.0
6197
+
6198
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6199
+ Parent=Chrome 13.0
6200
+ Platform="WinXP"
6201
+ Platform_Version=5.1
6202
+
6203
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6204
+ Parent=Chrome 13.0
6205
+ Platform="WinXP"
6206
+ Platform_Version=5.1
6207
+ Win32=false
6208
+ Win64=true
6209
 
6210
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6211
+ Parent=Chrome 13.0
6212
+ Platform="WinXP"
6213
+ Platform_Version=5.2
 
 
 
 
6214
 
6215
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6216
+ Parent=Chrome 13.0
6217
+ Platform="WinXP"
6218
+ Platform_Version=5.2
6219
+ Win32=false
6220
+ Win64=true
6221
 
6222
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6223
+ Parent=Chrome 13.0
6224
+ Platform="WinVista"
6225
+ Platform_Version=6.0
6226
 
6227
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6228
+ Parent=Chrome 13.0
6229
+ Platform="WinVista"
6230
+ Platform_Version=6.0
6231
+ Win32=false
6232
+ Win64=true
6233
 
6234
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6235
+ Parent=Chrome 13.0
6236
+ Platform="Win7"
6237
+ Platform_Version=6.1
6238
 
6239
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*]
6240
+ Parent=Chrome 13.0
6241
+ Platform="Win7"
6242
+ Platform_Version=6.1
6243
+ Win32=false
6244
+ Win64=true
6245
 
6246
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 14.0
 
 
 
6247
 
6248
+ [Chrome 14.0]
6249
+ Parent=DefaultProperties
6250
+ Comment="Chrome 14.0"
6251
+ Browser="Chrome"
6252
+ Version=14.0
6253
+ MajorVer=14
6254
+ MinorVer=0
6255
  Win32=true
6256
+ Frames=true
6257
+ IFrames=true
6258
+ Tables=true
6259
+ Cookies=true
6260
+ JavaScript=true
6261
+ JavaApplets=true
6262
+ CssVersion=3
6263
 
6264
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6265
+ Parent=Chrome 14.0
6266
+ Platform="MacOSX"
6267
+ Win32=false
6268
 
6269
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6270
+ Parent=Chrome 14.0
6271
+ Platform="Linux"
6272
+ Win32=false
6273
 
6274
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6275
+ Parent=Chrome 14.0
6276
+ Platform="Linux"
6277
+ Win32=false
 
 
 
 
6278
 
6279
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6280
+ Parent=Chrome 14.0
6281
+ Platform="WinNT"
6282
+ Platform_Version=4.0
6283
+
6284
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6285
+ Parent=Chrome 14.0
6286
+ Platform="Win2000"
6287
+ Platform_Version=5.0
6288
+
6289
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6290
+ Parent=Chrome 14.0
6291
+ Platform="WinXP"
6292
+ Platform_Version=5.1
6293
+
6294
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6295
+ Parent=Chrome 14.0
6296
+ Platform="WinXP"
6297
+ Platform_Version=5.1
6298
+ Win32=false
6299
+ Win64=true
6300
 
6301
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6302
+ Parent=Chrome 14.0
6303
+ Platform="WinXP"
6304
+ Platform_Version=5.2
6305
 
6306
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6307
+ Parent=Chrome 14.0
6308
+ Platform="WinXP"
6309
+ Platform_Version=5.2
6310
+ Win32=false
6311
+ Win64=true
6312
 
6313
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6314
+ Parent=Chrome 14.0
6315
+ Platform="WinVista"
6316
+ Platform_Version=6.0
6317
 
6318
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6319
+ Parent=Chrome 14.0
6320
+ Platform="WinVista"
6321
+ Platform_Version=6.0
6322
+ Win32=false
6323
+ Win64=true
6324
 
6325
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6326
+ Parent=Chrome 14.0
6327
+ Platform="Win7"
6328
+ Platform_Version=6.1
6329
 
6330
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6331
+ Parent=Chrome 14.0
6332
+ Platform="Win7"
6333
+ Platform_Version=6.1
6334
+ Win32=false
6335
+ Win64=true
6336
+
6337
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6338
+ Parent=Chrome 14.0
6339
+ Platform="Win8"
6340
+ Platform_Version=6.2
6341
 
6342
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*]
6343
+ Parent=Chrome 14.0
6344
+ Platform="Win8"
6345
+ Platform_Version=6.2
6346
+ Win32=false
6347
+ Win64=true
6348
 
6349
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 15.0
6350
 
6351
+ [Chrome 15.0]
6352
  Parent=DefaultProperties
6353
+ Comment="Chrome 15.0"
6354
+ Browser="Chrome"
6355
+ Version=15.0
6356
+ MajorVer=15
6357
+ MinorVer=0
6358
+ Win32=true
6359
  Frames=true
6360
  IFrames=true
6361
  Tables=true
6362
  Cookies=true
 
6363
  JavaScript=true
6364
+ JavaApplets=true
6365
+ CssVersion=3
6366
 
6367
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6368
+ Parent=Chrome 15.0
6369
+ Platform="MacOSX"
6370
+ Win32=false
6371
 
6372
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6373
+ Parent=Chrome 15.0
6374
+ Platform="Linux"
6375
+ Win32=false
 
 
 
6376
 
6377
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6378
+ Parent=Chrome 15.0
6379
+ Platform="Linux"
6380
+ Win32=false
 
6381
 
6382
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6383
+ Parent=Chrome 15.0
6384
+ Platform="WinNT"
6385
+ Platform_Version=4.0
6386
+
6387
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6388
+ Parent=Chrome 15.0
6389
+ Platform="Win2000"
6390
+ Platform_Version=5.0
6391
+
6392
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6393
+ Parent=Chrome 15.0
6394
+ Platform="WinXP"
6395
+ Platform_Version=5.1
6396
+
6397
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6398
+ Parent=Chrome 15.0
6399
+ Platform="WinXP"
6400
+ Platform_Version=5.1
6401
+ Win32=false
6402
+ Win64=true
6403
 
6404
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6405
+ Parent=Chrome 15.0
6406
+ Platform="WinXP"
6407
+ Platform_Version=5.2
6408
 
6409
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6410
+ Parent=Chrome 15.0
6411
+ Platform="WinXP"
6412
+ Platform_Version=5.2
6413
+ Win32=false
6414
+ Win64=true
6415
+
6416
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6417
+ Parent=Chrome 15.0
6418
+ Platform="WinVista"
6419
+ Platform_Version=6.0
6420
+
6421
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6422
+ Parent=Chrome 15.0
6423
+ Platform="WinVista"
6424
+ Platform_Version=6.0
6425
+ Win32=false
6426
+ Win64=true
6427
+
6428
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6429
+ Parent=Chrome 15.0
6430
+ Platform="Win7"
6431
+ Platform_Version=6.1
6432
+
6433
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6434
+ Parent=Chrome 15.0
6435
+ Platform="Win7"
6436
+ Platform_Version=6.1
6437
+ Win32=false
6438
+ Win64=true
6439
+
6440
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6441
+ Parent=Chrome 15.0
6442
+ Platform="Win8"
6443
+ Platform_Version=6.2
6444
+
6445
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*]
6446
+ Parent=Chrome 15.0
6447
+ Platform="Win8"
6448
+ Platform_Version=6.2
6449
+ Win32=false
6450
+ Win64=true
6451
+
6452
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 16.0
6453
+
6454
+ [Chrome 16.0]
6455
  Parent=DefaultProperties
6456
+ Comment="Chrome 16.0"
6457
+ Browser="Chrome"
6458
+ Version=16.0
6459
+ MajorVer=16
6460
+ MinorVer=0
6461
+ Win32=true
6462
  Frames=true
6463
+ IFrames=true
6464
  Tables=true
6465
  Cookies=true
6466
  JavaScript=true
6467
+ JavaApplets=true
6468
+ CssVersion=3
6469
 
6470
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6471
+ Parent=Chrome 16.0
6472
+ Platform="MacOSX"
6473
+ Win32=false
6474
 
6475
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6476
+ Parent=Chrome 16.0
6477
+ Platform="Linux"
6478
+ Win32=false
6479
 
6480
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6481
+ Parent=Chrome 16.0
6482
+ Platform="Linux"
6483
+ Win32=false
6484
 
6485
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6486
+ Parent=Chrome 16.0
6487
+ Platform="WinNT"
6488
+ Platform_Version=4.0
6489
+
6490
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6491
+ Parent=Chrome 16.0
6492
+ Platform="Win2000"
6493
+ Platform_Version=5.0
6494
+
6495
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6496
+ Parent=Chrome 16.0
6497
+ Platform="WinXP"
6498
+ Platform_Version=5.1
6499
+
6500
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6501
+ Parent=Chrome 16.0
6502
+ Platform="WinXP"
6503
+ Platform_Version=5.1
6504
+ Win32=false
6505
+ Win64=true
6506
 
6507
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6508
+ Parent=Chrome 16.0
6509
+ Platform="WinXP"
6510
+ Platform_Version=5.2
 
6511
 
6512
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6513
+ Parent=Chrome 16.0
6514
+ Platform="WinXP"
6515
+ Platform_Version=5.2
6516
+ Win32=false
6517
+ Win64=true
6518
 
6519
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6520
+ Parent=Chrome 16.0
6521
+ Platform="WinVista"
6522
+ Platform_Version=6.0
 
6523
 
6524
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6525
+ Parent=Chrome 16.0
6526
+ Platform="WinVista"
6527
+ Platform_Version=6.0
6528
+ Win32=false
6529
+ Win64=true
6530
 
6531
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6532
+ Parent=Chrome 16.0
6533
+ Platform="Win7"
6534
+ Platform_Version=6.1
 
6535
 
6536
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6537
+ Parent=Chrome 16.0
6538
+ Platform="Win7"
6539
+ Platform_Version=6.1
6540
+ Win32=false
6541
+ Win64=true
6542
 
6543
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6544
+ Parent=Chrome 16.0
6545
+ Platform="Win8"
6546
+ Platform_Version=6.2
6547
 
6548
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*]
6549
+ Parent=Chrome 16.0
6550
+ Platform="Win8"
6551
+ Platform_Version=6.2
6552
+ Win32=false
6553
+ Win64=true
6554
+
6555
+ [Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*CrMo/16.0*Safari/*]
6556
+ Parent=Chrome 16.0
6557
+ Platform="Android"
6558
+ Platform_Version=4.0
6559
+ isMobileDevice=true
6560
+
6561
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 17.0
6562
+
6563
+ [Chrome 17.0]
6564
  Parent=DefaultProperties
6565
+ Comment="Chrome 17.0"
6566
+ Browser="Chrome"
6567
+ Version=17.0
6568
+ MajorVer=17
6569
+ MinorVer=0
6570
+ Win32=true
6571
  Frames=true
6572
+ IFrames=true
6573
  Tables=true
6574
  Cookies=true
6575
  JavaScript=true
6576
+ JavaApplets=true
6577
+ CssVersion=3
6578
 
6579
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6580
+ Parent=Chrome 17.0
6581
+ Platform="MacOSX"
6582
+ Win32=false
 
 
6583
 
6584
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6585
+ Parent=Chrome 17.0
6586
+ Platform="Linux"
6587
+ Win32=false
 
 
6588
 
6589
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6590
+ Parent=Chrome 17.0
6591
+ Platform="Linux"
6592
+ Win32=false
6593
 
6594
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6595
+ Parent=Chrome 17.0
6596
+ Platform="WinNT"
6597
+ Platform_Version=4.0
6598
+
6599
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6600
+ Parent=Chrome 17.0
6601
+ Platform="Win2000"
6602
+ Platform_Version=5.0
6603
+
6604
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6605
+ Parent=Chrome 17.0
6606
+ Platform="WinXP"
6607
+ Platform_Version=5.1
6608
+
6609
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6610
+ Parent=Chrome 17.0
6611
+ Platform="WinXP"
6612
+ Platform_Version=5.1
6613
+ Win32=false
6614
+ Win64=true
6615
+
6616
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6617
+ Parent=Chrome 17.0
6618
+ Platform="WinXP"
6619
+ Platform_Version=5.2
6620
+
6621
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6622
+ Parent=Chrome 17.0
6623
+ Platform="WinXP"
6624
+ Platform_Version=5.2
6625
+ Win32=false
6626
+ Win64=true
6627
+
6628
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6629
+ Parent=Chrome 17.0
6630
+ Platform="WinVista"
6631
+ Platform_Version=6.0
6632
+
6633
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6634
+ Parent=Chrome 17.0
6635
+ Platform="WinVista"
6636
+ Platform_Version=6.0
6637
+ Win32=false
6638
+ Win64=true
6639
+
6640
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6641
+ Parent=Chrome 17.0
6642
+ Platform="Win7"
6643
+ Platform_Version=6.1
6644
+
6645
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6646
+ Parent=Chrome 17.0
6647
+ Platform="Win7"
6648
+ Platform_Version=6.1
6649
+ Win32=false
6650
+ Win64=true
6651
+
6652
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6653
+ Parent=Chrome 17.0
6654
+ Platform="Win8"
6655
+ Platform_Version=6.2
6656
+
6657
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*]
6658
+ Parent=Chrome 17.0
6659
+ Platform="Win8"
6660
+ Platform_Version=6.2
6661
+ Win32=false
6662
+ Win64=true
6663
+
6664
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 18.0
6665
+
6666
+ [Chrome 18.0]
6667
  Parent=DefaultProperties
6668
+ Comment="Chrome 18.0"
6669
+ Browser="Chrome"
6670
+ Version=18.0
6671
+ MajorVer=18
6672
+ MinorVer=0
6673
  Win32=true
6674
  Frames=true
6675
  IFrames=true
6676
  Tables=true
6677
  Cookies=true
 
6678
  JavaScript=true
6679
+ JavaApplets=true
6680
+ CssVersion=3
 
 
6681
 
6682
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6683
+ Parent=Chrome 18.0
6684
+ Platform="MacOSX"
6685
+ Win32=false
 
6686
 
6687
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6688
+ Parent=Chrome 18.0
6689
+ Platform="Linux"
6690
+ Win32=false
 
6691
 
6692
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6693
+ Parent=Chrome 18.0
6694
+ Platform="Linux"
6695
+ Win32=false
6696
 
6697
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6698
+ Parent=Chrome 18.0
6699
+ Platform="WinNT"
6700
+ Platform_Version=4.0
6701
+
6702
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6703
+ Parent=Chrome 18.0
6704
+ Platform="Win2000"
6705
+ Platform_Version=5.0
6706
+
6707
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6708
+ Parent=Chrome 18.0
6709
+ Platform="WinXP"
6710
+ Platform_Version=5.1
6711
+
6712
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6713
+ Parent=Chrome 18.0
6714
+ Platform="WinXP"
6715
+ Platform_Version=5.1
6716
+ Win32=false
6717
+ Win64=true
6718
 
6719
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6720
+ Parent=Chrome 18.0
6721
+ Platform="WinXP"
6722
+ Platform_Version=5.2
 
 
6723
 
6724
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6725
+ Parent=Chrome 18.0
6726
+ Platform="WinXP"
6727
+ Platform_Version=5.2
6728
+ Win32=false
6729
+ Win64=true
6730
 
6731
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6732
+ Parent=Chrome 18.0
6733
+ Platform="WinVista"
6734
+ Platform_Version=6.0
 
6735
 
6736
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6737
+ Parent=Chrome 18.0
6738
+ Platform="WinVista"
6739
+ Platform_Version=6.0
6740
+ Win32=false
6741
+ Win64=true
6742
 
6743
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6744
+ Parent=Chrome 18.0
6745
+ Platform="Win7"
6746
+ Platform_Version=6.1
 
6747
 
6748
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6749
+ Parent=Chrome 18.0
6750
+ Platform="Win7"
6751
+ Platform_Version=6.1
6752
+ Win32=false
6753
+ Win64=true
6754
 
6755
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6756
+ Parent=Chrome 18.0
6757
+ Platform="Win8"
6758
+ Platform_Version=6.2
 
6759
 
6760
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*]
6761
+ Parent=Chrome 18.0
6762
+ Platform="Win8"
6763
+ Platform_Version=6.2
6764
+ Win32=false
6765
+ Win64=true
6766
 
6767
+ [Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*]
6768
+ Parent=Chrome 18.0
6769
+ Platform="Android"
6770
+ Platform_Version=1.0
6771
+ Win32=false
6772
+ isMobileDevice=true
6773
 
6774
+ [Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*]
6775
+ Parent=Chrome 18.0
6776
+ Platform="Android"
6777
+ Platform_Version=1.1
6778
+ Win32=false
6779
+ isMobileDevice=true
6780
 
6781
+ [Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*]
6782
+ Parent=Chrome 18.0
6783
+ Platform="Android"
6784
+ Platform_Version=1.5
6785
+ Win32=false
6786
+ isMobileDevice=true
6787
 
6788
+ [Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*]
6789
+ Parent=Chrome 18.0
6790
+ Platform="Android"
6791
+ Platform_Version=1.6
6792
+ Win32=false
6793
+ isMobileDevice=true
6794
 
6795
+ [Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*]
6796
+ Parent=Chrome 18.0
6797
+ Platform="Android"
6798
+ Platform_Version=2.0
6799
+ Win32=false
6800
+ isMobileDevice=true
6801
 
6802
+ [Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*]
6803
+ Parent=Chrome 18.0
6804
+ Platform="Android"
6805
+ Platform_Version=2.1
6806
+ Win32=false
 
 
 
 
 
6807
  isMobileDevice=true
 
 
6808
 
6809
+ [Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*]
6810
+ Parent=Chrome 18.0
6811
+ Platform="Android"
6812
+ Platform_Version=2.2
6813
+ Win32=false
6814
+ isMobileDevice=true
6815
 
6816
+ [Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*]
6817
+ Parent=Chrome 18.0
6818
+ Platform="Android"
6819
+ Platform_Version=2.3
6820
+ Win32=false
6821
+ isMobileDevice=true
6822
 
6823
+ [Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*]
6824
+ Parent=Chrome 18.0
6825
+ Platform="Android"
6826
+ Platform_Version=4.0
6827
+ Win32=false
 
 
6828
  isMobileDevice=true
 
 
6829
 
6830
+ [Mozilla/5.0 (Linux*Android 4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*]
6831
+ Parent=Chrome 18.0
6832
+ Platform="Android"
6833
+ Platform_Version=4.1
6834
+ Win32=false
6835
 
6836
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 19.0
6837
 
6838
+ [Chrome 19.0]
6839
  Parent=DefaultProperties
6840
+ Comment="Chrome 19.0"
6841
+ Browser="Chrome"
6842
+ Version=19.0
6843
+ MajorVer=19
6844
+ MinorVer=0
6845
+ Win32=true
6846
  Frames=true
6847
+ IFrames=true
6848
  Tables=true
6849
  Cookies=true
6850
+ JavaScript=true
6851
+ JavaApplets=true
6852
+ CssVersion=3
6853
 
6854
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6855
+ Parent=Chrome 19.0
6856
+ Platform="MacOSX"
6857
+ Win32=false
6858
 
6859
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6860
+ Parent=Chrome 19.0
6861
+ Platform="Linux"
6862
+ Win32=false
6863
 
6864
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6865
+ Parent=Chrome 19.0
6866
+ Platform="Linux"
6867
+ Win32=false
6868
 
6869
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6870
+ Parent=Chrome 19.0
6871
+ Platform="WinNT"
6872
+ Platform_Version=4.0
6873
+
6874
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6875
+ Parent=Chrome 19.0
6876
+ Platform="Win2000"
6877
+ Platform_Version=5.0
6878
+
6879
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6880
+ Parent=Chrome 19.0
6881
+ Platform="WinXP"
6882
+ Platform_Version=5.1
6883
+
6884
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6885
+ Parent=Chrome 19.0
6886
+ Platform="WinXP"
6887
+ Platform_Version=5.1
6888
+ Win32=false
6889
+ Win64=true
6890
 
6891
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6892
+ Parent=Chrome 19.0
6893
+ Platform="WinXP"
6894
+ Platform_Version=5.2
6895
 
6896
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6897
+ Parent=Chrome 19.0
6898
+ Platform="WinXP"
6899
+ Platform_Version=5.2
6900
+ Win32=false
6901
+ Win64=true
6902
 
6903
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6904
+ Parent=Chrome 19.0
6905
+ Platform="WinVista"
6906
+ Platform_Version=6.0
6907
 
6908
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6909
+ Parent=Chrome 19.0
6910
+ Platform="WinVista"
6911
+ Platform_Version=6.0
6912
+ Win32=false
6913
+ Win64=true
6914
 
6915
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6916
+ Parent=Chrome 19.0
6917
+ Platform="Win7"
6918
+ Platform_Version=6.1
6919
 
6920
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6921
+ Parent=Chrome 19.0
6922
+ Platform="Win7"
6923
+ Platform_Version=6.1
6924
+ Win32=false
6925
+ Win64=true
6926
 
6927
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6928
+ Parent=Chrome 19.0
6929
+ Platform="Win8"
6930
+ Platform_Version=6.2
6931
 
6932
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*]
6933
+ Parent=Chrome 19.0
6934
+ Platform="Win8"
6935
+ Platform_Version=6.2
6936
+ Win32=false
6937
+ Win64=true
6938
 
6939
+ [Mozilla/5.0 (iPad*CPU*OS 5_1*like Mac OS X*)*AppleWebKit/534.46.*(*KHTML, like Gecko*)*CriOS/19.0.*Mobile/9B206*Safari/7534.48.3]
6940
+ Parent=Chrome 19.0
6941
+ Platform="iOS"
6942
+ Platform_Version=5.1
6943
+ Win32=false
6944
+ isMobileDevice=true
6945
 
6946
+ [Mozilla/5.0 (iPhone*CPU*OS 5_1*like Mac OS X*)*AppleWebKit/534.46.*(*KHTML, like Gecko*)*CriOS/19.0.*Mobile/9B206*Safari/7534.48.3]
6947
+ Parent=Chrome 19.0
6948
+ Platform="iOS"
6949
+ Platform_Version=5.1
6950
+ Win32=false
6951
+ isMobileDevice=true
6952
 
6953
+ [Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*]
6954
+ Parent=Chrome 19.0
6955
+ Platform="Android"
6956
+ Platform_Version=1.0
6957
+ Win32=false
6958
+ isMobileDevice=true
6959
 
6960
+ [Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*]
6961
+ Parent=Chrome 19.0
6962
+ Platform="Android"
6963
+ Platform_Version=1.1
6964
+ Win32=false
6965
+ isMobileDevice=true
6966
 
6967
+ [Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*]
6968
+ Parent=Chrome 19.0
6969
+ Platform="Android"
6970
+ Platform_Version=1.5
6971
+ Win32=false
6972
+ isMobileDevice=true
6973
 
6974
+ [Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*]
6975
+ Parent=Chrome 19.0
6976
+ Platform="Android"
6977
+ Platform_Version=1.6
6978
+ Win32=false
6979
+ isMobileDevice=true
6980
 
6981
+ [Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*]
6982
+ Parent=Chrome 19.0
6983
+ Platform="Android"
6984
+ Platform_Version=2.0
6985
+ Win32=false
6986
+ isMobileDevice=true
6987
 
6988
+ [Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*]
6989
+ Parent=Chrome 19.0
6990
+ Platform="Android"
6991
+ Platform_Version=2.1
6992
+ Win32=false
6993
+ isMobileDevice=true
6994
 
6995
+ [Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*]
6996
+ Parent=Chrome 19.0
6997
+ Platform="Android"
6998
+ Platform_Version=2.2
6999
+ Win32=false
7000
+ isMobileDevice=true
7001
 
7002
+ [Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*]
7003
+ Parent=Chrome 19.0
7004
+ Platform="Android"
7005
+ Platform_Version=2.3
7006
+ Win32=false
7007
+ isMobileDevice=true
7008
 
7009
+ [Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*]
7010
+ Parent=Chrome 19.0
7011
+ Platform="Android"
7012
+ Platform_Version=4.0
7013
+ Win32=false
7014
+ isMobileDevice=true
7015
+
7016
+ [Mozilla/5.0 (Linux*Android 4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*]
7017
+ Parent=Chrome 19.0
7018
+ Platform="Android"
7019
+ Platform_Version=4.1
7020
+ Win32=false
7021
 
7022
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 20.0
7023
 
7024
+ [Chrome 20.0]
7025
  Parent=DefaultProperties
7026
+ Comment="Chrome 20.0"
7027
+ Browser="Chrome"
7028
+ Version=20.0
7029
+ MajorVer=20
7030
+ MinorVer=0
7031
+ Beta=true
7032
  Win32=true
7033
  Frames=true
7034
+ IFrames=true
7035
  Tables=true
7036
  Cookies=true
7037
  JavaScript=true
7038
+ JavaApplets=true
7039
+ CssVersion=3
7040
 
7041
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7042
+ Parent=Chrome 20.0
7043
+ Platform="MacOSX"
7044
+ Win32=false
7045
 
7046
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7047
+ Parent=Chrome 20.0
7048
+ Platform="Linux"
7049
+ Win32=false
7050
 
7051
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7052
+ Parent=Chrome 20.0
7053
+ Platform="Linux"
7054
+ Win32=false
 
 
 
 
7055
 
7056
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7057
+ Parent=Chrome 20.0
7058
+ Platform="WinNT"
7059
+ Platform_Version=4.0
7060
+
7061
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7062
+ Parent=Chrome 20.0
7063
+ Platform="Win2000"
7064
+ Platform_Version=5.0
7065
+
7066
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7067
+ Parent=Chrome 20.0
7068
+ Platform="WinXP"
7069
+ Platform_Version=5.1
7070
+
7071
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7072
+ Parent=Chrome 20.0
7073
+ Platform="WinXP"
7074
+ Platform_Version=5.1
7075
+ Win32=false
7076
+ Win64=true
7077
 
7078
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7079
+ Parent=Chrome 20.0
7080
+ Platform="WinXP"
7081
+ Platform_Version=5.2
7082
 
7083
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7084
+ Parent=Chrome 20.0
7085
+ Platform="WinXP"
7086
+ Platform_Version=5.2
7087
+ Win32=false
7088
+ Win64=true
7089
 
7090
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7091
+ Parent=Chrome 20.0
7092
+ Platform="WinVista"
7093
+ Platform_Version=6.0
7094
 
7095
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7096
+ Parent=Chrome 20.0
7097
+ Platform="WinVista"
7098
+ Platform_Version=6.0
7099
+ Win32=false
7100
+ Win64=true
7101
 
7102
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7103
+ Parent=Chrome 20.0
7104
+ Platform="Win7"
7105
+ Platform_Version=6.1
7106
 
7107
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7108
+ Parent=Chrome 20.0
7109
+ Platform="Win7"
7110
+ Platform_Version=6.1
7111
+ Win32=false
7112
  Win64=true
 
 
 
 
7113
 
7114
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7115
+ Parent=Chrome 20.0
7116
+ Platform="Win8"
7117
+ Platform_Version=6.2
7118
 
7119
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*]
7120
+ Parent=Chrome 20.0
7121
+ Platform="Win8"
7122
+ Platform_Version=6.2
7123
+ Win32=false
7124
+ Win64=true
7125
+
7126
+ [Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*]
7127
+ Parent=Chrome 20.0
7128
+ Platform="Android"
7129
+ Platform_Version=1.0
7130
+ Win32=false
7131
+ isMobileDevice=true
7132
+
7133
+ [Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*]
7134
+ Parent=Chrome 20.0
7135
+ Platform="Android"
7136
+ Platform_Version=1.1
7137
+ Win32=false
7138
+ isMobileDevice=true
7139
+
7140
+ [Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*]
7141
+ Parent=Chrome 20.0
7142
+ Platform="Android"
7143
+ Platform_Version=1.5
7144
+ Win32=false
7145
+ isMobileDevice=true
7146
+
7147
+ [Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*]
7148
+ Parent=Chrome 20.0
7149
+ Platform="Android"
7150
+ Platform_Version=1.6
7151
+ Win32=false
7152
+ isMobileDevice=true
7153
+
7154
+ [Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*]
7155
+ Parent=Chrome 20.0
7156
+ Platform="Android"
7157
+ Platform_Version=2.0
7158
+ Win32=false
7159
+ isMobileDevice=true
7160
+
7161
+ [Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*]
7162
+ Parent=Chrome 20.0
7163
+ Platform="Android"
7164
+ Platform_Version=2.1
7165
+ Win32=false
7166
+ isMobileDevice=true
7167
+
7168
+ [Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*]
7169
+ Parent=Chrome 20.0
7170
+ Platform="Android"
7171
+ Platform_Version=2.2
7172
+ Win32=false
7173
+ isMobileDevice=true
7174
+
7175
+ [Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*]
7176
+ Parent=Chrome 20.0
7177
+ Platform="Android"
7178
+ Platform_Version=2.3
7179
+ Win32=false
7180
+ isMobileDevice=true
7181
+
7182
+ [Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*]
7183
+ Parent=Chrome 20.0
7184
+ Platform="Android"
7185
+ Platform_Version=4.0
7186
+ Win32=false
7187
+ isMobileDevice=true
7188
+
7189
+ [Mozilla/5.0 (Linux*Android 4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*]
7190
+ Parent=Chrome 20.0
7191
+ Platform="Android"
7192
+ Platform_Version=4.1
7193
+ Win32=false
7194
 
7195
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 21.0
7196
 
7197
+ [Chrome 21.0]
7198
  Parent=DefaultProperties
7199
+ Comment="Chrome 21.0"
7200
+ Browser="Chrome"
7201
+ Version=21.0
7202
+ MajorVer=21
7203
+ MinorVer=0
7204
+ Alpha=true
7205
+ Win32=true
7206
  Frames=true
7207
  IFrames=true
7208
  Tables=true
7209
  Cookies=true
7210
  JavaScript=true
7211
+ JavaApplets=true
7212
+ CssVersion=3
7213
 
7214
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7215
+ Parent=Chrome 21.0
7216
+ Platform="MacOSX"
7217
+ Win32=false
 
7218
 
7219
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7220
+ Parent=Chrome 21.0
7221
+ Platform="Linux"
7222
+ Win32=false
 
7223
 
7224
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7225
+ Parent=Chrome 21.0
7226
+ Platform="Linux"
7227
+ Win32=false
 
7228
 
7229
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7230
+ Parent=Chrome 21.0
7231
+ Platform="WinNT"
7232
+ Platform_Version=4.0
7233
+
7234
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7235
+ Parent=Chrome 21.0
7236
+ Platform="Win2000"
7237
+ Platform_Version=5.0
7238
+
7239
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7240
+ Parent=Chrome 21.0
7241
+ Platform="WinXP"
7242
+ Platform_Version=5.1
7243
+
7244
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7245
+ Parent=Chrome 21.0
7246
+ Platform="WinXP"
7247
+ Platform_Version=5.1
7248
+ Win32=false
7249
+ Win64=true
7250
 
7251
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7252
+ Parent=Chrome 21.0
7253
+ Platform="WinXP"
7254
+ Platform_Version=5.2
 
7255
 
7256
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7257
+ Parent=Chrome 21.0
7258
+ Platform="WinXP"
7259
+ Platform_Version=5.2
7260
+ Win32=false
7261
+ Win64=true
7262
 
7263
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7264
+ Parent=Chrome 21.0
7265
+ Platform="WinVista"
7266
+ Platform_Version=6.0
 
7267
 
7268
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7269
+ Parent=Chrome 21.0
7270
+ Platform="WinVista"
7271
+ Platform_Version=6.0
7272
+ Win32=false
7273
+ Win64=true
7274
 
7275
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7276
+ Parent=Chrome 21.0
7277
+ Platform="Win7"
7278
+ Platform_Version=6.1
 
7279
 
7280
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7281
+ Parent=Chrome 21.0
7282
+ Platform="Win7"
7283
+ Platform_Version=6.1
7284
+ Win32=false
7285
+ Win64=true
7286
 
7287
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7288
+ Parent=Chrome 21.0
7289
+ Platform="Win8"
7290
+ Platform_Version=6.2
7291
 
7292
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*]
7293
+ Parent=Chrome 21.0
7294
+ Platform="Win8"
7295
+ Platform_Version=6.2
7296
+ Win32=false
7297
+ Win64=true
7298
+
7299
+ [Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*]
7300
+ Parent=Chrome 21.0
7301
+ Platform="Android"
7302
+ Platform_Version=1.0
7303
+ Win32=false
7304
  isMobileDevice=true
7305
 
7306
+ [Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*]
7307
+ Parent=Chrome 21.0
7308
+ Platform="Android"
7309
+ Platform_Version=1.1
7310
+ Win32=false
7311
+ isMobileDevice=true
7312
 
7313
+ [Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*]
7314
+ Parent=Chrome 21.0
7315
+ Platform="Android"
7316
+ Platform_Version=1.5
7317
+ Win32=false
7318
+ isMobileDevice=true
7319
 
7320
+ [Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*]
7321
+ Parent=Chrome 21.0
7322
+ Platform="Android"
7323
+ Platform_Version=1.6
7324
+ Win32=false
7325
+ isMobileDevice=true
7326
 
7327
+ [Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*]
7328
+ Parent=Chrome 21.0
7329
+ Platform="Android"
7330
+ Platform_Version=2.0
7331
+ Win32=false
7332
+ isMobileDevice=true
7333
 
7334
+ [Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*]
7335
+ Parent=Chrome 21.0
7336
+ Platform="Android"
7337
+ Platform_Version=2.1
7338
+ Win32=false
7339
+ isMobileDevice=true
7340
 
7341
+ [Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*]
7342
+ Parent=Chrome 21.0
7343
+ Platform="Android"
7344
+ Platform_Version=2.2
7345
+ Win32=false
7346
+ isMobileDevice=true
7347
+
7348
+ [Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*]
7349
+ Parent=Chrome 21.0
7350
+ Platform="Android"
7351
+ Platform_Version=2.3
7352
+ Win32=false
7353
+ isMobileDevice=true
7354
 
7355
+ [Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*]
7356
+ Parent=Chrome 21.0
7357
+ Platform="Android"
7358
+ Platform_Version=4.0
7359
+ Win32=false
7360
+ isMobileDevice=true
7361
+
7362
+ [Mozilla/5.0 (Linux*Android 4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*]
7363
+ Parent=Chrome 21.0
7364
+ Platform="Android"
7365
+ Platform_Version=4.1
7366
+ Win32=false
7367
 
7368
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 22.0
7369
+
7370
+ [Chrome 22.0]
7371
  Parent=DefaultProperties
7372
+ Comment="Chrome 22.0"
7373
+ Browser="Chrome"
7374
+ Version=22.0
7375
+ MajorVer=22
7376
+ MinorVer=0
7377
+ Alpha=true
7378
  Win32=true
7379
  Frames=true
7380
+ IFrames=true
7381
  Tables=true
7382
  Cookies=true
7383
  JavaScript=true
7384
+ JavaApplets=true
7385
+ CssVersion=3
7386
 
7387
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7388
+ Parent=Chrome 22.0
7389
+ Platform="MacOSX"
7390
+ Win32=false
 
 
 
 
7391
 
7392
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7393
+ Parent=Chrome 22.0
7394
+ Platform="Linux"
7395
+ Win32=false
 
 
 
 
7396
 
7397
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7398
+ Parent=Chrome 22.0
7399
+ Platform="Linux"
7400
+ Win32=false
 
 
7401
 
7402
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7403
+ Parent=Chrome 22.0
7404
+ Platform="WinNT"
7405
+ Platform_Version=4.0
7406
+
7407
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7408
+ Parent=Chrome 22.0
7409
+ Platform="Win2000"
7410
+ Platform_Version=5.0
7411
+
7412
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7413
+ Parent=Chrome 22.0
7414
+ Platform="WinXP"
7415
+ Platform_Version=5.1
7416
+
7417
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7418
+ Parent=Chrome 22.0
7419
+ Platform="WinXP"
7420
+ Platform_Version=5.1
7421
+ Win32=false
7422
+ Win64=true
7423
 
7424
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7425
+ Parent=Chrome 22.0
7426
+ Platform="WinXP"
7427
+ Platform_Version=5.2
7428
 
7429
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7430
+ Parent=Chrome 22.0
7431
+ Platform="WinXP"
7432
+ Platform_Version=5.2
7433
+ Win32=false
7434
+ Win64=true
 
 
7435
 
7436
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7437
+ Parent=Chrome 22.0
7438
+ Platform="WinVista"
7439
+ Platform_Version=6.0
7440
 
7441
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7442
+ Parent=Chrome 22.0
7443
+ Platform="WinVista"
7444
+ Platform_Version=6.0
7445
+ Win32=false
7446
+ Win64=true
7447
 
7448
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7449
+ Parent=Chrome 22.0
7450
+ Platform="Win7"
7451
+ Platform_Version=6.1
7452
 
7453
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7454
+ Parent=Chrome 22.0
7455
+ Platform="Win7"
7456
+ Platform_Version=6.1
7457
+ Win32=false
7458
+ Win64=true
7459
 
7460
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7461
+ Parent=Chrome 22.0
7462
+ Platform="Win8"
7463
+ Platform_Version=6.2
7464
+
7465
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*]
7466
+ Parent=Chrome 22.0
7467
+ Platform="Win8"
7468
+ Platform_Version=6.2
7469
+ Win32=false
7470
+ Win64=true
7471
+
7472
+ [Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*]
7473
+ Parent=Chrome 22.0
7474
+ Platform="Android"
7475
+ Platform_Version=1.0
7476
+ Win32=false
7477
  isMobileDevice=true
 
 
7478
 
7479
+ [Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*]
7480
+ Parent=Chrome 22.0
7481
+ Platform="Android"
7482
+ Platform_Version=1.1
7483
+ Win32=false
7484
+ isMobileDevice=true
7485
 
7486
+ [Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*]
7487
+ Parent=Chrome 22.0
7488
+ Platform="Android"
7489
+ Platform_Version=1.5
7490
+ Win32=false
7491
+ isMobileDevice=true
7492
 
7493
+ [Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*]
7494
+ Parent=Chrome 22.0
7495
+ Platform="Android"
7496
+ Platform_Version=1.6
7497
+ Win32=false
7498
+ isMobileDevice=true
7499
 
7500
+ [Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*]
7501
+ Parent=Chrome 22.0
7502
+ Platform="Android"
7503
+ Platform_Version=2.0
7504
+ Win32=false
7505
+ isMobileDevice=true
7506
 
7507
+ [Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*]
7508
+ Parent=Chrome 22.0
7509
+ Platform="Android"
7510
+ Platform_Version=2.1
7511
+ Win32=false
7512
+ isMobileDevice=true
7513
 
7514
+ [Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*]
7515
+ Parent=Chrome 22.0
7516
+ Platform="Android"
7517
+ Platform_Version=2.2
7518
+ Win32=false
7519
+ isMobileDevice=true
7520
 
7521
+ [Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*]
7522
+ Parent=Chrome 22.0
7523
+ Platform="Android"
7524
+ Platform_Version=2.3
7525
+ Win32=false
7526
+ isMobileDevice=true
7527
 
7528
+ [Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*]
7529
+ Parent=Chrome 22.0
7530
+ Platform="Android"
7531
+ Platform_Version=4.0
7532
+ Win32=false
7533
  isMobileDevice=true
 
 
7534
 
7535
+ [Mozilla/5.0 (Linux*Android 4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*]
7536
+ Parent=Chrome 22.0
7537
+ Platform="Android"
7538
+ Platform_Version=4.1
7539
+ Win32=false
7540
 
7541
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 6.0
7542
 
7543
+ [Chrome 6.0]
7544
  Parent=DefaultProperties
7545
+ Comment="Chrome 6.0"
7546
+ Browser="Chrome"
7547
+ Version=6.0
7548
+ MajorVer=6
7549
+ MinorVer=0
7550
+ Win32=true
7551
  Frames=true
7552
+ IFrames=true
7553
  Tables=true
7554
  Cookies=true
7555
  JavaScript=true
7556
+ JavaApplets=true
7557
+ CssVersion=2
 
7558
 
7559
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7560
+ Parent=Chrome 6.0
7561
+ Platform="MacOSX"
7562
+ Win32=false
7563
 
7564
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7565
+ Parent=Chrome 6.0
7566
+ Platform="Linux"
7567
+ Win32=false
7568
 
7569
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7570
+ Parent=Chrome 6.0
7571
+ Platform="Linux"
7572
+ Win32=false
7573
 
7574
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7575
+ Parent=Chrome 6.0
7576
+ Platform="WinNT"
7577
+ Platform_Version=4.0
7578
+
7579
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7580
+ Parent=Chrome 6.0
7581
+ Platform="Win2000"
7582
+ Platform_Version=5.0
7583
+
7584
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7585
+ Parent=Chrome 6.0
7586
+ Platform="WinXP"
7587
+ Platform_Version=5.1
7588
+
7589
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7590
+ Parent=Chrome 6.0
7591
+ Platform="WinXP"
7592
+ Platform_Version=5.1
7593
+ Win32=false
7594
+ Win64=true
7595
 
7596
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7597
+ Parent=Chrome 6.0
7598
+ Platform="WinXP"
7599
+ Platform_Version=5.2
7600
 
7601
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7602
+ Parent=Chrome 6.0
7603
+ Platform="WinXP"
7604
+ Platform_Version=5.2
7605
+ Win32=false
7606
+ Win64=true
7607
 
7608
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7609
+ Parent=Chrome 6.0
7610
+ Platform="WinVista"
7611
+ Platform_Version=6.0
7612
+
7613
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7614
+ Parent=Chrome 6.0
7615
+ Platform="WinVista"
7616
+ Platform_Version=6.0
7617
+ Win32=false
7618
+ Win64=true
7619
+
7620
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7621
+ Parent=Chrome 6.0
7622
+ Platform="Win7"
7623
+ Platform_Version=6.1
7624
+
7625
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*]
7626
+ Parent=Chrome 6.0
7627
+ Platform="Win7"
7628
+ Platform_Version=6.1
7629
+ Win32=false
7630
+ Win64=true
7631
+
7632
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 7.0
7633
+
7634
+ [Chrome 7.0]
7635
  Parent=DefaultProperties
7636
+ Comment="Chrome 7.0"
7637
+ Browser="Chrome"
7638
+ Version=7.0
7639
+ MajorVer=7
7640
+ MinorVer=0
7641
+ Win32=true
7642
  Frames=true
7643
+ IFrames=true
7644
  Tables=true
7645
  Cookies=true
7646
  JavaScript=true
7647
+ JavaApplets=true
7648
+ CssVersion=2
7649
 
7650
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7651
+ Parent=Chrome 7.0
7652
+ Platform="MacOSX"
7653
+ Win32=false
 
7654
 
7655
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7656
+ Parent=Chrome 7.0
7657
+ Platform="Linux"
7658
+ Win32=false
7659
 
7660
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7661
+ Parent=Chrome 7.0
7662
+ Platform="Linux"
7663
+ Win32=false
7664
+
7665
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7666
+ Parent=Chrome 7.0
7667
+ Platform="WinNT"
7668
+ Platform_Version=4.0
7669
+
7670
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7671
+ Parent=Chrome 7.0
7672
+ Platform="Win2000"
7673
+ Platform_Version=5.0
7674
+
7675
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7676
+ Parent=Chrome 7.0
7677
+ Platform="WinXP"
7678
+ Platform_Version=5.1
7679
+
7680
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7681
+ Parent=Chrome 7.0
7682
+ Platform="WinXP"
7683
+ Platform_Version=5.1
7684
+ Win32=false
7685
+ Win64=true
7686
+
7687
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7688
+ Parent=Chrome 7.0
7689
+ Platform="WinXP"
7690
+ Platform_Version=5.2
7691
+
7692
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7693
+ Parent=Chrome 7.0
7694
+ Platform="WinXP"
7695
+ Platform_Version=5.2
7696
+ Win32=false
7697
+ Win64=true
7698
+
7699
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7700
+ Parent=Chrome 7.0
7701
+ Platform="WinVista"
7702
+ Platform_Version=6.0
7703
+
7704
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7705
+ Parent=Chrome 7.0
7706
+ Platform="WinVista"
7707
+ Platform_Version=6.0
7708
+ Win32=false
7709
+ Win64=true
7710
+
7711
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7712
+ Parent=Chrome 7.0
7713
+ Platform="Win7"
7714
+ Platform_Version=6.1
7715
+
7716
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*]
7717
+ Parent=Chrome 7.0
7718
+ Platform="Win7"
7719
+ Platform_Version=6.1
7720
+ Win32=false
7721
+ Win64=true
7722
+
7723
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 8.0
7724
+
7725
+ [Chrome 8.0]
7726
  Parent=DefaultProperties
7727
+ Comment="Chrome 8.0"
7728
+ Browser="Chrome"
7729
+ Version=8.0
7730
+ MajorVer=8
7731
+ MinorVer=0
7732
+ Win32=true
7733
  Frames=true
7734
+ IFrames=true
7735
  Tables=true
7736
  Cookies=true
7737
  JavaScript=true
7738
+ JavaApplets=true
7739
+ CssVersion=2
7740
 
7741
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7742
+ Parent=Chrome 8.0
7743
+ Platform="MacOSX"
7744
+ Win32=false
 
 
 
 
 
 
 
7745
 
7746
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7747
+ Parent=Chrome 8.0
7748
+ Platform="Linux"
7749
+ Win32=false
 
7750
 
7751
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7752
+ Parent=Chrome 8.0
7753
+ Platform="Linux"
7754
+ Win32=false
 
7755
 
7756
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7757
+ Parent=Chrome 8.0
7758
+ Platform="WinNT"
7759
+ Platform_Version=4.0
7760
+
7761
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7762
+ Parent=Chrome 8.0
7763
+ Platform="Win2000"
7764
+ Platform_Version=5.0
7765
+
7766
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7767
+ Parent=Chrome 8.0
7768
+ Platform="WinXP"
7769
+ Platform_Version=5.1
7770
+
7771
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7772
+ Parent=Chrome 8.0
7773
+ Platform="WinXP"
7774
+ Platform_Version=5.1
7775
+ Win32=false
7776
+ Win64=true
7777
 
7778
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7779
+ Parent=Chrome 8.0
7780
+ Platform="WinXP"
7781
+ Platform_Version=5.2
 
7782
 
7783
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7784
+ Parent=Chrome 8.0
7785
+ Platform="WinXP"
7786
+ Platform_Version=5.2
7787
+ Win32=false
7788
+ Win64=true
 
7789
 
7790
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7791
+ Parent=Chrome 8.0
7792
+ Platform="WinVista"
7793
+ Platform_Version=6.0
 
 
 
7794
 
7795
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7796
+ Parent=Chrome 8.0
7797
+ Platform="WinVista"
7798
+ Platform_Version=6.0
7799
+ Win32=false
7800
+ Win64=true
 
7801
 
7802
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7803
+ Parent=Chrome 8.0
7804
+ Platform="Win7"
7805
+ Platform_Version=6.1
 
 
 
 
7806
 
7807
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*]
7808
+ Parent=Chrome 8.0
7809
+ Platform="Win7"
7810
+ Platform_Version=6.1
7811
+ Win32=false
7812
+ Win64=true
 
 
7813
 
7814
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 9.0
7815
 
7816
+ [Chrome 9.0]
7817
  Parent=DefaultProperties
7818
+ Comment="Chrome 9.0"
7819
+ Browser="Chrome"
7820
+ Version=9.0
7821
+ MajorVer=9
7822
+ MinorVer=0
7823
+ Win32=true
7824
+ Frames=true
7825
+ IFrames=true
7826
  Tables=true
7827
  Cookies=true
7828
+ JavaScript=true
7829
+ JavaApplets=true
7830
+ CssVersion=2
7831
 
7832
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7833
+ Parent=Chrome 9.0
7834
+ Platform="MacOSX"
7835
+ Win32=false
 
7836
 
7837
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7838
+ Parent=Chrome 9.0
7839
+ Platform="Linux"
7840
+ Win32=false
 
7841
 
7842
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7843
+ Parent=Chrome 9.0
7844
+ Platform="Linux"
7845
+ Win32=false
 
7846
 
7847
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7848
+ Parent=Chrome 9.0
7849
+ Platform="WinNT"
7850
+ Platform_Version=4.0
7851
+
7852
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7853
+ Parent=Chrome 9.0
7854
+ Platform="Win2000"
7855
+ Platform_Version=5.0
7856
+
7857
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7858
+ Parent=Chrome 9.0
7859
+ Platform="WinXP"
7860
+ Platform_Version=5.1
7861
+
7862
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7863
+ Parent=Chrome 9.0
7864
+ Platform="WinXP"
7865
+ Platform_Version=5.1
7866
+ Win32=false
7867
+ Win64=true
7868
 
7869
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7870
+ Parent=Chrome 9.0
7871
+ Platform="WinXP"
7872
+ Platform_Version=5.2
 
7873
 
7874
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7875
+ Parent=Chrome 9.0
7876
+ Platform="WinXP"
7877
+ Platform_Version=5.2
7878
+ Win32=false
7879
+ Win64=true
7880
 
7881
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7882
+ Parent=Chrome 9.0
7883
+ Platform="WinVista"
7884
+ Platform_Version=6.0
7885
 
7886
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7887
+ Parent=Chrome 9.0
7888
+ Platform="WinVista"
7889
+ Platform_Version=6.0
7890
+ Win32=false
7891
+ Win64=true
7892
+
7893
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7894
+ Parent=Chrome 9.0
7895
+ Platform="Win7"
7896
+ Platform_Version=6.1
7897
+
7898
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*]
7899
+ Parent=Chrome 9.0
7900
+ Platform="Win7"
7901
+ Platform_Version=6.1
7902
+ Win32=false
7903
+ Win64=true
7904
+
7905
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome Generic
7906
+
7907
+ [Chrome Generic]
7908
  Parent=DefaultProperties
7909
+ Comment="Chrome Generic"
7910
+ Browser="Chrome"
7911
+ CssVersion=1
7912
 
7913
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7914
+ Parent=Chrome Generic
7915
+ Platform="MacOSX"
7916
+
7917
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7918
+ Parent=Chrome Generic
7919
+ Platform="Linux"
7920
+
7921
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7922
+ Parent=Chrome Generic
7923
+ Platform="Linux"
7924
+
7925
+ [Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7926
+ Parent=Chrome Generic
7927
+ Platform="WinNT"
7928
+ Platform_Version=4.0
7929
+
7930
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7931
+ Parent=Chrome Generic
7932
+ Platform="Win2000"
7933
+ Platform_Version=5.0
7934
+
7935
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7936
+ Parent=Chrome Generic
7937
+ Platform="WinXP"
7938
+ Platform_Version=5.1
7939
+
7940
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7941
+ Parent=Chrome Generic
7942
+ Platform="WinXP"
7943
+ Platform_Version=5.1
7944
+ Win32=false
7945
+ Win64=true
7946
+
7947
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7948
+ Parent=Chrome Generic
7949
+ Platform="WinXP"
7950
+ Platform_Version=5.2
7951
+
7952
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7953
+ Parent=Chrome Generic
7954
+ Platform="WinXP"
7955
+ Platform_Version=5.2
7956
+ Win32=false
7957
+ Win64=true
7958
+
7959
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7960
+ Parent=Chrome Generic
7961
+ Platform="WinVista"
7962
+ Platform_Version=6.0
7963
+
7964
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7965
+ Parent=Chrome Generic
7966
+ Platform="WinVista"
7967
+ Platform_Version=6.0
7968
+ Win32=false
7969
+ Win64=true
7970
+
7971
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7972
+ Parent=Chrome Generic
7973
+ Platform="Win7"
7974
+ Platform_Version=6.1
7975
+
7976
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*]
7977
+ Parent=Chrome Generic
7978
+ Platform="Win7"
7979
+ Platform_Version=6.1
7980
+ Win32=false
7981
+ Win64=true
7982
+
7983
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Code
7984
+
7985
+ [Google Code]
7986
+ Parent=DefaultProperties
7987
+ Comment="Google Code"
7988
+ Browser="Google Code"
7989
+
7990
+ [Mozilla/5.0 (Windows; U; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.6*]
7991
+ Parent=Google Code
7992
+ Browser="Arora"
7993
+ Version=0.6
7994
  MajorVer=0
7995
+ MinorVer=6
7996
+ Platform="Win32"
7997
 
7998
+ [Mozilla/5.0 (Windows; U; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8.*]
7999
+ Parent=Google Code
8000
+ Browser="Arora"
8001
+ Version=0.8.0
8002
  MajorVer=0
8003
+ MinorVer=8.0
8004
+ Platform="Win32"
8005
 
8006
+ [Mozilla/5.0 (X11; U; Linux; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.6*]
8007
+ Parent=Google Code
8008
+ Browser="Arora"
8009
+ Version=0.6
8010
  MajorVer=0
8011
+ MinorVer=6
8012
+ Platform="Linux"
8013
 
8014
+ [Mozilla/5.0 (X11; U; Linux; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8.*]
8015
+ Parent=Google Code
8016
+ Browser="Arora"
8017
+ Version=0.8.0
8018
  MajorVer=0
8019
+ MinorVer=8.0
8020
+ Platform="Linux"
8021
 
8022
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 10.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8023
 
8024
+ [Iron 10.0]
8025
+ Parent=DefaultProperties
8026
+ Comment="Iron 10.0"
8027
+ Browser="Iron"
8028
+ Version=10.0
8029
+ MajorVer=10
8030
+ MinorVer=0
8031
  Win32=true
8032
+ Frames=true
8033
+ IFrames=true
8034
+ Tables=true
8035
+ Cookies=true
8036
+ JavaScript=true
8037
+ JavaApplets=true
8038
+ CssVersion=3
8039
 
8040
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*]
8041
+ Parent=Iron 10.0
8042
+ Platform="MacOSX"
8043
+ Win32=false
 
 
 
8044
 
8045
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*]
8046
+ Parent=Iron 10.0
8047
+ Platform="Linux"
8048
+ Win32=false
 
 
 
8049
 
8050
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*]
8051
+ Parent=Iron 10.0
8052
+ Platform="Linux"
8053
+ Win32=false
 
 
 
8054
 
8055
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*]
8056
+ Parent=Iron 10.0
8057
+ Platform="WinXP"
8058
+ Platform_Version=5.1
 
 
 
8059
 
8060
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*]
8061
+ Parent=Iron 10.0
8062
+ Platform="Win2003"
8063
+ Platform_Version=5.2
 
 
 
8064
 
8065
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*]
8066
+ Parent=Iron 10.0
8067
+ Platform="WinVista"
8068
+ Platform_Version=6.0
8069
+
8070
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*]
8071
+ Parent=Iron 10.0
8072
+ Platform="Win7"
8073
+ Platform_Version=6.1
8074
+
8075
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 11.0
8076
+
8077
+ [Iron 11.0]
8078
+ Parent=DefaultProperties
8079
+ Comment="Iron 11.0"
8080
+ Browser="Iron"
8081
+ Version=11.0
8082
+ MajorVer=11
8083
  MinorVer=0
 
8084
  Win32=true
8085
+ Frames=true
8086
+ IFrames=true
8087
+ Tables=true
8088
+ Cookies=true
8089
+ JavaScript=true
8090
+ JavaApplets=true
8091
+ CssVersion=3
8092
 
8093
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*]
8094
+ Parent=Iron 11.0
8095
+ Platform="MacOSX"
8096
+ Win32=false
 
 
 
8097
 
8098
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*]
8099
+ Parent=Iron 11.0
8100
+ Platform="Linux"
8101
+ Win32=false
 
 
 
8102
 
8103
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*]
8104
+ Parent=Iron 11.0
8105
+ Platform="Linux"
8106
+ Win32=false
 
 
 
8107
 
8108
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*]
8109
+ Parent=Iron 11.0
8110
+ Platform="WinXP"
8111
+ Platform_Version=5.1
 
 
 
8112
 
8113
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*]
8114
+ Parent=Iron 11.0
8115
+ Platform="Win2003"
8116
+ Platform_Version=5.2
 
 
8117
 
8118
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*]
8119
+ Parent=Iron 11.0
8120
+ Platform="WinVista"
8121
+ Platform_Version=6.0
 
 
8122
 
8123
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*]
8124
+ Parent=Iron 11.0
8125
+ Platform="Win7"
8126
+ Platform_Version=6.1
 
 
8127
 
8128
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 12.0
8129
 
8130
+ [Iron 12.0]
8131
  Parent=DefaultProperties
8132
+ Comment="Iron 12.0"
8133
+ Browser="Iron"
8134
+ Version=12.0
8135
+ MajorVer=12
8136
+ MinorVer=0
8137
+ Win32=true
8138
  Frames=true
8139
+ IFrames=true
8140
  Tables=true
8141
+ Cookies=true
8142
+ VBScript=true
8143
+ JavaApplets=true
8144
+ CssVersion=3
8145
 
8146
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*]
8147
+ Parent=Iron 12.0
8148
+ Platform="MacOSX"
8149
+ Win32=false
 
 
 
 
 
 
 
 
 
 
 
 
 
8150
 
8151
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*]
8152
+ Parent=Iron 12.0
8153
+ Platform="Linux"
8154
+ Win32=false
 
 
8155
 
8156
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*]
8157
+ Parent=Iron 12.0
8158
+ Platform="Linux"
8159
+ Win32=false
 
 
8160
 
8161
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*]
8162
+ Parent=Iron 12.0
8163
+ Platform="WinXP"
8164
+ Platform_Version=5.1
 
 
8165
 
8166
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*]
8167
+ Parent=Iron 12.0
8168
+ Platform="Win2003"
8169
+ Platform_Version=5.2
 
 
8170
 
8171
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*]
8172
+ Parent=Iron 12.0
8173
+ Platform="WinVista"
8174
+ Platform_Version=6.0
8175
 
8176
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*]
8177
+ Parent=Iron 12.0
8178
+ Platform="Win7"
8179
+ Platform_Version=6.1
8180
 
8181
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 13.0
8182
 
8183
+ [Iron 13.0]
8184
  Parent=DefaultProperties
8185
+ Comment="Iron 13.0"
8186
+ Browser="Iron"
8187
+ Version=13.0
8188
+ MajorVer=13
8189
+ MinorVer=0
8190
+ Win32=true
8191
  Frames=true
8192
+ IFrames=true
8193
  Tables=true
8194
+ Cookies=true
8195
+ VBScript=true
8196
+ JavaApplets=true
8197
+ CssVersion=3
8198
 
8199
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*]
8200
+ Parent=Iron 13.0
8201
+ Platform="MacOSX"
8202
+ Win32=false
 
 
8203
 
8204
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*]
8205
+ Parent=Iron 13.0
8206
+ Platform="Linux"
8207
+ Win32=false
 
 
8208
 
8209
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*]
8210
+ Parent=Iron 13.0
8211
+ Platform="Linux"
8212
+ Win32=false
 
 
8213
 
8214
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*]
8215
+ Parent=Iron 13.0
8216
+ Platform="WinXP"
8217
+ Platform_Version=5.1
 
 
 
8218
 
8219
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*]
8220
+ Parent=Iron 13.0
8221
+ Platform="Win2003"
8222
+ Platform_Version=5.2
 
 
 
8223
 
8224
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*]
8225
+ Parent=Iron 13.0
8226
+ Platform="WinVista"
8227
+ Platform_Version=6.0
8228
 
8229
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*]
8230
+ Parent=Iron 13.0
8231
+ Platform="Win7"
8232
+ Platform_Version=6.1
8233
+
8234
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 14.0
8235
+
8236
+ [Iron 14.0]
8237
  Parent=DefaultProperties
8238
+ Comment="Iron 14.0"
8239
+ Browser="Iron"
8240
+ Version=14.0
8241
+ MajorVer=14
8242
+ MinorVer=0
8243
+ Win32=true
8244
  Frames=true
8245
+ IFrames=true
8246
  Tables=true
8247
+ Cookies=true
8248
+ VBScript=true
8249
+ JavaApplets=true
8250
+ CssVersion=3
8251
 
8252
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*]
8253
+ Parent=Iron 14.0
8254
+ Platform="MacOSX"
8255
+ Win32=false
8256
 
8257
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*]
8258
+ Parent=Iron 14.0
8259
+ Platform="Linux"
8260
+ Win32=false
8261
 
8262
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*]
8263
+ Parent=Iron 14.0
8264
+ Platform="Linux"
8265
+ Win32=false
8266
 
8267
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*]
8268
+ Parent=Iron 14.0
8269
+ Platform="WinXP"
8270
+ Platform_Version=5.1
8271
 
8272
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*]
8273
+ Parent=Iron 14.0
8274
+ Platform="Win2003"
8275
+ Platform_Version=5.2
8276
 
8277
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*]
8278
+ Parent=Iron 14.0
8279
+ Platform="WinVista"
8280
+ Platform_Version=6.0
8281
 
8282
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*]
8283
+ Parent=Iron 14.0
8284
+ Platform="Win7"
8285
+ Platform_Version=6.1
8286
 
8287
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 15.0
 
 
8288
 
8289
+ [Iron 15.0]
8290
+ Parent=DefaultProperties
8291
+ Comment="Iron 15.0"
8292
+ Browser="Iron"
8293
+ Version=15.0
8294
+ MajorVer=15
8295
+ MinorVer=0
8296
+ Win32=true
8297
+ Frames=true
8298
+ IFrames=true
8299
+ Tables=true
8300
+ Cookies=true
8301
+ VBScript=true
8302
+ JavaApplets=true
8303
+ CssVersion=3
8304
 
8305
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*]
8306
+ Parent=Iron 15.0
8307
+ Platform="MacOSX"
8308
+ Win32=false
8309
 
8310
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*]
8311
+ Parent=Iron 15.0
8312
+ Platform="Linux"
8313
+ Win32=false
8314
 
8315
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*]
8316
+ Parent=Iron 15.0
8317
+ Platform="Linux"
8318
+ Win32=false
8319
 
8320
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*]
8321
+ Parent=Iron 15.0
8322
+ Platform="WinXP"
8323
+ Platform_Version=5.1
8324
 
8325
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*]
8326
+ Parent=Iron 15.0
8327
+ Platform="Win2003"
8328
+ Platform_Version=5.2
8329
 
8330
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*]
8331
+ Parent=Iron 15.0
8332
+ Platform="WinVista"
8333
+ Platform_Version=6.0
8334
 
8335
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*]
8336
+ Parent=Iron 15.0
8337
+ Platform="Win7"
8338
+ Platform_Version=6.1
8339
 
8340
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 16.0
 
 
8341
 
8342
+ [Iron 16.0]
8343
+ Parent=DefaultProperties
8344
+ Comment="Iron 16.0"
8345
+ Browser="Iron"
8346
+ Version=16.0
8347
+ MajorVer=16
8348
+ MinorVer=0
8349
+ Win32=true
8350
+ Frames=true
8351
+ IFrames=true
8352
+ Tables=true
8353
+ Cookies=true
8354
+ JavaScript=true
8355
+ JavaApplets=true
8356
+ CssVersion=3
8357
 
8358
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*]
8359
+ Parent=Iron 16.0
8360
+ Platform="MacOSX"
8361
+ Win32=false
8362
 
8363
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*]
8364
+ Parent=Iron 16.0
8365
+ Platform="Linux"
8366
+ Win32=false
8367
 
8368
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*]
8369
+ Parent=Iron 16.0
8370
+ Platform="Linux"
8371
+ Win32=false
8372
 
8373
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*]
8374
+ Parent=Iron 16.0
8375
+ Platform="WinXP"
8376
+ Platform_Version=5.1
8377
 
8378
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*]
8379
+ Parent=Iron 16.0
8380
+ Platform="Win2003"
8381
+ Platform_Version=5.2
8382
 
8383
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*]
8384
+ Parent=Iron 16.0
8385
+ Platform="WinVista"
8386
+ Platform_Version=6.0
8387
 
8388
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*]
8389
+ Parent=Iron 16.0
8390
+ Platform="Win7"
8391
+ Platform_Version=6.1
8392
 
8393
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 17.0
 
 
8394
 
8395
+ [Iron 17.0]
8396
+ Parent=DefaultProperties
8397
+ Comment="Iron 17.0"
8398
+ Browser="Iron"
8399
+ Version=17.0
8400
+ MajorVer=17
8401
+ MinorVer=0
8402
+ Win32=true
8403
+ Frames=true
8404
+ IFrames=true
8405
+ Tables=true
8406
+ Cookies=true
8407
+ JavaScript=true
8408
+ JavaApplets=true
8409
+ CssVersion=3
8410
 
8411
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*]
8412
+ Parent=Iron 17.0
8413
+ Platform="MacOSX"
8414
+ Win32=false
8415
 
8416
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*]
8417
+ Parent=Iron 17.0
8418
+ Platform="Linux"
8419
+ Win32=false
8420
 
8421
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*]
8422
+ Parent=Iron 17.0
8423
+ Platform="Linux"
8424
+ Win32=false
8425
 
8426
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*]
8427
+ Parent=Iron 17.0
8428
+ Platform="WinXP"
8429
+ Platform_Version=5.1
8430
 
8431
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*]
8432
+ Parent=Iron 17.0
8433
+ Platform="Win2003"
8434
+ Platform_Version=5.2
8435
+
8436
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*]
8437
+ Parent=Iron 17.0
8438
+ Platform="WinVista"
8439
+ Platform_Version=6.0
8440
+
8441
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*]
8442
+ Parent=Iron 17.0
8443
+ Platform="Win7"
8444
+ Platform_Version=6.1
8445
+
8446
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 18.0
8447
+
8448
+ [Iron 18.0]
8449
  Parent=DefaultProperties
8450
+ Comment="Iron 18.0"
8451
+ Browser="Iron"
8452
+ Version=18.0
8453
+ MajorVer=18
8454
+ MinorVer=0
8455
+ Win32=true
8456
  Frames=true
8457
+ IFrames=true
8458
  Tables=true
8459
+ Cookies=true
8460
+ JavaScript=true
8461
+ JavaApplets=true
8462
+ CssVersion=3
8463
 
8464
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*]
8465
+ Parent=Iron 18.0
8466
+ Platform="MacOSX"
8467
+ Win32=false
8468
 
8469
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*]
8470
+ Parent=Iron 18.0
8471
+ Platform="Linux"
8472
+ Win32=false
8473
 
8474
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*]
8475
+ Parent=Iron 18.0
8476
+ Platform="Linux"
8477
+ Win32=false
8478
 
8479
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*]
8480
+ Parent=Iron 18.0
8481
+ Platform="WinXP"
8482
+ Platform_Version=5.1
8483
 
8484
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*]
8485
+ Parent=Iron 18.0
8486
+ Platform="Win2003"
8487
+ Platform_Version=5.2
8488
 
8489
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*]
8490
+ Parent=Iron 18.0
8491
+ Platform="WinVista"
8492
+ Platform_Version=6.0
8493
 
8494
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*]
8495
+ Parent=Iron 18.0
8496
+ Platform="Win7"
8497
+ Platform_Version=6.1
8498
 
8499
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 19.0
 
 
8500
 
8501
+ [Iron 19.0]
8502
+ Parent=DefaultProperties
8503
+ Comment="Iron 19.0"
8504
+ Browser="Iron"
8505
+ Version=19.0
8506
+ MajorVer=19
8507
+ MinorVer=0
8508
+ Win32=true
8509
+ Frames=true
8510
+ IFrames=true
8511
+ Tables=true
8512
+ Cookies=true
8513
+ JavaScript=true
8514
+ JavaApplets=true
8515
+ CssVersion=3
8516
 
8517
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*]
8518
+ Parent=Iron 19.0
8519
+ Platform="MacOSX"
8520
+ Win32=false
8521
 
8522
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*]
8523
+ Parent=Iron 19.0
8524
+ Platform="Linux"
8525
+ Win32=false
8526
 
8527
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*]
8528
+ Parent=Iron 19.0
8529
+ Platform="Linux"
8530
+ Win32=false
8531
 
8532
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*]
8533
+ Parent=Iron 19.0
8534
+ Platform="WinXP"
8535
+ Platform_Version=5.1
8536
 
8537
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*]
8538
+ Parent=Iron 19.0
8539
+ Platform="Win2003"
8540
+ Platform_Version=5.2
8541
 
8542
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*]
8543
+ Parent=Iron 19.0
8544
+ Platform="WinVista"
8545
+ Platform_Version=6.0
8546
 
8547
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*]
8548
+ Parent=Iron 19.0
8549
+ Platform="Win7"
8550
+ Platform_Version=6.1
8551
 
8552
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 6.0
 
 
8553
 
8554
+ [Iron 6.0]
8555
+ Parent=DefaultProperties
8556
+ Comment="Iron 6.0"
8557
+ Browser="Iron"
8558
+ Version=6.0
8559
+ MajorVer=6
8560
+ MinorVer=0
8561
+ Win32=true
8562
+ Frames=true
8563
+ IFrames=true
8564
+ Tables=true
8565
+ Cookies=true
8566
+ JavaScript=true
8567
+ JavaApplets=true
8568
+ CssVersion=3
8569
 
8570
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*]
8571
+ Parent=Iron 6.0
8572
+ Platform="MacOSX"
8573
+ Win32=false
8574
 
8575
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*]
8576
+ Parent=Iron 6.0
8577
+ Platform="Linux"
8578
+ Win32=false
8579
 
8580
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*]
8581
+ Parent=Iron 6.0
8582
+ Platform="Linux"
8583
+ Win32=false
8584
 
8585
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*]
8586
+ Parent=Iron 6.0
8587
+ Platform="WinXP"
8588
+ Platform_Version=5.1
8589
 
8590
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*]
8591
+ Parent=Iron 6.0
8592
+ Platform="Win2003"
8593
+ Platform_Version=5.2
8594
 
8595
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*]
8596
+ Parent=Iron 6.0
8597
+ Platform="WinVista"
8598
+ Platform_Version=6.0
8599
 
8600
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*]
8601
+ Parent=Iron 6.0
8602
+ Platform="Win7"
8603
+ Platform_Version=6.1
8604
 
8605
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 7.0
 
 
8606
 
8607
+ [Iron 7.0]
8608
+ Parent=DefaultProperties
8609
+ Comment="Iron 7.0"
8610
+ Browser="Iron"
8611
+ Version=7.0
8612
+ MajorVer=7
8613
+ MinorVer=0
8614
+ Win32=true
8615
+ Frames=true
8616
+ IFrames=true
8617
+ Tables=true
8618
+ Cookies=true
8619
+ JavaScript=true
8620
+ JavaApplets=true
8621
+ CssVersion=3
8622
 
8623
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*]
8624
+ Parent=Iron 7.0
8625
+ Platform="MacOSX"
8626
+ Win32=false
8627
 
8628
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*]
8629
+ Parent=Iron 7.0
8630
+ Platform="Linux"
8631
+ Win32=false
8632
 
8633
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*]
8634
+ Parent=Iron 7.0
8635
+ Platform="Linux"
8636
+ Win32=false
8637
 
8638
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*]
8639
+ Parent=Iron 7.0
8640
+ Platform="WinXP"
8641
+ Platform_Version=5.1
8642
 
8643
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*]
8644
+ Parent=Iron 7.0
8645
+ Platform="Win2003"
8646
+ Platform_Version=5.2
8647
+
8648
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*]
8649
+ Parent=Iron 7.0
8650
+ Platform="WinVista"
8651
+ Platform_Version=6.0
8652
+
8653
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*]
8654
+ Parent=Iron 7.0
8655
+ Platform="Win7"
8656
+ Platform_Version=6.1
8657
+
8658
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 8.0
8659
+
8660
+ [Iron 8.0]
8661
  Parent=DefaultProperties
8662
+ Comment="Iron 8.0"
8663
+ Browser="Iron"
8664
+ Version=8.0
8665
+ MajorVer=8
8666
+ MinorVer=0
8667
+ Win32=true
8668
  Frames=true
8669
+ IFrames=true
8670
  Tables=true
8671
+ Cookies=true
8672
+ JavaScript=true
8673
+ JavaApplets=true
8674
+ CssVersion=3
8675
 
8676
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*]
8677
+ Parent=Iron 8.0
8678
+ Platform="MacOSX"
8679
+ Win32=false
8680
 
8681
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*]
8682
+ Parent=Iron 8.0
8683
+ Platform="Linux"
8684
+ Win32=false
8685
 
8686
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*]
8687
+ Parent=Iron 8.0
8688
+ Platform="Linux"
8689
+ Win32=false
8690
 
8691
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*]
8692
+ Parent=Iron 8.0
8693
+ Platform="WinXP"
8694
+ Platform_Version=5.1
8695
 
8696
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*]
8697
+ Parent=Iron 8.0
8698
+ Platform="Win2003"
8699
+ Platform_Version=5.2
8700
 
8701
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*]
8702
+ Parent=Iron 8.0
8703
+ Platform="WinVista"
8704
+ Platform_Version=6.0
8705
 
8706
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*]
8707
+ Parent=Iron 8.0
8708
+ Platform="Win7"
8709
+ Platform_Version=6.1
8710
 
8711
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 9.0
 
 
8712
 
8713
+ [Iron 9.0]
8714
+ Parent=DefaultProperties
8715
+ Comment="Iron 9.0"
8716
+ Browser="Iron"
8717
+ Version=9.0
8718
+ MajorVer=9
8719
+ MinorVer=0
8720
+ Win32=true
8721
+ Frames=true
8722
+ IFrames=true
8723
+ Tables=true
8724
+ Cookies=true
8725
+ JavaScript=true
8726
+ JavaApplets=true
8727
+ CssVersion=3
8728
 
8729
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*]
8730
+ Parent=Iron 9.0
8731
+ Platform="MacOSX"
8732
+ Win32=false
8733
 
8734
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*]
8735
+ Parent=Iron 9.0
8736
+ Platform="Linux"
8737
+ Win32=false
8738
 
8739
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*]
8740
+ Parent=Iron 9.0
8741
+ Platform="Linux"
8742
+ Win32=false
8743
 
8744
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*]
8745
+ Parent=Iron 9.0
8746
+ Platform="WinXP"
8747
+ Platform_Version=5.1
8748
 
8749
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*]
8750
+ Parent=Iron 9.0
8751
+ Platform="Win2003"
8752
+ Platform_Version=5.2
8753
 
8754
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*]
8755
+ Parent=Iron 9.0
8756
+ Platform="WinVista"
8757
+ Platform_Version=6.0
8758
 
8759
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*]
8760
+ Parent=Iron 9.0
8761
+ Platform="Win7"
8762
+ Platform_Version=6.1
8763
 
8764
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron Generic
 
 
8765
 
8766
+ [Iron Generic]
8767
+ Parent=DefaultProperties
8768
+ Comment="Iron Generic"
8769
+ Browser="Iron"
8770
+ Win32=true
8771
+ Frames=true
8772
+ IFrames=true
8773
+ Tables=true
8774
+ Cookies=true
8775
+ JavaScript=true
8776
+ CssVersion=1
8777
 
8778
+ [Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*]
8779
+ Parent=Iron Generic
8780
+ Platform="MacOSX"
8781
+ Win32=false
8782
 
8783
+ [Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*]
8784
+ Parent=Iron Generic
8785
+ Platform="Linux"
8786
+ Win32=false
8787
 
8788
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*]
8789
+ Parent=Iron Generic
8790
+ Platform="Linux"
8791
+ Win32=false
8792
 
8793
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*]
8794
+ Parent=Iron Generic
8795
+ Platform="WinXP"
8796
+ Platform_Version=5.1
8797
 
8798
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*]
8799
+ Parent=Iron Generic
8800
+ Platform="Win2003"
8801
+ Platform_Version=5.2
8802
 
8803
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*]
8804
+ Parent=Iron Generic
8805
+ Platform="WinVista"
8806
+ Platform_Version=6.0
8807
 
8808
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*]
8809
+ Parent=Iron Generic
8810
+ Platform="Win7"
8811
+ Platform_Version=6.1
8812
 
8813
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt
 
 
8814
 
8815
+ [Rockmelt]
8816
+ Parent=DefaultProperties
8817
+ Comment="RockMelt"
8818
+ Browser="RockMelt"
8819
+ Win32=true
8820
+ Frames=true
8821
+ IFrames=true
8822
+ Tables=true
8823
+ Cookies=true
8824
+ JavaScript=true
8825
+ JavaApplets=true
8826
+ CssVersion=3
8827
 
8828
+ [Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10*; *) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
8829
+ Parent=Rockmelt
8830
+ Platform="MacOSX"
8831
+ Win32=false
8832
 
8833
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
8834
+ Parent=Rockmelt
8835
+ Platform="WinXP"
8836
+ Platform_Version=5.1
8837
 
8838
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
8839
+ Parent=Rockmelt
8840
+ Platform="WinVista"
8841
+ Platform_Version=6.0
8842
 
8843
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
8844
+ Parent=Rockmelt
8845
+ Platform="Win7"
8846
+ Platform_Version=6.1
8847
 
8848
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.10
8849
+
8850
+ [Arora 0.10]
8851
  Parent=DefaultProperties
8852
+ Comment="Arora 0.10"
8853
+ Browser="Arora"
8854
+ Version=0.10
8855
+ MajorVer=0
8856
+ MinorVer=10
8857
+ Win32=true
8858
  Frames=true
8859
+ IFrames=true
8860
  Tables=true
8861
+ Cookies=true
8862
+ JavaScript=true
8863
+ JavaApplets=true
8864
+ CssVersion=3
8865
 
8866
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*]
8867
+ Parent=Arora 0.10
8868
+ Platform="Linux"
8869
+ Win32=false
 
 
 
 
 
 
 
8870
 
8871
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*]
8872
+ Parent=Arora 0.10
8873
+ Platform="Linux"
8874
+ Win32=false
8875
 
8876
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*]
8877
+ Parent=Arora 0.10
8878
+ Platform="MacOSX"
8879
+ Win32=false
8880
 
8881
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*]
8882
+ Parent=Arora 0.10
8883
+ Platform="Win2000"
8884
+ Platform_Version=5.0
8885
 
8886
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*]
8887
+ Parent=Arora 0.10
8888
+ Platform="WinXP"
8889
+ Platform_Version=5.1
8890
 
8891
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*]
8892
+ Parent=Arora 0.10
8893
+ Platform="WinXP"
8894
+ Platform_Version=5.2
8895
 
8896
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*]
8897
+ Parent=Arora 0.10
8898
+ Platform="WinVista"
8899
+ Platform_Version=6.0
8900
 
8901
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*]
8902
+ Parent=Arora 0.10
8903
+ Platform="Win7"
8904
+ Platform_Version=6.1
8905
 
8906
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.11
 
 
8907
 
8908
+ [Arora 0.11]
8909
+ Parent=DefaultProperties
8910
+ Comment="Arora 0.11"
8911
+ Browser="Arora"
8912
+ Version=0.11
8913
+ MajorVer=0
8914
+ MinorVer=11
8915
+ Win32=true
8916
+ Frames=true
8917
+ IFrames=true
8918
+ Tables=true
8919
+ Cookies=true
8920
+ JavaScript=true
8921
+ JavaApplets=true
8922
+ CssVersion=3
8923
 
8924
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*]
8925
+ Parent=Arora 0.11
8926
+ Platform="Linux"
8927
+ Win32=false
8928
 
8929
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*]
8930
+ Parent=Arora 0.11
8931
+ Platform="Linux"
8932
+ Win32=false
8933
 
8934
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*]
8935
+ Parent=Arora 0.11
8936
+ Platform="MacOSX"
8937
+ Win32=false
8938
 
8939
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*]
8940
+ Parent=Arora 0.11
8941
+ Platform="Win2000"
8942
+ Platform_Version=5.0
8943
 
8944
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*]
8945
+ Parent=Arora 0.11
8946
+ Platform="WinXP"
8947
+ Platform_Version=5.1
8948
 
8949
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*]
8950
+ Parent=Arora 0.11
8951
+ Platform="WinXP"
8952
+ Platform_Version=5.2
8953
 
8954
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*]
8955
+ Parent=Arora 0.11
8956
+ Platform="WinVista"
8957
+ Platform_Version=6.0
8958
 
8959
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*]
8960
+ Parent=Arora 0.11
8961
+ Platform="Win7"
8962
+ Platform_Version=6.1
8963
 
8964
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.8
 
 
8965
 
8966
+ [Arora 0.8]
8967
+ Parent=DefaultProperties
8968
+ Comment="Arora 0.8"
8969
+ Browser="Arora"
8970
+ Version=0.8
8971
+ MajorVer=0
8972
+ MinorVer=8
8973
+ Win32=true
8974
+ Frames=true
8975
+ IFrames=true
8976
+ Tables=true
8977
+ Cookies=true
8978
+ JavaScript=true
8979
+ JavaApplets=true
8980
+ CssVersion=3
8981
 
8982
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*]
8983
+ Parent=Arora 0.8
8984
+ Platform="Linux"
8985
+ Win32=false
8986
 
8987
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*]
8988
+ Parent=Arora 0.8
8989
+ Platform="Linux"
8990
+ Win32=false
8991
 
8992
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*]
8993
+ Parent=Arora 0.8
8994
+ Platform="MacOSX"
8995
+ Win32=false
8996
 
8997
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*]
8998
+ Parent=Arora 0.8
8999
+ Platform="Win2000"
9000
+ Platform_Version=5.0
9001
 
9002
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*]
9003
+ Parent=Arora 0.8
9004
+ Platform="WinXP"
9005
+ Platform_Version=5.1
9006
 
9007
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*]
9008
+ Parent=Arora 0.8
9009
+ Platform="WinXP"
9010
+ Platform_Version=5.2
9011
 
9012
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*]
9013
+ Parent=Arora 0.8
9014
+ Platform="WinVista"
9015
+ Platform_Version=6.0
9016
 
9017
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*]
9018
+ Parent=Arora 0.8
9019
+ Platform="Win7"
9020
+ Platform_Version=6.1
9021
 
9022
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.9
9023
 
9024
+ [Arora 0.9]
9025
  Parent=DefaultProperties
9026
+ Comment="Arora 0.9"
9027
+ Browser="Arora"
9028
  Version=0.9
9029
+ MajorVer=0
9030
  MinorVer=9
9031
+ Win32=true
9032
  Frames=true
9033
+ IFrames=true
9034
  Tables=true
9035
+ Cookies=true
9036
+ JavaScript=true
9037
+ JavaApplets=true
9038
+ CssVersion=3
9039
 
9040
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*]
9041
+ Parent=Arora 0.9
9042
+ Platform="Linux"
9043
+ Win32=false
9044
 
9045
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*]
9046
+ Parent=Arora 0.9
9047
+ Platform="Linux"
9048
+ Win32=false
9049
 
9050
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*]
9051
+ Parent=Arora 0.9
9052
+ Platform="MacOSX"
9053
+ Win32=false
9054
 
9055
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*]
9056
+ Parent=Arora 0.9
9057
+ Platform="Win2000"
9058
+ Platform_Version=5.0
9059
 
9060
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*]
9061
+ Parent=Arora 0.9
9062
+ Platform="WinXP"
9063
+ Platform_Version=5.1
9064
 
9065
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*]
9066
+ Parent=Arora 0.9
9067
+ Platform="WinXP"
9068
+ Platform_Version=5.2
9069
 
9070
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*]
9071
+ Parent=Arora 0.9
9072
+ Platform="WinVista"
9073
+ Platform_Version=6.0
9074
 
9075
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*]
9076
+ Parent=Arora 0.9
9077
+ Platform="Win7"
9078
+ Platform_Version=6.1
9079
 
9080
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora Generic
 
 
9081
 
9082
+ [Arora Generic]
9083
+ Parent=DefaultProperties
9084
+ Comment="Arora Generic"
9085
+ Browser="Arora"
9086
+ Win32=true
9087
+ Frames=true
9088
+ IFrames=true
9089
+ Tables=true
9090
+ Cookies=true
9091
+ JavaScript=true
9092
+ CssVersion=3
9093
 
9094
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*]
9095
+ Parent=Arora Generic
9096
+ Platform="Linux"
9097
+ Win32=false
9098
 
9099
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*]
9100
+ Parent=Arora Generic
9101
+ Platform="Linux"
9102
+ Win32=false
9103
 
9104
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*]
9105
+ Parent=Arora Generic
9106
+ Platform="MacOSX"
9107
+ Win32=false
9108
 
9109
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*]
9110
+ Parent=Arora Generic
9111
+ Platform="Win2000"
9112
+ Platform_Version=5.0
9113
 
9114
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*]
9115
+ Parent=Arora Generic
9116
+ Platform="WinXP"
9117
+ Platform_Version=5.1
9118
 
9119
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*]
9120
+ Parent=Arora Generic
9121
+ Platform="WinXP"
9122
+ Platform_Version=5.2
9123
 
9124
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*]
9125
+ Parent=Arora Generic
9126
+ Platform="WinVista"
9127
+ Platform_Version=6.0
9128
 
9129
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*]
9130
+ Parent=Arora Generic
9131
+ Platform="Win7"
9132
+ Platform_Version=6.1
9133
 
9134
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Media Players
 
 
9135
 
9136
+ [Media Players]
9137
+ Parent=DefaultProperties
9138
+ Comment="Media Players"
9139
+ Browser="Media Players"
9140
+ isMobileDevice=true
9141
 
9142
+ [Microsoft NetShow(TM) Player with RealVideo(R)]
9143
+ Parent=Media Players
9144
+ Browser="Microsoft NetShow"
9145
 
9146
+ [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; *) AppleWebKit/* RealPlayer]
9147
+ Parent=Media Players
9148
+ Browser="RealPlayer"
9149
+ Platform="MacOSX"
9150
 
9151
+ [MPlayer 0.9*]
9152
+ Parent=Media Players
9153
+ Browser="MPlayer"
9154
+ Version=0.9
9155
+ MajorVer=0
9156
+ MinorVer=9
9157
 
9158
+ [MPlayer 1.*]
9159
+ Parent=Media Players
9160
+ Browser="MPlayer"
9161
+ Version=1.0
9162
+ MajorVer=1
9163
+ MinorVer=0
9164
 
9165
+ [MPlayer HEAD CVS]
9166
+ Parent=Media Players
9167
+ Browser="MPlayer"
9168
 
9169
+ [RealPlayer*]
9170
+ Parent=Media Players
9171
+ Browser="RealPlayer"
9172
 
9173
+ [RMA/*]
9174
+ Parent=Media Players
9175
+ Browser="RMA"
9176
 
9177
+ [VLC media player*]
9178
+ Parent=Media Players
9179
+ Browser="VLC"
9180
 
9181
+ [vobsub]
9182
+ Parent=Media Players
9183
+ Browser="vobsub"
9184
 
9185
+ [WinampMPEG/*]
9186
+ Parent=Media Players
9187
+ Browser="WinAmp"
9188
 
9189
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Zune
9190
 
9191
+ [Microsoft Zune]
9192
  Parent=DefaultProperties
9193
+ Comment="Microsoft Zune"
9194
+ Browser=""
9195
+ Win32=true
9196
+ isMobileDevice=true
 
 
 
 
 
 
9197
 
9198
+ [Mozilla/4.0 (compatible; MSIE ?.0; Microsoft ZuneHD 4.*)]
9199
+ Parent=Microsoft Zune
9200
+ Version=4.0
9201
+ MajorVer=4
9202
+ MinorVer=0
9203
 
9204
+ [Mozilla/4.0 (compatible; ZuneHD 4.*)]
9205
+ Parent=Microsoft Zune
9206
+ Browser="ZuneHD"
9207
+ Version=4
9208
+ MajorVer=4
9209
 
9210
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nintendo
9211
+
9212
+ [Nintendo Wii]
9213
  Parent=DefaultProperties
9214
+ Comment="Nintendo"
9215
+ Browser=""
9216
+ isMobileDevice=true
9217
+
9218
+ [Opera/* (Nintendo DSi; Opera/*; *; *)]
9219
+ Parent=Nintendo Wii
9220
+ Browser="DSi"
9221
+
9222
+ [Opera/* (Nintendo Wii; U; *)]
9223
+ Parent=Nintendo Wii
9224
+ Browser="Wii"
9225
+
9226
+ [VLC Media Player]
9227
+ Parent=DefaultProperties
9228
+ Browser="VLC Media Player"
9229
+
9230
+ [vlc/*]
9231
+ Parent=VLC Media Player
9232
+
9233
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Media Player
9234
+
9235
+ [Windows Media Player]
9236
+ Parent=DefaultProperties
9237
+ Comment="Windows Media Player"
9238
+ Browser="Windows Media Player"
9239
+ Win32=true
9240
  Frames=true
9241
  IFrames=true
9242
  Tables=true
9243
  Cookies=true
 
 
 
 
9244
 
9245
+ [NSPlayer/10.*]
9246
+ Parent=Windows Media Player
9247
+ Version=10.0
9248
+ MajorVer=10
9249
+ MinorVer=0
 
9250
 
9251
+ [NSPlayer/11.*]
9252
+ Parent=Windows Media Player
9253
+ Version=11.0
9254
+ MajorVer=11
9255
+ MinorVer=0
 
9256
 
9257
+ [NSPlayer/4.*]
9258
+ Parent=Windows Media Player
9259
+ Version=4.0
9260
+ MajorVer=4
9261
+ MinorVer=0
 
9262
 
9263
+ [NSPlayer/7.*]
9264
+ Parent=Windows Media Player
9265
+ Version=7.0
9266
+ MajorVer=7
9267
  MinorVer=0
9268
 
9269
+ [NSPlayer/8.*]
9270
+ Parent=Windows Media Player
9271
+ Version=8.0
9272
+ MajorVer=8
9273
+ MinorVer=0
9274
 
9275
+ [NSPlayer/9.*]
9276
+ Parent=Windows Media Player
9277
+ Version=9.0
9278
+ MajorVer=9
9279
+ MinorVer=0
 
9280
 
9281
+ [Windows-Media-Player/10.*]
9282
+ Parent=Windows Media Player
9283
+ Version=10.0
9284
+ MajorVer=10
9285
+ MinorVer=0
 
9286
 
9287
+ [Windows-Media-Player/11.*]
9288
+ Parent=Windows Media Player
9289
+ Version=11.0
9290
+ MajorVer=11
9291
+ MinorVer=0
 
9292
 
9293
+ [Windows-Media-Player/7.*]
9294
+ Parent=Windows Media Player
9295
+ Version=7.0
9296
+ MajorVer=7
9297
+ MinorVer=0
 
9298
 
9299
+ [Windows-Media-Player/8.*]
9300
+ Parent=Windows Media Player
9301
+ Version=8.0
9302
+ MajorVer=8
9303
+ MinorVer=0
9304
 
9305
+ [Windows-Media-Player/9.*]
9306
+ Parent=Windows Media Player
9307
+ Version=9.0
9308
+ MajorVer=9
9309
+ MinorVer=0
9310
+
9311
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 10.0
9312
+
9313
+ [QuickTime 10.0]
9314
  Parent=DefaultProperties
9315
+ Comment="QuickTime 10.0"
9316
+ Browser="QuickTime"
9317
+ Version=10.0
9318
+ MajorVer=10
9319
+ MinorVer=0
9320
+ Win32=true
9321
  Frames=true
9322
  IFrames=true
9323
  Tables=true
9324
  Cookies=true
 
 
 
 
 
 
9325
 
9326
+ [QuickTime*(qtver=10.*os=Mac 10.*)]
9327
+ Parent=QuickTime 10.0
9328
+ Platform="MacOSX"
9329
+ Win32=false
9330
 
9331
+ [QuickTime*(qtver=10.*os=Mac 9.*)]
9332
+ Parent=QuickTime 10.0
9333
+ Platform="MacPPC"
9334
+ Win32=false
9335
 
9336
+ [QuickTime*(qtver=10.*os=Windows 95*)]
9337
+ Parent=QuickTime 10.0
9338
+ Platform="Win95"
9339
+ Platform_Version=95
9340
+
9341
+ [QuickTime*(qtver=10.*os=Windows 98*)]
9342
+ Parent=QuickTime 10.0
9343
+ Platform="Win98"
9344
+ Platform_Version=98
9345
+
9346
+ [QuickTime*(qtver=10.*os=Windows Me*)]
9347
+ Parent=QuickTime 10.0
9348
+ Platform="WinME"
9349
+
9350
+ [QuickTime*(qtver=10.*os=Windows NT 4.0*)]
9351
+ Parent=QuickTime 10.0
9352
+ Platform="WinNT"
9353
+ Platform_Version=4.0
9354
+
9355
+ [QuickTime*(qtver=10.*os=Windows NT 5.0*)]
9356
+ Parent=QuickTime 10.0
9357
+ Platform="Win2000"
9358
+ Platform_Version=5.0
9359
+
9360
+ [QuickTime*(qtver=10.*os=Windows NT 5.1*)]
9361
+ Parent=QuickTime 10.0
9362
+ Platform="WinXP"
9363
+ Platform_Version=5.1
9364
+
9365
+ [QuickTime*(qtver=10.*os=Windows NT 5.2*)]
9366
+ Parent=QuickTime 10.0
9367
+ Platform="WinXP"
9368
+ Platform_Version=5.2
9369
+
9370
+ [QuickTime*(qtver=10.*os=Windows NT 6.0*)]
9371
+ Parent=QuickTime 10.0
9372
+ Platform="WinVista"
9373
+ Platform_Version=6.0
9374
+
9375
+ [QuickTime*(qtver=10.*os=Windows NT 6.1*)]
9376
+ Parent=QuickTime 10.0
9377
+ Platform="Win7"
9378
+ Platform_Version=6.1
9379
+
9380
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 5.0
9381
+
9382
+ [QuickTime 5.0]
9383
  Parent=DefaultProperties
9384
+ Comment="QuickTime 5.0"
9385
+ Browser="QuickTime"
9386
+ Version=5.0
9387
+ MajorVer=5
9388
+ MinorVer=0
9389
+ Win32=true
9390
  Frames=true
9391
  IFrames=true
9392
  Tables=true
9393
  Cookies=true
 
 
9394
 
9395
+ [QuickTime*(qtver=5.*os=Mac 10.*)]
9396
+ Parent=QuickTime 5.0
9397
+ Platform="MacOSX"
9398
+ Win32=false
 
9399
 
9400
+ [QuickTime*(qtver=5.*os=Mac 9.*)]
9401
+ Parent=QuickTime 5.0
9402
+ Platform="MacPPC"
9403
+ Win32=false
 
 
 
 
 
 
 
9404
 
9405
+ [QuickTime*(qtver=5.*os=Windows 95*)]
9406
+ Parent=QuickTime 5.0
9407
+ Platform="Win95"
9408
+ Platform_Version=95
9409
+
9410
+ [QuickTime*(qtver=5.*os=Windows 98*)]
9411
+ Parent=QuickTime 5.0
9412
+ Platform="Win98"
9413
+ Platform_Version=98
9414
+
9415
+ [QuickTime*(qtver=5.*os=Windows Me*)]
9416
+ Parent=QuickTime 5.0
9417
+ Platform="WinME"
9418
+
9419
+ [QuickTime*(qtver=5.*os=Windows NT 4.0*)]
9420
+ Parent=QuickTime 5.0
9421
+ Platform="WinNT"
9422
+ Platform_Version=4.0
9423
+
9424
+ [QuickTime*(qtver=5.*os=Windows NT 5.0*)]
9425
+ Parent=QuickTime 5.0
9426
+ Platform="Win2000"
9427
+ Platform_Version=5.0
9428
+
9429
+ [QuickTime*(qtver=5.*os=Windows NT 5.1*)]
9430
+ Parent=QuickTime 5.0
9431
+ Platform="WinXP"
9432
+ Platform_Version=5.1
9433
+
9434
+ [QuickTime*(qtver=5.*os=Windows NT 5.2*)]
9435
+ Parent=QuickTime 5.0
9436
+ Platform="WinXP"
9437
+ Platform_Version=5.2
9438
+
9439
+ [QuickTime*(qtver=5.*os=Windows NT 6.0*)]
9440
+ Parent=QuickTime 5.0
9441
+ Platform="WinVista"
9442
+ Platform_Version=6.0
9443
+
9444
+ [QuickTime*(qtver=5.*os=Windows NT 6.1*)]
9445
+ Parent=QuickTime 5.0
9446
+ Platform="Win7"
9447
+ Platform_Version=6.1
9448
+
9449
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 6.0
9450
+
9451
+ [QuickTime 6.0]
9452
+ Parent=DefaultProperties
9453
+ Comment="QuickTime 6.0"
9454
+ Browser="QuickTime"
9455
+ Version=6.0
9456
+ MajorVer=6
9457
  MinorVer=0
9458
+ Win32=true
9459
+ Frames=true
9460
+ IFrames=true
9461
+ Tables=true
9462
+ Cookies=true
9463
 
9464
+ [QuickTime*(qtver=6.*os=Mac 10.*)]
9465
+ Parent=QuickTime 6.0
9466
+ Platform="MacOSX"
9467
+ Win32=false
9468
 
9469
+ [QuickTime*(qtver=6.*os=Mac 9.*)]
9470
+ Parent=QuickTime 6.0
9471
+ Platform="MacPPC"
9472
+ Win32=false
9473
+
9474
+ [QuickTime*(qtver=6.*os=Windows 95*)]
9475
+ Parent=QuickTime 6.0
9476
+ Platform="Win95"
9477
+ Platform_Version=95
9478
+
9479
+ [QuickTime*(qtver=6.*os=Windows 98*)]
9480
+ Parent=QuickTime 6.0
9481
+ Platform="Win98"
9482
+ Platform_Version=98
9483
+
9484
+ [QuickTime*(qtver=6.*os=Windows Me*)]
9485
+ Parent=QuickTime 6.0
9486
+ Platform="WinME"
9487
+
9488
+ [QuickTime*(qtver=6.*os=Windows NT 4.0*)]
9489
+ Parent=QuickTime 6.0
9490
+ Platform="WinNT"
9491
+ Platform_Version=4.0
9492
+
9493
+ [QuickTime*(qtver=6.*os=Windows NT 5.0*)]
9494
+ Parent=QuickTime 6.0
9495
+ Platform="Win2000"
9496
+ Platform_Version=5.0
9497
+
9498
+ [QuickTime*(qtver=6.*os=Windows NT 5.1*)]
9499
+ Parent=QuickTime 6.0
9500
+ Platform="WinXP"
9501
+ Platform_Version=5.1
9502
+
9503
+ [QuickTime*(qtver=6.*os=Windows NT 5.2*)]
9504
+ Parent=QuickTime 6.0
9505
+ Platform="WinXP"
9506
+ Platform_Version=5.2
9507
+
9508
+ [QuickTime*(qtver=6.*os=Windows NT 6.0*)]
9509
+ Parent=QuickTime 6.0
9510
+ Platform="WinVista"
9511
+ Platform_Version=6.0
9512
+
9513
+ [QuickTime*(qtver=6.*os=Windows NT 6.1*)]
9514
+ Parent=QuickTime 6.0
9515
+ Platform="Win7"
9516
+ Platform_Version=6.1
9517
+
9518
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.0
9519
+
9520
+ [QuickTime 7.0]
9521
  Parent=DefaultProperties
9522
+ Comment="QuickTime 7.0"
9523
+ Browser="QuickTime"
9524
+ Version=7.0
9525
+ MajorVer=7
9526
+ MinorVer=0
9527
+ Win32=true
9528
  Frames=true
9529
+ IFrames=true
9530
  Tables=true
9531
  Cookies=true
9532
 
9533
+ [QuickTime*(qtver=7.*;os=Windows 98*)]
9534
+ Parent=QuickTime 7.0
9535
+ Platform="Win98"
9536
+ Platform_Version=98
 
 
9537
 
9538
+ [QuickTime*(qtver=7.*;os=Windows Me*)]
9539
+ Parent=QuickTime 7.0
9540
+ Platform="WinME"
 
 
 
9541
 
9542
+ [QuickTime*(qtver=7.*;os=Windows NT 4.0*)]
9543
+ Parent=QuickTime 7.0
9544
+ Platform="WinNT"
9545
+ Platform_Version=4.0
 
 
9546
 
9547
+ [QuickTime*(qtver=7.*;os=Windows NT 5.0*)]
9548
+ Parent=QuickTime 7.0
9549
+ Platform="Win2000"
9550
+ Platform_Version=5.0
 
 
9551
 
9552
+ [QuickTime*(qtver=7.*;os=Windows NT 5.1*)]
9553
+ Parent=QuickTime 7.0
9554
+ Platform="WinXP"
9555
+ Platform_Version=5.1
 
 
9556
 
9557
+ [QuickTime*(qtver=7.*;os=Windows NT 5.2*)]
9558
+ Parent=QuickTime 7.0
9559
+ Platform="WinXP"
9560
+ Platform_Version=5.2
 
 
9561
 
9562
+ [QuickTime*(qtver=7.*;os=Windows NT 6.0*)]
9563
+ Parent=QuickTime 7.0
9564
+ Platform="WinVista"
9565
+ Platform_Version=6.0
9566
 
9567
+ [QuickTime*(qtver=7.*;os=Windows NT 6.1*)]
9568
+ Parent=QuickTime 7.0
9569
+ Platform="Win7"
9570
+ Platform_Version=6.1
9571
+
9572
+ [QuickTime*(qtver=7.*os=Mac 10.*)]
9573
+ Parent=QuickTime 7.0
9574
+ Platform="MacOSX"
9575
+ Win32=false
9576
+
9577
+ [QuickTime*(qtver=7.*os=Mac 9.*)]
9578
+ Parent=QuickTime 7.0
9579
+ Platform="MacPPC"
9580
+ Win32=false
9581
+
9582
+ [QuickTime*(qtver=7.*os=Windows 95*)]
9583
+ Parent=QuickTime 7.0
9584
+ Platform="Win95"
9585
+ Platform_Version=95
9586
+
9587
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.6
9588
+
9589
+ [QuickTime 7.6]
9590
  Parent=DefaultProperties
9591
+ Comment="QuickTime 7.6"
9592
+ Browser="QuickTime"
9593
+ Version=7.6
9594
+ MajorVer=7
9595
+ MinorVer=6
9596
+ Win32=true
9597
  Frames=true
9598
  IFrames=true
9599
  Tables=true
9600
  Cookies=true
 
9601
 
9602
+ [QuickTime*(qtver=7.6*;os=Mac 9.*)]
9603
+ Parent=QuickTime 7.6
9604
+ Platform="MacPPC"
9605
+ Win32=false
9606
 
9607
+ [QuickTime*(qtver=7.6*;os=Windows 95*)]
9608
+ Parent=QuickTime 7.6
9609
+ Platform="Win95"
9610
+ Platform_Version=95
9611
+
9612
+ [QuickTime*(qtver=7.6*;os=Windows 98*)]
9613
+ Parent=QuickTime 7.6
9614
+ Platform="Win98"
9615
+ Platform_Version=98
9616
+
9617
+ [QuickTime*(qtver=7.6*;os=Windows Me*)]
9618
+ Parent=QuickTime 7.6
9619
+ Platform="WinME"
9620
+
9621
+ [QuickTime*(qtver=7.6*;os=Windows NT 4.0*)]
9622
+ Parent=QuickTime 7.6
9623
+ Platform="WinNT"
9624
+ Platform_Version=4.0
9625
+
9626
+ [QuickTime*(qtver=7.6*;os=Windows NT 5.0*)]
9627
+ Parent=QuickTime 7.6
9628
+ Platform="Win2000"
9629
+ Platform_Version=5.0
9630
+
9631
+ [QuickTime*(qtver=7.6*;os=Windows NT 5.1*)]
9632
+ Parent=QuickTime 7.6
9633
+ Platform="WinXP"
9634
+ Platform_Version=5.1
9635
+
9636
+ [QuickTime*(qtver=7.6*;os=Windows NT 5.2*)]
9637
+ Parent=QuickTime 7.6
9638
+ Platform="WinXP"
9639
+ Platform_Version=5.2
9640
+
9641
+ [QuickTime*(qtver=7.6*;os=Windows NT 6.0*)]
9642
+ Parent=QuickTime 7.6
9643
+ Platform="WinVista"
9644
+ Platform_Version=6.0
9645
+
9646
+ [QuickTime*(qtver=7.6*;os=Windows NT 6.1*)]
9647
+ Parent=QuickTime 7.6
9648
+ Platform="Win7"
9649
+ Platform_Version=6.1
9650
+
9651
+ [QuickTime*(qtver=7.6*os=Mac 10.*)]
9652
+ Parent=QuickTime 7.6
9653
+ Platform="MacOSX"
9654
+ Win32=false
9655
 
9656
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lotus Notes 5.0
 
 
9657
 
9658
+ [Lotus Notes 5.0]
9659
+ Parent=DefaultProperties
9660
+ Comment="Lotus Notes 5.0"
9661
+ Browser="Lotus Notes"
9662
+ Version=5.0
9663
+ MajorVer=5
9664
+ MinorVer=0
9665
 
9666
+ [Mozilla/4.0 (compatible; Lotus-Notes/5.0; Macintosh PPC)]
9667
+ Parent=Lotus Notes 5.0
9668
+ Platform="MacOSX"
9669
 
9670
+ [Mozilla/4.0 (compatible; Lotus-Notes/5.0; Windows-NT)]
9671
+ Parent=Lotus Notes 5.0
9672
+ Platform="WinNT"
9673
+ Win32=true
9674
 
9675
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lotus Notes 6.0
9676
 
9677
+ [Lotus Notes 6.0]
9678
  Parent=DefaultProperties
9679
+ Comment="Lotus Notes 6.0"
9680
+ Browser="Lotus Notes"
9681
+ Version=6.0
9682
+ MajorVer=6
9683
+ MinorVer=0
9684
+
9685
+ [Mozilla/4.0 (compatible; Lotus-Notes/6.0; Windows-NT)]
9686
+ Parent=Lotus Notes 6.0
9687
+ Platform="WinNT"
9688
+
9689
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Outlook 2007
9690
+
9691
+ [Microsoft Outlook 2007]
9692
+ Parent=DefaultProperties
9693
+ Comment="Microsoft Outlook 2007"
9694
+ Browser="Microsoft Outlook"
9695
+ Version=2007
9696
+ MajorVer=2007
9697
  Frames=true
 
9698
  Tables=true
9699
+ CssVersion=2
 
9700
 
9701
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; *MSOffice 12)]
9702
+ Parent=Microsoft Outlook 2007
9703
+ Platform="WinXP"
9704
+ Platform_Version=5.1
9705
+
9706
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0; *MSOffice 12)]
9707
+ Parent=Microsoft Outlook 2007
9708
+ Platform="Win2003"
9709
+ Platform_Version=5.2
9710
+
9711
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; *MSOffice 12)]
9712
+ Parent=Microsoft Outlook 2007
9713
+ Platform="WinVista"
9714
+ Platform_Version=6.0
9715
+
9716
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; *MSOffice 12)]
9717
+ Parent=Microsoft Outlook 2007
9718
+ Platform="WinVista"
9719
+ Platform_Version=6.0
9720
+ Win32=false
9721
+ Win64=true
9722
 
9723
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; *MSOffice 12)]
9724
+ Parent=Microsoft Outlook 2007
9725
+ Platform="WinNT"
9726
+ Platform_Version=6.1
9727
 
9728
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; *MSOffice 12)]
9729
+ Parent=Microsoft Outlook 2007
9730
+ Platform="Win7"
9731
+ Platform_Version=6.1
9732
 
9733
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; *MSOffice 12)]
9734
+ Parent=Microsoft Outlook 2007
9735
+ Platform="Win7"
9736
+ Platform_Version=6.1
9737
+ Win32=false
9738
+ Win64=true
9739
+
9740
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Outlook 2010
9741
+
9742
+ [Microsoft Outlook 2010]
9743
  Parent=DefaultProperties
9744
+ Comment="Microsoft Outlook 2010"
9745
+ Browser="Microsoft Outlook"
9746
+ Version=2010
9747
+ MajorVer=2010
9748
  Frames=true
9749
  IFrames=true
9750
  Tables=true
9751
  Cookies=true
9752
+ BackgroundSounds=true
9753
  JavaScript=true
9754
+ VBScript=true
9755
  CssVersion=2
 
9756
 
9757
+ [Microsoft Office/14.0 (Windows NT 5.1; Microsoft Outlook 14.*; *MSOffice 14)]
9758
+ Parent=Microsoft Outlook 2010
9759
+ Platform="WinXP"
9760
+ Platform_Version=5.1
9761
+
9762
+ [Microsoft Office/14.0 (Windows NT 6.1; Microsoft Outlook 14.*; *MSOffice 14)]
9763
+ Parent=Microsoft Outlook 2010
9764
+ Platform="Win7"
9765
+ Platform_Version=6.1
9766
+
9767
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; *MSOffice 14)]
9768
+ Parent=Microsoft Outlook 2010
9769
+ Platform="WinVista"
9770
+ Platform_Version=6.0
9771
+
9772
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; *MSOffice 14)]
9773
+ Parent=Microsoft Outlook 2010
9774
+ Platform="Win7"
9775
+ Platform_Version=6.1
9776
+
9777
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; *MSOffice 14)]
9778
+ Parent=Microsoft Outlook 2010
9779
+ Platform="Win7"
9780
+ Platform_Version=6.1
9781
+
9782
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/4.0; *MSOffice 14)]
9783
+ Parent=Microsoft Outlook 2010
9784
+ Platform="Win7"
9785
+ Platform_Version=6.1
9786
+ Win32=false
9787
+ Win64=true
9788
 
9789
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Live Mail
 
 
 
 
9790
 
9791
+ [Windows Live Mail]
9792
+ Parent=DefaultProperties
9793
+ Comment="Windows Live Mail"
9794
+ Browser="Windows Live Mail"
9795
+ Version=7.0
9796
+ MajorVer=7
9797
  MinorVer=0
9798
+ Frames=true
9799
+ IFrames=true
9800
+ Tables=true
9801
+ Cookies=true
9802
+ BackgroundSounds=true
9803
+ JavaScript=true
9804
+ CssVersion=2
9805
 
9806
+ [Outlook-Express/7.0 (MSIE 7.0; Windows NT 5.1; Trident/4.0; *)]
9807
+ Parent=Windows Live Mail
9808
+ Platform="WinXP"
9809
+ Platform_Version=5.1
 
9810
 
9811
+ [Outlook-Express/7.0 (MSIE 7.0; Windows NT 6.1; Trident/4.0; *)]
9812
+ Parent=Windows Live Mail
9813
+ Platform="Win7"
9814
+ Platform_Version=6.1
9815
 
9816
+ [Outlook-Express/7.0 (MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; *)]
9817
+ Parent=Windows Live Mail
9818
+ Platform="Win7"
9819
+ Platform_Version=6.1
9820
+ Win32=false
9821
+ Win64=true
9822
+
9823
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Handspring Blazer
9824
+
9825
+ [Blazer]
9826
  Parent=DefaultProperties
9827
+ Comment="Handspring Blazer"
9828
+ Browser="Handspring Blazer"
9829
+ Platform="Palm"
9830
+ Win32=true
9831
  Frames=true
9832
  IFrames=true
9833
  Tables=true
9834
  Cookies=true
 
9835
  JavaScript=true
9836
+ isMobileDevice=true
 
9837
 
9838
+ [Mozilla/4.0 (compatible; MSIE 6.0; Windows 95; PalmSource; Blazer 3.0) 16;160x160]
9839
+ Parent=Blazer
9840
+ Version=3.0
9841
+ MajorVer=3
9842
  MinorVer=0
9843
+ Platform_Version=95
9844
 
9845
+ [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.0) 16;320x448]
9846
+ Parent=Blazer
9847
+ Version=4.0
9848
+ MajorVer=4
9849
+ MinorVer=0
9850
+ Platform_Version=98
9851
+
9852
+ [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.1) 16;320x320]
9853
+ Parent=Blazer
9854
+ Version=4.1
9855
+ MajorVer=4
9856
  MinorVer=1
9857
+ Platform_Version=98
9858
 
9859
+ [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.2) 16;320x320]
9860
+ Parent=Blazer
9861
+ Version=4.2
9862
+ MajorVer=4
9863
  MinorVer=2
9864
+ Platform_Version=98
9865
 
9866
+ [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.4) 16;320x320]
9867
+ Parent=Blazer
9868
+ Version=4.4
9869
+ MajorVer=4
 
 
 
 
 
 
9870
  MinorVer=4
9871
+ Platform_Version=98
9872
 
9873
+ [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.5) 16;320x320]
9874
+ Parent=Blazer
9875
+ Version=4.5
9876
+ MajorVer=4
9877
  MinorVer=5
9878
+ Platform_Version=98
9879
 
9880
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Brew
 
 
 
 
9881
 
9882
+ [Brew]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9883
  Parent=DefaultProperties
9884
+ Comment="Brew"
9885
+ Browser="Brew"
9886
  Frames=true
9887
+ IFrames=true
9888
  Tables=true
9889
  Cookies=true
9890
  JavaScript=true
9891
+ isMobileDevice=true
9892
 
9893
+ [*-*/1.0 BREW/2.0* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1]
9894
+ Parent=Brew
9895
+ Version=2.0
9896
+ MajorVer=2
9897
  MinorVer=0
9898
+ CssVersion=1
9899
 
9900
+ [*-*/1.0 BREW/2.1* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1]
9901
+ Parent=Brew
 
 
 
 
 
 
9902
  Version=2.1
9903
  MajorVer=2
9904
  MinorVer=1
9905
+ CssVersion=1
9906
 
9907
+ [*-*/1.0 BREW/3.0* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1]
9908
+ Parent=Brew
9909
+ Version=3.0
9910
+ MajorVer=3
9911
+ MinorVer=0
9912
+ CssVersion=1
 
 
 
 
 
9913
 
9914
+ [*-*/1.0 BREW/3.1* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1]
9915
+ Parent=Brew
9916
+ Version=3.1
9917
+ MajorVer=3
9918
  MinorVer=1
9919
+ CssVersion=1
9920
 
9921
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DoCoMo
 
 
 
 
 
 
 
 
 
 
 
 
9922
 
9923
+ [DoCoMo]
9924
  Parent=DefaultProperties
9925
+ Comment="DoCoMo"
9926
+ Browser="DoCoMo"
9927
+ Platform="DoCoMo"
9928
  Frames=true
9929
+ IFrames=true
9930
  Tables=true
9931
  Cookies=true
9932
  JavaScript=true
9933
+ isMobileDevice=true
9934
+ Crawler=true
9935
  CssVersion=1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9936
 
9937
+ [DoCoMo/1.0*]
9938
+ Parent=DoCoMo
9939
+ Version=1.0
9940
+ MajorVer=1
9941
+ MinorVer=0
 
9942
 
9943
+ [DoCoMo/2.0*]
9944
+ Parent=DoCoMo
9945
+ Version=2.0
9946
  MajorVer=2
9947
+ MinorVer=0
 
9948
 
9949
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile
 
 
 
 
 
9950
 
9951
+ [IEMobile]
9952
+ Parent=DefaultProperties
9953
+ Comment="IEMobile"
9954
+ Browser="IEMobile"
9955
+ Platform="WinCE"
9956
+ Frames=true
9957
+ IFrames=true
9958
+ Tables=true
9959
+ Cookies=true
9960
+ JavaScript=true
9961
+ isMobileDevice=true
9962
+ CssVersion=2
9963
 
9964
+ [Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.*)*]
9965
+ Parent=IEMobile
9966
+ Version=6.0
9967
+ MajorVer=6
9968
  MinorVer=0
 
 
 
9969
 
9970
+ [Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.*)*]
9971
+ Parent=IEMobile
9972
+ Version=7.0
9973
+ MajorVer=7
9974
  MinorVer=0
 
 
 
9975
 
9976
+ [Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 8.*)*]
9977
+ Parent=IEMobile
9978
+ Version=8.0
9979
+ MajorVer=8
9980
  MinorVer=0
 
9981
 
9982
+ [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Windows Phone 6.5 HTC_HD2/1.0)]
9983
+ Parent=IEMobile
9984
+ Version=6.0
9985
+ MajorVer=6
9986
  MinorVer=0
9987
+ Platform="WinXP"
9988
+ Platform_Version=5.1
 
9989
 
9990
+ [Mozilla/4.0 (compatible; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0*)*]
9991
+ Parent=IEMobile
9992
+ Version=7.0
9993
+ MajorVer=7
9994
  MinorVer=0
9995
+ Platform="WinPhone7"
 
 
9996
 
9997
+ [Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0*)*]
9998
+ Parent=IEMobile
9999
+ Version=9.0
10000
+ MajorVer=9
10001
+ MinorVer=0
10002
+ Platform="WinPhone7"
10003
 
10004
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; KDDI
 
 
 
 
 
10005
 
10006
+ [KDDI]
10007
+ Parent=DefaultProperties
10008
+ Comment="KDDI"
10009
+ Browser="KDDI"
10010
+ Frames=true
10011
+ IFrames=true
10012
+ Tables=true
10013
+ Cookies=true
10014
+ JavaScript=true
10015
+ isMobileDevice=true
10016
+ CssVersion=1
10017
 
10018
+ [KDDI-* UP.Browser/* (GUI) MMP/*]
10019
+ Parent=KDDI
 
 
 
 
10020
 
10021
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Kindle
 
 
 
 
 
10022
 
10023
+ [Kindle]
10024
+ Parent=DefaultProperties
10025
+ Comment="Kindle"
10026
+ Browser="Kindle"
10027
+ Platform="Android"
10028
+ Frames=true
10029
+ IFrames=true
10030
+ Tables=true
10031
+ Cookies=true
10032
+ isMobileDevice=true
10033
+ CssVersion=2
10034
 
10035
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Kindle Fire
 
 
 
 
 
10036
 
10037
+ [Mozilla/5.0 (Linux; U; Android 2.3*Kindle Fire*) AppleWebKit/533.1 (*KHTML, like Gecko*) Version/4.0 Mobile Safari/533.1]
10038
+ Parent=Kindle
10039
+ Comment="Kindle Fire"
10040
+ Browser="Kindle Fire"
10041
+ Version=4.0
10042
  MajorVer=4
10043
+ MinorVer=0
10044
+ Platform_Version=2.3
10045
 
10046
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maemo Browser
10047
 
10048
+ [Maemo]
10049
  Parent=DefaultProperties
10050
+ Comment="Maemo Browser"
10051
+ Browser="Maemo"
10052
  Frames=true
10053
  IFrames=true
10054
  Tables=true
10055
  Cookies=true
10056
  JavaScript=true
10057
+ isMobileDevice=true
10058
  CssVersion=2
 
10059
 
10060
+ [Mozilla/5.0 (X11; U; Linux*; *; rv:1.9.*) Gecko/* Firefox/* Maemo Browser 1.7.*]
10061
+ Parent=Maemo
10062
+ Version=1.7
10063
+ MajorVer=1
10064
+ MinorVer=7
10065
+ Platform="Linux"
10066
 
10067
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Motorola Internet Browser
 
 
 
 
 
 
10068
 
10069
+ [Motorola Internet Browser]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10070
  Parent=DefaultProperties
10071
+ Comment="Motorola Internet Browser"
10072
+ Browser="Motorola Internet Browser"
10073
  Frames=true
10074
  IFrames=true
10075
  Tables=true
10076
  Cookies=true
10077
+ isMobileDevice=true
 
 
10078
 
10079
+ [MOT-*/*]
10080
+ Parent=Motorola Internet Browser
 
 
 
 
10081
 
10082
+ [MOT-1*/* UP.Browser/*]
10083
+ Parent=Motorola Internet Browser
 
 
 
 
10084
 
10085
+ [MOT-8700_/* UP.Browser/*]
10086
+ Parent=Motorola Internet Browser
 
10087
 
10088
+ [MOT-A-0A/* UP.Browser/*]
10089
+ Parent=Motorola Internet Browser
 
 
 
 
10090
 
10091
+ [MOT-A-2B/* UP.Browser/*]
10092
+ Parent=Motorola Internet Browser
 
 
 
 
10093
 
10094
+ [MOT-A-88/* UP.Browser/*]
10095
+ Parent=Motorola Internet Browser
10096
 
10097
+ [MOT-C???/* MIB/*]
10098
+ Parent=Motorola Internet Browser
 
 
 
 
 
 
 
 
10099
 
10100
+ [MOT-GATW_/* UP.Browser/*]
10101
+ Parent=Motorola Internet Browser
 
 
 
10102
 
10103
+ [MOT-L6/* MIB/*]
10104
+ Parent=Motorola Internet Browser
 
 
 
10105
 
10106
+ [MOT-L7/* MIB/*]
10107
+ Parent=Motorola Internet Browser
10108
 
10109
+ [MOT-M*/* UP.Browser/*]
10110
+ Parent=Motorola Internet Browser
 
 
 
 
 
 
 
 
 
 
10111
 
10112
+ [MOT-MP*/* Mozilla/* (compatible; MSIE *; Windows CE; *)]
10113
+ Parent=Motorola Internet Browser
10114
+ Win32=true
 
 
 
10115
 
10116
+ [MOT-MP*/* Mozilla/4.0 (compatible; MSIE *; Windows CE; *)]
10117
+ Parent=Motorola Internet Browser
10118
+ Win32=true
 
 
 
10119
 
10120
+ [MOT-SAP4_/* UP.Browser/*]
10121
+ Parent=Motorola Internet Browser
 
 
 
 
10122
 
10123
+ [MOT-T*/*]
10124
+ Parent=Motorola Internet Browser
 
 
 
 
10125
 
10126
+ [MOT-T7*/* MIB/*]
10127
+ Parent=Motorola Internet Browser
 
 
 
 
10128
 
10129
+ [MOT-T721*]
10130
+ Parent=Motorola Internet Browser
 
 
 
 
10131
 
10132
+ [MOT-TA02/* MIB/*]
10133
+ Parent=Motorola Internet Browser
 
 
 
10134
 
10135
+ [MOT-V*/*]
10136
+ Parent=Motorola Internet Browser
 
 
 
10137
 
10138
+ [MOT-V*/* MIB/*]
10139
+ Parent=Motorola Internet Browser
 
 
 
10140
 
10141
+ [MOT-V*/* UP.Browser/*]
10142
+ Parent=Motorola Internet Browser
 
 
 
10143
 
10144
+ [MOT-V3/* MIB/*]
10145
+ Parent=Motorola Internet Browser
 
 
 
10146
 
10147
+ [MOT-V4*/* MIB/*]
10148
+ Parent=Motorola Internet Browser
10149
 
10150
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia
10151
+
10152
+ [Nokia]
10153
  Parent=DefaultProperties
10154
+ Comment="Nokia"
10155
+ Browser="Nokia"
10156
  Frames=true
10157
  IFrames=true
10158
  Tables=true
10159
  Cookies=true
 
 
10160
  JavaScript=true
10161
+ isMobileDevice=true
 
 
 
 
 
 
 
10162
 
10163
+ [*Nokia*/*]
10164
+ Parent=Nokia
 
 
 
10165
 
10166
+ [Mozilla/* (SymbianOS/*; ?; *) AppleWebKit/* (KHTML, like Gecko) Safari/*]
10167
+ Parent=Nokia
10168
+ Platform="SymbianOS"
 
 
10169
 
10170
+ [Mozilla/5.0 (SymbianOS/9.4; Series60/* NokiaC6-00/*; Profile/MIDP-* Configuration/CLDC-*) AppleWebKit/525 (KHTML, like Gecko) BrowserNG/7.2.*]
10171
+ Parent=Nokia
10172
+ Browser="BrowserNG"
10173
+ Version=7.2
10174
+ MajorVer=7
10175
  MinorVer=2
10176
+ Platform="SymbianOS"
10177
+ Platform_Version=9.4
10178
 
10179
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Openwave Mobile Browser
 
 
 
 
 
 
 
 
 
 
10180
 
10181
+ [Openwave Mobile Browser]
10182
  Parent=DefaultProperties
10183
+ Comment="Openwave Mobile Browser"
10184
+ Browser="Openwave Mobile Browser"
10185
  Frames=true
10186
  IFrames=true
10187
  Tables=true
10188
  Cookies=true
 
 
10189
  JavaScript=true
10190
+ isMobileDevice=true
 
10191
 
10192
+ [*UP.Browser/*]
10193
+ Parent=Openwave Mobile Browser
10194
 
10195
+ [*UP.Link/*]
10196
+ Parent=Openwave Mobile Browser
10197
 
10198
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Palm Web
10199
+
10200
+ [Palm Web]
10201
  Parent=DefaultProperties
10202
+ Comment="Palm Web"
10203
+ Browser="Palm Web"
10204
+ Platform="webOS"
 
10205
  Frames=true
10206
  IFrames=true
10207
  Tables=true
10208
  Cookies=true
 
10209
  JavaScript=true
10210
+ isMobileDevice=true
 
10211
 
10212
+ [Mozilla/5.0 (*webOS*) AppleWebKit/* (KHTML, like Gecko) *Version/1.* *Safari/* *Pixi/1.*]
10213
+ Parent=Palm Web
10214
  Version=1.0
10215
  MajorVer=1
10216
  MinorVer=0
10217
+ CssVersion=2
 
10218
 
10219
+ [Mozilla/5.0 (*webOS*) AppleWebKit/* (KHTML, like Gecko) *Version/1.* *Safari/* *Pixi/2.*]
10220
+ Parent=Palm Web
10221
+ Version=2.0
10222
+ MajorVer=2
10223
  MinorVer=0
10224
+ CssVersion=2
 
10225
 
10226
+ [Mozilla/5.0 (*webOS*) AppleWebKit/* (KHTML, like Gecko) *Version/1.* *Safari/* *Pre/2.*]
10227
+ Parent=Palm Web
10228
+ Version=2.0
10229
+ MajorVer=2
10230
  MinorVer=0
10231
+ CssVersion=2
 
10232
 
10233
+ [Mozilla/5.0 (*webOS*) AppleWebKit/* (KHTML, like Gecko) *Version/1.* Safari/* *Pre/1.*]
10234
+ Parent=Palm Web
10235
  Version=1.0
10236
  MajorVer=1
10237
  MinorVer=0
10238
+ CssVersion=2
 
10239
 
10240
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Playstation
 
 
 
 
 
 
10241
 
10242
+ [Playstation]
10243
+ Parent=DefaultProperties
10244
+ Comment="Playstation"
10245
+ Browser="Playstation"
10246
+ Platform="WAP"
10247
+ Frames=true
10248
+ IFrames=true
10249
+ Tables=true
10250
+ Cookies=true
10251
+ JavaScript=true
10252
+ isMobileDevice=true
10253
 
10254
+ [Mozilla/* (PLAYSTATION*)]
10255
+ Parent=Playstation
10256
+ Browser="Sony PS3"
10257
+ Frames=false
10258
 
10259
+ [Mozilla/* (PSP (PlayStation Portable)*)]
10260
+ Parent=Playstation
10261
+ Browser="Sony PSP"
10262
+
10263
+ [Sony PS2 (Linux)]
10264
+ Parent=Playstation
10265
+ Browser="Sony PS2"
10266
+ Platform="Linux"
10267
+
10268
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Pocket PC
10269
+
10270
+ [Pocket PC]
10271
  Parent=DefaultProperties
10272
+ Comment="Pocket PC"
10273
+ Browser="Pocket PC"
10274
+ Platform="WinCE"
10275
+ Frames=true
10276
+ IFrames=true
10277
+ Tables=true
10278
+ Cookies=true
10279
+ JavaScript=true
10280
+ isMobileDevice=true
10281
+ CssVersion=1
10282
+
10283
+ [*(compatible; MSIE *.*; Windows CE; PPC; *)]
10284
+ Parent=Pocket PC
10285
+
10286
+ [HTC-*/* Mozilla/* (compatible; MSIE *.*; Windows CE*)*]
10287
+ Parent=Pocket PC
10288
+
10289
+ [Mozilla/* (compatible; MSPIE *.*; *Windows CE*)*]
10290
+ Parent=Pocket PC
10291
+
10292
+ [T-Mobile* Mozilla/* (compatible; MSIE *.*; Windows CE; *)]
10293
+ Parent=Pocket PC
10294
+
10295
+ [Vodafone* Mozilla/* (compatible; MSIE *.*; Windows CE; *)*]
10296
+ Parent=Pocket PC
10297
+
10298
+ [Windows CE (Pocket PC) - Version *.*]
10299
+ Parent=Pocket PC
10300
+
10301
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Polaris
10302
+
10303
+ [Polaris]
10304
+ Parent=DefaultProperties
10305
+ Comment="Polaris"
10306
+ Browser="Polaris"
10307
  Frames=true
10308
  IFrames=true
10309
  Tables=true
10310
  Cookies=true
 
10311
  JavaScript=true
10312
+ isMobileDevice=true
10313
  CssVersion=2
 
10314
 
10315
+ [LG-* Polaris/5.* MMP/2.*]
10316
+ Parent=Polaris
10317
+ Browser="Polaris LG"
10318
+ Version=5.0
10319
+ MajorVer=5
10320
  MinorVer=0
 
 
10321
 
10322
+ [LG-* Polaris/6.* MMP/2.*]
10323
+ Parent=Polaris
10324
+ Browser="Polaris LG"
10325
+ Version=6.0
10326
+ MajorVer=6
10327
  MinorVer=0
 
 
10328
 
10329
+ [LG-* Polaris/7.* MMP/2.*]
10330
+ Parent=Polaris
10331
+ Browser="Polaris LG"
10332
+ Version=7.0
10333
+ MajorVer=7
10334
  MinorVer=0
 
 
10335
 
10336
+ [Samsung-* Polaris/5.* MMP/2.*]
10337
+ Parent=Polaris
10338
+ Browser="Polaris Samsung"
10339
+ Version=5.0
10340
+ MajorVer=5
10341
  MinorVer=0
 
 
10342
 
10343
+ [Samsung-* Polaris/6.* MMP/2.*]
10344
+ Parent=Polaris
10345
+ Browser="Polaris Samsung"
10346
+ Version=6.0
10347
+ MajorVer=6
10348
  MinorVer=0
 
 
10349
 
10350
+ [Samsung-* Polaris/7.* MMP/2.*]
10351
+ Parent=Polaris
10352
+ Browser="Polaris Samsung"
10353
+ Version=7.0
10354
+ MajorVer=7
10355
  MinorVer=0
 
 
10356
 
10357
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SEMC Browser
10358
 
10359
+ [SEMC Browser]
10360
  Parent=DefaultProperties
10361
+ Comment="SEMC Browser"
10362
+ Browser="SEMC Browser"
10363
+ Platform="JAVA"
 
 
10364
  Frames=true
10365
  IFrames=true
10366
  Tables=true
10367
  Cookies=true
 
10368
  JavaScript=true
10369
+ isMobileDevice=true
10370
+ CssVersion=1
10371
 
10372
+ [*SEMC-Browser/*]
10373
+ Parent=SEMC Browser
 
 
 
 
 
10374
 
10375
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk
 
 
 
 
 
 
10376
 
10377
+ [Silk]
10378
+ Parent=DefaultProperties
10379
+ Comment="Silk"
10380
+ Browser="Silk"
10381
+ Platform="Android"
10382
+ Frames=true
10383
+ IFrames=true
10384
+ Tables=true
10385
+ Cookies=true
10386
+ isMobileDevice=true
10387
+ CssVersion=2
10388
 
10389
+ [Mozilla/5.0 (*Mac OS X 10*Silk/1.*) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16 Silk-Accelerated=*]
10390
+ Parent=Silk
10391
  Version=1.0
10392
  MajorVer=1
10393
  MinorVer=0
 
 
10394
 
10395
+ [Mozilla/5.0 (Linux*Android*Silk/1.*) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 Silk-Accelerated=*]
10396
+ Parent=Silk
10397
  Version=1.0
10398
  MajorVer=1
10399
  MinorVer=0
 
 
10400
 
10401
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Skyfire
 
 
10402
 
10403
+ [Skyfire]
10404
+ Parent=DefaultProperties
10405
+ Comment="Skyfire"
10406
+ Browser="Skyfire"
10407
+ Frames=true
10408
+ IFrames=true
10409
+ Tables=true
10410
+ Cookies=true
10411
+ JavaScript=true
10412
+ isMobileDevice=true
10413
+ CssVersion=3
10414
 
10415
+ [Mozilla/5.0 (Macintosh*Mac OS X 10_5*)*AppleWebKit/530.17*(KHTML, like Gecko)*Version/*Safari/*Skyfire/2.*]
10416
+ Parent=Skyfire
10417
+ Version=2.0
10418
+ MajorVer=2
10419
  MinorVer=0
10420
+ Platform="MacOSX"
10421
+ Platform_Version=10.5
10422
+ isMobileDevice=false
10423
 
10424
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Teleca
10425
 
10426
+ [Teleca]
10427
  Parent=DefaultProperties
10428
+ Comment="Teleca"
10429
+ Browser="Teleca"
10430
  Frames=true
10431
  IFrames=true
10432
  Tables=true
10433
  Cookies=true
10434
  JavaScript=true
10435
+ isMobileDevice=true
10436
+ CssVersion=1
10437
 
10438
+ [Mozilla/5.0 (compatible; Teleca *; Brew 3.0*; U; *)*]
10439
+ Parent=Teleca
10440
  Version=3.0
10441
  MajorVer=3
10442
  MinorVer=0
 
10443
 
10444
+ [Mozilla/5.0 (compatible; Teleca *; Brew 3.1*; U; *)*]
10445
+ Parent=Teleca
10446
+ Version=3.1
10447
  MajorVer=3
10448
+ MinorVer=1
 
 
10449
 
10450
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser
10451
+
10452
+ [UC Browser]
10453
+ Parent=DefaultProperties
10454
+ Comment="UC Browser"
10455
+ Browser="UC Browser"
10456
+ Frames=true
10457
+ IFrames=true
10458
+ Tables=true
10459
+ Cookies=true
10460
+ JavaScript=true
10461
+ isMobileDevice=true
10462
+
10463
+ [Mozilla/5.0 (Java;*samsung*) UCBrowser8.2*UCWEB*Mobile*UNTRUSTED/*]
10464
+ Parent=UC Browser
10465
+ Version=8.2
10466
+ MajorVer=8
10467
+ MinorVer=2
10468
+ Platform="JAVA"
10469
+
10470
+ [Mozilla/5.0 (Java;*samsung-gt-s5263) UCBrowser8.2*UCWEB*Mobile*UNTRUSTED/*]
10471
+ Parent=UC Browser
10472
+ Version=8.2
10473
+ MajorVer=8
10474
+ MinorVer=2
10475
+ Platform="JAVA"
10476
+
10477
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 3.0
10478
+
10479
+ [Android Browser 3.0]
10480
+ Parent=DefaultProperties
10481
+ Comment="Android Browser 3.0"
10482
+ Browser="Android"
10483
  Version=3.0
10484
  MajorVer=3
10485
  MinorVer=0
10486
+ Platform="Android"
10487
+ Frames=true
10488
+ IFrames=true
10489
+ Tables=true
10490
+ Cookies=true
10491
+ JavaScript=true
10492
+ isMobileDevice=true
10493
+ CssVersion=3
10494
 
10495
+ [Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.0*Mobile Safari/*]
10496
+ Parent=Android Browser 3.0
10497
+ Platform_Version=1.0
10498
+
10499
+ [Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.0*Mobile Safari/*]
10500
+ Parent=Android Browser 3.0
10501
+ Platform_Version=1.1
10502
+
10503
+ [Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*]
10504
+ Parent=Android Browser 3.0
10505
  Version=3.1
10506
  MajorVer=3
10507
  MinorVer=1
10508
+ Platform_Version=1.5
10509
 
10510
+ [Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*]
10511
+ Parent=Android Browser 3.0
10512
  Version=3.1
10513
  MajorVer=3
10514
  MinorVer=1
10515
+ Platform_Version=1.6
10516
 
10517
+ [Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*]
10518
+ Parent=Android Browser 3.0
10519
  Version=3.1
10520
  MajorVer=3
10521
  MinorVer=1
10522
+ Platform_Version=2.0
10523
 
10524
+ [Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*]
10525
+ Parent=Android Browser 3.0
10526
+ Version=3.1
10527
  MajorVer=3
10528
+ MinorVer=1
10529
+ Platform_Version=2.1
10530
 
10531
+ [Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*]
10532
+ Parent=Android Browser 3.0
10533
+ Version=3.1
10534
  MajorVer=3
10535
+ MinorVer=1
10536
+ Platform_Version=2.2
10537
 
10538
+ [Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*]
10539
+ Parent=Android Browser 3.0
10540
+ Version=3.1
10541
  MajorVer=3
10542
+ MinorVer=1
10543
+ Platform_Version=2.3
10544
 
10545
+ [Mozilla/5.0 (Linux*Android 3.*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*]
10546
+ Parent=Android Browser 3.0
10547
+ Version=3.1
10548
  MajorVer=3
10549
+ MinorVer=1
10550
+ Platform_Version=3.0
10551
 
10552
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.0
 
 
 
 
 
10553
 
10554
+ [Android Browser 4.0]
10555
+ Parent=DefaultProperties
10556
+ Comment="Android Browser 4.0"
10557
+ Browser="Android"
10558
+ Version=4.0
10559
+ MajorVer=4
10560
+ MinorVer=0
10561
+ Platform="Android"
10562
+ Frames=true
10563
+ IFrames=true
10564
+ Tables=true
10565
+ Cookies=true
10566
+ JavaScript=true
10567
+ isMobileDevice=true
10568
+ CssVersion=3
10569
+
10570
+ [Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*]
10571
+ Parent=Android Browser 4.0
10572
+ Platform_Version=1.0
10573
+
10574
+ [Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*]
10575
+ Parent=Android Browser 4.0
10576
+ Platform_Version=1.1
10577
+
10578
+ [Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*]
10579
+ Parent=Android Browser 4.0
10580
+ Platform_Version=1.5
10581
+
10582
+ [Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*]
10583
+ Parent=Android Browser 4.0
10584
+ Platform_Version=1.6
10585
+
10586
+ [Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*]
10587
+ Parent=Android Browser 4.0
10588
+ Platform_Version=2.0
10589
+
10590
+ [Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*]
10591
+ Parent=Android Browser 4.0
10592
+ Platform_Version=2.1
10593
+
10594
+ [Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*]
10595
+ Parent=Android Browser 4.0
10596
+ Platform_Version=2.2
10597
+
10598
+ [Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*]
10599
+ Parent=Android Browser 4.0
10600
+ Platform_Version=2.3
10601
+
10602
+ [Mozilla/5.0 (Linux*Android 3.*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*]
10603
+ Parent=Android Browser 4.0
10604
+ Platform_Version=3.0
10605
+
10606
+ [Mozilla/5.0 (Linux*Android 3.*sdk*)*AppleWebKit/534.13*(*KHTML, like Gecko*)*Version/4.*Safari/*]
10607
+ Parent=Android Browser 4.0
10608
+ Platform_Version=3.0
10609
+
10610
+ [Mozilla/5.0 (Linux*Android 3.2*GT-*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Safari/*]
10611
+ Parent=Android Browser 4.0
10612
+ Platform_Version=3.2
10613
+
10614
+ [Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*]
10615
+ Parent=Android Browser 4.0
10616
+ Platform_Version=4.0
10617
+
10618
+ [Mozilla/5.0 (Linux*Android 4.0*GT-*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Safari/*]
10619
+ Parent=Android Browser 4.0
10620
+ Platform_Version=4.0
10621
+
10622
+ [Mozilla/5.0 (Linux*Android 4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*]
10623
+ Parent=Android Browser 4.0
10624
+ Platform_Version=4.1
10625
+
10626
+ [Mozilla/5.0 (Linux*Android 4.1*GT-*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Safari/*]
10627
+ Parent=Android Browser 4.0
10628
+ Platform_Version=4.1
10629
+
10630
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BlackBerry
10631
+
10632
+ [BlackBerry]
10633
+ Parent=DefaultProperties
10634
+ Comment="BlackBerry"
10635
+ Browser="BlackBerry"
10636
+ Platform="BlackBerry OS"
10637
+ Frames=true
10638
+ IFrames=true
10639
+ Tables=true
10640
+ Cookies=true
10641
+ JavaScript=true
10642
+ isMobileDevice=true
10643
+ CssVersion=2
10644
+
10645
+ [*BlackBerry*]
10646
+ Parent=BlackBerry
10647
+ Platform_Version=1.0
10648
+
10649
+ [*PlayBook*RIM Tablet OS 1.0.*]
10650
+ Parent=BlackBerry
10651
+ Platform="RIM Tablet OS"
10652
+ Platform_Version=1.0
10653
+
10654
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Playbook Simulator
10655
+
10656
+ [*PlayBook*RIM Tablet OS 2.0.*]
10657
+ Parent=BlackBerry
10658
+ Comment="Playbook Simulator"
10659
+ Browser="Playbook"
10660
+ Version=2.0
10661
+ MajorVer=2
10662
+ MinorVer=0
10663
+ Platform_Version=2.0
10664
+ CssVersion=3
10665
+
10666
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 3.0
10667
+
10668
+ [Mobile Safari 3.0]
10669
+ Parent=DefaultProperties
10670
+ Comment="Mobile Safari 3.0"
10671
+ Browser="Safari"
10672
+ Version=3.0
10673
+ MajorVer=3
10674
+ MinorVer=0
10675
+ Platform="iOS"
10676
+ Frames=true
10677
+ IFrames=true
10678
+ Tables=true
10679
+ Cookies=true
10680
+ JavaScript=true
10681
+ isMobileDevice=true
10682
+ CssVersion=3
10683
+
10684
+ [Mozilla/5.0 (iPhone*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.0*Mobile/*Safari/*]
10685
+ Parent=Mobile Safari 3.0
10686
+ Platform_Version=1.0
10687
+
10688
+ [Mozilla/5.0 (iPhone*CPU like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*]
10689
+ Parent=Mobile Safari 3.0
10690
+ Version=0
10691
+ MajorVer=0
10692
+ Platform_Version=1.0
10693
+
10694
+ [Mozilla/5.0 (iPhone*CPU like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*Mobile/*]
10695
+ Parent=Mobile Safari 3.0
10696
+ Platform_Version=1.0
10697
+
10698
+ [Mozilla/5.0 (iPod*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10699
+ Parent=Mobile Safari 3.0
10700
+ Version=0
10701
+ MajorVer=0
10702
+ Platform_Version=1.0
10703
+
10704
+ [Mozilla/5.0 (iPod*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10705
+ Parent=Mobile Safari 3.0
10706
+ Platform_Version=1.0
10707
+
10708
+ [Mozilla/5.0 (iPod*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.0*Mobile/*Safari/*]
10709
+ Parent=Mobile Safari 3.0
10710
+ Platform_Version=1.0
10711
+
10712
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 3.1
10713
+
10714
+ [Mobile Safari 3.1]
10715
+ Parent=DefaultProperties
10716
+ Comment="Mobile Safari 3.1"
10717
+ Browser="Safari"
10718
+ Version=3.1
10719
+ MajorVer=3
10720
+ MinorVer=1
10721
+ Platform="iOS"
10722
+ Frames=true
10723
+ IFrames=true
10724
+ Tables=true
10725
+ Cookies=true
10726
+ JavaScript=true
10727
+ isMobileDevice=true
10728
+ CssVersion=3
10729
+
10730
+ [Mozilla/5.0 (iPhone*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*]
10731
+ Parent=Mobile Safari 3.1
10732
+ Platform_Version=2.0
10733
+
10734
+ [Mozilla/5.0 (iPhone*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*]
10735
+ Parent=Mobile Safari 3.1
10736
+ Version=0
10737
+ MajorVer=0
10738
+ Platform_Version=2.0
10739
+
10740
+ [Mozilla/5.0 (iPhone*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*Mobile/*]
10741
+ Parent=Mobile Safari 3.1
10742
+ Platform_Version=2.0
10743
+
10744
+ [Mozilla/5.0 (iPhone*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*]
10745
+ Parent=Mobile Safari 3.1
10746
+ Platform_Version=2.1
10747
+
10748
+ [Mozilla/5.0 (iPhone*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*]
10749
+ Parent=Mobile Safari 3.1
10750
+ Version=0
10751
+ MajorVer=0
10752
+ Platform_Version=2.1
10753
+
10754
+ [Mozilla/5.0 (iPhone*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*Mobile/*]
10755
+ Parent=Mobile Safari 3.1
10756
+ Platform_Version=2.1
10757
+
10758
+ [Mozilla/5.0 (iPhone*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*]
10759
+ Parent=Mobile Safari 3.1
10760
+ Platform_Version=2.2
10761
+
10762
+ [Mozilla/5.0 (iPhone*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*]
10763
+ Parent=Mobile Safari 3.1
10764
+ Version=0
10765
+ MajorVer=0
10766
+ Platform_Version=2.2
10767
+
10768
+ [Mozilla/5.0 (iPhone*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*Mobile/*]
10769
+ Parent=Mobile Safari 3.1
10770
+ Platform_Version=2.2
10771
+
10772
+ [Mozilla/5.0 (iPod*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10773
+ Parent=Mobile Safari 3.1
10774
+ Version=0
10775
+ MajorVer=0
10776
+ Platform_Version=2.0
10777
+
10778
+ [Mozilla/5.0 (iPod*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10779
+ Parent=Mobile Safari 3.1
10780
+ Platform_Version=2.0
10781
+
10782
+ [Mozilla/5.0 (iPod*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*]
10783
+ Parent=Mobile Safari 3.1
10784
+ Platform_Version=2.0
10785
+
10786
+ [Mozilla/5.0 (iPod*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10787
+ Parent=Mobile Safari 3.1
10788
+ Version=0
10789
+ MajorVer=0
10790
+ Platform_Version=2.1
10791
+
10792
+ [Mozilla/5.0 (iPod*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10793
+ Parent=Mobile Safari 3.1
10794
+ Platform_Version=2.1
10795
+
10796
+ [Mozilla/5.0 (iPod*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*]
10797
+ Parent=Mobile Safari 3.1
10798
+ Platform_Version=2.1
10799
+
10800
+ [Mozilla/5.0 (iPod*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10801
+ Parent=Mobile Safari 3.1
10802
+ Version=0
10803
+ MajorVer=0
10804
+ Platform_Version=2.2
10805
+
10806
+ [Mozilla/5.0 (iPod*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10807
+ Parent=Mobile Safari 3.1
10808
+ Platform_Version=2.2
10809
+
10810
+ [Mozilla/5.0 (iPod*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*]
10811
+ Parent=Mobile Safari 3.1
10812
+ Platform_Version=2.2
10813
+
10814
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 4.0
10815
+
10816
+ [Mobile Safari 4.0]
10817
+ Parent=DefaultProperties
10818
+ Comment="Mobile Safari 4.0"
10819
+ Browser="Safari"
10820
+ Version=4.0
10821
+ MajorVer=4
10822
+ MinorVer=0
10823
+ Platform="iOS"
10824
+ Frames=true
10825
+ IFrames=true
10826
+ Tables=true
10827
+ Cookies=true
10828
+ JavaScript=true
10829
+ isMobileDevice=true
10830
+ CssVersion=3
10831
+
10832
+ [Mozilla/5.0 (iPad*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10833
+ Parent=Mobile Safari 4.0
10834
+ Version=0
10835
+ MajorVer=0
10836
+ Platform_Version=3.2
10837
+
10838
+ [Mozilla/5.0 (iPad*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10839
+ Parent=Mobile Safari 4.0
10840
+ Platform_Version=3.2
10841
+
10842
+ [Mozilla/5.0 (iPad*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0.*Mobile/*Safari/*]
10843
+ Parent=Mobile Safari 4.0
10844
+ Platform_Version=3.2
10845
+
10846
+ [Mozilla/5.0 (iPhone*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10847
+ Parent=Mobile Safari 4.0
10848
+ Version=0
10849
+ MajorVer=0
10850
+ Platform_Version=3.0
10851
+
10852
+ [Mozilla/5.0 (iPhone*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10853
+ Parent=Mobile Safari 4.0
10854
+ Platform_Version=3.0
10855
+
10856
+ [Mozilla/5.0 (iPhone*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*]
10857
+ Parent=Mobile Safari 4.0
10858
+ Platform_Version=3.0
10859
+
10860
+ [Mozilla/5.0 (iPhone*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10861
+ Parent=Mobile Safari 4.0
10862
+ Version=0
10863
+ MajorVer=0
10864
+ Platform_Version=3.1
10865
+
10866
+ [Mozilla/5.0 (iPhone*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10867
+ Parent=Mobile Safari 4.0
10868
+ Platform_Version=3.1
10869
+
10870
+ [Mozilla/5.0 (iPhone*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/528*]
10871
+ Parent=Mobile Safari 4.0
10872
+ Platform_Version=3.1
10873
+
10874
+ [Mozilla/5.0 (iPhone*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10875
+ Parent=Mobile Safari 4.0
10876
+ Version=0
10877
+ MajorVer=0
10878
+ Platform_Version=3.2
10879
+
10880
+ [Mozilla/5.0 (iPhone*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10881
+ Parent=Mobile Safari 4.0
10882
+ Platform_Version=3.2
10883
+
10884
+ [Mozilla/5.0 (iPhone*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*]
10885
+ Parent=Mobile Safari 4.0
10886
+ Platform_Version=3.2
10887
+
10888
+ [Mozilla/5.0 (iPhone*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10889
+ Parent=Mobile Safari 4.0
10890
+ Version=0
10891
+ MajorVer=0
10892
+ Platform_Version=4.0
10893
+
10894
+ [Mozilla/5.0 (iPhone*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10895
+ Parent=Mobile Safari 4.0
10896
+ Platform_Version=4.0
10897
+
10898
+ [Mozilla/5.0 (iPhone*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*]
10899
+ Parent=Mobile Safari 4.0
10900
+ Platform_Version=4.0
10901
+
10902
+ [Mozilla/5.0 (iPhone*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10903
+ Parent=Mobile Safari 4.0
10904
+ Version=0
10905
+ MajorVer=0
10906
+ Platform_Version=4.1
10907
+
10908
+ [Mozilla/5.0 (iPhone*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10909
+ Parent=Mobile Safari 4.0
10910
+ Platform_Version=4.1
10911
+
10912
+ [Mozilla/5.0 (iPhone*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*]
10913
+ Parent=Mobile Safari 4.0
10914
+ Platform_Version=4.1
10915
+
10916
+ [Mozilla/5.0 (iPod*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10917
+ Parent=Mobile Safari 4.0
10918
+ Version=0
10919
+ MajorVer=0
10920
+ Platform_Version=3.0
10921
+
10922
+ [Mozilla/5.0 (iPod*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10923
+ Parent=Mobile Safari 4.0
10924
+ Platform_Version=3.0
10925
+
10926
+ [Mozilla/5.0 (iPod*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*]
10927
+ Parent=Mobile Safari 4.0
10928
+ Platform_Version=3.0
10929
+
10930
+ [Mozilla/5.0 (iPod*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10931
+ Parent=Mobile Safari 4.0
10932
+ Version=0
10933
+ MajorVer=0
10934
+ Platform_Version=3.1
10935
+
10936
+ [Mozilla/5.0 (iPod*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10937
+ Parent=Mobile Safari 4.0
10938
+ Platform_Version=3.1
10939
+
10940
+ [Mozilla/5.0 (iPod*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*]
10941
+ Parent=Mobile Safari 4.0
10942
+ Platform_Version=3.1
10943
+
10944
+ [Mozilla/5.0 (iPod*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10945
+ Parent=Mobile Safari 4.0
10946
+ Version=0
10947
+ MajorVer=0
10948
+ Platform_Version=4.0
10949
+
10950
+ [Mozilla/5.0 (iPod*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10951
+ Parent=Mobile Safari 4.0
10952
+ Platform_Version=4.0
10953
+
10954
+ [Mozilla/5.0 (iPod*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*]
10955
+ Parent=Mobile Safari 4.0
10956
+ Platform_Version=4.0
10957
+
10958
+ [Mozilla/5.0 (iPod*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10959
+ Parent=Mobile Safari 4.0
10960
+ Version=0
10961
+ MajorVer=0
10962
+ Platform_Version=4.1
10963
+
10964
+ [Mozilla/5.0 (iPod*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10965
+ Parent=Mobile Safari 4.0
10966
+ Platform_Version=4.1
10967
+
10968
+ [Mozilla/5.0 (iPod*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*]
10969
+ Parent=Mobile Safari 4.0
10970
+ Platform_Version=4.1
10971
+
10972
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 5.0
10973
+
10974
+ [Mobile Safari 5.0]
10975
+ Parent=DefaultProperties
10976
+ Comment="Mobile Safari 5.0"
10977
+ Browser="Safari"
10978
+ Version=5.0
10979
+ MajorVer=5
10980
+ MinorVer=0
10981
+ Platform="iOS"
10982
+ Frames=true
10983
+ IFrames=true
10984
+ Tables=true
10985
+ Cookies=true
10986
+ JavaScript=true
10987
+ isMobileDevice=true
10988
+ CssVersion=3
10989
+
10990
+ [Mozilla/5.0 (iPad*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
10991
+ Parent=Mobile Safari 5.0
10992
+ Version=0
10993
+ MajorVer=0
10994
+ Platform_Version=4.2
10995
+
10996
+ [Mozilla/5.0 (iPad*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
10997
+ Parent=Mobile Safari 5.0
10998
+ Platform_Version=4.2
10999
+
11000
+ [Mozilla/5.0 (iPad*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0.*Mobile/*Safari/*]
11001
+ Parent=Mobile Safari 5.0
11002
+ Platform_Version=4.2
11003
+
11004
+ [Mozilla/5.0 (iPad*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11005
+ Parent=Mobile Safari 5.0
11006
+ Version=0
11007
+ MajorVer=0
11008
+ Platform_Version=4.3
11009
+
11010
+ [Mozilla/5.0 (iPad*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11011
+ Parent=Mobile Safari 5.0
11012
+ Platform_Version=4.3
11013
+
11014
+ [Mozilla/5.0 (iPad*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0.*Mobile/*Safari/*]
11015
+ Parent=Mobile Safari 5.0
11016
+ Platform_Version=4.3
11017
+
11018
+ [Mozilla/5.0 (iPhone*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11019
+ Parent=Mobile Safari 5.0
11020
+ Version=0
11021
+ MajorVer=0
11022
+ Platform_Version=4.2
11023
+
11024
+ [Mozilla/5.0 (iPhone*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11025
+ Parent=Mobile Safari 5.0
11026
+ Platform_Version=4.2
11027
+
11028
+ [Mozilla/5.0 (iPhone*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0*Mobile/*Safari/*]
11029
+ Parent=Mobile Safari 5.0
11030
+ Platform_Version=4.2
11031
+
11032
+ [Mozilla/5.0 (iPhone*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/(*KHTML, like Gecko*)*]
11033
+ Parent=Mobile Safari 5.0
11034
+ Version=0
11035
+ MajorVer=0
11036
+ Platform_Version=4.3
11037
+
11038
+ [Mozilla/5.0 (iPhone*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11039
+ Parent=Mobile Safari 5.0
11040
+ Platform_Version=4.3
11041
+
11042
+ [Mozilla/5.0 (iPhone*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0*Mobile/*Safari/*]
11043
+ Parent=Mobile Safari 5.0
11044
+ Platform_Version=4.3
11045
+
11046
+ [Mozilla/5.0 (iPod*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11047
+ Parent=Mobile Safari 5.0
11048
+ Version=0
11049
+ MajorVer=0
11050
+ Platform_Version=4.2
11051
+
11052
+ [Mozilla/5.0 (iPod*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11053
+ Parent=Mobile Safari 5.0
11054
+ Platform_Version=4.2
11055
+
11056
+ [Mozilla/5.0 (iPod*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0*Mobile/*Safari/*]
11057
+ Parent=Mobile Safari 5.0
11058
+ Platform_Version=4.2
11059
+
11060
+ [Mozilla/5.0 (iPod*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11061
+ Parent=Mobile Safari 5.0
11062
+ Version=0
11063
+ MajorVer=0
11064
+ Platform_Version=4.3
11065
+
11066
+ [Mozilla/5.0 (iPod*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11067
+ Parent=Mobile Safari 5.0
11068
+ Platform_Version=4.3
11069
+
11070
+ [Mozilla/5.0 (iPod*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0*Mobile/*Safari/*]
11071
+ Parent=Mobile Safari 5.0
11072
+ Platform_Version=4.3
11073
+
11074
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 5.1
11075
+
11076
+ [Mobile Safari 5.1]
11077
+ Parent=DefaultProperties
11078
+ Comment="Mobile Safari 5.1"
11079
+ Browser="Safari"
11080
+ Version=5.1
11081
+ MajorVer=5
11082
+ MinorVer=1
11083
+ Platform="iOS"
11084
+ Frames=true
11085
+ IFrames=true
11086
+ Tables=true
11087
+ Cookies=true
11088
+ JavaScript=true
11089
+ isMobileDevice=true
11090
+ CssVersion=3
11091
+
11092
+ [Mozilla/5.0 (iPad*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11093
+ Parent=Mobile Safari 5.1
11094
+ Version=0
11095
+ MajorVer=0
11096
+ Platform_Version=5.0
11097
+
11098
+ [Mozilla/5.0 (iPad*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11099
+ Parent=Mobile Safari 5.1
11100
+ Platform_Version=5.0
11101
+
11102
+ [Mozilla/5.0 (iPad*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1.*Mobile/*Safari/*]
11103
+ Parent=Mobile Safari 5.1
11104
+ Platform_Version=5.0
11105
+
11106
+ [Mozilla/5.0 (iPad*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11107
+ Parent=Mobile Safari 5.1
11108
+ Version=0
11109
+ MajorVer=0
11110
+ Platform_Version=5.1
11111
+
11112
+ [Mozilla/5.0 (iPad*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11113
+ Parent=Mobile Safari 5.1
11114
+ Platform_Version=5.1
11115
+
11116
+ [Mozilla/5.0 (iPad*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1.*Mobile/*Safari/*]
11117
+ Parent=Mobile Safari 5.1
11118
+ Platform_Version=5.1
11119
+
11120
+ [Mozilla/5.0 (iPhone*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11121
+ Parent=Mobile Safari 5.1
11122
+ Version=0
11123
+ MajorVer=0
11124
+ Platform_Version=5.0
11125
+
11126
+ [Mozilla/5.0 (iPhone*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11127
+ Parent=Mobile Safari 5.1
11128
+ Platform_Version=5.0
11129
+
11130
+ [Mozilla/5.0 (iPhone*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1*Mobile/*Safari/*]
11131
+ Parent=Mobile Safari 5.1
11132
+ Platform_Version=5.0
11133
+
11134
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Facebook App
11135
+
11136
+ [Mozilla/5.0 (iPhone*CPU*OS 5_1* like Mac OS X*)*AppleWebKit*(*KHTML, like Gecko*)*Mobile*FB*]
11137
+ Parent=Mobile Safari 5.1
11138
+ Comment="Facebook App"
11139
+ Platform_Version=5.1
11140
+
11141
+ [Mozilla/5.0 (iPhone*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11142
+ Parent=Mobile Safari 5.1
11143
+ Version=0
11144
+ MajorVer=0
11145
+ Platform_Version=5.1
11146
+
11147
+ [Mozilla/5.0 (iPhone*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11148
+ Parent=Mobile Safari 5.1
11149
+ Platform_Version=5.1
11150
+
11151
+ [Mozilla/5.0 (iPhone*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1*Mobile/*Safari/*]
11152
+ Parent=Mobile Safari 5.1
11153
+ Platform_Version=5.1
11154
+
11155
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google+ App
11156
+
11157
+ [Mozilla/5.0 (iPhone*CPU*OS 5_1* like Mac OS X*)*GooglePlus/*(*KHTML, like Gecko*)*Mobile/*]
11158
+ Parent=Mobile Safari 5.1
11159
+ Comment="Google+ App"
11160
+ Platform_Version=5.1
11161
+
11162
+ [Mozilla/5.0 (iPod*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11163
+ Parent=Mobile Safari 5.1
11164
+ Version=0
11165
+ MajorVer=0
11166
+ Platform_Version=5.0
11167
+
11168
+ [Mozilla/5.0 (iPod*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11169
+ Parent=Mobile Safari 5.1
11170
+ Platform_Version=5.0
11171
+
11172
+ [Mozilla/5.0 (iPod*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1*Mobile/*Safari/*]
11173
+ Parent=Mobile Safari 5.1
11174
+ Platform_Version=5.0
11175
+
11176
+ [Mozilla/5.0 (iPod*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11177
+ Parent=Mobile Safari 5.1
11178
+ Version=0
11179
+ MajorVer=0
11180
+ Platform_Version=5.1
11181
+
11182
+ [Mozilla/5.0 (iPod*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11183
+ Parent=Mobile Safari 5.1
11184
+ Platform_Version=5.1
11185
+
11186
+ [Mozilla/5.0 (iPod*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1*Mobile/*Safari/*]
11187
+ Parent=Mobile Safari 5.1
11188
+ Platform_Version=5.1
11189
+
11190
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 6.0
11191
+
11192
+ [Mobile Safari 6.0]
11193
+ Parent=DefaultProperties
11194
+ Comment="Mobile Safari 6.0"
11195
+ Browser="Safari"
11196
+ Version=6.0
11197
+ MajorVer=6
11198
+ MinorVer=0
11199
+ Platform="iOS"
11200
+ Platform_Version=6.0
11201
+ Frames=true
11202
+ IFrames=true
11203
+ Tables=true
11204
+ Cookies=true
11205
+ JavaScript=true
11206
+ isMobileDevice=true
11207
+ CssVersion=3
11208
+
11209
+ [Mozilla/5.0 (iPad*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11210
+ Parent=Mobile Safari 6.0
11211
+
11212
+ [Mozilla/5.0 (iPad*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11213
+ Parent=Mobile Safari 6.0
11214
+
11215
+ [Mozilla/5.0 (iPad*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/6.0.*Mobile/*Safari/*]
11216
+ Parent=Mobile Safari 6.0
11217
+
11218
+ [Mozilla/5.0 (iPhone*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11219
+ Parent=Mobile Safari 6.0
11220
+
11221
+ [Mozilla/5.0 (iPhone*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11222
+ Parent=Mobile Safari 6.0
11223
+
11224
+ [Mozilla/5.0 (iPhone*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/6.0*Mobile/*Safari/*]
11225
+ Parent=Mobile Safari 6.0
11226
+
11227
+ [Mozilla/5.0 (iPod*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*]
11228
+ Parent=Mobile Safari 6.0
11229
+ Version=0
11230
+ MajorVer=0
11231
+
11232
+ [Mozilla/5.0 (iPod*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*]
11233
+ Parent=Mobile Safari 6.0
11234
+
11235
+ [Mozilla/5.0 (iPod*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/6.0*Mobile/*Safari/*]
11236
+ Parent=Mobile Safari 6.0
11237
+
11238
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini 2.0
11239
+
11240
+ [Opera Mini 2.0]
11241
+ Parent=DefaultProperties
11242
+ Comment="Opera Mini 2.0"
11243
+ Browser="Opera Mini"
11244
+ Version=2.0
11245
+ MajorVer=2
11246
+ MinorVer=0
11247
+ Frames=true
11248
+ IFrames=true
11249
+ Tables=true
11250
+ Cookies=true
11251
+ JavaScript=true
11252
+ isMobileDevice=true
11253
+ CssVersion=1
11254
+
11255
+ [Opera/*(Android*Opera Mini/2.*)*]
11256
+ Parent=Opera Mini 2.0
11257
+ Platform="Android"
11258
+
11259
+ [Opera/*(BlackBerry*Opera Mini/2.*)*]
11260
+ Parent=Opera Mini 2.0
11261
+ Platform="BlackBerry OS"
11262
+
11263
+ [Opera/*(J2ME/MIDP*Opera Mini/2.*)*]
11264
+ Parent=Opera Mini 2.0
11265
+ Platform="JAVA"
11266
+
11267
+ [Opera/*(Series 60*Opera Mini/2.*)*]
11268
+ Parent=Opera Mini 2.0
11269
+ Platform="SymbianOS"
11270
+
11271
+ [Opera/*(Windows Mobile*Opera Mini/2.*)*]
11272
+ Parent=Opera Mini 2.0
11273
+ Platform="WinMobile"
11274
+
11275
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini 3.0
11276
+
11277
+ [Opera Mini 3.0]
11278
+ Parent=DefaultProperties
11279
+ Comment="Opera Mini 3.0"
11280
+ Browser="Opera Mini"
11281
+ Version=3.0
11282
+ MajorVer=3
11283
+ MinorVer=0
11284
+ Frames=true
11285
+ IFrames=true
11286
+ Tables=true
11287
+ Cookies=true
11288
+ JavaScript=true
11289
+ isMobileDevice=true
11290
+ CssVersion=1
11291
+
11292
+ [Opera/*(Android*Opera Mini/3.*)*]
11293
+ Parent=Opera Mini 3.0
11294
+ Platform="Android"
11295
+
11296
+ [Opera/*(BlackBerry*Opera Mini/3.*)*]
11297
+ Parent=Opera Mini 3.0
11298
+ Platform="BlackBerry OS"
11299
+
11300
+ [Opera/*(J2ME/MIDP*Opera Mini/3.*)*]
11301
+ Parent=Opera Mini 3.0
11302
+ Platform="JAVA"
11303
+
11304
+ [Opera/*(Series 60*Opera Mini/3.*)*]
11305
+ Parent=Opera Mini 3.0
11306
+ Platform="SymbianOS"
11307
+
11308
+ [Opera/*(Windows Mobile*Opera Mini/3.*)*]
11309
+ Parent=Opera Mini 3.0
11310
+ Platform="WinMobile"
11311
+
11312
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini 4.0
11313
+
11314
+ [Opera Mini 4.0]
11315
+ Parent=DefaultProperties
11316
+ Comment="Opera Mini 4.0"
11317
+ Browser="Opera Mini"
11318
+ Version=4.0
11319
+ MajorVer=4
11320
+ MinorVer=0
11321
+ Frames=true
11322
+ IFrames=true
11323
+ Tables=true
11324
+ Cookies=true
11325
+ JavaScript=true
11326
+ isMobileDevice=true
11327
+ CssVersion=1
11328
+
11329
+ [Opera/*(Android*Opera Mini/4.*)*]
11330
+ Parent=Opera Mini 4.0
11331
+ Platform="Android"
11332
+
11333
+ [Opera/*(BlackBerry*Opera Mini/4.*)*]
11334
+ Parent=Opera Mini 4.0
11335
+ Platform="BlackBerry OS"
11336
+
11337
+ [Opera/*(J2ME/MIDP*Opera Mini/4.*)*]
11338
+ Parent=Opera Mini 4.0
11339
+ Platform="JAVA"
11340
+
11341
+ [Opera/*(Series 60*Opera Mini/4.*)*]
11342
+ Parent=Opera Mini 4.0
11343
+ Platform="SymbianOS"
11344
+
11345
+ [Opera/*(Windows Mobile*Opera Mini/4.*)*]
11346
+ Parent=Opera Mini 4.0
11347
+ Platform="WinMobile"
11348
+
11349
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini 5.0
11350
+
11351
+ [Opera Mini 5.0]
11352
+ Parent=DefaultProperties
11353
+ Comment="Opera Mini 5.0"
11354
+ Browser="Opera Mini"
11355
+ Version=5.0
11356
+ MajorVer=5
11357
+ MinorVer=0
11358
+ Frames=true
11359
+ IFrames=true
11360
+ Tables=true
11361
+ Cookies=true
11362
+ JavaScript=true
11363
+ isMobileDevice=true
11364
+ CssVersion=1
11365
+
11366
+ [Opera/*(Android*Opera Mini/5.*)*]
11367
+ Parent=Opera Mini 5.0
11368
+ Platform="Android"
11369
+
11370
+ [Opera/*(BlackBerry*Opera Mini/5.*)*]
11371
+ Parent=Opera Mini 5.0
11372
+ Platform="BlackBerry OS"
11373
+
11374
+ [Opera/*(iPhone*Opera Mini/5.*)*]
11375
+ Parent=Opera Mini 5.0
11376
+
11377
+ [Opera/*(J2ME/MIDP*Opera Mini/5.*)*]
11378
+ Parent=Opera Mini 5.0
11379
+ Platform="JAVA"
11380
+
11381
+ [Opera/*(Series 60*Opera Mini/5.*)*]
11382
+ Parent=Opera Mini 5.0
11383
+ Platform="SymbianOS"
11384
+
11385
+ [Opera/*(Windows Mobile*Opera Mini/5.*)*]
11386
+ Parent=Opera Mini 5.0
11387
+ Platform="WinMobile"
11388
+
11389
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini 6.0
11390
+
11391
+ [Opera Mini 6.0]
11392
+ Parent=DefaultProperties
11393
+ Comment="Opera Mini 6.0"
11394
+ Browser="Opera Mini"
11395
+ Version=6.0
11396
+ MajorVer=6
11397
+ MinorVer=0
11398
+ Frames=true
11399
+ IFrames=true
11400
+ Tables=true
11401
+ Cookies=true
11402
+ JavaScript=true
11403
+ isMobileDevice=true
11404
+ CssVersion=1
11405
+
11406
+ [Opera/*(*Android*Opera Mini/6.*)*]
11407
+ Parent=Opera Mini 6.0
11408
+ Platform="Android"
11409
+
11410
+ [Opera/*(*BlackBerry*Opera Mini/6.*)*]
11411
+ Parent=Opera Mini 6.0
11412
+ Platform="BlackBerry OS"
11413
+
11414
+ [Opera/*(*iPad*Opera Mini/6.*)*]
11415
+ Parent=Opera Mini 6.0
11416
+
11417
+ [Opera/*(*iPhone*Opera Mini/6.*)*]
11418
+ Parent=Opera Mini 6.0
11419
+
11420
+ [Opera/*(*J2ME/MIDP*Opera Mini/6.*)*]
11421
+ Parent=Opera Mini 6.0
11422
+ Platform="JAVA"
11423
+
11424
+ [Opera/*(*Series 60*Opera Mini/6.*)*]
11425
+ Parent=Opera Mini 6.0
11426
+ Platform="SymbianOS"
11427
+
11428
+ [Opera/*(*Windows Mobile*Opera Mini/6.*)*]
11429
+ Parent=Opera Mini 6.0
11430
+ Platform="WinMobile"
11431
+
11432
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini Generic
11433
+
11434
+ [Opera Mini Generic]
11435
+ Parent=DefaultProperties
11436
+ Comment="Opera Mini Generic"
11437
+ Browser="Opera Mini"
11438
+ Frames=true
11439
+ IFrames=true
11440
+ Tables=true
11441
+ Cookies=true
11442
+ JavaScript=true
11443
+ isMobileDevice=true
11444
+ CssVersion=1
11445
+
11446
+ [Opera/*(Android*Opera Mini/*)*]
11447
+ Parent=Opera Mini Generic
11448
+ Platform="Android"
11449
+
11450
+ [Opera/*(BlackBerry*Opera Mini/*)*]
11451
+ Parent=Opera Mini Generic
11452
+ Platform="BlackBerry OS"
11453
+
11454
+ [Opera/*(iPhone*Opera Mini/*)*]
11455
+ Parent=Opera Mini Generic
11456
+
11457
+ [Opera/*(J2ME/MIDP*Opera Mini/*)*]
11458
+ Parent=Opera Mini Generic
11459
+ Platform="JAVA"
11460
+
11461
+ [Opera/*(Series 60*Opera Mini/*)*]
11462
+ Parent=Opera Mini Generic
11463
+ Platform="SymbianOS"
11464
+
11465
+ [Opera/*(Windows Mobile*Opera Mini/*)*]
11466
+ Parent=Opera Mini Generic
11467
+ Platform="WinMobile"
11468
+
11469
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile
11470
+
11471
+ [Opera Mobile]
11472
+ Parent=DefaultProperties
11473
+ Comment="Opera Mobile"
11474
+ Browser="Opera Mobi"
11475
+ Frames=true
11476
+ IFrames=true
11477
+ Tables=true
11478
+ Cookies=true
11479
+ JavaScript=true
11480
+ isMobileDevice=true
11481
+ CssVersion=2
11482
+
11483
+ [Mozilla/?.*(*Windows CE*)*Opera?*]
11484
+ Parent=Opera Mobile
11485
+ Browser="Opera Mobile"
11486
+ Platform="WinCE"
11487
+
11488
+ [Opera/*(*Android 4.*Linux*Opera Mobi/ADR-1205181138*)*Presto/2.10*Version/12.*]
11489
+ Parent=Opera Mobile
11490
+ Version=12.00
11491
+ MajorVer=12
11492
+ MinorVer=00
11493
+ Platform="Android"
11494
+ Platform_Version=4.0
11495
+ CssVersion=3
11496
+
11497
+ [Opera/*(*Android*Opera Mobi*)*]
11498
+ Parent=Opera Mobile
11499
+ Platform="Android"
11500
+
11501
+ [Opera/*(*Microsoft Windows*Opera Mobi*)*]
11502
+ Parent=Opera Mobile
11503
+ Platform="Win"
11504
+
11505
+ [Opera/*(*Symbian*Opera Mobi*)*]
11506
+ Parent=Opera Mobile
11507
+ Platform="SymbianOS"
11508
+
11509
+ [Opera/*(*SymbOS*Opera Mobi*)*]
11510
+ Parent=Opera Mobile
11511
+ Platform="SymbianOS"
11512
+
11513
+ [Opera/*(*Windows Mobile*Opera Mobi*)*]
11514
+ Parent=Opera Mobile
11515
+ Platform="WinCE"
11516
+
11517
+ [Opera/*(Android 4.0*Linux*Opera Mobi/*)*Presto/2.10*Version/12.00*]
11518
+ Parent=Opera Mobile
11519
+ Version=12.00
11520
+ MajorVer=12
11521
+ MinorVer=00
11522
+ Platform="Android"
11523
+ Platform_Version=4.0
11524
+ CssVersion=3
11525
+
11526
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 2.0
11527
+
11528
+ [NetFront 2.0]
11529
+ Parent=DefaultProperties
11530
+ Comment="Access NetFront 2.0"
11531
+ Browser="Access NetFront"
11532
+ Version=2.0
11533
+ MajorVer=2
11534
+ MinorVer=0
11535
+ Frames=true
11536
+ IFrames=true
11537
+ Tables=true
11538
+ Cookies=true
11539
+ JavaScript=true
11540
+ isMobileDevice=true
11541
+ CssVersion=2
11542
+
11543
+ [*NetFront/2.*]
11544
+ Parent=NetFront 2.0
11545
+
11546
+ [Mozilla/4.0 (*) *NetFront/2.*]
11547
+ Parent=NetFront 2.0
11548
+
11549
+ [Mozilla/4.0 (*NetFront/2.*)*]
11550
+ Parent=NetFront 2.0
11551
+
11552
+ [SAMSUNG* *NetFront/2.*]
11553
+ Parent=NetFront 2.0
11554
+
11555
+ [SEC-* *NetFront/2.*]
11556
+ Parent=NetFront 2.0
11557
+
11558
+ [SonyEricsson*/* Mozilla/5.0 (SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* *Safari/*]
11559
+ Parent=NetFront 2.0
11560
+ Platform="SymbianOS"
11561
+
11562
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 3.0
11563
+
11564
+ [NetFront 3.0]
11565
+ Parent=DefaultProperties
11566
+ Comment="Access NetFront 3.0"
11567
+ Browser="Access NetFront"
11568
+ Version=3.0
11569
+ MajorVer=3
11570
+ MinorVer=0
11571
+ Frames=true
11572
+ IFrames=true
11573
+ Tables=true
11574
+ Cookies=true
11575
+ JavaScript=true
11576
+ isMobileDevice=true
11577
+ CssVersion=2
11578
+
11579
+ [*NetFront/3.*]
11580
+ Parent=NetFront 3.0
11581
+
11582
+ [Mozilla/4.0 (*) *NetFront/3.*]
11583
+ Parent=NetFront 3.0
11584
+
11585
+ [Mozilla/4.0 (*NetFront/3.*)*]
11586
+ Parent=NetFront 3.0
11587
+
11588
+ [Mozilla/4.0 (compatible; Linux*) NetFront/3.* Kindle/1.0 (screen 600x800)]
11589
+ Parent=NetFront 3.0
11590
+ Platform="Android"
11591
+
11592
+ [Mozilla/4.0 (compatible; Linux*) NetFront/3.* Kindle/2.0 (screen 600x800)]
11593
+ Parent=NetFront 3.0
11594
+ Platform="Linux"
11595
+
11596
+ [SAMSUNG* *NetFront/3.*]
11597
+ Parent=NetFront 3.0
11598
+
11599
+ [SEC-* *NetFront/3.*]
11600
+ Parent=NetFront 3.0
11601
+
11602
+ [SonyEricsson*; Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* *Safari/*]
11603
+ Parent=NetFront 3.0
11604
+ Platform="SymbianOS"
11605
+
11606
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Boxee
11607
+
11608
+ [Boxee]
11609
+ Parent=DefaultProperties
11610
+ Comment="Boxee"
11611
+ Browser="Boxee"
11612
+ Frames=true
11613
+ IFrames=true
11614
+ Tables=true
11615
+ Cookies=true
11616
+ JavaScript=true
11617
+
11618
+ [curl/* (Linux * intel.*dlink.dsm* *; *; beta) boxee/*]
11619
+ Parent=Boxee
11620
+ Version=1.0
11621
+ MajorVer=1
11622
+ MinorVer=0
11623
+
11624
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; GoogleTV
11625
+
11626
+ [GoogleTV]
11627
+ Parent=DefaultProperties
11628
+ Comment="GoogleTV"
11629
+ Browser="GoogleTV"
11630
+ Frames=true
11631
+ IFrames=true
11632
+ Tables=true
11633
+ Cookies=true
11634
+ JavaScript=true
11635
+ CssVersion=2
11636
+
11637
+ [Mozilla/5.0 (X11; U: Linux i686; *) AppleWebKit/* (KHTML, like Gecko) Chrome/5.* Large Screen Safari/* GoogleTV/*]
11638
+ Parent=GoogleTV
11639
+ Platform="Linux"
11640
+
11641
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netbox
11642
+
11643
+ [Netbox]
11644
+ Parent=DefaultProperties
11645
+ Comment="Netbox"
11646
+ Browser="Netbox"
11647
+ Frames=true
11648
+ IFrames=true
11649
+ Tables=true
11650
+ Cookies=true
11651
+ JavaScript=true
11652
+ CssVersion=1
11653
+
11654
+ [Mozilla/3.01 (compatible; Netbox/*; Linux*)]
11655
+ Parent=Netbox
11656
+ Platform="Linux"
11657
+
11658
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PowerTV
11659
+
11660
+ [PowerTV]
11661
+ Parent=DefaultProperties
11662
+ Comment="PowerTV"
11663
+ Browser="PowerTV"
11664
+ Platform="PowerTV"
11665
+ Frames=true
11666
+ IFrames=true
11667
+ Tables=true
11668
+ Cookies=true
11669
+ JavaScript=true
11670
+
11671
+ [Mozilla/4.0 PowerTV/1.5 (Compatible; Spyglass DM 3.2.1, EXPLORER)]
11672
+ Parent=PowerTV
11673
+ Version=1.5
11674
+ MajorVer=1
11675
+ MinorVer=5
11676
+
11677
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WebTV/MSNTV
11678
+
11679
+ [WebTV]
11680
+ Parent=DefaultProperties
11681
+ Comment="WebTV/MSNTV"
11682
+ Browser="WebTV/MSNTV"
11683
+ Platform="WebTV"
11684
+ Frames=true
11685
+ IFrames=true
11686
+ Tables=true
11687
+ Cookies=true
11688
+
11689
+ [Mozilla/3.0 WebTV/1.*(compatible; MSIE 2.0)]
11690
+ Parent=WebTV
11691
+ Version=1.0
11692
+ MajorVer=1
11693
+ MinorVer=0
11694
+
11695
+ [Mozilla/4.0 WebTV/2.0*(compatible; MSIE 3.0)]
11696
+ Parent=WebTV
11697
+ Version=2.0
11698
+ MajorVer=2
11699
+ MinorVer=0
11700
+
11701
+ [Mozilla/4.0 WebTV/2.1*(compatible; MSIE 3.0)]
11702
+ Parent=WebTV
11703
+ Version=2.1
11704
+ MajorVer=2
11705
+ MinorVer=1
11706
+
11707
+ [Mozilla/4.0 WebTV/2.2*(compatible; MSIE 3.0)]
11708
+ Parent=WebTV
11709
+ Version=2.2
11710
+ MajorVer=2
11711
+ MinorVer=2
11712
+
11713
+ [Mozilla/4.0 WebTV/2.3*(compatible; MSIE 3.0)]
11714
+ Parent=WebTV
11715
+ Version=2.3
11716
+ MajorVer=2
11717
+ MinorVer=3
11718
+
11719
+ [Mozilla/4.0 WebTV/2.4*(compatible; MSIE 3.0)]
11720
+ Parent=WebTV
11721
+ Version=2.4
11722
+ MajorVer=2
11723
+ MinorVer=4
11724
+
11725
+ [Mozilla/4.0 WebTV/2.5*(compatible; MSIE 4.0)]
11726
+ Parent=WebTV
11727
+ Version=2.5
11728
+ MajorVer=2
11729
+ MinorVer=5
11730
+ CssVersion=1
11731
+
11732
+ [Mozilla/4.0 WebTV/2.6*(compatible; MSIE 4.0)]
11733
+ Parent=WebTV
11734
+ Version=2.6
11735
+ MajorVer=2
11736
+ MinorVer=6
11737
+ CssVersion=1
11738
+
11739
+ [Mozilla/4.0 WebTV/2.7*(compatible; MSIE 4.0)]
11740
+ Parent=WebTV
11741
+ Version=2.7
11742
+ MajorVer=2
11743
+ MinorVer=7
11744
+ CssVersion=1
11745
+
11746
+ [Mozilla/4.0 WebTV/2.8*(compatible; MSIE 4.0)]
11747
+ Parent=WebTV
11748
+ Version=2.8
11749
+ MajorVer=2
11750
+ MinorVer=8
11751
+ VBScript=true
11752
+ CssVersion=1
11753
+
11754
+ [Mozilla/4.0 WebTV/2.9*(compatible; MSIE 4.0)]
11755
+ Parent=WebTV
11756
+ Version=2.9
11757
+ MajorVer=2
11758
+ MinorVer=9
11759
+ VBScript=true
11760
+ CssVersion=1
11761
+
11762
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Amaya
11763
+
11764
+ [Amaya]
11765
+ Parent=DefaultProperties
11766
+ Comment="Amaya"
11767
+ Browser="Amaya"
11768
+ Frames=true
11769
+ Tables=true
11770
+
11771
+ [amaya/10.*]
11772
+ Parent=Amaya
11773
+ Version=10.0
11774
+ MajorVer=10
11775
+ MinorVer=0
11776
+
11777
+ [amaya/11.*]
11778
+ Parent=Amaya
11779
+ Version=11.0
11780
+ MajorVer=11
11781
+ MinorVer=0
11782
+
11783
+ [amaya/7.*]
11784
+ Parent=Amaya
11785
+ Version=7.0
11786
+ MajorVer=7
11787
+ MinorVer=0
11788
+
11789
+ [amaya/8.*]
11790
+ Parent=Amaya
11791
+ Version=8.0
11792
+ MajorVer=8
11793
+ MinorVer=0
11794
+ CssVersion=2
11795
+
11796
+ [amaya/9.*]
11797
+ Parent=Amaya
11798
+ Version=9.0
11799
+ MajorVer=9
11800
+ MinorVer=0
11801
+
11802
+ [Emacs-w3m/*]
11803
+ Parent=Emacs/W3
11804
+
11805
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Links
11806
+
11807
+ [Links]
11808
+ Parent=DefaultProperties
11809
+ Comment="Links"
11810
+ Browser="Links"
11811
+ Frames=true
11812
+ Tables=true
11813
+
11814
+ [Links (0.9*; CYGWIN_NT-5.1*)]
11815
+ Parent=Links
11816
+ Version=0.9
11817
+ MajorVer=0
11818
+ MinorVer=9
11819
+ Platform="WinXP"
11820
+
11821
+ [Links (0.9*; Darwin*)]
11822
+ Parent=Links
11823
+ Version=0.9
11824
+ MajorVer=0
11825
+ MinorVer=9
11826
+ Platform="MacPPC"
11827
+
11828
+ [Links (0.9*; FreeBSD*)]
11829
+ Parent=Links
11830
+ Version=0.9
11831
+ MajorVer=0
11832
+ MinorVer=9
11833
+ Platform="FreeBSD"
11834
+
11835
+ [Links (0.9*; Linux*)]
11836
+ Parent=Links
11837
+ Version=0.9
11838
+ MajorVer=0
11839
+ MinorVer=9
11840
+ Platform="Linux"
11841
+
11842
+ [Links (0.9*; OS/2*)]
11843
+ Parent=Links
11844
+ Version=0.9
11845
+ MajorVer=0
11846
+ MinorVer=9
11847
+ Platform="OS/2"
11848
+
11849
+ [Links (0.9*; Unix*)]
11850
+ Parent=Links
11851
+ Version=0.9
11852
+ MajorVer=0
11853
+ MinorVer=9
11854
+ Platform="Unix"
11855
+
11856
+ [Links (0.9*; Win32*)]
11857
+ Parent=Links
11858
+ Version=0.9
11859
+ MajorVer=0
11860
+ MinorVer=9
11861
+ Platform="Win32"
11862
+ Win32=true
11863
+
11864
+ [Links (1.0*; CYGWIN_NT-5.1*)]
11865
+ Parent=Links
11866
+ Version=1.0
11867
+ MajorVer=1
11868
+ MinorVer=0
11869
+ Platform="WinXP"
11870
+
11871
+ [Links (1.0*; FreeBSD*)]
11872
+ Parent=Links
11873
+ Version=1.0
11874
+ MajorVer=1
11875
+ MinorVer=0
11876
+ Platform="FreeBSD"
11877
+
11878
+ [Links (1.0*; Linux*)]
11879
+ Parent=Links
11880
+ Version=1.0
11881
+ MajorVer=1
11882
+ MinorVer=0
11883
+ Platform="Linux"
11884
+
11885
+ [Links (1.0*; OS/2*)]
11886
+ Parent=Links
11887
+ Version=1.0
11888
+ MajorVer=1
11889
+ MinorVer=0
11890
+ Platform="OS/2"
11891
+
11892
+ [Links (1.0*; Unix*)]
11893
+ Parent=Links
11894
+ Version=1.0
11895
+ MajorVer=1
11896
+ MinorVer=0
11897
+ Platform="Unix"
11898
+
11899
+ [Links (1.0*; Win32*)]
11900
+ Parent=Links
11901
+ Version=1.0
11902
+ MajorVer=1
11903
+ MinorVer=0
11904
+ Platform="Win32"
11905
+ Win32=true
11906
+
11907
+ [Links (2.0*; Linux*)]
11908
+ Parent=Links
11909
+ Version=2.0
11910
+ MajorVer=2
11911
+ MinorVer=0
11912
+ Platform="Linux"
11913
+
11914
+ [Links (2.1*; FreeBSD*)]
11915
+ Parent=Links
11916
+ Version=2.1
11917
+ MajorVer=2
11918
+ MinorVer=1
11919
+ Platform="FreeBSD"
11920
+
11921
+ [Links (2.1*; Linux *)]
11922
+ Parent=Links
11923
+ Version=2.1
11924
+ MajorVer=2
11925
+ MinorVer=1
11926
+ Platform="Linux"
11927
+
11928
+ [Links (2.1*; OpenBSD*)]
11929
+ Parent=Links
11930
+ Version=2.1
11931
+ MajorVer=2
11932
+ MinorVer=1
11933
+ Platform="OpenBSD"
11934
+
11935
+ [Links (2.2*; FreeBSD*)]
11936
+ Parent=Links
11937
+ Version=2.2
11938
+ MajorVer=2
11939
+ MinorVer=2
11940
+ Platform="FreeBSD"
11941
+
11942
+ [Links (2.2*; Linux *)]
11943
+ Parent=Links
11944
+ Version=2.2
11945
+ MajorVer=2
11946
+ MinorVer=2
11947
+ Platform="Linux"
11948
+
11949
+ [Links (2.2*; NetBSD*)]
11950
+ Parent=Links
11951
+ Platform="NetBSD"
11952
+
11953
+ [Links (2.2*; OpenBSD*)]
11954
+ Parent=Links
11955
+ Version=2.2
11956
+ MajorVer=2
11957
+ MinorVer=2
11958
+ Platform="OpenBSD"
11959
+
11960
+ [Links (2.3*; FreeBSD*)]
11961
+ Parent=Links
11962
+ Version=2.3
11963
+ MajorVer=2
11964
+ MinorVer=3
11965
+ Platform="Linux"
11966
+
11967
+ [Links (2.3*; Linux*)]
11968
+ Parent=Links
11969
+ Version=2.3
11970
+ MajorVer=2
11971
+ MinorVer=3
11972
+ Platform="Linux"
11973
+
11974
+ [Links (2.3*; NetBSD*)]
11975
+ Parent=Links
11976
+ Platform="NetBSD"
11977
+
11978
+ [Links (2.3*; OpenBSD*)]
11979
+ Parent=Links
11980
+ Version=2.3
11981
+ MajorVer=2
11982
+ MinorVer=3
11983
+ Platform="OpenBSD"
11984
+
11985
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lynx
11986
+
11987
+ [Lynx]
11988
+ Parent=DefaultProperties
11989
+ Comment="Lynx"
11990
+ Browser="Lynx"
11991
+ Frames=true
11992
+ IFrames=true
11993
+ Tables=true
11994
+
11995
+ [Lynx *]
11996
+ Parent=Lynx
11997
+
11998
+ [Lynx/2.3*]
11999
+ Parent=Lynx
12000
+ Version=2.3
12001
+ MajorVer=2
12002
+ MinorVer=3
12003
+
12004
+ [Lynx/2.4*]
12005
+ Parent=Lynx
12006
+ Version=2.4
12007
+ MajorVer=2
12008
+ MinorVer=4
12009
+
12010
+ [Lynx/2.5*]
12011
+ Parent=Lynx
12012
+ Version=2.5
12013
+ MajorVer=2
12014
+ MinorVer=5
12015
+
12016
+ [Lynx/2.6*]
12017
+ Parent=Lynx
12018
+ Version=2.6
12019
+ MajorVer=2
12020
+ MinorVer=6
12021
+
12022
+ [Lynx/2.7*]
12023
+ Parent=Lynx
12024
+ Version=2.7
12025
+ MajorVer=2
12026
+ MinorVer=7
12027
+
12028
+ [Lynx/2.8*]
12029
+ Parent=Lynx
12030
+ Version=2.8
12031
+ MajorVer=2
12032
+ MinorVer=8
12033
+
12034
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NCSA Mosaic
12035
+
12036
+ [Mosaic]
12037
+ Parent=DefaultProperties
12038
+ Comment="NCSA Mosaic"
12039
+ Browser="Mosaic"
12040
+ Frames=true
12041
+ Tables=true
12042
+
12043
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; w3m
12044
+
12045
+ [w3m]
12046
+ Parent=DefaultProperties
12047
+ Comment="w3m"
12048
+ Browser="w3m"
12049
+ Frames=true
12050
+ Tables=true
12051
+
12052
+ [w3m/0.1*]
12053
+ Parent=w3m
12054
+ Version=0.1
12055
+ MajorVer=0
12056
+ MinorVer=1
12057
+
12058
+ [w3m/0.2*]
12059
+ Parent=w3m
12060
+ Version=0.2
12061
+ MajorVer=0
12062
+ MinorVer=2
12063
+
12064
+ [w3m/0.3*]
12065
+ Parent=w3m
12066
+ Version=0.3
12067
+ MajorVer=0
12068
+ MinorVer=3
12069
+
12070
+ [w3m/0.4*]
12071
+ Parent=w3m
12072
+ Version=0.4
12073
+ MajorVer=0
12074
+ MinorVer=4
12075
+ Cookies=true
12076
+
12077
+ [w3m/0.5*]
12078
+ Parent=w3m
12079
+ Version=0.5
12080
+ MajorVer=0
12081
+ MinorVer=5
12082
+ Cookies=true
12083
+
12084
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.10
12085
+
12086
+ [ELinks 0.10]
12087
+ Parent=DefaultProperties
12088
+ Comment="ELinks 0.10"
12089
+ Browser="ELinks"
12090
+ Version=0.10
12091
+ MajorVer=0
12092
+ MinorVer=10
12093
+ Frames=true
12094
+ Tables=true
12095
+
12096
+ [ELinks (0.10*; *AIX*)]
12097
+ Parent=ELinks 0.10
12098
+ Platform="AIX"
12099
+
12100
+ [ELinks (0.10*; *BeOS*)]
12101
+ Parent=ELinks 0.10
12102
+ Platform="BeOS"
12103
+
12104
+ [ELinks (0.10*; *CygWin*)]
12105
+ Parent=ELinks 0.10
12106
+ Platform="CygWin"
12107
+
12108
+ [ELinks (0.10*; *Darwin*)]
12109
+ Parent=ELinks 0.10
12110
+ Platform="Darwin"
12111
+
12112
+ [ELinks (0.10*; *Digital Unix*)]
12113
+ Parent=ELinks 0.10
12114
+ Platform="Digital Unix"
12115
+
12116
+ [ELinks (0.10*; *FreeBSD*)]
12117
+ Parent=ELinks 0.10
12118
+ Platform="FreeBSD"
12119
+
12120
+ [ELinks (0.10*; *HPUX*)]
12121
+ Parent=ELinks 0.10
12122
+ Platform="HP-UX"
12123
+
12124
+ [ELinks (0.10*; *IRIX*)]
12125
+ Parent=ELinks 0.10
12126
+ Platform="IRIX"
12127
+
12128
+ [ELinks (0.10*; *Linux*)]
12129
+ Parent=ELinks 0.10
12130
+ Platform="Linux"
12131
+
12132
+ [ELinks (0.10*; *NetBSD*)]
12133
+ Parent=ELinks 0.10
12134
+ Platform="NetBSD"
12135
+
12136
+ [ELinks (0.10*; *OpenBSD*)]
12137
+ Parent=ELinks 0.10
12138
+ Platform="OpenBSD"
12139
+
12140
+ [ELinks (0.10*; *OS/2*)]
12141
+ Parent=ELinks 0.10
12142
+ Platform="OS/2"
12143
+
12144
+ [ELinks (0.10*; *RISC*)]
12145
+ Parent=ELinks 0.10
12146
+ Platform="RISC OS"
12147
+
12148
+ [ELinks (0.10*; *Solaris*)]
12149
+ Parent=ELinks 0.10
12150
+ Platform="Solaris"
12151
+
12152
+ [ELinks (0.10*; *Unix*)]
12153
+ Parent=ELinks 0.10
12154
+ Platform="Unix"
12155
+
12156
+ [ELinks/0.10* (*AIX*)]
12157
+ Parent=ELinks 0.10
12158
+ Platform="AIX"
12159
+
12160
+ [ELinks/0.10* (*BeOS*)]
12161
+ Parent=ELinks 0.10
12162
+ Platform="BeOS"
12163
+
12164
+ [ELinks/0.10* (*CygWin*)]
12165
+ Parent=ELinks 0.10
12166
+ Platform="CygWin"
12167
+
12168
+ [ELinks/0.10* (*Darwin*)]
12169
+ Parent=ELinks 0.10
12170
+ Platform="Darwin"
12171
+
12172
+ [ELinks/0.10* (*Digital Unix*)]
12173
+ Parent=ELinks 0.10
12174
+ Platform="Digital Unix"
12175
+
12176
+ [ELinks/0.10* (*FreeBSD*)]
12177
+ Parent=ELinks 0.10
12178
+ Platform="FreeBSD"
12179
+
12180
+ [ELinks/0.10* (*HPUX*)]
12181
+ Parent=ELinks 0.10
12182
+ Platform="HP-UX"
12183
+
12184
+ [ELinks/0.10* (*IRIX*)]
12185
+ Parent=ELinks 0.10
12186
+ Platform="IRIX"
12187
+
12188
+ [ELinks/0.10* (*Linux*)]
12189
+ Parent=ELinks 0.10
12190
+ Platform="Linux"
12191
+
12192
+ [ELinks/0.10* (*NetBSD*)]
12193
+ Parent=ELinks 0.10
12194
+ Platform="NetBSD"
12195
+
12196
+ [ELinks/0.10* (*OpenBSD*)]
12197
+ Parent=ELinks 0.10
12198
+ Platform="OpenBSD"
12199
+
12200
+ [ELinks/0.10* (*OS/2*)]
12201
+ Parent=ELinks 0.10
12202
+ Platform="OS/2"
12203
+
12204
+ [ELinks/0.10* (*RISC*)]
12205
+ Parent=ELinks 0.10
12206
+ Platform="RISC OS"
12207
+
12208
+ [ELinks/0.10* (*Solaris*)]
12209
+ Parent=ELinks 0.10
12210
+ Platform="Solaris"
12211
+
12212
+ [ELinks/0.10* (*Unix*)]
12213
+ Parent=ELinks 0.10
12214
+ Platform="Unix"
12215
+
12216
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.11
12217
+
12218
+ [ELinks 0.11]
12219
+ Parent=DefaultProperties
12220
+ Comment="ELinks 0.11"
12221
+ Browser="ELinks"
12222
+ Version=0.11
12223
+ MajorVer=0
12224
+ MinorVer=11
12225
+ Frames=true
12226
+ Tables=true
12227
+
12228
+ [ELinks (0.11*; *AIX*)]
12229
+ Parent=ELinks 0.11
12230
+ Platform="AIX"
12231
+
12232
+ [ELinks (0.11*; *BeOS*)]
12233
+ Parent=ELinks 0.11
12234
+ Platform="BeOS"
12235
+
12236
+ [ELinks (0.11*; *CygWin*)]
12237
+ Parent=ELinks 0.11
12238
+ Platform="CygWin"
12239
+
12240
+ [ELinks (0.11*; *Darwin*)]
12241
+ Parent=ELinks 0.11
12242
+ Platform="Darwin"
12243
+
12244
+ [ELinks (0.11*; *Digital Unix*)]
12245
+ Parent=ELinks 0.11
12246
+ Platform="Digital Unix"
12247
+
12248
+ [ELinks (0.11*; *FreeBSD*)]
12249
+ Parent=ELinks 0.11
12250
+ Platform="FreeBSD"
12251
+
12252
+ [ELinks (0.11*; *HPUX*)]
12253
+ Parent=ELinks 0.11
12254
+ Platform="HP-UX"
12255
+
12256
+ [ELinks (0.11*; *IRIX*)]
12257
+ Parent=ELinks 0.11
12258
+ Platform="IRIX"
12259
+
12260
+ [ELinks (0.11*; *Linux*)]
12261
+ Parent=ELinks 0.11
12262
+ Platform="Linux"
12263
+
12264
+ [ELinks (0.11*; *NetBSD*)]
12265
+ Parent=ELinks 0.11
12266
+ Platform="NetBSD"
12267
+
12268
+ [ELinks (0.11*; *OpenBSD*)]
12269
+ Parent=ELinks 0.11
12270
+ Platform="OpenBSD"
12271
+
12272
+ [ELinks (0.11*; *OS/2*)]
12273
+ Parent=ELinks 0.11
12274
+ Platform="OS/2"
12275
+
12276
+ [ELinks (0.11*; *RISC*)]
12277
+ Parent=ELinks 0.11
12278
+ Platform="RISC OS"
12279
+
12280
+ [ELinks (0.11*; *Solaris*)]
12281
+ Parent=ELinks 0.11
12282
+ Platform="Solaris"
12283
+
12284
+ [ELinks (0.11*; *Unix*)]
12285
+ Parent=ELinks 0.11
12286
+ Platform="Unix"
12287
+
12288
+ [ELinks/0.11* (*AIX*)]
12289
+ Parent=ELinks 0.11
12290
+ Platform="AIX"
12291
+
12292
+ [ELinks/0.11* (*BeOS*)]
12293
+ Parent=ELinks 0.11
12294
+ Platform="BeOS"
12295
+
12296
+ [ELinks/0.11* (*CygWin*)]
12297
+ Parent=ELinks 0.11
12298
+ Platform="CygWin"
12299
+
12300
+ [ELinks/0.11* (*Darwin*)]
12301
+ Parent=ELinks 0.11
12302
+ Platform="Darwin"
12303
+
12304
+ [ELinks/0.11* (*Digital Unix*)]
12305
+ Parent=ELinks 0.11
12306
+ Platform="Digital Unix"
12307
+
12308
+ [ELinks/0.11* (*FreeBSD*)]
12309
+ Parent=ELinks 0.11
12310
+ Platform="FreeBSD"
12311
+
12312
+ [ELinks/0.11* (*HPUX*)]
12313
+ Parent=ELinks 0.11
12314
+ Platform="HP-UX"
12315
+
12316
+ [ELinks/0.11* (*IRIX*)]
12317
+ Parent=ELinks 0.11
12318
+ Platform="IRIX"
12319
+
12320
+ [ELinks/0.11* (*Linux*)]
12321
+ Parent=ELinks 0.11
12322
+ Platform="Linux"
12323
+
12324
+ [ELinks/0.11* (*NetBSD*)]
12325
+ Parent=ELinks 0.11
12326
+ Platform="NetBSD"
12327
+
12328
+ [ELinks/0.11* (*OpenBSD*)]
12329
+ Parent=ELinks 0.11
12330
+ Platform="OpenBSD"
12331
+
12332
+ [ELinks/0.11* (*OS/2*)]
12333
+ Parent=ELinks 0.11
12334
+ Platform="OS/2"
12335
+
12336
+ [ELinks/0.11* (*RISC*)]
12337
+ Parent=ELinks 0.11
12338
+ Platform="RISC OS"
12339
+
12340
+ [ELinks/0.11* (*Solaris*)]
12341
+ Parent=ELinks 0.11
12342
+ Platform="Solaris"
12343
+
12344
+ [ELinks/0.11* (*Unix*)]
12345
+ Parent=ELinks 0.11
12346
+ Platform="Unix"
12347
+
12348
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.12
12349
+
12350
+ [ELinks 0.12]
12351
+ Parent=DefaultProperties
12352
+ Comment="ELinks 0.12"
12353
+ Browser="ELinks"
12354
+ Version=0.12
12355
+ MajorVer=0
12356
+ MinorVer=12
12357
+ Frames=true
12358
+ Tables=true
12359
+
12360
+ [ELinks (0.12*; *AIX*)]
12361
+ Parent=ELinks 0.12
12362
+ Platform="AIX"
12363
+
12364
+ [ELinks (0.12*; *BeOS*)]
12365
+ Parent=ELinks 0.12
12366
+ Platform="BeOS"
12367
+
12368
+ [ELinks (0.12*; *CygWin*)]
12369
+ Parent=ELinks 0.12
12370
+ Platform="CygWin"
12371
+
12372
+ [ELinks (0.12*; *Darwin*)]
12373
+ Parent=ELinks 0.12
12374
+ Platform="Darwin"
12375
+
12376
+ [ELinks (0.12*; *Digital Unix*)]
12377
+ Parent=ELinks 0.12
12378
+ Platform="Digital Unix"
12379
+
12380
+ [ELinks (0.12*; *FreeBSD*)]
12381
+ Parent=ELinks 0.12
12382
+ Platform="FreeBSD"
12383
+
12384
+ [ELinks (0.12*; *HPUX*)]
12385
+ Parent=ELinks 0.12
12386
+ Platform="HP-UX"
12387
+
12388
+ [ELinks (0.12*; *IRIX*)]
12389
+ Parent=ELinks 0.12
12390
+ Platform="IRIX"
12391
+
12392
+ [ELinks (0.12*; *Linux*)]
12393
+ Parent=ELinks 0.12
12394
+ Platform="Linux"
12395
+
12396
+ [ELinks (0.12*; *NetBSD*)]
12397
+ Parent=ELinks 0.12
12398
+ Platform="NetBSD"
12399
+
12400
+ [ELinks (0.12*; *OpenBSD*)]
12401
+ Parent=ELinks 0.12
12402
+ Platform="OpenBSD"
12403
+
12404
+ [ELinks (0.12*; *OS/2*)]
12405
+ Parent=ELinks 0.12
12406
+ Platform="OS/2"
12407
+
12408
+ [ELinks (0.12*; *RISC*)]
12409
+ Parent=ELinks 0.12
12410
+ Platform="RISC OS"
12411
+
12412
+ [ELinks (0.12*; *Solaris*)]
12413
+ Parent=ELinks 0.12
12414
+ Platform="Solaris"
12415
+
12416
+ [ELinks (0.12*; *Unix*)]
12417
+ Parent=ELinks 0.12
12418
+ Platform="Unix"
12419
+
12420
+ [ELinks/0.12* (*AIX*)]
12421
+ Parent=ELinks 0.12
12422
+ Platform="AIX"
12423
+
12424
+ [ELinks/0.12* (*BeOS*)]
12425
+ Parent=ELinks 0.12
12426
+ Platform="BeOS"
12427
+
12428
+ [ELinks/0.12* (*CygWin*)]
12429
+ Parent=ELinks 0.12
12430
+ Platform="CygWin"
12431
+
12432
+ [ELinks/0.12* (*Darwin*)]
12433
+ Parent=ELinks 0.12
12434
+ Platform="Darwin"
12435
+
12436
+ [ELinks/0.12* (*Digital Unix*)]
12437
+ Parent=ELinks 0.12
12438
+ Platform="Digital Unix"
12439
+
12440
+ [ELinks/0.12* (*FreeBSD*)]
12441
+ Parent=ELinks 0.12
12442
+ Platform="FreeBSD"
12443
+
12444
+ [ELinks/0.12* (*HPUX*)]
12445
+ Parent=ELinks 0.12
12446
+ Platform="HP-UX"
12447
+
12448
+ [ELinks/0.12* (*IRIX*)]
12449
+ Parent=ELinks 0.12
12450
+ Platform="IRIX"
12451
+
12452
+ [ELinks/0.12* (*Linux*)]
12453
+ Parent=ELinks 0.12
12454
+ Platform="Linux"
12455
+
12456
+ [ELinks/0.12* (*NetBSD*)]
12457
+ Parent=ELinks 0.12
12458
+ Platform="NetBSD"
12459
+
12460
+ [ELinks/0.12* (*OpenBSD*)]
12461
+ Parent=ELinks 0.12
12462
+ Platform="OpenBSD"
12463
+
12464
+ [ELinks/0.12* (*OS/2*)]
12465
+ Parent=ELinks 0.12
12466
+ Platform="OS/2"
12467
+
12468
+ [ELinks/0.12* (*RISC*)]
12469
+ Parent=ELinks 0.12
12470
+ Platform="RISC OS"
12471
+
12472
+ [ELinks/0.12* (*Solaris*)]
12473
+ Parent=ELinks 0.12
12474
+ Platform="Solaris"
12475
+
12476
+ [ELinks/0.12* (*Unix*)]
12477
+ Parent=ELinks 0.12
12478
+ Platform="Unix"
12479
+
12480
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.13
12481
+
12482
+ [ELinks 0.13]
12483
+ Parent=DefaultProperties
12484
+ Comment="ELinks 0.13"
12485
+ Browser="ELinks"
12486
+ Version=0.13
12487
+ MajorVer=0
12488
+ MinorVer=13
12489
+ Frames=true
12490
+ Tables=true
12491
+
12492
+ [ELinks (0.13*; *AIX*)]
12493
+ Parent=ELinks 0.13
12494
+ Platform="AIX"
12495
+
12496
+ [ELinks (0.13*; *BeOS*)]
12497
+ Parent=ELinks 0.13
12498
+ Platform="BeOS"
12499
+
12500
+ [ELinks (0.13*; *CygWin*)]
12501
+ Parent=ELinks 0.13
12502
+ Platform="CygWin"
12503
+
12504
+ [ELinks (0.13*; *Darwin*)]
12505
+ Parent=ELinks 0.13
12506
+ Platform="Darwin"
12507
+
12508
+ [ELinks (0.13*; *Digital Unix*)]
12509
+ Parent=ELinks 0.13
12510
+ Platform="Digital Unix"
12511
+
12512
+ [ELinks (0.13*; *FreeBSD*)]
12513
+ Parent=ELinks 0.13
12514
+ Platform="FreeBSD"
12515
+
12516
+ [ELinks (0.13*; *HPUX*)]
12517
+ Parent=ELinks 0.13
12518
+ Platform="HP-UX"
12519
+
12520
+ [ELinks (0.13*; *IRIX*)]
12521
+ Parent=ELinks 0.13
12522
+ Platform="IRIX"
12523
+
12524
+ [ELinks (0.13*; *Linux*)]
12525
+ Parent=ELinks 0.13
12526
+ Platform="Linux"
12527
+
12528
+ [ELinks (0.13*; *NetBSD*)]
12529
+ Parent=ELinks 0.13
12530
+ Platform="NetBSD"
12531
+
12532
+ [ELinks (0.13*; *OpenBSD*)]
12533
+ Parent=ELinks 0.13
12534
+ Platform="OpenBSD"
12535
+
12536
+ [ELinks (0.13*; *OS/2*)]
12537
+ Parent=ELinks 0.13
12538
+ Platform="OS/2"
12539
+
12540
+ [ELinks (0.13*; *RISC*)]
12541
+ Parent=ELinks 0.13
12542
+ Platform="RISC OS"
12543
+
12544
+ [ELinks (0.13*; *Solaris*)]
12545
+ Parent=ELinks 0.13
12546
+ Platform="Solaris"
12547
+
12548
+ [ELinks (0.13*; *Unix*)]
12549
+ Parent=ELinks 0.13
12550
+ Platform="Unix"
12551
+
12552
+ [ELinks/0.13* (*AIX*)]
12553
+ Parent=ELinks 0.13
12554
+ Platform="AIX"
12555
+
12556
+ [ELinks/0.13* (*BeOS*)]
12557
+ Parent=ELinks 0.13
12558
+ Platform="BeOS"
12559
+
12560
+ [ELinks/0.13* (*CygWin*)]
12561
+ Parent=ELinks 0.13
12562
+ Platform="CygWin"
12563
+
12564
+ [ELinks/0.13* (*Darwin*)]
12565
+ Parent=ELinks 0.13
12566
+ Platform="Darwin"
12567
+
12568
+ [ELinks/0.13* (*Digital Unix*)]
12569
+ Parent=ELinks 0.13
12570
+ Platform="Digital Unix"
12571
+
12572
+ [ELinks/0.13* (*FreeBSD*)]
12573
+ Parent=ELinks 0.13
12574
+ Platform="FreeBSD"
12575
+
12576
+ [ELinks/0.13* (*HPUX*)]
12577
+ Parent=ELinks 0.13
12578
+ Platform="HP-UX"
12579
+
12580
+ [ELinks/0.13* (*IRIX*)]
12581
+ Parent=ELinks 0.13
12582
+ Platform="IRIX"
12583
+
12584
+ [ELinks/0.13* (*Linux*)]
12585
+ Parent=ELinks 0.13
12586
+ Platform="Linux"
12587
+
12588
+ [ELinks/0.13* (*NetBSD*)]
12589
+ Parent=ELinks 0.13
12590
+ Platform="NetBSD"
12591
+
12592
+ [ELinks/0.13* (*OpenBSD*)]
12593
+ Parent=ELinks 0.13
12594
+ Platform="OpenBSD"
12595
+
12596
+ [ELinks/0.13* (*OS/2*)]
12597
+ Parent=ELinks 0.13
12598
+ Platform="OS/2"
12599
+
12600
+ [ELinks/0.13* (*RISC*)]
12601
+ Parent=ELinks 0.13
12602
+ Platform="RISC OS"
12603
+
12604
+ [ELinks/0.13* (*Solaris*)]
12605
+ Parent=ELinks 0.13
12606
+ Platform="Solaris"
12607
+
12608
+ [ELinks/0.13* (*Unix*)]
12609
+ Parent=ELinks 0.13
12610
+ Platform="Unix"
12611
+
12612
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.9
12613
+
12614
+ [ELinks 0.9]
12615
+ Parent=DefaultProperties
12616
+ Comment="ELinks 0.9"
12617
+ Browser="ELinks"
12618
+ Version=0.9
12619
+ MajorVer=0
12620
+ MinorVer=9
12621
+ Frames=true
12622
+ Tables=true
12623
+
12624
+ [ELinks (0.9*; *AIX*)]
12625
+ Parent=ELinks 0.9
12626
+ Platform="AIX"
12627
+
12628
+ [ELinks (0.9*; *BeOS*)]
12629
+ Parent=ELinks 0.9
12630
+ Platform="BeOS"
12631
+
12632
+ [ELinks (0.9*; *CygWin*)]
12633
+ Parent=ELinks 0.9
12634
+ Platform="CygWin"
12635
+
12636
+ [ELinks (0.9*; *Darwin*)]
12637
+ Parent=ELinks 0.9
12638
+ Platform="Darwin"
12639
+
12640
+ [ELinks (0.9*; *Digital Unix*)]
12641
+ Parent=ELinks 0.9
12642
+ Platform="Digital Unix"
12643
+
12644
+ [ELinks (0.9*; *FreeBSD*)]
12645
+ Parent=ELinks 0.9
12646
+ Platform="FreeBSD"
12647
+
12648
+ [ELinks (0.9*; *HPUX*)]
12649
+ Parent=ELinks 0.9
12650
+ Platform="HP-UX"
12651
+
12652
+ [ELinks (0.9*; *IRIX*)]
12653
+ Parent=ELinks 0.9
12654
+ Platform="IRIX"
12655
+
12656
+ [ELinks (0.9*; *Linux*)]
12657
+ Parent=ELinks 0.9
12658
+ Platform="Linux"
12659
+
12660
+ [ELinks (0.9*; *NetBSD*)]
12661
+ Parent=ELinks 0.9
12662
+ Platform="NetBSD"
12663
+
12664
+ [ELinks (0.9*; *OpenBSD*)]
12665
+ Parent=ELinks 0.9
12666
+ Platform="OpenBSD"
12667
+
12668
+ [ELinks (0.9*; *OS/2*)]
12669
+ Parent=ELinks 0.9
12670
+ Platform="OS/2"
12671
+
12672
+ [ELinks (0.9*; *RISC*)]
12673
+ Parent=ELinks 0.9
12674
+ Platform="RISC OS"
12675
+
12676
+ [ELinks (0.9*; *Solaris*)]
12677
+ Parent=ELinks 0.9
12678
+ Platform="Solaris"
12679
+
12680
+ [ELinks (0.9*; *Unix*)]
12681
+ Parent=ELinks 0.9
12682
+ Platform="Unix"
12683
+
12684
+ [ELinks/0.9* (*AIX*)]
12685
+ Parent=ELinks 0.9
12686
+ Platform="AIX"
12687
+
12688
+ [ELinks/0.9* (*BeOS*)]
12689
+ Parent=ELinks 0.9
12690
+ Platform="BeOS"
12691
+
12692
+ [ELinks/0.9* (*CygWin*)]
12693
+ Parent=ELinks 0.9
12694
+ Platform="CygWin"
12695
+
12696
+ [ELinks/0.9* (*Darwin*)]
12697
+ Parent=ELinks 0.9
12698
+ Platform="Darwin"
12699
+
12700
+ [ELinks/0.9* (*Digital Unix*)]
12701
+ Parent=ELinks 0.9
12702
+ Platform="Digital Unix"
12703
+
12704
+ [ELinks/0.9* (*FreeBSD*)]
12705
+ Parent=ELinks 0.9
12706
+ Platform="FreeBSD"
12707
+
12708
+ [ELinks/0.9* (*HPUX*)]
12709
+ Parent=ELinks 0.9
12710
+ Platform="HP-UX"
12711
+
12712
+ [ELinks/0.9* (*IRIX*)]
12713
+ Parent=ELinks 0.9
12714
+ Platform="IRIX"
12715
+
12716
+ [ELinks/0.9* (*Linux*)]
12717
+ Parent=ELinks 0.9
12718
+ Platform="Linux"
12719
+
12720
+ [ELinks/0.9* (*NetBSD*)]
12721
+ Parent=ELinks 0.9
12722
+ Platform="NetBSD"
12723
+
12724
+ [ELinks/0.9* (*OpenBSD*)]
12725
+ Parent=ELinks 0.9
12726
+ Platform="OpenBSD"
12727
+
12728
+ [ELinks/0.9* (*OS/2*)]
12729
+ Parent=ELinks 0.9
12730
+ Platform="OS/2"
12731
+
12732
+ [ELinks/0.9* (*RISC*)]
12733
+ Parent=ELinks 0.9
12734
+ Platform="RISC OS"
12735
+
12736
+ [ELinks/0.9* (*Solaris*)]
12737
+ Parent=ELinks 0.9
12738
+ Platform="Solaris"
12739
+
12740
+ [ELinks/0.9* (*Unix*)]
12741
+ Parent=ELinks 0.9
12742
+ Platform="Unix"
12743
+
12744
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Camino
12745
+
12746
+ [Camino]
12747
+ Parent=DefaultProperties
12748
+ Comment="Camino"
12749
+ Browser="Camino"
12750
+ Platform="MacOSX"
12751
+ Frames=true
12752
+ IFrames=true
12753
+ Tables=true
12754
+ Cookies=true
12755
+ JavaScript=true
12756
+ CssVersion=2
12757
+
12758
+ [Mozilla/5.0 (Macintosh; *Intel Mac OS X*; *; rv:1.9.*) Gecko/* Camino/2.0*]
12759
+ Parent=Camino
12760
+ Version=2.0
12761
+ MajorVer=2
12762
+ MinorVer=0
12763
+
12764
+ [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.7*]
12765
+ Parent=Camino
12766
+ Version=0.7
12767
+ MajorVer=0
12768
+ MinorVer=7
12769
+ Beta=true
12770
+
12771
+ [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.8*]
12772
+ Parent=Camino
12773
+ Version=0.8
12774
+ MajorVer=0
12775
+ MinorVer=8
12776
+ Beta=true
12777
+
12778
+ [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.9*]
12779
+ Parent=Camino
12780
+ Version=0.9
12781
+ MajorVer=0
12782
+ MinorVer=9
12783
+ Beta=true
12784
+
12785
+ [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.0*]
12786
+ Parent=Camino
12787
+ Version=1.0
12788
+ MajorVer=1
12789
+ MinorVer=0
12790
+
12791
+ [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.2*]
12792
+ Parent=Camino
12793
+ Version=1.2
12794
+ MajorVer=1
12795
+ MinorVer=2
12796
+
12797
+ [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.3*]
12798
+ Parent=Camino
12799
+ Version=1.3
12800
+ MajorVer=1
12801
+ MinorVer=3
12802
+ Platform="MacOSX"
12803
+
12804
+ [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.4*]
12805
+ Parent=Camino
12806
+ Version=1.4
12807
+ MajorVer=1
12808
+ MinorVer=4
12809
+ Platform="MacOSX"
12810
+
12811
+ [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.5*]
12812
+ Parent=Camino
12813
+ Version=1.5
12814
+ MajorVer=1
12815
+ MinorVer=5
12816
+ Platform="MacOSX"
12817
+
12818
+ [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.6*]
12819
+ Parent=Camino
12820
+ Version=1.6
12821
+ MajorVer=1
12822
+ MinorVer=6
12823
+ Platform="MacOSX"
12824
+
12825
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chimera
12826
+
12827
+ [Chimera]
12828
+ Parent=DefaultProperties
12829
+ Comment="Chimera"
12830
+ Browser="Chimera"
12831
+ Frames=true
12832
+ IFrames=true
12833
+ Tables=true
12834
+ Cookies=true
12835
+ JavaScript=true
12836
+
12837
+ [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Chimera/*]
12838
+ Parent=Chimera
12839
+ Platform="MacOSX"
12840
+
12841
+ [Mozilla/5.0 Gecko/* Chimera/*]
12842
+ Parent=Chimera
12843
+
12844
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dillo
12845
+
12846
+ [Dillo]
12847
+ Parent=DefaultProperties
12848
+ Comment="Dillo"
12849
+ Browser="Dillo"
12850
+ Platform="Linux"
12851
+ Frames=true
12852
+ IFrames=true
12853
+ Tables=true
12854
+ Cookies=true
12855
+ JavaScript=true
12856
+ CssVersion=2
12857
+
12858
+ [Dillo/0.6*]
12859
+ Parent=Dillo
12860
+ Version=0.6
12861
+ MajorVer=0
12862
+ MinorVer=6
12863
+
12864
+ [Dillo/0.7*]
12865
+ Parent=Dillo
12866
+ Version=0.7
12867
+ MajorVer=0
12868
+ MinorVer=7
12869
+
12870
+ [Dillo/0.8*]
12871
+ Parent=Dillo
12872
+ Version=0.8
12873
+ MajorVer=0
12874
+ MinorVer=8
12875
+
12876
+ [Dillo/2.0]
12877
+ Parent=Dillo
12878
+ Version=2.0
12879
+ MajorVer=2
12880
+ MinorVer=0
12881
+
12882
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Emacs/W3
12883
+
12884
+ [Emacs/W3]
12885
+ Parent=DefaultProperties
12886
+ Comment="Emacs/W3"
12887
+ Browser="Emacs/W3"
12888
+ Frames=true
12889
+ IFrames=true
12890
+ Tables=true
12891
+ Cookies=true
12892
+ JavaScript=default
12893
+
12894
+ [Emacs/W3/2.* (Unix*]
12895
+ Parent=Emacs/W3
12896
+ Version=2.0
12897
+ MajorVer=2
12898
+ MinorVer=0
12899
+ Platform="Unix"
12900
+
12901
+ [Emacs/W3/2.* (X11*]
12902
+ Parent=Emacs/W3
12903
+ Version=2.0
12904
+ MajorVer=2
12905
+ MinorVer=0
12906
+ Platform="Linux"
12907
+
12908
+ [Emacs/W3/3.* (Unix*]
12909
+ Parent=Emacs/W3
12910
+ Version=3.0
12911
+ MajorVer=3
12912
+ MinorVer=0
12913
+ Platform="Unix"
12914
+
12915
+ [Emacs/W3/3.* (X11*]
12916
+ Parent=Emacs/W3
12917
+ Version=3.0
12918
  MajorVer=3
12919
+ MinorVer=0
12920
+ Platform="Linux"
12921
+
12922
+ [Emacs/W3/4.* (Unix*]
12923
+ Parent=Emacs/W3
12924
+ Version=4.0
12925
+ MajorVer=4
12926
+ MinorVer=0
12927
+ Platform="Unix"
12928
+
12929
+ [Emacs/W3/4.* (X11*]
12930
+ Parent=Emacs/W3
12931
+ Version=4.0
12932
+ MajorVer=4
12933
+ MinorVer=0
12934
+ Platform="Linux"
12935
+
12936
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; fantomas
12937
+
12938
+ [fantomas]
12939
+ Parent=DefaultProperties
12940
+ Comment="fantomas"
12941
+ Browser="fantomas"
12942
+ Frames=true
12943
+ IFrames=true
12944
+ Tables=true
12945
+ Cookies=true
12946
+ JavaScript=true
12947
+
12948
+ [Mozilla/4.0 (cloakBrowser)]
12949
+ Parent=fantomas
12950
+ Browser="fantomas cloakBrowser"
12951
+
12952
+ [Mozilla/4.0 (fantomas shadowMaker Browser)]
12953
+ Parent=fantomas
12954
+ Browser="fantomas shadowMaker Browser"
12955
+
12956
+ [Mozilla/4.0 (fantomBrowser)]
12957
+ Parent=fantomas
12958
+ Browser="fantomas fantomBrowser"
12959
+
12960
+ [Mozilla/4.0 (fantomCrew Browser)]
12961
+ Parent=fantomas
12962
+ Browser="fantomas fantomCrew Browser"
12963
+
12964
+ [Mozilla/4.0 (stealthBrowser)]
12965
+ Parent=fantomas
12966
+ Browser="fantomas stealthBrowser"
12967
+
12968
+ [multiBlocker browser*]
12969
+ Parent=fantomas
12970
+ Browser="fantomas multiBlocker browser"
12971
+
12972
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FrontPage
12973
+
12974
+ [FrontPage]
12975
+ Parent=DefaultProperties
12976
+ Comment="FrontPage"
12977
+ Browser="FrontPage"
12978
+ Frames=true
12979
+ IFrames=true
12980
+ Tables=true
12981
+ Cookies=true
12982
+ JavaScript=true
12983
+
12984
+ [Mozilla/?* (compatible; MS FrontPage*)]
12985
+ Parent=FrontPage
12986
+
12987
+ [MSFrontPage/*]
12988
+ Parent=FrontPage
12989
+
12990
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Galeon
12991
+
12992
+ [Galeon]
12993
+ Parent=DefaultProperties
12994
+ Comment="Galeon"
12995
+ Browser="Galeon"
12996
+ Platform="Linux"
12997
+ Frames=true
12998
+ IFrames=true
12999
+ Tables=true
13000
+ Cookies=true
13001
+ JavaScript=true
13002
+ CssVersion=2
13003
+
13004
+ [Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/1.*]
13005
+ Parent=Galeon
13006
+ Version=1.0
13007
+ MajorVer=1
13008
+ MinorVer=0
13009
+
13010
+ [Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/2.*]
13011
+ Parent=Galeon
13012
+ Version=2.0
13013
+ MajorVer=2
13014
+ MinorVer=0
13015
+
13016
+ [Mozilla/5.0 Galeon/1.* (X11; Linux*)*]
13017
+ Parent=Galeon
13018
+ Version=1.0
13019
+ MajorVer=1
13020
+ MinorVer=0
13021
+
13022
+ [Mozilla/5.0 Galeon/2.* (X11; Linux*)*]
13023
+ Parent=Galeon
13024
+ Version=2.0
13025
+ MajorVer=2
13026
+ MinorVer=0
13027
+
13028
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; HP Secure Web Browser
13029
+
13030
+ [HP Secure Web Browser]
13031
+ Parent=DefaultProperties
13032
+ Comment="HP Secure Web Browser"
13033
+ Browser="HP Secure Web Browser"
13034
+ Platform="OpenVMS"
13035
+ Frames=true
13036
+ IFrames=true
13037
+ Tables=true
13038
+ Cookies=true
13039
+ JavaScript=true
13040
+ CssVersion=2
13041
+
13042
+ [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.0*) Gecko/*]
13043
+ Parent=HP Secure Web Browser
13044
+ Version=1.0
13045
+ MajorVer=1
13046
+ MinorVer=0
13047
+
13048
+ [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.1*) Gecko/*]
13049
+ Parent=HP Secure Web Browser
13050
+ Version=1.1
13051
+ MajorVer=1
13052
+ MinorVer=1
13053
+
13054
+ [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.2*) Gecko/*]
13055
+ Parent=HP Secure Web Browser
13056
+ Version=1.2
13057
+ MajorVer=1
13058
+ MinorVer=2
13059
+
13060
+ [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.3*) Gecko/*]
13061
+ Parent=HP Secure Web Browser
13062
+ Version=1.3
13063
+ MajorVer=1
13064
  MinorVer=3
 
13065
 
13066
+ [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.4*) Gecko/*]
13067
+ Parent=HP Secure Web Browser
13068
+ Version=1.4
13069
+ MajorVer=1
13070
+ MinorVer=4
13071
+
13072
+ [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.5*) Gecko/*]
13073
+ Parent=HP Secure Web Browser
13074
+ Version=1.5
13075
+ MajorVer=1
13076
+ MinorVer=5
13077
+
13078
+ [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.6*) Gecko/*]
13079
+ Parent=HP Secure Web Browser
13080
+ Version=1.6
13081
+ MajorVer=1
13082
+ MinorVer=6
13083
+
13084
+ [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.7*) Gecko/*]
13085
+ Parent=HP Secure Web Browser
13086
+ Version=1.7
13087
+ MajorVer=1
13088
+ MinorVer=7
13089
+
13090
+ [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.8*) Gecko/*]
13091
+ Parent=HP Secure Web Browser
13092
+ Version=1.8
13093
+ MajorVer=1
13094
+ MinorVer=8
13095
+
13096
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IBrowse
13097
+
13098
+ [IBrowse]
13099
+ Parent=DefaultProperties
13100
+ Comment="IBrowse"
13101
+ Browser="IBrowse"
13102
+ Platform="Amiga"
13103
+ Frames=true
13104
+ IFrames=true
13105
+ Tables=true
13106
+ Cookies=true
13107
+ JavaScript=true
13108
+
13109
+ [Arexx (compatible; MSIE 6.0; AmigaOS5.0) IBrowse 4.0]
13110
+ Parent=IBrowse
13111
+ Version=4.0
13112
+ MajorVer=4
13113
+ MinorVer=0
13114
+
13115
+ [IBrowse/1.22 (AmigaOS *)]
13116
+ Parent=IBrowse
13117
+ Version=1.22
13118
+ MajorVer=1
13119
+ MinorVer=22
13120
+
13121
+ [IBrowse/2.1 (AmigaOS *)]
13122
+ Parent=IBrowse
13123
+ Version=2.1
13124
+ MajorVer=2
13125
+ MinorVer=1
13126
+
13127
+ [IBrowse/2.2 (AmigaOS *)]
13128
+ Parent=IBrowse
13129
+ Version=2.2
13130
+ MajorVer=2
13131
+ MinorVer=2
13132
+
13133
+ [IBrowse/2.3 (AmigaOS *)]
13134
+ Parent=IBrowse
13135
+ Version=2.2
13136
+ MajorVer=2
13137
+ MinorVer=2
13138
+
13139
+ [Mozilla/* (Win98; I) IBrowse/2.1 (AmigaOS 3.1)]
13140
+ Parent=IBrowse
13141
+ Version=2.1
13142
+ MajorVer=2
13143
+ MinorVer=1
13144
+ Platform_Version=98
13145
+
13146
+ [Mozilla/* (Win98; I) IBrowse/2.2 (AmigaOS 3.1)]
13147
+ Parent=IBrowse
13148
+ Version=2.2
13149
+ MajorVer=2
13150
+ MinorVer=2
13151
+ Platform_Version=98
13152
+
13153
+ [Mozilla/* (Win98; I) IBrowse/2.3 (AmigaOS 3.1)]
13154
+ Parent=IBrowse
13155
+ Version=2.3
13156
+ MajorVer=2
13157
  MinorVer=3
13158
+ Platform_Version=98
13159
 
13160
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iCab
 
 
 
 
13161
 
13162
+ [iCab]
13163
+ Parent=DefaultProperties
13164
+ Comment="iCab"
13165
+ Browser="iCab"
13166
+ Frames=true
13167
+ IFrames=true
13168
+ Tables=true
13169
+ Cookies=true
13170
+ JavaScript=true
13171
 
13172
+ [iCab/2.7* (Macintosh; ?; 68K*)]
13173
+ Parent=iCab
13174
+ Version=2.7
13175
+ MajorVer=2
13176
+ MinorVer=7
13177
+ Platform="Mac68K"
13178
+ CssVersion=1
13179
 
13180
+ [iCab/2.7* (Macintosh; ?; PPC*)]
13181
+ Parent=iCab
13182
+ Version=2.7
13183
+ MajorVer=2
13184
+ MinorVer=7
13185
+ Platform="MacPPC"
13186
+ CssVersion=1
13187
 
13188
+ [iCab/2.8* (Macintosh; ?; *Mac OS X*)]
13189
+ Parent=iCab
13190
+ Version=2.8
13191
+ MajorVer=2
13192
+ MinorVer=8
13193
+ Platform="MacOSX"
13194
+ CssVersion=1
13195
+
13196
+ [iCab/2.8* (Macintosh; ?; 68K*)]
13197
+ Parent=iCab
13198
+ Version=2.8
13199
+ MajorVer=2
13200
+ MinorVer=8
13201
+ Platform="Mac68K"
13202
+ CssVersion=1
13203
+
13204
+ [iCab/2.8* (Macintosh; ?; PPC)]
13205
+ Parent=iCab
13206
+ Version=2.8
13207
+ MajorVer=2
13208
+ MinorVer=8
13209
+ Platform="MacPPC"
13210
+ CssVersion=1
13211
+
13212
+ [iCab/2.9* (Macintosh; ?; *Mac OS X*)]
13213
+ Parent=iCab
13214
+ Version=2.9
13215
+ MajorVer=2
13216
+ MinorVer=9
13217
+ Platform="MacOSX"
13218
+ CssVersion=1
13219
+
13220
+ [iCab/2.9* (Macintosh; ?; 68K*)]
13221
+ Parent=iCab
13222
+ Version=2.9
13223
+ MajorVer=2
13224
+ MinorVer=9
13225
+ Platform="Mac68K"
13226
+ CssVersion=1
13227
+
13228
+ [iCab/2.9* (Macintosh; ?; PPC*)]
13229
+ Parent=iCab
13230
+ Version=2.9
13231
+ MajorVer=2
13232
+ MinorVer=9
13233
+ Platform="MacPPC"
13234
+ CssVersion=1
13235
+
13236
+ [iCab/3.0* (Macintosh; ?; *Mac OS X*)]
13237
+ Parent=iCab
13238
+ Version=3.0
13239
  MajorVer=3
13240
+ MinorVer=0
13241
+ Platform="MacOSX"
13242
+ CssVersion=2
13243
 
13244
+ [iCab/3.0* (Macintosh; ?; PPC*)]
13245
+ Parent=iCab
13246
+ Version=3.0
13247
  MajorVer=3
13248
+ MinorVer=0
13249
+ Platform="MacPPC"
13250
+ CssVersion=2
13251
 
13252
+ [iCab/4.0 (Macintosh; U; *Mac OS X)]
13253
+ Parent=iCab
13254
+ Version=4.0
13255
+ MajorVer=4
13256
+ MinorVer=0
13257
+ Platform="MacOSX"
13258
+ CssVersion=3
13259
+
13260
+ [Mozilla/* (compatible; iCab 2.7*; Macintosh; ?; 68K*)]
13261
+ Parent=iCab
13262
+ Version=2.7
13263
+ MajorVer=2
13264
+ MinorVer=7
13265
+ Platform="Mac68K"
13266
+ CssVersion=2
13267
+
13268
+ [Mozilla/* (compatible; iCab 2.7*; Macintosh; ?; PPC*)]
13269
+ Parent=iCab
13270
+ Version=2.7
13271
+ MajorVer=2
13272
+ MinorVer=7
13273
+ Platform="MacPPC"
13274
+ CssVersion=2
13275
+
13276
+ [Mozilla/* (compatible; iCab 2.8*; Macintosh; ?; *Mac OS X*)]
13277
+ Parent=iCab
13278
+ Version=2.8
13279
+ MajorVer=2
13280
+ MinorVer=8
13281
+ Platform="MacOSX"
13282
+ CssVersion=2
13283
+
13284
+ [Mozilla/* (compatible; iCab 2.9*; Macintosh; *Mac OS X*)]
13285
+ Parent=iCab
13286
+ Version=2.9
13287
+ MajorVer=2
13288
+ MinorVer=9
13289
+ Platform="MacOSX"
13290
+ CssVersion=2
13291
+
13292
+ [Mozilla/* (compatible; iCab 2.9*; Macintosh; ?; PPC*)]
13293
+ Parent=iCab
13294
+ Version=2.9
13295
+ MajorVer=2
13296
+ MinorVer=9
13297
+ Platform="MacPPC"
13298
+ CssVersion=2
13299
+
13300
+ [Mozilla/* (compatible; iCab 3.0*; Macintosh; *Mac OS X*)]
13301
+ Parent=iCab
13302
+ Version=3.0
13303
  MajorVer=3
13304
+ MinorVer=0
13305
+ Platform="MacOSX"
13306
+ CssVersion=2
13307
 
13308
+ [Mozilla/* (compatible; iCab 3.0*; Macintosh; ?; PPC*)]
13309
+ Parent=iCab
13310
+ Version=3.0
13311
  MajorVer=3
13312
+ MinorVer=0
13313
+ Platform="MacPPC"
13314
+ CssVersion=2
13315
+
13316
+ [Mozilla/* (compatible; iCab 4.2*; Macintosh; *Mac OS X*)]
13317
+ Parent=iCab
13318
+ Version=4.2
13319
+ MajorVer=4
13320
+ MinorVer=2
13321
+ Platform="MacOSX"
13322
+ CssVersion=3
13323
+
13324
+ [Mozilla/* (compatible; iCab 4.8*; Macintosh; *Mac OS X*)]
13325
+ Parent=iCab
13326
+ Version=4.8
13327
+ MajorVer=4
13328
+ MinorVer=8
13329
+ CssVersion=3
13330
+
13331
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iSiloX
13332
+
13333
+ [iSiloX]
13334
+ Parent=DefaultProperties
13335
+ Comment="iSiloX"
13336
+ Browser="iSiloX"
13337
+ Frames=true
13338
+ IFrames=true
13339
+ Tables=true
13340
+ Cookies=true
13341
+ JavaScript=true
13342
+ CssVersion=2
13343
+
13344
+ [iSiloX/4.0* MacOS]
13345
+ Parent=iSiloX
13346
+ Version=4.0
13347
+ MajorVer=4
13348
+ MinorVer=0
13349
+ Platform="MacPPC"
13350
+
13351
+ [iSiloX/4.0* Windows/32]
13352
+ Parent=iSiloX
13353
+ Version=4.0
13354
+ MajorVer=4
13355
+ MinorVer=0
13356
+ Platform="Win32"
13357
+ Win32=true
13358
+
13359
+ [iSiloX/4.1* MacOS]
13360
+ Parent=iSiloX
13361
+ Version=4.1
13362
+ MajorVer=4
13363
+ MinorVer=1
13364
+ Platform="MacPPC"
13365
+
13366
+ [iSiloX/4.1* Windows/32]
13367
+ Parent=iSiloX
13368
+ Version=4.1
13369
+ MajorVer=4
13370
+ MinorVer=1
13371
+ Platform="Win32"
13372
+ Win32=true
13373
+
13374
+ [iSiloX/4.2* MacOS]
13375
+ Parent=iSiloX
13376
+ Version=4.2
13377
+ MajorVer=4
13378
+ MinorVer=2
13379
+ Platform="MacPPC"
13380
+
13381
+ [iSiloX/4.2* Windows/32]
13382
+ Parent=iSiloX
13383
+ Version=4.2
13384
+ MajorVer=4
13385
+ MinorVer=2
13386
+ Platform="Win32"
13387
+ Win32=true
13388
+
13389
+ [iSiloX/4.3* MacOS]
13390
+ Parent=iSiloX
13391
+ Version=4.3
13392
+ MajorVer=4
13393
+ MinorVer=3
13394
+ Platform="MacOSX"
13395
 
13396
+ [iSiloX/4.3* Windows/32]
13397
+ Parent=iSiloX
13398
+ Version=4.3
13399
+ MajorVer=4
13400
+ MinorVer=3
13401
+ Platform="Win32"
13402
+ Win32=true
13403
 
13404
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycoris Desktop/LX
13405
+
13406
+ [Lycoris Desktop/LX]
13407
  Parent=DefaultProperties
13408
+ Comment="Lycoris Desktop/LX"
13409
+ Browser="Lycoris Desktop/LX"
 
13410
  Frames=true
13411
  IFrames=true
13412
  Tables=true
13413
  Cookies=true
13414
  JavaScript=true
 
 
 
 
 
13415
 
13416
+ [Mozilla/5.0 (*Linux i686* *Desktop/LX Amethyst*) *Gecko/*]
13417
+ Parent=Lycoris Desktop/LX
13418
+ Version=1.0
13419
+ MajorVer=1
13420
+ MinorVer=0
13421
+ Platform="Linux"
13422
 
13423
+ [Mozilla/4.0 (VMS_Mosaic)]
13424
+ Parent=Mosaic
13425
+ Platform="OpenVMS"
13426
 
13427
+ [VMS_Mosaic/3.7*]
13428
+ Parent=Mosaic
13429
+ Version=3.7
13430
+ MajorVer=3
13431
+ MinorVer=7
13432
+ Platform="OpenVMS"
13433
 
13434
+ [VMS_Mosaic/3.8*]
13435
+ Parent=Mosaic
13436
+ Version=3.8
13437
+ MajorVer=3
13438
+ MinorVer=8
13439
+ Platform="OpenVMS"
13440
 
13441
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetPositive
13442
 
13443
+ [NetPositive]
13444
  Parent=DefaultProperties
13445
+ Comment="NetPositive"
13446
+ Browser="NetPositive"
13447
+ Platform="BeOS"
 
13448
  Frames=true
13449
  IFrames=true
13450
  Tables=true
13451
  Cookies=true
13452
  JavaScript=true
 
 
 
 
 
13453
 
13454
+ [*NetPositive/2.2*]
13455
+ Parent=NetPositive
13456
+ Version=2.2
13457
+ MajorVer=2
13458
+ MinorVer=2
 
 
 
 
 
 
 
 
 
 
13459
 
13460
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Shiira
13461
 
13462
+ [Shiira]
13463
  Parent=DefaultProperties
13464
+ Comment="Shiira"
13465
+ Browser="Shiira"
13466
+ Platform="MacOSX"
 
13467
  Frames=true
13468
  IFrames=true
13469
  Tables=true
13470
  Cookies=true
13471
  JavaScript=true
13472
  CssVersion=2
 
13473
 
13474
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/0.9*]
13475
+ Parent=Shiira
13476
+ Version=0.9
13477
+ MajorVer=0
13478
+ MinorVer=9
13479
+
13480
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/1.0*]
13481
+ Parent=Shiira
13482
+ Version=1.0
13483
+ MajorVer=1
13484
+ MinorVer=0
13485
 
13486
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/1.1*]
13487
+ Parent=Shiira
13488
+ Version=1.1
13489
+ MajorVer=1
13490
+ MinorVer=1
13491
 
13492
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/1.2*]
13493
+ Parent=Shiira
13494
+ Version=1.2
13495
+ MajorVer=1
13496
+ MinorVer=2
13497
 
13498
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/2.1*]
13499
+ Parent=Shiira
13500
+ Version=2.1
13501
+ MajorVer=2
13502
+ MinorVer=1
13503
 
13504
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/2.2*]
13505
+ Parent=Shiira
13506
+ Version=2.2
13507
+ MajorVer=2
13508
+ MinorVer=2
13509
 
13510
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/2.3*]
13511
+ Parent=Shiira
13512
+ Version=2.3
13513
+ MajorVer=2
13514
+ MinorVer=3
13515
 
13516
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.0
13517
 
13518
+ [K-Meleon 1.0]
13519
  Parent=DefaultProperties
13520
+ Comment="K-Meleon 1.0"
13521
+ Browser="K-Meleon"
13522
+ Version=1.0
13523
+ MajorVer=1
13524
+ MinorVer=0
13525
+ Win32=true
13526
  Frames=true
13527
  IFrames=true
13528
  Tables=true
13529
  Cookies=true
13530
  JavaScript=true
13531
  CssVersion=2
 
13532
 
13533
+ [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.0*]
13534
+ Parent=K-Meleon 1.0
13535
+ Version=1.0
13536
+ MajorVer=1
13537
+ MinorVer=0
13538
+ Platform="Win95"
13539
+ Platform_Version=95
13540
 
13541
+ [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.0*]
13542
+ Parent=K-Meleon 1.0
13543
+ Version=1.0
13544
+ MajorVer=1
13545
+ MinorVer=0
13546
+ Platform="Win98"
13547
+ Platform_Version=98
13548
 
13549
+ [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.0*]
13550
+ Parent=K-Meleon 1.0
13551
+ Version=1.0
13552
+ MajorVer=1
13553
+ MinorVer=0
13554
+ Platform="Win2000"
13555
+ Platform_Version=5.0
13556
 
13557
+ [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.0*]
13558
+ Parent=K-Meleon 1.0
13559
+ Version=1.0
13560
+ MajorVer=1
13561
+ MinorVer=0
13562
+ Platform="WinXP"
13563
+ Platform_Version=5.1
13564
 
13565
+ [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.0*]
13566
+ Parent=K-Meleon 1.0
13567
+ Version=1.0
13568
+ MajorVer=1
13569
+ MinorVer=0
13570
+ Platform="Win2003"
13571
+ Platform_Version=5.2
13572
 
13573
+ [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.0*]
13574
+ Parent=K-Meleon 1.0
13575
+ Version=1.0
13576
+ MajorVer=1
13577
+ MinorVer=0
13578
+ Platform="WinNT"
13579
+ Platform_Version=4.0
13580
 
13581
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.1
13582
 
13583
+ [K-Meleon 1.1]
13584
  Parent=DefaultProperties
13585
+ Comment="K-Meleon 1.1"
13586
+ Browser="K-Meleon"
13587
+ Version=1.1
13588
+ MajorVer=1
13589
+ MinorVer=1
13590
+ Win32=true
13591
  Frames=true
13592
  IFrames=true
13593
  Tables=true
13594
  Cookies=true
 
 
13595
  JavaScript=true
13596
  CssVersion=2
 
 
 
 
 
 
 
 
 
 
 
 
 
13597
 
13598
+ [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.1*]
13599
+ Parent=K-Meleon 1.1
13600
+ Version=1.0
13601
  MajorVer=1
 
 
 
 
 
 
13602
  MinorVer=0
13603
+ Platform="Win95"
13604
+ Platform_Version=95
13605
 
13606
+ [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.1*]
13607
+ Parent=K-Meleon 1.1
13608
+ Version=1.0
13609
+ MajorVer=1
13610
  MinorVer=0
13611
+ Platform="Win98"
13612
+ Platform_Version=98
13613
 
13614
+ [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.1*]
13615
+ Parent=K-Meleon 1.1
13616
+ Version=1.0
13617
+ MajorVer=1
13618
  MinorVer=0
13619
+ Platform="Win2000"
13620
+ Platform_Version=5.0
13621
 
13622
+ [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.1*]
13623
+ Parent=K-Meleon 1.1
13624
+ Version=1.0
13625
+ MajorVer=1
13626
  MinorVer=0
13627
+ Platform="WinXP"
13628
+ Platform_Version=5.1
13629
 
13630
+ [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.1*]
13631
+ Parent=K-Meleon 1.1
13632
+ Version=1.0
13633
+ MajorVer=1
13634
  MinorVer=0
13635
+ Platform="Win2003"
13636
+ Platform_Version=5.2
13637
 
13638
+ [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.1*]
13639
+ Parent=K-Meleon 1.1
 
 
 
 
13640
  Version=1.0
13641
  MajorVer=1
13642
  MinorVer=0
13643
+ Platform="WinNT"
13644
+ Platform_Version=4.0
13645
 
13646
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.5
13647
 
13648
+ [K-Meleon 1.5]
13649
  Parent=DefaultProperties
13650
+ Comment="K-Meleon 1.5"
13651
+ Browser="K-Meleon"
13652
+ Version=1.5
13653
+ MajorVer=1
13654
+ MinorVer=5
13655
+ Win32=true
13656
  Frames=true
13657
  IFrames=true
13658
  Tables=true
13659
  Cookies=true
 
 
13660
  JavaScript=true
13661
  CssVersion=2
 
13662
 
13663
+ [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.5*]
13664
+ Parent=K-Meleon 1.5
13665
+ Version=1.0
13666
+ MajorVer=1
13667
+ MinorVer=0
13668
+ Platform="Win95"
13669
+ Platform_Version=95
13670
 
13671
+ [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.5*]
13672
+ Parent=K-Meleon 1.5
13673
+ Version=1.0
13674
+ MajorVer=1
13675
+ MinorVer=0
13676
+ Platform="Win98"
13677
+ Platform_Version=98
13678
 
13679
+ [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.5*]
13680
+ Parent=K-Meleon 1.5
13681
+ Version=1.0
13682
+ MajorVer=1
13683
+ MinorVer=0
13684
+ Platform="Win2000"
13685
+ Platform_Version=5.0
13686
 
13687
+ [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.5*]
13688
+ Parent=K-Meleon 1.5
13689
+ Version=1.0
13690
+ MajorVer=1
13691
+ MinorVer=0
13692
+ Platform="WinXP"
13693
+ Platform_Version=5.1
13694
 
13695
+ [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.5*]
13696
+ Parent=K-Meleon 1.5
13697
+ Version=1.0
13698
+ MajorVer=1
13699
+ MinorVer=0
13700
+ Platform="Win2003"
13701
+ Platform_Version=5.2
13702
+
13703
+ [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* K-Meleon/1.5*]
13704
+ Parent=K-Meleon 1.5
13705
+ Platform="WinVista"
13706
+ Platform_Version=6.0
13707
+
13708
+ [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* K-Meleon/1.5*]
13709
+ Parent=K-Meleon 1.5
13710
+ Platform="Win7"
13711
+ Platform_Version=6.1
13712
+
13713
+ [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.5*]
13714
+ Parent=K-Meleon 1.5
13715
+ Version=1.0
13716
+ MajorVer=1
13717
+ MinorVer=0
13718
+ Platform="WinNT"
13719
+ Platform_Version=4.0
13720
 
13721
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.6
13722
 
13723
+ [K-Meleon 1.6]
13724
  Parent=DefaultProperties
13725
+ Comment="K-Meleon 1.6"
13726
+ Browser="K-Meleon"
13727
+ Version=1.6
13728
+ MajorVer=1
13729
+ MinorVer=6
13730
+ Win32=true
13731
  Frames=true
13732
  IFrames=true
13733
  Tables=true
13734
  Cookies=true
 
 
13735
  JavaScript=true
13736
  CssVersion=2
 
13737
 
13738
+ [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.6*]
13739
+ Parent=K-Meleon 1.6
13740
+ Version=1.0
13741
+ MajorVer=1
13742
+ MinorVer=0
13743
+ Platform="Win2000"
13744
+ Platform_Version=5.0
13745
 
13746
+ [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.6*]
13747
+ Parent=K-Meleon 1.6
13748
+ Version=1.0
13749
+ MajorVer=1
13750
+ MinorVer=0
13751
+ Platform="WinXP"
13752
+ Platform_Version=5.1
13753
 
13754
+ [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.6*]
13755
+ Parent=K-Meleon 1.6
13756
+ Version=1.0
13757
+ MajorVer=1
13758
+ MinorVer=0
13759
+ Platform="WinXP"
13760
+ Platform_Version=5.2
13761
 
13762
+ [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* K-Meleon/1.6*]
13763
+ Parent=K-Meleon 1.6
13764
+ Platform="WinVista"
13765
+ Platform_Version=6.0
13766
 
13767
+ [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* K-Meleon/1.6*]
13768
+ Parent=K-Meleon 1.6
13769
+ Platform="Win7"
13770
+ Platform_Version=6.1
13771
 
13772
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 3.0
13773
 
13774
+ [Konqueror 3.0]
13775
  Parent=DefaultProperties
13776
+ Comment="Konqueror 3.0"
13777
+ Browser="Konqueror"
13778
+ Version=3.0
13779
  MajorVer=3
13780
+ MinorVer=0
13781
  Frames=true
13782
  IFrames=true
13783
  Tables=true
13784
  Cookies=true
 
 
13785
  JavaScript=true
13786
+ CssVersion=2
 
 
 
 
 
13787
 
13788
+ [*Konqueror/3.*]
13789
+ Parent=Konqueror 3.0
13790
+ Version=3.0
13791
+ MajorVer=3
13792
+ MinorVer=0
13793
+ IFrames=false
13794
 
13795
+ [*Konqueror/3.*FreeBSD*]
13796
+ Parent=Konqueror 3.0
13797
+ Version=3.0
13798
+ MajorVer=3
13799
+ MinorVer=0
13800
+ Platform="FreeBSD"
13801
+ IFrames=false
13802
 
13803
+ [*Konqueror/3.*Linux*]
13804
+ Parent=Konqueror 3.0
13805
+ Version=3.0
13806
+ MajorVer=3
13807
+ MinorVer=0
13808
+ Platform="Linux"
13809
 
13810
+ [*Konqueror/3.*OpenBSD*]
13811
+ Parent=Konqueror 3.0
13812
+ Version=3.0
13813
+ MajorVer=3
13814
+ MinorVer=0
13815
+ Platform="OpenBSD"
13816
 
13817
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.0
13818
 
13819
+ [Konqueror 4.0]
13820
  Parent=DefaultProperties
13821
+ Comment="Konqueror 4.0"
13822
+ Browser="Konqueror"
13823
  Version=4.0
13824
  MajorVer=4
13825
+ MinorVer=0
13826
  Frames=true
13827
  IFrames=true
13828
  Tables=true
13829
  Cookies=true
 
 
13830
  JavaScript=true
13831
+ CssVersion=2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13832
 
13833
+ [Mozilla/5.0 (compatible; Konqueror/4.*; *Linux) KHTML/4.* (like Gecko)]
13834
+ Parent=Konqueror 4.0
13835
+ Platform="Linux"
13836
 
13837
+ [Mozilla/5.0 (compatible; Konqueror/4.*; FreeBSD) KHTML/4.* (like Gecko)]
13838
+ Parent=Konqueror 4.0
13839
+ Platform="FreeBSD"
13840
 
13841
+ [Mozilla/5.0 (compatible; Konqueror/4.*; NetBSD) KHTML/4.* (like Gecko)]
13842
+ Parent=Konqueror 4.0
13843
+ Platform="NetBSD"
13844
 
13845
+ [Mozilla/5.0 (compatible; Konqueror/4.0*) KHTML/4.* (like Gecko)]
13846
+ Parent=Konqueror 4.0
 
13847
 
13848
+ [Mozilla/5.0 (compatible; Konqueror/4.0*; Debian) KHTML/4.* (like Gecko)]
13849
+ Parent=Konqueror 4.0
13850
+ Platform="Debian"
13851
 
13852
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.5
13853
 
13854
+ [Konqueror 4.5]
13855
  Parent=DefaultProperties
13856
+ Comment="Konqueror 4.5"
13857
+ Browser="Konqueror"
13858
+ Version=4.5
13859
+ MajorVer=4
13860
+ MinorVer=5
13861
  Frames=true
13862
  IFrames=true
13863
  Tables=true
13864
  Cookies=true
 
 
13865
  JavaScript=true
13866
  CssVersion=2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13867
 
13868
+ [Mozilla/5.0 (compatible; Konqueror/4.5*) KHTML/4.5* (like Gecko)*]
13869
+ Parent=Konqueror 4.5
 
13870
 
13871
+ [Mozilla/5.0 (compatible; Konqueror/4.5*; *Linux*) KHTML/4.5* (like Gecko)*]
13872
+ Parent=Konqueror 4.5
13873
+ Platform="Linux"
13874
 
13875
+ [Mozilla/5.0 (compatible; Konqueror/4.5*; Debian) KHTML/4.5* (like Gecko)*]
13876
+ Parent=Konqueror 4.5
13877
+ Platform="Debian"
13878
 
13879
+ [Mozilla/5.0 (compatible; Konqueror/4.5*; FreeBSD) KHTML/4.5* (like Gecko)*]
13880
+ Parent=Konqueror 4.5
13881
+ Platform="FreeBSD"
13882
 
13883
+ [Mozilla/5.0 (compatible; Konqueror/4.5*; NetBSD) KHTML/4.5* (like Gecko)*]
13884
+ Parent=Konqueror 4.5
13885
+ Platform="NetBSD"
13886
 
13887
+ [Mozilla/5.0 (compatible; Konqueror/4.5*; Windows) KHTML/4.5* (like Gecko)]
13888
+ Parent=Konqueror 4.5
13889
+ Platform="Win"
13890
 
13891
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.6
 
 
13892
 
13893
+ [Konqueror 4.6]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13894
  Parent=DefaultProperties
13895
+ Comment="Konqueror 4.6"
13896
+ Browser="Konqueror"
13897
+ Version=4.6
13898
+ MajorVer=4
13899
+ MinorVer=6
13900
  Frames=true
13901
  IFrames=true
13902
  Tables=true
13903
  Cookies=true
 
 
13904
  JavaScript=true
13905
  CssVersion=2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13906
 
13907
+ [Mozilla/5.0 (compatible; Konqueror/4.6*) KHTML/4.6* (like Gecko)*]
13908
+ Parent=Konqueror 4.6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13909
 
13910
+ [Mozilla/5.0 (compatible; Konqueror/4.6*; *Linux*) KHTML/4.6* (like Gecko)*]
13911
+ Parent=Konqueror 4.6
13912
+ Platform="Linux"
 
13913
 
13914
+ [Mozilla/5.0 (compatible; Konqueror/4.6*; Debian) KHTML/4.6* (like Gecko)*]
13915
+ Parent=Konqueror 4.6
13916
+ Platform="Debian"
 
13917
 
13918
+ [Mozilla/5.0 (compatible; Konqueror/4.6*; FreeBSD) KHTML/4.6* (like Gecko)*]
13919
+ Parent=Konqueror 4.6
13920
+ Platform="FreeBSD"
 
13921
 
13922
+ [Mozilla/5.0 (compatible; Konqueror/4.6*; NetBSD) KHTML/4.6* (like Gecko)*]
13923
+ Parent=Konqueror 4.6
13924
+ Platform="NetBSD"
 
13925
 
13926
+ [Mozilla/5.0 (compatible; Konqueror/4.6*; Windows) KHTML/4.6* (like Gecko)]
13927
+ Parent=Konqueror 4.6
13928
+ Platform="Win"
13929
  Win32=true
13930
 
13931
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.7
 
 
 
13932
 
13933
+ [Konqueror 4.7]
13934
+ Parent=DefaultProperties
13935
+ Comment="Konqueror 4.7"
13936
+ Browser="Konqueror"
13937
+ Version=4.7
13938
+ MajorVer=4
13939
+ MinorVer=7
13940
+ Frames=true
13941
+ IFrames=true
13942
+ Tables=true
13943
+ Cookies=true
13944
+ JavaScript=true
13945
+ CssVersion=2
13946
 
13947
+ [Mozilla/5.0 (compatible; Konqueror/4.7*) KHTML/4.7* (like Gecko)*]
13948
+ Parent=Konqueror 4.7
 
 
13949
 
13950
+ [Mozilla/5.0 (compatible; Konqueror/4.7*; *Linux*) KHTML/4.7* (like Gecko)*]
13951
+ Parent=Konqueror 4.7
13952
+ Platform="Linux"
 
13953
 
13954
+ [Mozilla/5.0 (compatible; Konqueror/4.7*; Debian) KHTML/4.7* (like Gecko)*]
13955
+ Parent=Konqueror 4.7
13956
+ Platform="Debian"
 
13957
 
13958
+ [Mozilla/5.0 (compatible; Konqueror/4.7*; FreeBSD) KHTML/4.7* (like Gecko)*]
13959
+ Parent=Konqueror 4.7
13960
+ Platform="FreeBSD"
 
13961
 
13962
+ [Mozilla/5.0 (compatible; Konqueror/4.7*; NetBSD) KHTML/4.7* (like Gecko)*]
13963
+ Parent=Konqueror 4.7
13964
+ Platform="NetBSD"
 
13965
 
13966
+ [Mozilla/5.0 (compatible; Konqueror/4.7*; Windows) KHTML/4.7* (like Gecko)]
13967
+ Parent=Konqueror 4.7
13968
+ Platform="Win"
13969
  Win32=true
13970
 
13971
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.8
 
 
 
13972
 
13973
+ [Konqueror 4.8]
13974
+ Parent=DefaultProperties
13975
+ Comment="Konqueror 4.8"
13976
+ Browser="Konqueror"
13977
+ Version=4.8
13978
+ MajorVer=4
13979
+ MinorVer=8
13980
+ Frames=true
13981
+ IFrames=true
13982
+ Tables=true
13983
+ Cookies=true
13984
+ JavaScript=true
13985
+ CssVersion=2
13986
 
13987
+ [Mozilla/5.0 (compatible; Konqueror/4.8*) KHTML/4.8* (like Gecko)*]
13988
+ Parent=Konqueror 4.8
 
 
13989
 
13990
+ [Mozilla/5.0 (compatible; Konqueror/4.8*; *Linux*) KHTML/4.8* (like Gecko)*]
13991
+ Parent=Konqueror 4.8
13992
+ Platform="Linux"
 
13993
 
13994
+ [Mozilla/5.0 (compatible; Konqueror/4.8*; Debian) KHTML/4.8* (like Gecko)*]
13995
+ Parent=Konqueror 4.8
13996
+ Platform="Debian"
 
13997
 
13998
+ [Mozilla/5.0 (compatible; Konqueror/4.8*; FreeBSD) KHTML/4.8* (like Gecko)*]
13999
+ Parent=Konqueror 4.8
14000
+ Platform="FreeBSD"
 
14001
 
14002
+ [Mozilla/5.0 (compatible; Konqueror/4.8*; NetBSD) KHTML/4.8* (like Gecko)*]
14003
+ Parent=Konqueror 4.8
14004
+ Platform="NetBSD"
 
14005
 
14006
+ [Mozilla/5.0 (compatible; Konqueror/4.8*; Windows) KHTML/4.8* (like Gecko)]
14007
+ Parent=Konqueror 4.8
14008
+ Platform="Win"
14009
  Win32=true
14010
 
14011
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 2.0
14012
 
14013
+ [Safari 2.0]
14014
  Parent=DefaultProperties
14015
+ Comment="Safari 2.0"
14016
+ Browser="Safari"
14017
+ Version=2.0
14018
+ MajorVer=2
14019
+ MinorVer=0
14020
  Frames=true
14021
  IFrames=true
14022
  Tables=true
14023
  Cookies=true
 
 
14024
  JavaScript=true
14025
+ JavaApplets=true
14026
  CssVersion=2
 
 
 
 
 
 
14027
 
14028
+ [Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*]
14029
+ Parent=Safari 2.0
14030
+ Platform="CentOS"
 
14031
 
14032
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*]
14033
+ Parent=Safari 2.0
 
 
14034
 
14035
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*]
14036
+ Parent=Safari 2.0
14037
+ Platform="Linux"
 
14038
 
14039
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*]
14040
+ Parent=Safari 2.0
14041
+ Platform="MacOSX"
 
14042
 
14043
+ [Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*]
14044
+ Parent=Safari 2.0
14045
+ Platform="SymbianOS"
14046
+ isMobileDevice=true
14047
 
14048
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*]
14049
+ Parent=Safari 2.0
14050
+ Platform="Win2000"
14051
+ Platform_Version=5.0
14052
  Win32=true
14053
 
14054
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*]
14055
+ Parent=Safari 2.0
14056
+ Platform="WinXP"
14057
+ Platform_Version=5.1
14058
  Win32=true
14059
 
14060
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*]
14061
+ Parent=Safari 2.0
14062
+ Platform="WinXP"
14063
+ Platform_Version=5.2
14064
  Win32=true
14065
 
14066
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*]
14067
+ Parent=Safari 2.0
14068
+ Platform="WinVista"
14069
+ Platform_Version=6.0
14070
  Win32=true
14071
 
14072
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*]
14073
+ Parent=Safari 2.0
14074
+ Platform="Win7"
14075
+ Platform_Version=6.1
14076
  Win32=true
14077
 
14078
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.0
 
 
 
14079
 
14080
+ [Safari 3.0]
14081
+ Parent=DefaultProperties
14082
+ Comment="Safari 3.0"
14083
+ Browser="Safari"
14084
+ Version=3.0
14085
+ MajorVer=3
14086
+ MinorVer=0
14087
+ Frames=true
14088
+ IFrames=true
14089
+ Tables=true
14090
+ Cookies=true
14091
+ JavaScript=true
14092
+ JavaApplets=true
14093
+ CssVersion=2
14094
 
14095
+ [Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*]
14096
+ Parent=Safari 3.0
14097
+ Platform="CentOS"
 
14098
 
14099
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*]
14100
+ Parent=Safari 3.0
 
 
14101
 
14102
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*]
14103
+ Parent=Safari 3.0
14104
+ Platform="Linux"
14105
 
14106
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*]
14107
+ Parent=Safari 3.0
14108
+ Platform="MacOSX"
 
14109
 
14110
+ [Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*]
14111
+ Parent=Safari 3.0
14112
+ Platform="SymbianOS"
14113
+ isMobileDevice=true
14114
 
14115
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*]
14116
+ Parent=Safari 3.0
14117
+ Platform="Win2000"
14118
+ Platform_Version=5.0
14119
  Win32=true
14120
 
14121
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*]
14122
+ Parent=Safari 3.0
14123
+ Platform="WinXP"
14124
+ Platform_Version=5.1
14125
  Win32=true
14126
 
14127
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*]
14128
+ Parent=Safari 3.0
14129
+ Platform="WinXP"
14130
+ Platform_Version=5.2
14131
  Win32=true
14132
 
14133
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*]
14134
+ Parent=Safari 3.0
14135
+ Platform="WinVista"
14136
+ Platform_Version=6.0
14137
  Win32=true
14138
 
14139
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*]
14140
+ Parent=Safari 3.0
14141
+ Platform="Win7"
14142
+ Platform_Version=6.1
14143
  Win32=true
14144
 
14145
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 4.0
14146
 
14147
+ [Safari 4.0]
14148
  Parent=DefaultProperties
14149
+ Comment="Safari 4.0"
14150
+ Browser="Safari"
14151
+ Version=4.0
14152
+ MajorVer=4
14153
+ MinorVer=0
14154
  Frames=true
14155
  IFrames=true
14156
  Tables=true
14157
  Cookies=true
 
 
14158
  JavaScript=true
14159
+ JavaApplets=true
14160
+ CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14161
 
14162
+ [Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*]
14163
+ Parent=Safari 4.0
14164
+ Platform="CentOS"
 
14165
 
14166
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*]
14167
+ Parent=Safari 4.0
 
 
14168
 
14169
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*]
14170
+ Parent=Safari 4.0
14171
+ Platform="Linux"
 
14172
 
14173
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*]
14174
+ Parent=Safari 4.0
14175
+ Platform="MacOSX"
 
14176
 
14177
+ [Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*]
14178
+ Parent=Safari 4.0
14179
+ Platform="SymbianOS"
14180
+ isMobileDevice=true
14181
 
14182
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*]
14183
+ Parent=Safari 4.0
14184
+ Platform="Win2000"
14185
+ Platform_Version=5.0
14186
  Win32=true
14187
 
14188
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*]
14189
+ Parent=Safari 4.0
14190
+ Platform="WinXP"
14191
+ Platform_Version=5.1
14192
  Win32=true
14193
 
14194
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*]
14195
+ Parent=Safari 4.0
14196
+ Platform="WinXP"
14197
+ Platform_Version=5.2
14198
  Win32=true
14199
 
14200
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*]
14201
+ Parent=Safari 4.0
14202
+ Platform="WinVista"
14203
+ Platform_Version=6.0
14204
  Win32=true
14205
 
14206
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*]
14207
+ Parent=Safari 4.0
14208
+ Platform="Win7"
14209
+ Platform_Version=6.1
14210
  Win32=true
14211
 
14212
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 5.0
 
 
 
14213
 
14214
+ [Safari 5.0]
14215
+ Parent=DefaultProperties
14216
+ Comment="Safari 5.0"
14217
+ Browser="Safari"
14218
+ Version=5.0
14219
+ MajorVer=5
14220
+ MinorVer=0
14221
+ Frames=true
14222
+ IFrames=true
14223
+ Tables=true
14224
+ Cookies=true
14225
+ JavaScript=true
14226
+ JavaApplets=true
14227
+ CssVersion=3
14228
 
14229
+ [Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*]
14230
+ Parent=Safari 5.0
14231
+ Platform="CentOS"
 
14232
 
14233
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*]
14234
+ Parent=Safari 5.0
 
14235
 
14236
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*]
14237
+ Parent=Safari 5.0
14238
+ Platform="Linux"
 
14239
 
14240
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*]
14241
+ Parent=Safari 5.0
14242
+ Platform="MacOSX"
 
14243
 
14244
+ [Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*]
14245
+ Parent=Safari 5.0
14246
+ Platform="SymbianOS"
14247
+ isMobileDevice=true
14248
 
14249
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*]
14250
+ Parent=Safari 5.0
14251
+ Platform="Win2000"
14252
+ Platform_Version=5.0
14253
  Win32=true
14254
 
14255
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*]
14256
+ Parent=Safari 5.0
14257
+ Platform="WinXP"
14258
+ Platform_Version=5.1
14259
  Win32=true
14260
 
14261
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*]
14262
+ Parent=Safari 5.0
14263
+ Platform="WinXP"
14264
+ Platform_Version=5.2
14265
  Win32=true
14266
 
14267
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*]
14268
+ Parent=Safari 5.0
14269
+ Platform="WinVista"
14270
+ Platform_Version=6.0
14271
  Win32=true
14272
 
14273
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*]
14274
+ Parent=Safari 5.0
14275
+ Platform="Win7"
14276
+ Platform_Version=6.1
14277
  Win32=true
14278
 
14279
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*]
14280
+ Parent=Safari 5.0
14281
+ Platform="Win8"
14282
+ Platform_Version=6.2
 
 
 
14283
 
14284
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 5.1
 
 
14285
 
14286
+ [Safari 5.1]
 
 
14287
  Parent=DefaultProperties
14288
+ Comment="Safari 5.1"
14289
+ Browser="Safari"
14290
+ Version=5.1
14291
+ MajorVer=5
14292
+ MinorVer=1
14293
  Frames=true
14294
  IFrames=true
14295
  Tables=true
14296
  Cookies=true
 
 
14297
  JavaScript=true
14298
+ JavaApplets=true
14299
+ CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14300
 
14301
+ [Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*]
14302
+ Parent=Safari 5.1
14303
+ Platform="CentOS"
 
14304
 
14305
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*]
14306
+ Parent=Safari 5.1
14307
+ Platform="Linux"
 
14308
 
14309
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*]
14310
+ Parent=Safari 5.1
14311
+ Platform="Linux"
14312
 
14313
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*]
14314
+ Parent=Safari 5.1
14315
+ Platform="MacOSX"
14316
 
14317
+ [Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*]
14318
+ Parent=Safari 5.1
14319
+ Platform="SymbianOS"
14320
+ isMobileDevice=true
14321
 
14322
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*]
14323
+ Parent=Safari 5.1
14324
+ Platform="Win2000"
14325
+ Platform_Version=5.0
14326
  Win32=true
14327
 
14328
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*]
14329
+ Parent=Safari 5.1
14330
+ Platform="WinXP"
14331
+ Platform_Version=5.1
14332
  Win32=true
14333
 
14334
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*]
14335
+ Parent=Safari 5.1
14336
+ Platform="WinXP"
14337
+ Platform_Version=5.2
14338
  Win32=true
14339
 
14340
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*]
14341
+ Parent=Safari 5.1
14342
+ Platform="WinVista"
14343
+ Platform_Version=6.0
14344
  Win32=true
14345
 
14346
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*]
14347
+ Parent=Safari 5.1
14348
+ Platform="Win7"
14349
+ Platform_Version=6.1
14350
  Win32=true
14351
 
14352
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*]
14353
+ Parent=Safari 5.1
14354
+ Platform="Win8"
14355
+ Platform_Version=6.2
14356
 
14357
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 6.0
 
 
 
14358
 
14359
+ [Safari 6.0]
14360
+ Parent=DefaultProperties
14361
+ Comment="Safari 6.0"
14362
+ Browser="Safari"
14363
+ Version=6.0
14364
+ MajorVer=6
14365
+ MinorVer=0
14366
+ Frames=true
14367
+ IFrames=true
14368
+ Tables=true
14369
+ Cookies=true
14370
+ JavaScript=true
14371
+ JavaApplets=true
14372
+ CssVersion=3
14373
 
14374
+ [Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*]
14375
+ Parent=Safari 6.0
14376
+ Platform="CentOS"
14377
 
14378
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*]
14379
+ Parent=Safari 6.0
14380
+ Platform="Linux"
14381
 
14382
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*]
14383
+ Parent=Safari 6.0
14384
+ Platform="Linux"
 
14385
 
14386
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*]
14387
+ Parent=Safari 6.0
14388
+ Platform="MacOSX"
 
14389
 
14390
+ [Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*]
14391
+ Parent=Safari 6.0
14392
+ Platform="SymbianOS"
14393
+ isMobileDevice=true
14394
 
14395
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*]
14396
+ Parent=Safari 6.0
14397
+ Platform="Win2000"
14398
+ Platform_Version=5.0
14399
  Win32=true
14400
 
14401
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*]
14402
+ Parent=Safari 6.0
14403
+ Platform="WinXP"
14404
+ Platform_Version=5.1
14405
  Win32=true
14406
 
14407
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*]
14408
+ Parent=Safari 6.0
14409
+ Platform="WinXP"
14410
+ Platform_Version=5.2
14411
  Win32=true
14412
 
14413
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*]
14414
+ Parent=Safari 6.0
14415
+ Platform="WinVista"
14416
+ Platform_Version=6.0
14417
  Win32=true
14418
 
14419
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*]
14420
+ Parent=Safari 6.0
14421
+ Platform="Win7"
14422
+ Platform_Version=6.1
14423
  Win32=true
14424
 
14425
+ [Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*]
14426
+ Parent=Safari 6.0
14427
+ Platform="Win8"
14428
+ Platform_Version=6.2
 
 
 
14429
 
14430
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari Generic
14431
 
14432
+ [Safari Generic]
14433
  Parent=DefaultProperties
14434
+ Comment="Safari Generic"
14435
+ Browser="Safari"
 
 
14436
  Frames=true
14437
  IFrames=true
14438
  Tables=true
14439
  Cookies=true
 
 
14440
  JavaScript=true
14441
+ JavaApplets=true
14442
+ CssVersion=1
 
 
 
 
14443
 
14444
+ [Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
14445
+ Parent=Safari Generic
14446
+ Platform="CentOS"
14447
 
14448
+ [Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
14449
+ Parent=Safari Generic
 
 
14450
 
14451
+ [Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
14452
+ Parent=Safari Generic
14453
+ Platform="Linux"
 
14454
 
14455
+ [Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Safari/*]
14456
+ Parent=Safari Generic
14457
+ Platform="MacOSX"
 
14458
 
14459
+ [Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
14460
+ Parent=Safari Generic
14461
+ Platform="SymbianOS"
14462
+ isMobileDevice=true
14463
 
14464
+ [Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
14465
+ Parent=Safari Generic
14466
+ Platform="Win2000"
14467
+ Platform_Version=5.0
14468
  Win32=true
14469
 
14470
+ [Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
14471
+ Parent=Safari Generic
14472
+ Platform="WinXP"
14473
+ Platform_Version=5.1
14474
  Win32=true
14475
 
14476
+ [Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
14477
+ Parent=Safari Generic
14478
+ Platform="WinXP"
14479
+ Platform_Version=5.2
14480
  Win32=true
14481
 
14482
+ [Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
14483
+ Parent=Safari Generic
14484
+ Platform="WinVista"
14485
+ Platform_Version=6.0
14486
  Win32=true
14487
 
14488
+ [Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
14489
+ Parent=Safari Generic
14490
+ Platform="Win7"
14491
+ Platform_Version=6.1
14492
  Win32=true
14493
 
14494
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lunascape 5.0
 
 
 
 
 
 
 
 
 
 
 
14495
 
14496
+ [Lunascape 5.0]
14497
+ Parent=DefaultProperties
14498
+ Comment="Lunascape 5.0"
14499
+ Browser="Lunascape"
14500
+ Version=5.0
14501
+ MajorVer=5
14502
+ MinorVer=0
14503
+ Platform="Win32"
14504
  Win32=true
14505
+ Frames=true
14506
+ IFrames=true
14507
+ Tables=true
14508
+ Cookies=true
14509
+ JavaScript=true
14510
+ JavaApplets=true
14511
 
14512
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT *Lunascape 5.0*)*]
14513
+ Parent=Lunascape 5.0
 
 
14514
 
14515
+ [Mozilla/5.0 (Windows; U; Windows NT *; *) AppleWebKit/* (KHTML, like Gecko*) Lunascape/5.0*]
14516
+ Parent=Lunascape 5.0
 
 
14517
 
14518
+ [Mozilla/5.0 (Windows; U; Windows NT *; *; rv:1.9.*) Gecko/* Firefox/3.* Lunascape/5.0*]
14519
+ Parent=Lunascape 5.0
 
 
14520
 
14521
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lunascape 5.1
 
 
 
14522
 
14523
+ [Lunascape 5.1]
14524
+ Parent=DefaultProperties
14525
+ Comment="Lunascape 5.1"
14526
+ Browser="Lunascape"
14527
+ Version=5.1
14528
+ MajorVer=5
14529
+ MinorVer=1
14530
+ Platform="Win32"
14531
  Win32=true
14532
+ Frames=true
14533
+ IFrames=true
14534
+ Tables=true
14535
+ Cookies=true
14536
+ JavaScript=true
14537
+ JavaApplets=true
14538
 
14539
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT *Lunascape 5.1*)*]
14540
+ Parent=Lunascape 5.1
 
 
14541
 
14542
+ [Mozilla/5.0 (Windows; U; Windows NT *; *) AppleWebKit/* (KHTML, like Gecko*) Lunascape/5.1*]
14543
+ Parent=Lunascape 5.1
 
14544
 
14545
+ [Mozilla/5.0 (Windows; U; Windows NT *; *; rv:1.9.*) Gecko/* Firefox/3.* Lunascape/5.1*]
14546
+ Parent=Lunascape 5.1
 
14547
 
14548
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lunascape 6.0
 
 
14549
 
14550
+ [Lunascape 6.0]
14551
+ Parent=DefaultProperties
14552
+ Comment="Lunascape 6.0"
14553
+ Browser="Lunascape"
14554
+ Version=6.0
14555
+ MajorVer=6
14556
+ MinorVer=0
14557
+ Platform="Win32"
14558
  Win32=true
14559
+ Frames=true
14560
+ IFrames=true
14561
+ Tables=true
14562
+ Cookies=true
14563
+ JavaScript=true
14564
+ JavaApplets=true
14565
 
14566
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT *Lunascape 6.0*)*]
14567
+ Parent=Lunascape 6.0
 
 
14568
 
14569
+ [Mozilla/5.0 (Windows; U; Windows NT *; *) AppleWebKit/* (KHTML, like Gecko*) Lunascape/6.0*]
14570
+ Parent=Lunascape 6.0
 
 
14571
 
14572
+ [Mozilla/5.0 (Windows; U; Windows NT *; *; rv:1.9.*) Gecko/* Firefox/3.* Lunascape/6.0*]
14573
+ Parent=Lunascape 6.0
 
 
14574
 
14575
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 2.0
 
 
 
14576
 
14577
+ [Maxthon 2.0]
14578
+ Parent=DefaultProperties
14579
+ Comment="Maxthon 2.0"
14580
+ Browser="Maxthon"
14581
+ Version=2.0
14582
+ MajorVer=2
14583
+ MinorVer=0
14584
  Win32=true
14585
+ Frames=true
14586
+ IFrames=true
14587
+ Tables=true
14588
+ Cookies=true
14589
+ JavaScript=true
14590
+ CssVersion=2
14591
 
14592
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.0; *Maxthon*)*]
14593
+ Parent=Maxthon 2.0
14594
+ Platform="Win2000"
14595
+ Platform_Version=5.0
14596
 
14597
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.1; *Maxthon*)*]
14598
+ Parent=Maxthon 2.0
14599
+ Platform="WinXP"
14600
+ Platform_Version=5.1
14601
 
14602
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.2; *Maxthon*)*]
14603
+ Parent=Maxthon 2.0
14604
+ Platform="WinXP"
14605
+ Platform_Version=5.2
14606
 
14607
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.0; *Maxthon*)*]
14608
+ Parent=Maxthon 2.0
14609
+ Platform="WinVista"
14610
+ Platform_Version=6.0
14611
 
14612
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.1; *Maxthon*)*]
14613
+ Parent=Maxthon 2.0
14614
+ Platform="Win7"
14615
+ Platform_Version=6.1
14616
 
14617
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 3.0
14618
+
14619
+ [Maxthon 3.0]
14620
  Parent=DefaultProperties
14621
+ Comment="Maxthon 3.0"
14622
+ Browser="Maxthon"
14623
+ Version=3.0
14624
+ MajorVer=3
14625
+ MinorVer=0
14626
+ Win32=true
14627
  Frames=true
14628
  IFrames=true
14629
  Tables=true
14630
  Cookies=true
 
 
14631
  JavaScript=true
14632
+ JavaApplets=true
14633
  CssVersion=2
 
14634
 
14635
+ [Mozilla/5.0 (Windows; U; Windows NT 5.0; *) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0 Safari/*]
14636
+ Parent=Maxthon 3.0
14637
+ Platform="Win2000"
14638
+ Platform_Version=5.0
14639
 
14640
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0 Safari/*]
14641
+ Parent=Maxthon 3.0
14642
+ Platform="WinXP"
14643
+ Platform_Version=5.1
14644
 
14645
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0 Safari/*]
14646
+ Parent=Maxthon 3.0
14647
+ Platform="WinXP"
14648
+ Platform_Version=5.2
14649
 
14650
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0 Safari/*]
14651
+ Parent=Maxthon 3.0
14652
+ Platform="WinVista"
14653
+ Platform_Version=6.0
14654
 
14655
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0 Safari/*]
14656
+ Parent=Maxthon 3.0
14657
+ Platform="Win7"
14658
+ Platform_Version=6.1
14659
 
14660
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb 5.0
 
 
 
14661
 
14662
+ [OmniWeb 5.0]
14663
+ Parent=DefaultProperties
14664
+ Comment="OmniWeb 5.0"
14665
+ Browser="OmniWeb"
14666
+ Version=5.0
14667
+ MajorVer=5
14668
+ MinorVer=0
14669
+ Platform="MacOSX"
14670
+ Frames=true
14671
+ IFrames=true
14672
+ Tables=true
14673
+ Cookies=true
14674
+ JavaScript=true
14675
+ JavaApplets=true
14676
+ CssVersion=2
14677
 
14678
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *OmniWeb/*]
14679
+ Parent=OmniWeb 5.0
14680
+ CssVersion=1
 
14681
 
14682
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *OmniWeb/v558.*]
14683
+ Parent=OmniWeb 5.0
14684
+ Version=5.0
14685
+ MajorVer=5
14686
+ MinorVer=0
14687
 
14688
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari) *OmniWeb/v563.*]
14689
+ Parent=OmniWeb 5.0
14690
+ Version=5.1
14691
+ MajorVer=5
14692
+ MinorVer=1
14693
 
14694
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/420) *OmniWeb/v*]
14695
+ Parent=OmniWeb 5.0
14696
+ Version=5.5
14697
+ MajorVer=5
14698
+ MinorVer=5
14699
 
14700
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/522) *OmniWeb/v61?.0.*]
14701
+ Parent=OmniWeb 5.0
14702
+ Version=5.6
14703
+ MajorVer=5
14704
+ MinorVer=6
14705
 
14706
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/523.10) *OmniWeb/v621.*]
14707
+ Parent=OmniWeb 5.0
14708
+ Version=5.7
14709
+ MajorVer=5
14710
+ MinorVer=7
14711
 
14712
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/525.20) *OmniWeb/v622.*]
14713
+ Parent=OmniWeb 5.0
14714
+ Version=5.9
14715
+ MajorVer=5
14716
+ MinorVer=9
14717
 
14718
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/525.20) *OmniWeb/v622.3.*]
14719
+ Parent=OmniWeb 5.0
14720
+ Version=5.8
14721
+ MajorVer=5
14722
+ MinorVer=8
14723
 
14724
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/420 (KHTML, like Gecko, Safari) *OmniWeb/v*]
14725
+ Parent=OmniWeb 5.0
14726
+ Version=5.5
14727
+ MajorVer=5
14728
+ MinorVer=5
14729
 
14730
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb 5.10
 
 
 
14731
 
14732
+ [OmniWeb 5.10]
14733
+ Parent=DefaultProperties
14734
+ Comment="OmniWeb 5.10"
14735
+ Browser="OmniWeb"
14736
+ Version=5.10
14737
+ MajorVer=5
14738
+ MinorVer=10
14739
+ Platform="MacOSX"
14740
+ Frames=true
14741
+ IFrames=true
14742
+ Tables=true
14743
+ Cookies=true
14744
+ JavaScript=true
14745
+ JavaApplets=true
14746
+ CssVersion=3
14747
 
14748
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/528.16) *OmniWeb/622.*]
14749
+ Parent=OmniWeb 5.10
 
 
14750
 
14751
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/528.16) *Version/5.10* *OmniWeb/v622.*]
14752
+ Parent=OmniWeb 5.10
 
 
14753
 
14754
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb 5.11
 
 
 
14755
 
14756
+ [OmniWeb 5.11]
14757
+ Parent=DefaultProperties
14758
+ Comment="OmniWeb 5.11"
14759
+ Browser="OmniWeb"
14760
+ Version=5.11
14761
+ MajorVer=5
14762
+ MinorVer=11
14763
+ Platform="MacOSX"
14764
+ Frames=true
14765
+ IFrames=true
14766
+ Tables=true
14767
+ Cookies=true
14768
+ JavaScript=true
14769
+ JavaApplets=true
14770
+ CssVersion=3
14771
 
14772
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb 5.11
 
 
 
14773
 
14774
+ [Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Version/5.11* *OmniWeb/*]
14775
+ Parent=OmniWeb 5.11
14776
+ Comment="OmniWeb 5.11"
14777
+ Browser="OmniWeb"
14778
+ Version=5.11
14779
+ MajorVer=5
14780
+ MinorVer=11
14781
+ CssVersion=3
14782
+
14783
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.00
14784
+
14785
+ [Opera 10.00]
14786
+ Parent=DefaultProperties
14787
+ Comment="Opera 10.00"
14788
+ Browser="Opera"
14789
+ Version=10.00
14790
+ MajorVer=10
14791
+ MinorVer=0
14792
  Win32=true
14793
+ Frames=true
14794
+ IFrames=true
14795
+ Tables=true
14796
+ Cookies=true
14797
+ JavaScript=true
14798
+ JavaApplets=true
14799
+ CssVersion=3
14800
 
14801
+ [Mozilla/?.*(*FreeBSD*)*Opera?10.*]
14802
+ Parent=Opera 10.00
14803
+ Platform="FreeBSD"
14804
+ Win32=false
14805
 
14806
+ [Mozilla/?.*(*Linux*)*Opera?10.*]
14807
+ Parent=Opera 10.00
14808
+ Platform="Linux"
14809
+ Win32=false
14810
 
14811
+ [Mozilla/?.*(*Mac OS X*)*Opera?10.*]
14812
+ Parent=Opera 10.00
14813
+ Platform="MacOSX"
14814
+ Win32=false
14815
 
14816
+ [Mozilla/?.*(*Opera/10.*FreeBSD*)*]
14817
+ Parent=Opera 10.00
14818
+ Platform="FreeBSD"
14819
+ Win32=false
14820
 
14821
+ [Mozilla/?.*(*Opera/10.*Linux*)*]
14822
+ Parent=Opera 10.00
14823
+ Platform="Linux"
14824
+ Win32=false
14825
 
14826
+ [Mozilla/?.*(*Opera/10.*Mac OS X*)*]
14827
+ Parent=Opera 10.00
14828
+ Platform="MacOSX"
14829
+ Win32=false
14830
 
14831
+ [Mozilla/?.*(*Opera/10.*SunOS*)*]
14832
+ Parent=Opera 10.00
14833
+ Platform="SunOS"
14834
+ Win32=false
14835
 
14836
+ [Mozilla/?.*(*Opera/10.*Win 9x 4.90*)*]
14837
+ Parent=Opera 10.00
14838
+ Platform="WinME"
14839
+
14840
+ [Mozilla/?.*(*Opera/10.*Windows 2000*)*]
14841
+ Parent=Opera 10.00
14842
+ Platform="Win2000"
14843
+
14844
+ [Mozilla/?.*(*Opera/10.*Windows 95*)*]
14845
+ Parent=Opera 10.00
14846
+ Platform="Win95"
14847
+ Platform_Version=95
14848
+
14849
+ [Mozilla/?.*(*Opera/10.*Windows 98*)*]
14850
+ Parent=Opera 10.00
14851
+ Platform="Win98"
14852
+ Platform_Version=98
14853
+
14854
+ [Mozilla/?.*(*Opera/10.*Windows ME*)*]
14855
+ Parent=Opera 10.00
14856
+
14857
+ [Mozilla/?.*(*Opera/10.*Windows NT 4.0*)*]
14858
+ Parent=Opera 10.00
14859
+ Platform="WinNT"
14860
+ Platform_Version=4.0
14861
+
14862
+ [Mozilla/?.*(*Opera/10.*Windows NT 5.0*)*]
14863
+ Parent=Opera 10.00
14864
+ Platform="Win2000"
14865
+ Platform_Version=5.0
14866
+
14867
+ [Mozilla/?.*(*Opera/10.*Windows NT 5.1*)*]
14868
+ Parent=Opera 10.00
14869
+ Platform="WinXP"
14870
+ Platform_Version=5.1
14871
+
14872
+ [Mozilla/?.*(*Opera/10.*Windows NT 5.2*)*]
14873
+ Parent=Opera 10.00
14874
+ Platform="WinXP"
14875
+ Platform_Version=5.2
14876
+
14877
+ [Mozilla/?.*(*Opera/10.*Windows NT 6.0*)*]
14878
+ Parent=Opera 10.00
14879
+ Platform="WinVista"
14880
+ Platform_Version=6.0
14881
+
14882
+ [Mozilla/?.*(*Opera/10.*Windows NT 6.1*)*]
14883
+ Parent=Opera 10.00
14884
+ Platform="Win7"
14885
+ Platform_Version=6.1
14886
+
14887
+ [Mozilla/?.*(*SunOS*)*Opera?10.*]
14888
+ Parent=Opera 10.00
14889
+ Platform="SunOS"
14890
+ Win32=false
14891
 
14892
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?10.*]
14893
+ Parent=Opera 10.00
14894
+ Platform="WinME"
14895
+
14896
+ [Mozilla/?.*(*Windows 2000*)*Opera?10.*]
14897
+ Parent=Opera 10.00
14898
+ Platform="Win2000"
14899
+
14900
+ [Mozilla/?.*(*Windows 95*)*Opera?10.*]
14901
+ Parent=Opera 10.00
14902
+ Platform="Win95"
14903
+ Platform_Version=95
14904
+
14905
+ [Mozilla/?.*(*Windows 98*)*Opera?10.*]
14906
+ Parent=Opera 10.00
14907
+ Platform="Win98"
14908
+ Platform_Version=98
14909
+
14910
+ [Mozilla/?.*(*Windows ME*)*Opera?10.*]
14911
+ Parent=Opera 10.00
14912
+ Platform="WinME"
14913
+
14914
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?10.*]
14915
+ Parent=Opera 10.00
14916
+ Platform="WinNT"
14917
+ Platform_Version=4.0
14918
+
14919
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?10.*]
14920
+ Parent=Opera 10.00
14921
+ Platform="Win2000"
14922
+ Platform_Version=5.0
14923
+
14924
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?10.*]
14925
+ Parent=Opera 10.00
14926
+ Platform="WinXP"
14927
+ Platform_Version=5.1
14928
+
14929
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?10.*]
14930
+ Parent=Opera 10.00
14931
+ Platform="WinXP"
14932
+ Platform_Version=5.2
14933
+
14934
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?10.*]
14935
+ Parent=Opera 10.00
14936
+ Platform="WinVista"
14937
+ Platform_Version=6.0
14938
+
14939
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?10.*]
14940
+ Parent=Opera 10.00
14941
+ Platform="Win7"
14942
+ Platform_Version=6.1
14943
+
14944
+ [Opera/10.*(*FreeBSD*)*]
14945
+ Parent=Opera 10.00
14946
+ Platform="FreeBSD"
14947
+ Win32=false
14948
 
14949
+ [Opera/10.*(*Linux*)*]
14950
+ Parent=Opera 10.00
14951
+ Platform="Linux"
14952
+ Win32=false
14953
 
14954
+ [Opera/10.*(*Mac OS X*)*]
14955
+ Parent=Opera 10.00
14956
+ Platform="MacOSX"
14957
+ Win32=false
14958
 
14959
+ [Opera/10.*(*SunOS*)*]
14960
+ Parent=Opera 10.00
14961
+ Platform="SunOS"
14962
+ Win32=false
14963
 
14964
+ [Opera/10.*(*Win 9x 4.90*)*]
14965
+ Parent=Opera 10.00
14966
+ Platform="WinME"
14967
+
14968
+ [Opera/10.*(*Windows 2000*)*]
14969
+ Parent=Opera 10.00
14970
+ Platform="Win2000"
14971
+
14972
+ [Opera/10.*(*Windows 95*)*]
14973
+ Parent=Opera 10.00
14974
+ Platform="Win95"
14975
+ Platform_Version=95
14976
+
14977
+ [Opera/10.*(*Windows 98*)*]
14978
+ Parent=Opera 10.00
14979
+ Platform="Win98"
14980
+ Platform_Version=98
14981
+
14982
+ [Opera/10.*(*Windows ME*)*]
14983
+ Parent=Opera 10.00
14984
+ Platform="WinME"
14985
+
14986
+ [Opera/10.*(*Windows NT 4.0*)*]
14987
+ Parent=Opera 10.00
14988
+ Platform="WinNT"
14989
+ Platform_Version=4.0
14990
+
14991
+ [Opera/10.*(*Windows NT 5.0*)*]
14992
+ Parent=Opera 10.00
14993
+ Platform="Win2000"
14994
+ Platform_Version=5.0
14995
+
14996
+ [Opera/10.*(*Windows NT 5.1*)*]
14997
+ Parent=Opera 10.00
14998
+ Platform="WinXP"
14999
+ Platform_Version=5.1
15000
+
15001
+ [Opera/10.*(*Windows NT 5.2*)*]
15002
+ Parent=Opera 10.00
15003
+ Platform="WinXP"
15004
+ Platform_Version=5.2
15005
+
15006
+ [Opera/10.*(*Windows NT 6.0*)*]
15007
+ Parent=Opera 10.00
15008
+ Platform="WinVista"
15009
+ Platform_Version=6.0
15010
+
15011
+ [Opera/10.*(*Windows NT 6.1*)*]
15012
+ Parent=Opera 10.00
15013
+ Platform="Win7"
15014
+ Platform_Version=6.1
15015
+
15016
+ [Opera/9.80*(*FreeBSD*)*Version/10.*]
15017
+ Parent=Opera 10.00
15018
+ Platform="FreeBSD"
15019
+ Win32=false
15020
 
15021
+ [Opera/9.80*(*Linux*)*Version/10.*]
15022
+ Parent=Opera 10.00
15023
+ Platform="Linux"
15024
+ Win32=false
15025
 
15026
+ [Opera/9.80*(*Mac OS X*)*Version/10.*]
15027
+ Parent=Opera 10.00
15028
+ Platform="MacOSX"
15029
+ Win32=false
15030
 
15031
+ [Opera/9.80*(*SunOS*)*Version/10.*]
15032
+ Parent=Opera 10.00
15033
+ Platform="SunOS"
15034
+
15035
+ [Opera/9.80*(*Win 9x 4.90*)*Version/10.*]
15036
+ Parent=Opera 10.00
15037
+ Platform="WinME"
15038
+
15039
+ [Opera/9.80*(*Windows 2000*)*Version/10.*]
15040
+ Parent=Opera 10.00
15041
+ Platform="Win2000"
15042
+
15043
+ [Opera/9.80*(*Windows 95*)*Version/10.*]
15044
+ Parent=Opera 10.00
15045
+ Platform="Win95"
15046
+ Platform_Version=95
15047
+
15048
+ [Opera/9.80*(*Windows 98*)*Version/10.*]
15049
+ Parent=Opera 10.00
15050
+ Platform="Win98"
15051
+ Platform_Version=98
15052
+
15053
+ [Opera/9.80*(*Windows ME*)*Version/10.*]
15054
+ Parent=Opera 10.00
15055
+ Platform="WinME"
15056
+
15057
+ [Opera/9.80*(*Windows NT 4.0*)*Version/10.*]
15058
+ Parent=Opera 10.00
15059
+ Platform="WinNT"
15060
+ Platform_Version=4.0
15061
+
15062
+ [Opera/9.80*(*Windows NT 5.0*)*Version/10.*]
15063
+ Parent=Opera 10.00
15064
+ Platform="Win2000"
15065
+ Platform_Version=5.0
15066
+
15067
+ [Opera/9.80*(*Windows NT 5.1*)*Version/10.*]
15068
+ Parent=Opera 10.00
15069
+ Platform="WinXP"
15070
+ Platform_Version=5.1
15071
+
15072
+ [Opera/9.80*(*Windows NT 5.2*)*Version/10.*]
15073
+ Parent=Opera 10.00
15074
+ Platform="WinXP"
15075
+ Platform_Version=5.2
15076
+
15077
+ [Opera/9.80*(*Windows NT 6.0*)*Version/10.*]
15078
+ Parent=Opera 10.00
15079
+ Platform="WinVista"
15080
+ Platform_Version=6.0
15081
+
15082
+ [Opera/9.80*(*Windows NT 6.1*)*Version/10.*]
15083
+ Parent=Opera 10.00
15084
+ Platform="Win7"
15085
+ Platform_Version=6.1
15086
+
15087
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.00
15088
+
15089
+ [Opera 11.00]
15090
  Parent=DefaultProperties
15091
+ Comment="Opera 11.00"
15092
  Browser="Opera"
15093
+ Version=11.00
15094
+ MajorVer=11
15095
+ MinorVer=0
15096
+ Win32=true
15097
  Frames=true
15098
  IFrames=true
15099
  Tables=true
15100
  Cookies=true
 
 
15101
  JavaScript=true
15102
+ JavaApplets=true
15103
+ CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15104
 
15105
+ [Mozilla/?.*(*FreeBSD*)*Opera?11.*]
15106
+ Parent=Opera 11.00
15107
+ Platform="FreeBSD"
15108
+ Win32=false
15109
 
15110
+ [Mozilla/?.*(*Linux*)*Opera?11.*]
15111
+ Parent=Opera 11.00
15112
+ Platform="Linux"
15113
+ Win32=false
15114
 
15115
+ [Mozilla/?.*(*Mac OS X*)*Opera?11.*]
15116
+ Parent=Opera 11.00
15117
+ Platform="MacOSX"
15118
+ Win32=false
15119
 
15120
+ [Mozilla/?.*(*Opera/11.*FreeBSD*)*]
15121
+ Parent=Opera 11.00
15122
+ Platform="FreeBSD"
15123
+ Win32=false
15124
 
15125
+ [Mozilla/?.*(*Opera/11.*Linux*)*]
15126
+ Parent=Opera 11.00
15127
+ Platform="Linux"
15128
+ Win32=false
15129
 
15130
+ [Mozilla/?.*(*Opera/11.*Mac OS X*)*]
15131
+ Parent=Opera 11.00
15132
+ Platform="MacOSX"
15133
+ Win32=false
15134
 
15135
+ [Mozilla/?.*(*Opera/11.*SunOS*)*]
15136
+ Parent=Opera 11.00
15137
+ Platform="SunOS"
15138
+ Win32=false
15139
 
15140
+ [Mozilla/?.*(*Opera/11.*Win 9x 4.90*)*]
15141
+ Parent=Opera 11.00
15142
+ Platform="WinME"
15143
+
15144
+ [Mozilla/?.*(*Opera/11.*Windows 2000*)*]
15145
+ Parent=Opera 11.00
15146
+ Platform="Win2000"
15147
+
15148
+ [Mozilla/?.*(*Opera/11.*Windows 95*)*]
15149
+ Parent=Opera 11.00
15150
+ Platform="Win95"
15151
+ Platform_Version=95
15152
+
15153
+ [Mozilla/?.*(*Opera/11.*Windows 98*)*]
15154
+ Parent=Opera 11.00
15155
+ Platform="Win98"
15156
+ Platform_Version=98
15157
+
15158
+ [Mozilla/?.*(*Opera/11.*Windows ME*)*]
15159
+ Parent=Opera 11.00
15160
+
15161
+ [Mozilla/?.*(*Opera/11.*Windows NT 4.0*)*]
15162
+ Parent=Opera 11.00
15163
+ Platform="WinNT"
15164
+ Platform_Version=4.0
15165
+
15166
+ [Mozilla/?.*(*Opera/11.*Windows NT 5.0*)*]
15167
+ Parent=Opera 11.00
15168
+ Platform="Win2000"
15169
+ Platform_Version=5.0
15170
+
15171
+ [Mozilla/?.*(*Opera/11.*Windows NT 5.1*)*]
15172
+ Parent=Opera 11.00
15173
+ Platform="WinXP"
15174
+ Platform_Version=5.1
15175
+
15176
+ [Mozilla/?.*(*Opera/11.*Windows NT 5.2*)*]
15177
+ Parent=Opera 11.00
15178
+ Platform="WinXP"
15179
+ Platform_Version=5.2
15180
+
15181
+ [Mozilla/?.*(*Opera/11.*Windows NT 6.0*)*]
15182
+ Parent=Opera 11.00
15183
+ Platform="WinVista"
15184
+ Platform_Version=6.0
15185
+
15186
+ [Mozilla/?.*(*Opera/11.*Windows NT 6.1*)*]
15187
+ Parent=Opera 11.00
15188
+ Platform="Win7"
15189
+ Platform_Version=6.1
15190
+
15191
+ [Mozilla/?.*(*SunOS*)*Opera?11.*]
15192
+ Parent=Opera 11.00
15193
+ Platform="SunOS"
15194
+ Win32=false
15195
 
15196
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?11.*]
15197
+ Parent=Opera 11.00
15198
+ Platform="WinME"
15199
+
15200
+ [Mozilla/?.*(*Windows 2000*)*Opera?11.*]
15201
+ Parent=Opera 11.00
15202
+ Platform="Win2000"
15203
+
15204
+ [Mozilla/?.*(*Windows 95*)*Opera?11.*]
15205
+ Parent=Opera 11.00
15206
+ Platform="Win95"
15207
+ Platform_Version=95
15208
+
15209
+ [Mozilla/?.*(*Windows 98*)*Opera?11.*]
15210
+ Parent=Opera 11.00
15211
+ Platform="Win98"
15212
+ Platform_Version=98
15213
+
15214
+ [Mozilla/?.*(*Windows ME*)*Opera?11.*]
15215
+ Parent=Opera 11.00
15216
+ Platform="WinME"
15217
+
15218
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?11.*]
15219
+ Parent=Opera 11.00
15220
+ Platform="WinNT"
15221
+ Platform_Version=4.0
15222
+
15223
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?11.*]
15224
+ Parent=Opera 11.00
15225
+ Platform="Win2000"
15226
+ Platform_Version=5.0
15227
+
15228
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?11.*]
15229
+ Parent=Opera 11.00
15230
+ Platform="WinXP"
15231
+ Platform_Version=5.1
15232
+
15233
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?11.*]
15234
+ Parent=Opera 11.00
15235
+ Platform="WinXP"
15236
+ Platform_Version=5.2
15237
+
15238
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?11.*]
15239
+ Parent=Opera 11.00
15240
+ Platform="WinVista"
15241
+ Platform_Version=6.0
15242
+
15243
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?11.*]
15244
+ Parent=Opera 11.00
15245
+ Platform="Win7"
15246
+ Platform_Version=6.1
15247
+
15248
+ [Opera/11.*(*FreeBSD*)*]
15249
+ Parent=Opera 11.00
15250
+ Platform="FreeBSD"
15251
+ Win32=false
15252
 
15253
+ [Opera/11.*(*Linux*)*]
15254
+ Parent=Opera 11.00
15255
+ Platform="Linux"
15256
+ Win32=false
15257
 
15258
+ [Opera/11.*(*Mac OS X*)*]
15259
+ Parent=Opera 11.00
15260
+ Platform="MacOSX"
15261
+ Win32=false
15262
 
15263
+ [Opera/11.*(*SunOS*)*]
15264
+ Parent=Opera 11.00
15265
+ Platform="SunOS"
15266
+ Win32=false
15267
 
15268
+ [Opera/11.*(*Win 9x 4.90*)*]
15269
+ Parent=Opera 11.00
15270
+ Platform="WinME"
15271
+
15272
+ [Opera/11.*(*Windows 2000*)*]
15273
+ Parent=Opera 11.00
15274
+ Platform="Win2000"
15275
+
15276
+ [Opera/11.*(*Windows 95*)*]
15277
+ Parent=Opera 11.00
15278
+ Platform="Win95"
15279
+ Platform_Version=95
15280
+
15281
+ [Opera/11.*(*Windows 98*)*]
15282
+ Parent=Opera 11.00
15283
+ Platform="Win98"
15284
+ Platform_Version=98
15285
+
15286
+ [Opera/11.*(*Windows ME*)*]
15287
+ Parent=Opera 11.00
15288
+ Platform="WinME"
15289
+
15290
+ [Opera/11.*(*Windows NT 4.0*)*]
15291
+ Parent=Opera 11.00
15292
+ Platform="WinNT"
15293
+ Platform_Version=4.0
15294
+
15295
+ [Opera/11.*(*Windows NT 5.0*)*]
15296
+ Parent=Opera 11.00
15297
+ Platform="Win2000"
15298
+ Platform_Version=5.0
15299
+
15300
+ [Opera/11.*(*Windows NT 5.1*)*]
15301
+ Parent=Opera 11.00
15302
+ Platform="WinXP"
15303
+ Platform_Version=5.1
15304
+
15305
+ [Opera/11.*(*Windows NT 5.2*)*]
15306
+ Parent=Opera 11.00
15307
+ Platform="WinXP"
15308
+ Platform_Version=5.2
15309
+
15310
+ [Opera/11.*(*Windows NT 6.0*)*]
15311
+ Parent=Opera 11.00
15312
+ Platform="WinVista"
15313
+ Platform_Version=6.0
15314
+
15315
+ [Opera/11.*(*Windows NT 6.1*)*]
15316
+ Parent=Opera 11.00
15317
+ Platform="Win7"
15318
+ Platform_Version=6.1
15319
+
15320
+ [Opera/9.80*(*FreeBSD*)*Version/11.*]
15321
+ Parent=Opera 11.00
15322
+ Platform="FreeBSD"
15323
+ Win32=false
15324
 
15325
+ [Opera/9.80*(*Linux*)*Version/11.*]
15326
+ Parent=Opera 11.00
15327
+ Platform="Linux"
15328
+ Win32=false
15329
 
15330
+ [Opera/9.80*(*Mac OS X*)*Version/11.*]
15331
+ Parent=Opera 11.00
15332
+ Platform="MacOSX"
15333
+ Win32=false
15334
 
15335
+ [Opera/9.80*(*SunOS*)*Version/11.*]
15336
+ Parent=Opera 11.00
15337
+ Platform="SunOS"
15338
+
15339
+ [Opera/9.80*(*Win 9x 4.90*)*Version/11.*]
15340
+ Parent=Opera 11.00
15341
+ Platform="WinME"
15342
+
15343
+ [Opera/9.80*(*Windows 2000*)*Version/11.*]
15344
+ Parent=Opera 11.00
15345
+ Platform="Win2000"
15346
+
15347
+ [Opera/9.80*(*Windows 95*)*Version/11.*]
15348
+ Parent=Opera 11.00
15349
+ Platform="Win95"
15350
+ Platform_Version=95
15351
+
15352
+ [Opera/9.80*(*Windows 98*)*Version/11.*]
15353
+ Parent=Opera 11.00
15354
+ Platform="Win98"
15355
+ Platform_Version=98
15356
+
15357
+ [Opera/9.80*(*Windows ME*)*Version/11.*]
15358
+ Parent=Opera 11.00
15359
+ Platform="WinME"
15360
+
15361
+ [Opera/9.80*(*Windows NT 4.0*)*Version/11.*]
15362
+ Parent=Opera 11.00
15363
+ Platform="WinNT"
15364
+ Platform_Version=4.0
15365
+
15366
+ [Opera/9.80*(*Windows NT 5.0*)*Version/11.*]
15367
+ Parent=Opera 11.00
15368
+ Platform="Win2000"
15369
+ Platform_Version=5.0
15370
+
15371
+ [Opera/9.80*(*Windows NT 5.1*)*Version/11.*]
15372
+ Parent=Opera 11.00
15373
+ Platform="WinXP"
15374
+ Platform_Version=5.1
15375
+
15376
+ [Opera/9.80*(*Windows NT 5.2*)*Version/11.*]
15377
+ Parent=Opera 11.00
15378
+ Platform="WinXP"
15379
+ Platform_Version=5.2
15380
+
15381
+ [Opera/9.80*(*Windows NT 6.0*)*Version/11.*]
15382
+ Parent=Opera 11.00
15383
+ Platform="WinVista"
15384
+ Platform_Version=6.0
15385
+
15386
+ [Opera/9.80*(*Windows NT 6.1*)*Version/11.*]
15387
+ Parent=Opera 11.00
15388
+ Platform="Win7"
15389
+ Platform_Version=6.1
15390
+
15391
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.10
15392
+
15393
+ [Opera 11.10]
15394
+ Parent=DefaultProperties
15395
+ Comment="Opera 11.10"
15396
+ Browser="Opera"
15397
+ Version=11.10
15398
+ MajorVer=11
15399
+ MinorVer=10
15400
  Win32=true
15401
+ Frames=true
15402
+ IFrames=true
15403
+ Tables=true
15404
+ Cookies=true
15405
+ JavaScript=true
15406
+ JavaApplets=true
15407
+ CssVersion=3
15408
 
15409
+ [Mozilla/?.*(*FreeBSD*)*Opera?11.1*]
15410
+ Parent=Opera 11.10
15411
+ Platform="FreeBSD"
15412
+ Win32=false
15413
 
15414
+ [Mozilla/?.*(*Linux*)*Opera?11.1*]
15415
+ Parent=Opera 11.10
15416
+ Platform="Linux"
15417
+ Win32=false
15418
 
15419
+ [Mozilla/?.*(*Mac OS X*)*Opera?11.1*]
15420
+ Parent=Opera 11.10
15421
+ Platform="MacOSX"
15422
+ Win32=false
15423
 
15424
+ [Mozilla/?.*(*Opera/11.1*FreeBSD*)*]
15425
+ Parent=Opera 11.10
15426
+ Platform="FreeBSD"
15427
+ Win32=false
15428
 
15429
+ [Mozilla/?.*(*Opera/11.1*Linux*)*]
15430
+ Parent=Opera 11.10
15431
+ Platform="Linux"
15432
+ Win32=false
15433
 
15434
+ [Mozilla/?.*(*Opera/11.1*Mac OS X*)*]
15435
+ Parent=Opera 11.10
15436
+ Platform="MacOSX"
15437
+ Win32=false
15438
 
15439
+ [Mozilla/?.*(*Opera/11.1*SunOS*)*]
15440
+ Parent=Opera 11.10
15441
+ Platform="SunOS"
15442
+ Win32=false
15443
 
15444
+ [Mozilla/?.*(*Opera/11.1*Win 9x 4.90*)*]
15445
+ Parent=Opera 11.10
15446
+ Platform="WinME"
15447
+
15448
+ [Mozilla/?.*(*Opera/11.1*Windows 2000*)*]
15449
+ Parent=Opera 11.10
15450
+ Platform="Win2000"
15451
+
15452
+ [Mozilla/?.*(*Opera/11.1*Windows 95*)*]
15453
+ Parent=Opera 11.10
15454
+ Platform="Win95"
15455
+ Platform_Version=95
15456
+
15457
+ [Mozilla/?.*(*Opera/11.1*Windows 98*)*]
15458
+ Parent=Opera 11.10
15459
+ Platform="Win98"
15460
+ Platform_Version=98
15461
+
15462
+ [Mozilla/?.*(*Opera/11.1*Windows ME*)*]
15463
+ Parent=Opera 11.10
15464
+
15465
+ [Mozilla/?.*(*Opera/11.1*Windows NT 4.0*)*]
15466
+ Parent=Opera 11.10
15467
+ Platform="WinNT"
15468
+ Platform_Version=4.0
15469
+
15470
+ [Mozilla/?.*(*Opera/11.1*Windows NT 5.0*)*]
15471
+ Parent=Opera 11.10
15472
+ Platform="Win2000"
15473
+ Platform_Version=5.0
15474
+
15475
+ [Mozilla/?.*(*Opera/11.1*Windows NT 5.1*)*]
15476
+ Parent=Opera 11.10
15477
+ Platform="WinXP"
15478
+ Platform_Version=5.1
15479
+
15480
+ [Mozilla/?.*(*Opera/11.1*Windows NT 5.2*)*]
15481
+ Parent=Opera 11.10
15482
+ Platform="WinXP"
15483
+ Platform_Version=5.2
15484
+
15485
+ [Mozilla/?.*(*Opera/11.1*Windows NT 6.0*)*]
15486
+ Parent=Opera 11.10
15487
+ Platform="WinVista"
15488
+ Platform_Version=6.0
15489
+
15490
+ [Mozilla/?.*(*Opera/11.1*Windows NT 6.1*)*]
15491
+ Parent=Opera 11.10
15492
+ Platform="Win7"
15493
+ Platform_Version=6.1
15494
+
15495
+ [Mozilla/?.*(*SunOS*)*Opera?11.1*]
15496
+ Parent=Opera 11.10
15497
+ Platform="SunOS"
15498
+ Win32=false
15499
 
15500
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?11.1*]
15501
+ Parent=Opera 11.10
15502
+ Platform="WinME"
15503
+
15504
+ [Mozilla/?.*(*Windows 2000*)*Opera?11.1*]
15505
+ Parent=Opera 11.10
15506
+ Platform="Win2000"
15507
+
15508
+ [Mozilla/?.*(*Windows 95*)*Opera?11.1*]
15509
+ Parent=Opera 11.10
15510
+ Platform="Win95"
15511
+ Platform_Version=95
15512
+
15513
+ [Mozilla/?.*(*Windows 98*)*Opera?11.1*]
15514
+ Parent=Opera 11.10
15515
+ Platform="Win98"
15516
+ Platform_Version=98
15517
+
15518
+ [Mozilla/?.*(*Windows ME*)*Opera?11.1*]
15519
+ Parent=Opera 11.10
15520
+ Platform="WinME"
15521
+
15522
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?11.1*]
15523
+ Parent=Opera 11.10
15524
+ Platform="WinNT"
15525
+ Platform_Version=4.0
15526
+
15527
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?11.1*]
15528
+ Parent=Opera 11.10
15529
+ Platform="Win2000"
15530
+ Platform_Version=5.0
15531
+
15532
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?11.1*]
15533
+ Parent=Opera 11.10
15534
+ Platform="WinXP"
15535
+ Platform_Version=5.1
15536
+
15537
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?11.1*]
15538
+ Parent=Opera 11.10
15539
+ Platform="WinXP"
15540
+ Platform_Version=5.2
15541
+
15542
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?11.1*]
15543
+ Parent=Opera 11.10
15544
+ Platform="WinVista"
15545
+ Platform_Version=6.0
15546
+
15547
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?11.1*]
15548
+ Parent=Opera 11.10
15549
+ Platform="Win7"
15550
+ Platform_Version=6.1
15551
+
15552
+ [Opera/11.1*(*FreeBSD*)*]
15553
+ Parent=Opera 11.10
15554
+ Platform="FreeBSD"
15555
+ Win32=false
15556
 
15557
+ [Opera/11.1*(*Linux*)*]
15558
+ Parent=Opera 11.10
15559
+ Platform="Linux"
15560
+ Win32=false
15561
 
15562
+ [Opera/11.1*(*Mac OS X*)*]
15563
+ Parent=Opera 11.10
15564
+ Platform="MacOSX"
15565
+ Win32=false
15566
 
15567
+ [Opera/11.1*(*SunOS*)*]
15568
+ Parent=Opera 11.10
15569
+ Platform="SunOS"
15570
+ Win32=false
15571
 
15572
+ [Opera/11.1*(*Win 9x 4.90*)*]
15573
+ Parent=Opera 11.10
15574
+ Platform="WinME"
15575
+
15576
+ [Opera/11.1*(*Windows 2000*)*]
15577
+ Parent=Opera 11.10
15578
+ Platform="Win2000"
15579
+
15580
+ [Opera/11.1*(*Windows 95*)*]
15581
+ Parent=Opera 11.10
15582
+ Platform="Win95"
15583
+ Platform_Version=95
15584
+
15585
+ [Opera/11.1*(*Windows 98*)*]
15586
+ Parent=Opera 11.10
15587
+ Platform="Win98"
15588
+ Platform_Version=98
15589
+
15590
+ [Opera/11.1*(*Windows ME*)*]
15591
+ Parent=Opera 11.10
15592
+ Platform="WinME"
15593
+
15594
+ [Opera/11.1*(*Windows NT 4.0*)*]
15595
+ Parent=Opera 11.10
15596
+ Platform="WinNT"
15597
+ Platform_Version=4.0
15598
+
15599
+ [Opera/11.1*(*Windows NT 5.0*)*]
15600
+ Parent=Opera 11.10
15601
+ Platform="Win2000"
15602
+ Platform_Version=5.0
15603
+
15604
+ [Opera/11.1*(*Windows NT 5.1*)*]
15605
+ Parent=Opera 11.10
15606
+ Platform="WinXP"
15607
+ Platform_Version=5.1
15608
+
15609
+ [Opera/11.1*(*Windows NT 5.2*)*]
15610
+ Parent=Opera 11.10
15611
+ Platform="WinXP"
15612
+ Platform_Version=5.2
15613
+
15614
+ [Opera/11.1*(*Windows NT 6.0*)*]
15615
+ Parent=Opera 11.10
15616
+ Platform="WinVista"
15617
+ Platform_Version=6.0
15618
+
15619
+ [Opera/11.1*(*Windows NT 6.1*)*]
15620
+ Parent=Opera 11.10
15621
+ Platform="Win7"
15622
+ Platform_Version=6.1
15623
+
15624
+ [Opera/9.80*(*FreeBSD*)*Version/11.1*]
15625
+ Parent=Opera 11.10
15626
+ Platform="FreeBSD"
15627
+ Win32=false
15628
 
15629
+ [Opera/9.80*(*Linux*)*Version/11.1*]
15630
+ Parent=Opera 11.10
15631
+ Platform="Linux"
15632
+ Win32=false
15633
 
15634
+ [Opera/9.80*(*Mac OS X*)*Version/11.1*]
15635
+ Parent=Opera 11.10
15636
+ Platform="MacOSX"
15637
+ Win32=false
15638
 
15639
+ [Opera/9.80*(*SunOS*)*Version/11.1*]
15640
+ Parent=Opera 11.10
15641
+ Platform="SunOS"
15642
+
15643
+ [Opera/9.80*(*Win 9x 4.90*)*Version/11.1*]
15644
+ Parent=Opera 11.10
15645
+ Platform="WinME"
15646
+
15647
+ [Opera/9.80*(*Windows 2000*)*Version/11.1*]
15648
+ Parent=Opera 11.10
15649
+ Platform="Win2000"
15650
+
15651
+ [Opera/9.80*(*Windows 95*)*Version/11.1*]
15652
+ Parent=Opera 11.10
15653
+ Platform="Win95"
15654
+ Platform_Version=95
15655
+
15656
+ [Opera/9.80*(*Windows 98*)*Version/11.1*]
15657
+ Parent=Opera 11.10
15658
+ Platform="Win98"
15659
+ Platform_Version=98
15660
+
15661
+ [Opera/9.80*(*Windows ME*)*Version/11.1*]
15662
+ Parent=Opera 11.10
15663
+ Platform="WinME"
15664
+
15665
+ [Opera/9.80*(*Windows NT 4.0*)*Version/11.1*]
15666
+ Parent=Opera 11.10
15667
+ Platform="WinNT"
15668
+ Platform_Version=4.0
15669
+
15670
+ [Opera/9.80*(*Windows NT 5.0*)*Version/11.1*]
15671
+ Parent=Opera 11.10
15672
+ Platform="Win2000"
15673
+ Platform_Version=5.0
15674
+
15675
+ [Opera/9.80*(*Windows NT 5.1*)*Version/11.1*]
15676
+ Parent=Opera 11.10
15677
+ Platform="WinXP"
15678
+ Platform_Version=5.1
15679
+
15680
+ [Opera/9.80*(*Windows NT 5.2*)*Version/11.1*]
15681
+ Parent=Opera 11.10
15682
+ Platform="WinXP"
15683
+ Platform_Version=5.2
15684
+
15685
+ [Opera/9.80*(*Windows NT 6.0*)*Version/11.1*]
15686
+ Parent=Opera 11.10
15687
+ Platform="WinVista"
15688
+ Platform_Version=6.0
15689
+
15690
+ [Opera/9.80*(*Windows NT 6.1*)*Version/11.1*]
15691
+ Parent=Opera 11.10
15692
+ Platform="Win7"
15693
+ Platform_Version=6.1
15694
+
15695
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.50
15696
+
15697
+ [Opera 11.50]
15698
  Parent=DefaultProperties
15699
+ Comment="Opera 11.50"
15700
  Browser="Opera"
15701
+ Version=11.50
15702
+ MajorVer=11
15703
+ MinorVer=50
15704
+ Win32=true
15705
  Frames=true
15706
  IFrames=true
15707
  Tables=true
15708
  Cookies=true
 
 
15709
  JavaScript=true
15710
+ JavaApplets=true
15711
+ CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15712
 
15713
+ [Mozilla/?.*(*FreeBSD*)*Opera?11.5*]
15714
+ Parent=Opera 11.50
15715
+ Platform="FreeBSD"
15716
+ Win32=false
15717
 
15718
+ [Mozilla/?.*(*Linux*)*Opera?11.5*]
15719
+ Parent=Opera 11.50
15720
+ Platform="Linux"
15721
+ Win32=false
15722
 
15723
+ [Mozilla/?.*(*Mac OS X*)*Opera?11.5*]
15724
+ Parent=Opera 11.50
15725
+ Platform="MacOSX"
15726
+ Win32=false
15727
 
15728
+ [Mozilla/?.*(*Opera/11.5*FreeBSD*)*]
15729
+ Parent=Opera 11.50
15730
+ Platform="FreeBSD"
15731
+ Win32=false
15732
 
15733
+ [Mozilla/?.*(*Opera/11.5*Linux*)*]
15734
+ Parent=Opera 11.50
15735
+ Platform="Linux"
15736
+ Win32=false
15737
 
15738
+ [Mozilla/?.*(*Opera/11.5*Mac OS X*)*]
15739
+ Parent=Opera 11.50
15740
+ Platform="MacOSX"
15741
+ Win32=false
15742
 
15743
+ [Mozilla/?.*(*Opera/11.5*SunOS*)*]
15744
+ Parent=Opera 11.50
15745
+ Platform="SunOS"
15746
+ Win32=false
15747
 
15748
+ [Mozilla/?.*(*Opera/11.5*Win 9x 4.90*)*]
15749
+ Parent=Opera 11.50
15750
+ Platform="WinME"
15751
+
15752
+ [Mozilla/?.*(*Opera/11.5*Windows 2000*)*]
15753
+ Parent=Opera 11.50
15754
+ Platform="Win2000"
15755
+
15756
+ [Mozilla/?.*(*Opera/11.5*Windows 95*)*]
15757
+ Parent=Opera 11.50
15758
+ Platform="Win95"
15759
+ Platform_Version=95
15760
+
15761
+ [Mozilla/?.*(*Opera/11.5*Windows 98*)*]
15762
+ Parent=Opera 11.50
15763
+ Platform="Win98"
15764
+ Platform_Version=98
15765
+
15766
+ [Mozilla/?.*(*Opera/11.5*Windows ME*)*]
15767
+ Parent=Opera 11.50
15768
+
15769
+ [Mozilla/?.*(*Opera/11.5*Windows NT 4.0*)*]
15770
+ Parent=Opera 11.50
15771
+ Platform="WinNT"
15772
+ Platform_Version=4.0
15773
+
15774
+ [Mozilla/?.*(*Opera/11.5*Windows NT 5.0*)*]
15775
+ Parent=Opera 11.50
15776
+ Platform="Win2000"
15777
+ Platform_Version=5.0
15778
+
15779
+ [Mozilla/?.*(*Opera/11.5*Windows NT 5.1*)*]
15780
+ Parent=Opera 11.50
15781
+ Platform="WinXP"
15782
+ Platform_Version=5.1
15783
+
15784
+ [Mozilla/?.*(*Opera/11.5*Windows NT 5.2*)*]
15785
+ Parent=Opera 11.50
15786
+ Platform="WinXP"
15787
+ Platform_Version=5.2
15788
+
15789
+ [Mozilla/?.*(*Opera/11.5*Windows NT 6.0*)*]
15790
+ Parent=Opera 11.50
15791
+ Platform="WinVista"
15792
+ Platform_Version=6.0
15793
+
15794
+ [Mozilla/?.*(*Opera/11.5*Windows NT 6.1*)*]
15795
+ Parent=Opera 11.50
15796
+ Platform="Win7"
15797
+ Platform_Version=6.1
15798
+
15799
+ [Mozilla/?.*(*SunOS*)*Opera?11.5*]
15800
+ Parent=Opera 11.50
15801
+ Platform="SunOS"
15802
+ Win32=false
15803
 
15804
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?11.5*]
15805
+ Parent=Opera 11.50
15806
+ Platform="WinME"
15807
+
15808
+ [Mozilla/?.*(*Windows 2000*)*Opera?11.5*]
15809
+ Parent=Opera 11.50
15810
+ Platform="Win2000"
15811
+
15812
+ [Mozilla/?.*(*Windows 95*)*Opera?11.5*]
15813
+ Parent=Opera 11.50
15814
+ Platform="Win95"
15815
+ Platform_Version=95
15816
+
15817
+ [Mozilla/?.*(*Windows 98*)*Opera?11.5*]
15818
+ Parent=Opera 11.50
15819
+ Platform="Win98"
15820
+ Platform_Version=98
15821
+
15822
+ [Mozilla/?.*(*Windows ME*)*Opera?11.5*]
15823
+ Parent=Opera 11.50
15824
+ Platform="WinME"
15825
+
15826
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?11.5*]
15827
+ Parent=Opera 11.50
15828
+ Platform="WinNT"
15829
+ Platform_Version=4.0
15830
+
15831
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?11.5*]
15832
+ Parent=Opera 11.50
15833
+ Platform="Win2000"
15834
+ Platform_Version=5.0
15835
+
15836
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?11.5*]
15837
+ Parent=Opera 11.50
15838
+ Platform="WinXP"
15839
+ Platform_Version=5.1
15840
+
15841
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?11.5*]
15842
+ Parent=Opera 11.50
15843
+ Platform="WinXP"
15844
+ Platform_Version=5.2
15845
+
15846
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?11.5*]
15847
+ Parent=Opera 11.50
15848
+ Platform="WinVista"
15849
+ Platform_Version=6.0
15850
+
15851
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?11.5*]
15852
+ Parent=Opera 11.50
15853
+ Platform="Win7"
15854
+ Platform_Version=6.1
15855
+
15856
+ [Opera/11.5*(*FreeBSD*)*]
15857
+ Parent=Opera 11.50
15858
+ Platform="FreeBSD"
15859
+ Win32=false
15860
 
15861
+ [Opera/11.5*(*Linux*)*]
15862
+ Parent=Opera 11.50
15863
+ Platform="Linux"
15864
+ Win32=false
15865
 
15866
+ [Opera/11.5*(*Mac OS X*)*]
15867
+ Parent=Opera 11.50
15868
+ Platform="MacOSX"
15869
+ Win32=false
15870
 
15871
+ [Opera/11.5*(*SunOS*)*]
15872
+ Parent=Opera 11.50
15873
+ Platform="SunOS"
15874
+ Win32=false
15875
 
15876
+ [Opera/11.5*(*Win 9x 4.90*)*]
15877
+ Parent=Opera 11.50
15878
+ Platform="WinME"
15879
+
15880
+ [Opera/11.5*(*Windows 2000*)*]
15881
+ Parent=Opera 11.50
15882
+ Platform="Win2000"
15883
+
15884
+ [Opera/11.5*(*Windows 95*)*]
15885
+ Parent=Opera 11.50
15886
+ Platform="Win95"
15887
+ Platform_Version=95
15888
+
15889
+ [Opera/11.5*(*Windows 98*)*]
15890
+ Parent=Opera 11.50
15891
+ Platform="Win98"
15892
+ Platform_Version=98
15893
+
15894
+ [Opera/11.5*(*Windows ME*)*]
15895
+ Parent=Opera 11.50
15896
+ Platform="WinME"
15897
+
15898
+ [Opera/11.5*(*Windows NT 4.0*)*]
15899
+ Parent=Opera 11.50
15900
+ Platform="WinNT"
15901
+ Platform_Version=4.0
15902
+
15903
+ [Opera/11.5*(*Windows NT 5.0*)*]
15904
+ Parent=Opera 11.50
15905
+ Platform="Win2000"
15906
+ Platform_Version=5.0
15907
+
15908
+ [Opera/11.5*(*Windows NT 5.1*)*]
15909
+ Parent=Opera 11.50
15910
+ Platform="WinXP"
15911
+ Platform_Version=5.1
15912
+
15913
+ [Opera/11.5*(*Windows NT 5.2*)*]
15914
+ Parent=Opera 11.50
15915
+ Platform="WinXP"
15916
+ Platform_Version=5.2
15917
+
15918
+ [Opera/11.5*(*Windows NT 6.0*)*]
15919
+ Parent=Opera 11.50
15920
+ Platform="WinVista"
15921
+ Platform_Version=6.0
15922
+
15923
+ [Opera/11.5*(*Windows NT 6.1*)*]
15924
+ Parent=Opera 11.50
15925
+ Platform="Win7"
15926
+ Platform_Version=6.1
15927
+
15928
+ [Opera/9.80*(*FreeBSD*)*Version/11.5*]
15929
+ Parent=Opera 11.50
15930
+ Platform="FreeBSD"
15931
+ Win32=false
15932
 
15933
+ [Opera/9.80*(*Linux*)*Version/11.5*]
15934
+ Parent=Opera 11.50
15935
+ Platform="Linux"
15936
+ Win32=false
15937
 
15938
+ [Opera/9.80*(*Mac OS X*)*Version/11.5*]
15939
+ Parent=Opera 11.50
15940
+ Platform="MacOSX"
15941
+ Win32=false
15942
 
15943
+ [Opera/9.80*(*SunOS*)*Version/11.5*]
15944
+ Parent=Opera 11.50
15945
+ Platform="SunOS"
15946
+
15947
+ [Opera/9.80*(*Win 9x 4.90*)*Version/11.5*]
15948
+ Parent=Opera 11.50
15949
+ Platform="WinME"
15950
+
15951
+ [Opera/9.80*(*Windows 2000*)*Version/11.5*]
15952
+ Parent=Opera 11.50
15953
+ Platform="Win2000"
15954
+
15955
+ [Opera/9.80*(*Windows 95*)*Version/11.5*]
15956
+ Parent=Opera 11.50
15957
+ Platform="Win95"
15958
+ Platform_Version=95
15959
+
15960
+ [Opera/9.80*(*Windows 98*)*Version/11.5*]
15961
+ Parent=Opera 11.50
15962
+ Platform="Win98"
15963
+ Platform_Version=98
15964
+
15965
+ [Opera/9.80*(*Windows ME*)*Version/11.5*]
15966
+ Parent=Opera 11.50
15967
+ Platform="WinME"
15968
+
15969
+ [Opera/9.80*(*Windows NT 4.0*)*Version/11.5*]
15970
+ Parent=Opera 11.50
15971
+ Platform="WinNT"
15972
+ Platform_Version=4.0
15973
+
15974
+ [Opera/9.80*(*Windows NT 5.0*)*Version/11.5*]
15975
+ Parent=Opera 11.50
15976
+ Platform="Win2000"
15977
+ Platform_Version=5.0
15978
+
15979
+ [Opera/9.80*(*Windows NT 5.1*)*Version/11.5*]
15980
+ Parent=Opera 11.50
15981
+ Platform="WinXP"
15982
+ Platform_Version=5.1
15983
+
15984
+ [Opera/9.80*(*Windows NT 5.2*)*Version/11.5*]
15985
+ Parent=Opera 11.50
15986
+ Platform="WinXP"
15987
+ Platform_Version=5.2
15988
+
15989
+ [Opera/9.80*(*Windows NT 6.0*)*Version/11.5*]
15990
+ Parent=Opera 11.50
15991
+ Platform="WinVista"
15992
+ Platform_Version=6.0
15993
+
15994
+ [Opera/9.80*(*Windows NT 6.1*)*Version/11.5*]
15995
+ Parent=Opera 11.50
15996
+ Platform="Win7"
15997
+ Platform_Version=6.1
15998
+
15999
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.60
16000
+
16001
+ [Opera 11.60]
16002
+ Parent=DefaultProperties
16003
+ Comment="Opera 11.60"
16004
+ Browser="Opera"
16005
+ Version=11.60
16006
+ MajorVer=11
16007
+ MinorVer=60
16008
  Win32=true
16009
+ Frames=true
16010
+ IFrames=true
16011
+ Tables=true
16012
+ Cookies=true
16013
+ JavaScript=true
16014
+ JavaApplets=true
16015
+ CssVersion=3
16016
 
16017
+ [Mozilla/?.*(*FreeBSD*)*Opera?11.6*]
16018
+ Parent=Opera 11.60
16019
+ Platform="FreeBSD"
16020
+ Win32=false
16021
 
16022
+ [Mozilla/?.*(*Linux*)*Opera?11.6*]
16023
+ Parent=Opera 11.60
16024
+ Platform="Linux"
16025
+ Win32=false
16026
 
16027
+ [Mozilla/?.*(*Mac OS X*)*Opera?11.6*]
16028
+ Parent=Opera 11.60
16029
+ Platform="MacOSX"
16030
+ Win32=false
16031
 
16032
+ [Mozilla/?.*(*Opera/11.6*FreeBSD*)*]
16033
+ Parent=Opera 11.60
16034
+ Platform="FreeBSD"
16035
+ Win32=false
16036
 
16037
+ [Mozilla/?.*(*Opera/11.6*Linux*)*]
16038
+ Parent=Opera 11.60
16039
+ Platform="Linux"
16040
+ Win32=false
16041
 
16042
+ [Mozilla/?.*(*Opera/11.6*Mac OS X*)*]
16043
+ Parent=Opera 11.60
16044
+ Platform="MacOSX"
16045
+ Win32=false
16046
 
16047
+ [Mozilla/?.*(*Opera/11.6*SunOS*)*]
16048
+ Parent=Opera 11.60
16049
+ Platform="SunOS"
16050
+ Win32=false
16051
 
16052
+ [Mozilla/?.*(*Opera/11.6*Win 9x 4.90*)*]
16053
+ Parent=Opera 11.60
16054
+ Platform="WinME"
16055
+
16056
+ [Mozilla/?.*(*Opera/11.6*Windows 2000*)*]
16057
+ Parent=Opera 11.60
16058
+ Platform="Win2000"
16059
+
16060
+ [Mozilla/?.*(*Opera/11.6*Windows 95*)*]
16061
+ Parent=Opera 11.60
16062
+ Platform="Win95"
16063
+ Platform_Version=95
16064
+
16065
+ [Mozilla/?.*(*Opera/11.6*Windows 98*)*]
16066
+ Parent=Opera 11.60
16067
+ Platform="Win98"
16068
+ Platform_Version=98
16069
+
16070
+ [Mozilla/?.*(*Opera/11.6*Windows ME*)*]
16071
+ Parent=Opera 11.60
16072
+
16073
+ [Mozilla/?.*(*Opera/11.6*Windows NT 4.0*)*]
16074
+ Parent=Opera 11.60
16075
+ Platform="WinNT"
16076
+ Platform_Version=4.0
16077
+
16078
+ [Mozilla/?.*(*Opera/11.6*Windows NT 5.0*)*]
16079
+ Parent=Opera 11.60
16080
+ Platform="Win2000"
16081
+ Platform_Version=5.0
16082
+
16083
+ [Mozilla/?.*(*Opera/11.6*Windows NT 5.1*)*]
16084
+ Parent=Opera 11.60
16085
+ Platform="WinXP"
16086
+ Platform_Version=5.1
16087
+
16088
+ [Mozilla/?.*(*Opera/11.6*Windows NT 5.2*)*]
16089
+ Parent=Opera 11.60
16090
+ Platform="WinXP"
16091
+ Platform_Version=5.2
16092
+
16093
+ [Mozilla/?.*(*Opera/11.6*Windows NT 6.0*)*]
16094
+ Parent=Opera 11.60
16095
+ Platform="WinVista"
16096
+ Platform_Version=6.0
16097
+
16098
+ [Mozilla/?.*(*Opera/11.6*Windows NT 6.1*)*]
16099
+ Parent=Opera 11.60
16100
+ Platform="Win7"
16101
+ Platform_Version=6.1
16102
+
16103
+ [Mozilla/?.*(*SunOS*)*Opera?11.6*]
16104
+ Parent=Opera 11.60
16105
+ Platform="SunOS"
16106
+ Win32=false
16107
 
16108
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?11.6*]
16109
+ Parent=Opera 11.60
16110
+ Platform="WinME"
16111
+
16112
+ [Mozilla/?.*(*Windows 2000*)*Opera?11.6*]
16113
+ Parent=Opera 11.60
16114
+ Platform="Win2000"
16115
+
16116
+ [Mozilla/?.*(*Windows 95*)*Opera?11.6*]
16117
+ Parent=Opera 11.60
16118
+ Platform="Win95"
16119
+ Platform_Version=95
16120
+
16121
+ [Mozilla/?.*(*Windows 98*)*Opera?11.6*]
16122
+ Parent=Opera 11.60
16123
+ Platform="Win98"
16124
+ Platform_Version=98
16125
+
16126
+ [Mozilla/?.*(*Windows ME*)*Opera?11.6*]
16127
+ Parent=Opera 11.60
16128
+ Platform="WinME"
16129
+
16130
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?11.6*]
16131
+ Parent=Opera 11.60
16132
+ Platform="WinNT"
16133
+ Platform_Version=4.0
16134
+
16135
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?11.6*]
16136
+ Parent=Opera 11.60
16137
+ Platform="Win2000"
16138
+ Platform_Version=5.0
16139
+
16140
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?11.6*]
16141
+ Parent=Opera 11.60
16142
+ Platform="WinXP"
16143
+ Platform_Version=5.1
16144
+
16145
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?11.6*]
16146
+ Parent=Opera 11.60
16147
+ Platform="WinXP"
16148
+ Platform_Version=5.2
16149
+
16150
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?11.6*]
16151
+ Parent=Opera 11.60
16152
+ Platform="WinVista"
16153
+ Platform_Version=6.0
16154
+
16155
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?11.6*]
16156
+ Parent=Opera 11.60
16157
+ Platform="Win7"
16158
+ Platform_Version=6.1
16159
+
16160
+ [Opera/11.6*(*FreeBSD*)*]
16161
+ Parent=Opera 11.60
16162
+ Platform="FreeBSD"
16163
+ Win32=false
16164
 
16165
+ [Opera/11.6*(*Linux*)*]
16166
+ Parent=Opera 11.60
16167
+ Platform="Linux"
16168
+ Win32=false
16169
 
16170
+ [Opera/11.6*(*Mac OS X*)*]
16171
+ Parent=Opera 11.60
16172
+ Platform="MacOSX"
16173
+ Win32=false
16174
 
16175
+ [Opera/11.6*(*SunOS*)*]
16176
+ Parent=Opera 11.60
16177
+ Platform="SunOS"
16178
+ Win32=false
16179
 
16180
+ [Opera/11.6*(*Win 9x 4.90*)*]
16181
+ Parent=Opera 11.60
16182
+ Platform="WinME"
16183
+
16184
+ [Opera/11.6*(*Windows 2000*)*]
16185
+ Parent=Opera 11.60
16186
+ Platform="Win2000"
16187
+
16188
+ [Opera/11.6*(*Windows 95*)*]
16189
+ Parent=Opera 11.60
16190
+ Platform="Win95"
16191
+ Platform_Version=95
16192
+
16193
+ [Opera/11.6*(*Windows 98*)*]
16194
+ Parent=Opera 11.60
16195
+ Platform="Win98"
16196
+ Platform_Version=98
16197
+
16198
+ [Opera/11.6*(*Windows ME*)*]
16199
+ Parent=Opera 11.60
16200
+ Platform="WinME"
16201
+
16202
+ [Opera/11.6*(*Windows NT 4.0*)*]
16203
+ Parent=Opera 11.60
16204
+ Platform="WinNT"
16205
+ Platform_Version=4.0
16206
+
16207
+ [Opera/11.6*(*Windows NT 5.0*)*]
16208
+ Parent=Opera 11.60
16209
+ Platform="Win2000"
16210
+ Platform_Version=5.0
16211
+
16212
+ [Opera/11.6*(*Windows NT 5.1*)*]
16213
+ Parent=Opera 11.60
16214
+ Platform="WinXP"
16215
+ Platform_Version=5.1
16216
+
16217
+ [Opera/11.6*(*Windows NT 5.2*)*]
16218
+ Parent=Opera 11.60
16219
+ Platform="WinXP"
16220
+ Platform_Version=5.2
16221
+
16222
+ [Opera/11.6*(*Windows NT 6.0*)*]
16223
+ Parent=Opera 11.60
16224
+ Platform="WinVista"
16225
+ Platform_Version=6.0
16226
+
16227
+ [Opera/11.6*(*Windows NT 6.1*)*]
16228
+ Parent=Opera 11.60
16229
+ Platform="Win7"
16230
+ Platform_Version=6.1
16231
+
16232
+ [Opera/9.80*(*FreeBSD*)*Version/11.6*]
16233
+ Parent=Opera 11.60
16234
+ Platform="FreeBSD"
16235
+ Win32=false
16236
 
16237
+ [Opera/9.80*(*Linux*)*Version/11.6*]
16238
+ Parent=Opera 11.60
16239
+ Platform="Linux"
16240
+ Win32=false
16241
 
16242
+ [Opera/9.80*(*Mac OS X*)*Version/11.6*]
16243
+ Parent=Opera 11.60
16244
+ Platform="MacOSX"
16245
+ Win32=false
16246
 
16247
+ [Opera/9.80*(*SunOS*)*Version/11.6*]
16248
+ Parent=Opera 11.60
16249
+ Platform="SunOS"
16250
+
16251
+ [Opera/9.80*(*Win 9x 4.90*)*Version/11.6*]
16252
+ Parent=Opera 11.60
16253
+ Platform="WinME"
16254
+
16255
+ [Opera/9.80*(*Windows 2000*)*Version/11.6*]
16256
+ Parent=Opera 11.60
16257
+ Platform="Win2000"
16258
+
16259
+ [Opera/9.80*(*Windows 95*)*Version/11.6*]
16260
+ Parent=Opera 11.60
16261
+ Platform="Win95"
16262
+ Platform_Version=95
16263
+
16264
+ [Opera/9.80*(*Windows 98*)*Version/11.6*]
16265
+ Parent=Opera 11.60
16266
+ Platform="Win98"
16267
+ Platform_Version=98
16268
+
16269
+ [Opera/9.80*(*Windows ME*)*Version/11.6*]
16270
+ Parent=Opera 11.60
16271
+ Platform="WinME"
16272
+
16273
+ [Opera/9.80*(*Windows NT 4.0*)*Version/11.6*]
16274
+ Parent=Opera 11.60
16275
+ Platform="WinNT"
16276
+ Platform_Version=4.0
16277
+
16278
+ [Opera/9.80*(*Windows NT 5.0*)*Version/11.6*]
16279
+ Parent=Opera 11.60
16280
+ Platform="Win2000"
16281
+ Platform_Version=5.0
16282
+
16283
+ [Opera/9.80*(*Windows NT 5.1*)*Version/11.6*]
16284
+ Parent=Opera 11.60
16285
+ Platform="WinXP"
16286
+ Platform_Version=5.1
16287
+
16288
+ [Opera/9.80*(*Windows NT 5.2*)*Version/11.6*]
16289
+ Parent=Opera 11.60
16290
+ Platform="WinXP"
16291
+ Platform_Version=5.2
16292
+
16293
+ [Opera/9.80*(*Windows NT 6.0*)*Version/11.6*]
16294
+ Parent=Opera 11.60
16295
+ Platform="WinVista"
16296
+ Platform_Version=6.0
16297
+
16298
+ [Opera/9.80*(*Windows NT 6.1*)*Version/11.6*]
16299
+ Parent=Opera 11.60
16300
+ Platform="Win7"
16301
+ Platform_Version=6.1
16302
+
16303
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.00
16304
+
16305
+ [Opera 12.00]
16306
  Parent=DefaultProperties
16307
+ Comment="Opera 12.00"
16308
  Browser="Opera"
16309
+ Version=12.00
16310
+ MajorVer=12
16311
+ MinorVer=0
16312
+ Beta=true
16313
+ Win32=true
16314
  Frames=true
16315
  IFrames=true
16316
  Tables=true
16317
  Cookies=true
 
 
16318
  JavaScript=true
16319
+ JavaApplets=true
16320
+ CssVersion=3
 
 
 
 
16321
 
16322
+ [Mozilla/?.*(*FreeBSD*)*Opera?12.*]
16323
+ Parent=Opera 12.00
16324
+ Platform="FreeBSD"
16325
+ Win32=false
16326
 
16327
+ [Mozilla/?.*(*Linux*)*Opera?12.*]
16328
+ Parent=Opera 12.00
16329
+ Platform="Linux"
16330
+ Win32=false
16331
 
16332
+ [Mozilla/?.*(*Mac OS X*)*Opera?12.*]
16333
+ Parent=Opera 12.00
16334
+ Platform="MacOSX"
16335
+ Win32=false
16336
 
16337
+ [Mozilla/?.*(*Opera/12.*FreeBSD*)*]
16338
+ Parent=Opera 12.00
16339
+ Platform="FreeBSD"
16340
+ Win32=false
16341
 
16342
+ [Mozilla/?.*(*Opera/12.*Linux*)*]
16343
+ Parent=Opera 12.00
16344
+ Platform="Linux"
16345
+ Win32=false
16346
 
16347
+ [Mozilla/?.*(*Opera/12.*Mac OS X*)*]
16348
+ Parent=Opera 12.00
16349
+ Platform="MacOSX"
16350
+ Win32=false
16351
 
16352
+ [Mozilla/?.*(*Opera/12.*SunOS*)*]
16353
+ Parent=Opera 12.00
16354
+ Platform="SunOS"
16355
+ Win32=false
16356
 
16357
+ [Mozilla/?.*(*Opera/12.*Win 9x 4.90*)*]
16358
+ Parent=Opera 12.00
16359
+ Platform="WinME"
16360
+
16361
+ [Mozilla/?.*(*Opera/12.*Windows 2000*)*]
16362
+ Parent=Opera 12.00
16363
+ Platform="Win2000"
16364
+
16365
+ [Mozilla/?.*(*Opera/12.*Windows 95*)*]
16366
+ Parent=Opera 12.00
16367
+ Platform="Win95"
16368
+ Platform_Version=95
16369
+
16370
+ [Mozilla/?.*(*Opera/12.*Windows 98*)*]
16371
+ Parent=Opera 12.00
16372
+ Platform="Win98"
16373
+ Platform_Version=98
16374
+
16375
+ [Mozilla/?.*(*Opera/12.*Windows ME*)*]
16376
+ Parent=Opera 12.00
16377
+
16378
+ [Mozilla/?.*(*Opera/12.*Windows NT 4.0*)*]
16379
+ Parent=Opera 12.00
16380
+ Platform="WinNT"
16381
+ Platform_Version=4.0
16382
+
16383
+ [Mozilla/?.*(*Opera/12.*Windows NT 5.0*)*]
16384
+ Parent=Opera 12.00
16385
+ Platform="Win2000"
16386
+ Platform_Version=5.0
16387
+
16388
+ [Mozilla/?.*(*Opera/12.*Windows NT 5.1*)*]
16389
+ Parent=Opera 12.00
16390
+ Platform="WinXP"
16391
+ Platform_Version=5.1
16392
+
16393
+ [Mozilla/?.*(*Opera/12.*Windows NT 5.2*)*]
16394
+ Parent=Opera 12.00
16395
+ Platform="WinXP"
16396
+ Platform_Version=5.2
16397
+
16398
+ [Mozilla/?.*(*Opera/12.*Windows NT 6.0*)*]
16399
+ Parent=Opera 12.00
16400
+ Platform="WinVista"
16401
+ Platform_Version=6.0
16402
+
16403
+ [Mozilla/?.*(*Opera/12.*Windows NT 6.1*)*]
16404
+ Parent=Opera 12.00
16405
+ Platform="Win7"
16406
+ Platform_Version=6.1
16407
+
16408
+ [Mozilla/?.*(*SunOS*)*Opera?12.*]
16409
+ Parent=Opera 12.00
16410
+ Platform="SunOS"
16411
+ Win32=false
16412
 
16413
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?12.*]
16414
+ Parent=Opera 12.00
16415
+ Platform="WinME"
16416
+
16417
+ [Mozilla/?.*(*Windows 2000*)*Opera?12.*]
16418
+ Parent=Opera 12.00
16419
+ Platform="Win2000"
16420
+
16421
+ [Mozilla/?.*(*Windows 95*)*Opera?12.*]
16422
+ Parent=Opera 12.00
16423
+ Platform="Win95"
16424
+ Platform_Version=95
16425
+
16426
+ [Mozilla/?.*(*Windows 98*)*Opera?12.*]
16427
+ Parent=Opera 12.00
16428
+ Platform="Win98"
16429
+ Platform_Version=98
16430
+
16431
+ [Mozilla/?.*(*Windows ME*)*Opera?12.*]
16432
+ Parent=Opera 12.00
16433
+ Platform="WinME"
16434
+
16435
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?12.*]
16436
+ Parent=Opera 12.00
16437
+ Platform="WinNT"
16438
+ Platform_Version=4.0
16439
+
16440
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?12.*]
16441
+ Parent=Opera 12.00
16442
+ Platform="Win2000"
16443
+ Platform_Version=5.0
16444
+
16445
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?12.*]
16446
+ Parent=Opera 12.00
16447
+ Platform="WinXP"
16448
+ Platform_Version=5.1
16449
+
16450
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?12.*]
16451
+ Parent=Opera 12.00
16452
+ Platform="WinXP"
16453
+ Platform_Version=5.2
16454
+
16455
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?12.*]
16456
+ Parent=Opera 12.00
16457
+ Platform="WinVista"
16458
+ Platform_Version=6.0
16459
+
16460
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?12.*]
16461
+ Parent=Opera 12.00
16462
+ Platform="Win7"
16463
+ Platform_Version=6.1
16464
+
16465
+ [Opera/12.*(*FreeBSD*)*]
16466
+ Parent=Opera 12.00
16467
+ Platform="FreeBSD"
16468
+ Win32=false
16469
 
16470
+ [Opera/12.*(*Linux*)*]
16471
+ Parent=Opera 12.00
16472
+ Platform="Linux"
16473
+ Win32=false
16474
 
16475
+ [Opera/12.*(*Mac OS X*)*]
16476
+ Parent=Opera 12.00
16477
+ Platform="MacOSX"
16478
+ Win32=false
16479
 
16480
+ [Opera/12.*(*SunOS*)*]
16481
+ Parent=Opera 12.00
16482
+ Platform="SunOS"
16483
+ Win32=false
16484
 
16485
+ [Opera/12.*(*Win 9x 4.90*)*]
16486
+ Parent=Opera 12.00
16487
+ Platform="WinME"
16488
+
16489
+ [Opera/12.*(*Windows 2000*)*]
16490
+ Parent=Opera 12.00
16491
+ Platform="Win2000"
16492
+
16493
+ [Opera/12.*(*Windows 95*)*]
16494
+ Parent=Opera 12.00
16495
+ Platform="Win95"
16496
+ Platform_Version=95
16497
+
16498
+ [Opera/12.*(*Windows 98*)*]
16499
+ Parent=Opera 12.00
16500
+ Platform="Win98"
16501
+ Platform_Version=98
16502
+
16503
+ [Opera/12.*(*Windows ME*)*]
16504
+ Parent=Opera 12.00
16505
+ Platform="WinME"
16506
+
16507
+ [Opera/12.*(*Windows NT 4.0*)*]
16508
+ Parent=Opera 12.00
16509
+ Platform="WinNT"
16510
+ Platform_Version=4.0
16511
+
16512
+ [Opera/12.*(*Windows NT 5.0*)*]
16513
+ Parent=Opera 12.00
16514
+ Platform="Win2000"
16515
+ Platform_Version=5.0
16516
+
16517
+ [Opera/12.*(*Windows NT 5.1*)*]
16518
+ Parent=Opera 12.00
16519
+ Platform="WinXP"
16520
+ Platform_Version=5.1
16521
+
16522
+ [Opera/12.*(*Windows NT 5.2*)*]
16523
+ Parent=Opera 12.00
16524
+ Platform="WinXP"
16525
+ Platform_Version=5.2
16526
+
16527
+ [Opera/12.*(*Windows NT 6.0*)*]
16528
+ Parent=Opera 12.00
16529
+ Platform="WinVista"
16530
+ Platform_Version=6.0
16531
+
16532
+ [Opera/12.*(*Windows NT 6.1*)*]
16533
+ Parent=Opera 12.00
16534
+ Platform="Win7"
16535
+ Platform_Version=6.1
16536
+
16537
+ [Opera/9.80*(*FreeBSD*)*Version/12.*]
16538
+ Parent=Opera 12.00
16539
+ Platform="FreeBSD"
16540
+ Win32=false
16541
 
16542
+ [Opera/9.80*(*Linux*)*Version/12.*]
16543
+ Parent=Opera 12.00
16544
+ Platform="Linux"
16545
+ Win32=false
16546
 
16547
+ [Opera/9.80*(*Mac OS X*)*Version/12.*]
16548
+ Parent=Opera 12.00
16549
+ Platform="MacOSX"
16550
+ Win32=false
16551
 
16552
+ [Opera/9.80*(*SunOS*)*Version/12.*]
16553
+ Parent=Opera 12.00
16554
+ Platform="SunOS"
16555
+
16556
+ [Opera/9.80*(*Win 9x 4.90*)*Version/12.*]
16557
+ Parent=Opera 12.00
16558
+ Platform="WinME"
16559
+
16560
+ [Opera/9.80*(*Windows 2000*)*Version/12.*]
16561
+ Parent=Opera 12.00
16562
+ Platform="Win2000"
16563
+
16564
+ [Opera/9.80*(*Windows 95*)*Version/12.*]
16565
+ Parent=Opera 12.00
16566
+ Platform="Win95"
16567
+ Platform_Version=95
16568
+
16569
+ [Opera/9.80*(*Windows 98*)*Version/12.*]
16570
+ Parent=Opera 12.00
16571
+ Platform="Win98"
16572
+ Platform_Version=98
16573
+
16574
+ [Opera/9.80*(*Windows ME*)*Version/12.*]
16575
+ Parent=Opera 12.00
16576
+ Platform="WinME"
16577
+
16578
+ [Opera/9.80*(*Windows NT 4.0*)*Version/12.*]
16579
+ Parent=Opera 12.00
16580
+ Platform="WinNT"
16581
+ Platform_Version=4.0
16582
+
16583
+ [Opera/9.80*(*Windows NT 5.0*)*Version/12.*]
16584
+ Parent=Opera 12.00
16585
+ Platform="Win2000"
16586
+ Platform_Version=5.0
16587
+
16588
+ [Opera/9.80*(*Windows NT 5.1*)*Version/12.*]
16589
+ Parent=Opera 12.00
16590
+ Platform="WinXP"
16591
+ Platform_Version=5.1
16592
+
16593
+ [Opera/9.80*(*Windows NT 5.2*)*Version/12.*]
16594
+ Parent=Opera 12.00
16595
+ Platform="WinXP"
16596
+ Platform_Version=5.2
16597
+
16598
+ [Opera/9.80*(*Windows NT 6.0*)*Version/12.*]
16599
+ Parent=Opera 12.00
16600
+ Platform="WinVista"
16601
+ Platform_Version=6.0
16602
+
16603
+ [Opera/9.80*(*Windows NT 6.1*)*Version/12.*]
16604
+ Parent=Opera 12.00
16605
+ Platform="Win7"
16606
+ Platform_Version=6.1
16607
+
16608
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 2.00
16609
+
16610
+ [Opera 2.00]
16611
+ Parent=DefaultProperties
16612
+ Comment="Opera 2.00"
16613
+ Browser="Opera"
16614
+ Version=2.00
16615
+ MajorVer=2
16616
+ MinorVer=0
16617
+ Win32=true
16618
+ Frames=true
16619
+ IFrames=true
16620
+ Tables=true
16621
+ Cookies=true
16622
 
16623
+ [Mozilla/?.*(*FreeBSD*)*Opera?2.*]
16624
+ Parent=Opera 2.00
16625
+ Platform="FreeBSD"
16626
+ Win32=false
16627
 
16628
+ [Mozilla/?.*(*Linux*)*Opera?2.*]
16629
+ Parent=Opera 2.00
16630
+ Platform="Linux"
16631
+ Win32=false
16632
 
16633
+ [Mozilla/?.*(*Mac OS X*)*Opera?2.*]
16634
+ Parent=Opera 2.00
16635
+ Platform="MacOSX"
16636
+ Win32=false
16637
 
16638
+ [Mozilla/?.*(*Opera/2.*FreeBSD*)*]
16639
+ Parent=Opera 2.00
16640
+ Platform="FreeBSD"
16641
+ Win32=false
16642
 
16643
+ [Mozilla/?.*(*Opera/2.*Linux*)*]
16644
+ Parent=Opera 2.00
16645
+ Platform="Linux"
16646
+ Win32=false
16647
 
16648
+ [Mozilla/?.*(*Opera/2.*Mac OS X*)*]
16649
+ Parent=Opera 2.00
16650
+ Platform="MacOSX"
16651
+ Win32=false
16652
 
16653
+ [Mozilla/?.*(*Opera/2.*SunOS*)*]
16654
+ Parent=Opera 2.00
16655
+ Platform="SunOS"
16656
+ Win32=false
16657
 
16658
+ [Mozilla/?.*(*Opera/2.*Win 9x 4.90*)*]
16659
+ Parent=Opera 2.00
16660
+ Platform="WinME"
16661
+
16662
+ [Mozilla/?.*(*Opera/2.*Windows 2000*)*]
16663
+ Parent=Opera 2.00
16664
+ Platform="Win2000"
16665
+
16666
+ [Mozilla/?.*(*Opera/2.*Windows 95*)*]
16667
+ Parent=Opera 2.00
16668
+ Platform="Win95"
16669
+ Platform_Version=95
16670
+
16671
+ [Mozilla/?.*(*Opera/2.*Windows 98*)*]
16672
+ Parent=Opera 2.00
16673
+ Platform="Win98"
16674
+ Platform_Version=98
16675
+
16676
+ [Mozilla/?.*(*Opera/2.*Windows ME*)*]
16677
+ Parent=Opera 2.00
16678
+
16679
+ [Mozilla/?.*(*Opera/2.*Windows NT 4.0*)*]
16680
+ Parent=Opera 2.00
16681
+ Platform="WinNT"
16682
+ Platform_Version=4.0
16683
+
16684
+ [Mozilla/?.*(*Opera/2.*Windows NT 5.0*)*]
16685
+ Parent=Opera 2.00
16686
+ Platform="Win2000"
16687
+ Platform_Version=5.0
16688
+
16689
+ [Mozilla/?.*(*Opera/2.*Windows NT 5.1*)*]
16690
+ Parent=Opera 2.00
16691
+ Platform="WinXP"
16692
+ Platform_Version=5.1
16693
+
16694
+ [Mozilla/?.*(*Opera/2.*Windows NT 5.2*)*]
16695
+ Parent=Opera 2.00
16696
+ Platform="WinXP"
16697
+ Platform_Version=5.2
16698
+
16699
+ [Mozilla/?.*(*Opera/2.*Windows NT 6.0*)*]
16700
+ Parent=Opera 2.00
16701
+ Platform="WinVista"
16702
+ Platform_Version=6.0
16703
+
16704
+ [Mozilla/?.*(*Opera/2.*Windows NT 6.1*)*]
16705
+ Parent=Opera 2.00
16706
+ Platform="Win7"
16707
+ Platform_Version=6.1
16708
+
16709
+ [Mozilla/?.*(*SunOS*)*Opera?2.*]
16710
+ Parent=Opera 2.00
16711
+ Platform="SunOS"
16712
+ Win32=false
16713
 
16714
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?2.*]
16715
+ Parent=Opera 2.00
16716
+ Platform="WinME"
16717
+
16718
+ [Mozilla/?.*(*Windows 2000*)*Opera?2.*]
16719
+ Parent=Opera 2.00
16720
+ Platform="Win2000"
16721
+
16722
+ [Mozilla/?.*(*Windows 95*)*Opera?2.*]
16723
+ Parent=Opera 2.00
16724
+ Platform="Win95"
16725
+ Platform_Version=95
16726
+
16727
+ [Mozilla/?.*(*Windows 98*)*Opera?2.*]
16728
+ Parent=Opera 2.00
16729
+ Platform="Win98"
16730
+ Platform_Version=98
16731
+
16732
+ [Mozilla/?.*(*Windows ME*)*Opera?2.*]
16733
+ Parent=Opera 2.00
16734
+ Platform="WinME"
16735
+
16736
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?2.*]
16737
+ Parent=Opera 2.00
16738
+ Platform="WinNT"
16739
+ Platform_Version=4.0
16740
+
16741
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?2.*]
16742
+ Parent=Opera 2.00
16743
+ Platform="Win2000"
16744
+ Platform_Version=5.0
16745
+
16746
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?2.*]
16747
+ Parent=Opera 2.00
16748
+ Platform="WinXP"
16749
+ Platform_Version=5.1
16750
+
16751
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?2.*]
16752
+ Parent=Opera 2.00
16753
+ Platform="WinXP"
16754
+ Platform_Version=5.2
16755
+
16756
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?2.*]
16757
+ Parent=Opera 2.00
16758
+ Platform="WinVista"
16759
+ Platform_Version=6.0
16760
+
16761
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?2.*]
16762
+ Parent=Opera 2.00
16763
+ Platform="Win7"
16764
+ Platform_Version=6.1
16765
+
16766
+ [Opera/2.*(*FreeBSD*)*]
16767
+ Parent=Opera 2.00
16768
+ Platform="FreeBSD"
16769
+ Win32=false
16770
 
16771
+ [Opera/2.*(*Linux*)*]
16772
+ Parent=Opera 2.00
16773
+ Platform="Linux"
16774
+ Win32=false
16775
 
16776
+ [Opera/2.*(*Mac OS X*)*]
16777
+ Parent=Opera 2.00
16778
+ Platform="MacOSX"
16779
+ Win32=false
16780
 
16781
+ [Opera/2.*(*SunOS*)*]
16782
+ Parent=Opera 2.00
16783
+ Platform="SunOS"
16784
+ Win32=false
16785
 
16786
+ [Opera/2.*(*Win 9x 4.90*)*]
16787
+ Parent=Opera 2.00
16788
+ Platform="WinME"
16789
+
16790
+ [Opera/2.*(*Windows 2000*)*]
16791
+ Parent=Opera 2.00
16792
+ Platform="Win2000"
16793
+
16794
+ [Opera/2.*(*Windows 95*)*]
16795
+ Parent=Opera 2.00
16796
+ Platform="Win95"
16797
+ Platform_Version=95
16798
+
16799
+ [Opera/2.*(*Windows 98*)*]
16800
+ Parent=Opera 2.00
16801
+ Platform="Win98"
16802
+ Platform_Version=98
16803
+
16804
+ [Opera/2.*(*Windows ME*)*]
16805
+ Parent=Opera 2.00
16806
+ Platform="WinME"
16807
+
16808
+ [Opera/2.*(*Windows NT 4.0*)*]
16809
+ Parent=Opera 2.00
16810
+ Platform="WinNT"
16811
+ Platform_Version=4.0
16812
+
16813
+ [Opera/2.*(*Windows NT 5.0*)*]
16814
+ Parent=Opera 2.00
16815
+ Platform="Win2000"
16816
+ Platform_Version=5.0
16817
+
16818
+ [Opera/2.*(*Windows NT 5.1*)*]
16819
+ Parent=Opera 2.00
16820
+ Platform="WinXP"
16821
+ Platform_Version=5.1
16822
+
16823
+ [Opera/2.*(*Windows NT 5.2*)*]
16824
+ Parent=Opera 2.00
16825
+ Platform="WinXP"
16826
+ Platform_Version=5.2
16827
+
16828
+ [Opera/2.*(*Windows NT 6.0*)*]
16829
+ Parent=Opera 2.00
16830
+ Platform="WinVista"
16831
+ Platform_Version=6.0
16832
+
16833
+ [Opera/2.*(*Windows NT 6.1*)*]
16834
+ Parent=Opera 2.00
16835
+ Platform="Win7"
16836
+ Platform_Version=6.1
16837
+
16838
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 3.0
16839
+
16840
+ [Opera 3.00]
16841
+ Parent=DefaultProperties
16842
+ Comment="Opera 3.0"
16843
+ Browser="Opera"
16844
+ Version=3.00
16845
+ MajorVer=3
16846
+ MinorVer=0
16847
  Win32=true
16848
+ Frames=true
16849
+ IFrames=true
16850
+ Tables=true
16851
+ Cookies=true
16852
 
16853
+ [Mozilla/?.*(*FreeBSD*)*Opera?3.*]
16854
+ Parent=Opera 3.00
16855
+ Platform="FreeBSD"
16856
+ Win32=false
16857
 
16858
+ [Mozilla/?.*(*Linux*)*Opera?3.*]
16859
+ Parent=Opera 3.00
16860
+ Platform="Linux"
16861
+ Win32=false
16862
 
16863
+ [Mozilla/?.*(*Mac OS X*)*Opera?3.*]
16864
+ Parent=Opera 3.00
16865
+ Platform="MacOSX"
16866
+ Win32=false
16867
 
16868
+ [Mozilla/?.*(*Opera/3.*FreeBSD*)*]
16869
+ Parent=Opera 3.00
16870
+ Platform="FreeBSD"
16871
+ Win32=false
16872
 
16873
+ [Mozilla/?.*(*Opera/3.*Linux*)*]
16874
+ Parent=Opera 3.00
16875
+ Platform="Linux"
16876
+ Win32=false
16877
 
16878
+ [Mozilla/?.*(*Opera/3.*Mac OS X*)*]
16879
+ Parent=Opera 3.00
16880
+ Platform="MacOSX"
16881
+ Win32=false
16882
 
16883
+ [Mozilla/?.*(*Opera/3.*SunOS*)*]
16884
+ Parent=Opera 3.00
16885
+ Platform="SunOS"
16886
+ Win32=false
16887
 
16888
+ [Mozilla/?.*(*Opera/3.*Win 9x 4.90*)*]
16889
+ Parent=Opera 3.00
16890
+ Platform="WinME"
16891
+
16892
+ [Mozilla/?.*(*Opera/3.*Windows 2000*)*]
16893
+ Parent=Opera 3.00
16894
+ Platform="Win2000"
16895
+
16896
+ [Mozilla/?.*(*Opera/3.*Windows 95*)*]
16897
+ Parent=Opera 3.00
16898
+ Platform="Win95"
16899
+ Platform_Version=95
16900
+
16901
+ [Mozilla/?.*(*Opera/3.*Windows 98*)*]
16902
+ Parent=Opera 3.00
16903
+ Platform="Win98"
16904
+ Platform_Version=98
16905
+
16906
+ [Mozilla/?.*(*Opera/3.*Windows ME*)*]
16907
+ Parent=Opera 3.00
16908
+
16909
+ [Mozilla/?.*(*Opera/3.*Windows NT 4.0*)*]
16910
+ Parent=Opera 3.00
16911
+ Platform="WinNT"
16912
+ Platform_Version=4.0
16913
+
16914
+ [Mozilla/?.*(*Opera/3.*Windows NT 5.0*)*]
16915
+ Parent=Opera 3.00
16916
+ Platform="Win2000"
16917
+ Platform_Version=5.0
16918
+
16919
+ [Mozilla/?.*(*Opera/3.*Windows NT 5.1*)*]
16920
+ Parent=Opera 3.00
16921
+ Platform="WinXP"
16922
+ Platform_Version=5.1
16923
+
16924
+ [Mozilla/?.*(*Opera/3.*Windows NT 5.2*)*]
16925
+ Parent=Opera 3.00
16926
+ Platform="WinXP"
16927
+ Platform_Version=5.2
16928
+
16929
+ [Mozilla/?.*(*Opera/3.*Windows NT 6.0*)*]
16930
+ Parent=Opera 3.00
16931
+ Platform="WinVista"
16932
+ Platform_Version=6.0
16933
+
16934
+ [Mozilla/?.*(*Opera/3.*Windows NT 6.1*)*]
16935
+ Parent=Opera 3.00
16936
+ Platform="Win7"
16937
+ Platform_Version=6.1
16938
+
16939
+ [Mozilla/?.*(*SunOS*)*Opera?3.*]
16940
+ Parent=Opera 3.00
16941
+ Platform="SunOS"
16942
+ Win32=false
16943
 
16944
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?3.*]
16945
+ Parent=Opera 3.00
16946
+ Platform="WinME"
16947
+
16948
+ [Mozilla/?.*(*Windows 2000*)*Opera?3.*]
16949
+ Parent=Opera 3.00
16950
+ Platform="Win2000"
16951
+
16952
+ [Mozilla/?.*(*Windows 95*)*Opera?3.*]
16953
+ Parent=Opera 3.00
16954
+ Platform="Win95"
16955
+ Platform_Version=95
16956
+
16957
+ [Mozilla/?.*(*Windows 98*)*Opera?3.*]
16958
+ Parent=Opera 3.00
16959
+ Platform="Win98"
16960
+ Platform_Version=98
16961
+
16962
+ [Mozilla/?.*(*Windows ME*)*Opera?3.*]
16963
+ Parent=Opera 3.00
16964
+ Platform="WinME"
16965
+
16966
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?3.*]
16967
+ Parent=Opera 3.00
16968
+ Platform="WinNT"
16969
+ Platform_Version=4.0
16970
+
16971
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?3.*]
16972
+ Parent=Opera 3.00
16973
+ Platform="Win2000"
16974
+ Platform_Version=5.0
16975
+
16976
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?3.*]
16977
+ Parent=Opera 3.00
16978
+ Platform="WinXP"
16979
+ Platform_Version=5.1
16980
+
16981
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?3.*]
16982
+ Parent=Opera 3.00
16983
+ Platform="WinXP"
16984
+ Platform_Version=5.2
16985
+
16986
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?3.*]
16987
+ Parent=Opera 3.00
16988
+ Platform="WinVista"
16989
+ Platform_Version=6.0
16990
+
16991
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?3.*]
16992
+ Parent=Opera 3.00
16993
+ Platform="Win7"
16994
+ Platform_Version=6.1
16995
+
16996
+ [Opera/3.*(*FreeBSD*)*]
16997
+ Parent=Opera 3.00
16998
+ Platform="FreeBSD"
16999
+ Win32=false
17000
 
17001
+ [Opera/3.*(*Linux*)*]
17002
+ Parent=Opera 3.00
17003
+ Platform="Linux"
17004
+ Win32=false
17005
 
17006
+ [Opera/3.*(*Mac OS X*)*]
17007
+ Parent=Opera 3.00
17008
+ Platform="MacOSX"
17009
+ Win32=false
17010
 
17011
+ [Opera/3.*(*SunOS*)*]
17012
+ Parent=Opera 3.00
17013
+ Platform="SunOS"
17014
+ Win32=false
17015
 
17016
+ [Opera/3.*(*Win 9x 4.90*)*]
17017
+ Parent=Opera 3.00
17018
+ Platform="WinME"
17019
+
17020
+ [Opera/3.*(*Windows 2000*)*]
17021
+ Parent=Opera 3.00
17022
+ Platform="Win2000"
17023
+
17024
+ [Opera/3.*(*Windows 95*)*]
17025
+ Parent=Opera 3.00
17026
+ Platform="Win95"
17027
+ Platform_Version=95
17028
+
17029
+ [Opera/3.*(*Windows 98*)*]
17030
+ Parent=Opera 3.00
17031
+ Platform="Win98"
17032
+ Platform_Version=98
17033
+
17034
+ [Opera/3.*(*Windows ME*)*]
17035
+ Parent=Opera 3.00
17036
+ Platform="WinME"
17037
+
17038
+ [Opera/3.*(*Windows NT 4.0*)*]
17039
+ Parent=Opera 3.00
17040
+ Platform="WinNT"
17041
+ Platform_Version=4.0
17042
+
17043
+ [Opera/3.*(*Windows NT 5.0*)*]
17044
+ Parent=Opera 3.00
17045
+ Platform="Win2000"
17046
+ Platform_Version=5.0
17047
+
17048
+ [Opera/3.*(*Windows NT 5.1*)*]
17049
+ Parent=Opera 3.00
17050
+ Platform="WinXP"
17051
+ Platform_Version=5.1
17052
+
17053
+ [Opera/3.*(*Windows NT 5.2*)*]
17054
+ Parent=Opera 3.00
17055
+ Platform="WinXP"
17056
+ Platform_Version=5.2
17057
+
17058
+ [Opera/3.*(*Windows NT 6.0*)*]
17059
+ Parent=Opera 3.00
17060
+ Platform="WinVista"
17061
+ Platform_Version=6.0
17062
+
17063
+ [Opera/3.*(*Windows NT 6.1*)*]
17064
+ Parent=Opera 3.00
17065
+ Platform="Win7"
17066
+ Platform_Version=6.1
17067
+
17068
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 4.00
17069
+
17070
+ [Opera 4.00]
17071
  Parent=DefaultProperties
17072
+ Comment="Opera 4.00"
17073
  Browser="Opera"
17074
+ Version=4.00
17075
+ MajorVer=4
17076
+ MinorVer=0
17077
+ Win32=true
17078
  Frames=true
17079
  IFrames=true
17080
  Tables=true
17081
  Cookies=true
 
 
17082
  JavaScript=true
17083
+ JavaApplets=true
17084
  CssVersion=2
 
 
 
 
 
17085
 
17086
+ [Mozilla/?.*(*FreeBSD*)*Opera?4.*]
17087
+ Parent=Opera 4.00
17088
+ Platform="FreeBSD"
17089
+ Win32=false
17090
 
17091
+ [Mozilla/?.*(*Linux*)*Opera?4.*]
17092
+ Parent=Opera 4.00
17093
+ Platform="Linux"
17094
+ Win32=false
17095
 
17096
+ [Mozilla/?.*(*Mac OS X*)*Opera?4.*]
17097
+ Parent=Opera 4.00
17098
+ Platform="MacOSX"
17099
+ Win32=false
17100
 
17101
+ [Mozilla/?.*(*Opera/4.*FreeBSD*)*]
17102
+ Parent=Opera 4.00
17103
+ Platform="FreeBSD"
17104
+ Win32=false
17105
 
17106
+ [Mozilla/?.*(*Opera/4.*Linux*)*]
17107
+ Parent=Opera 4.00
17108
+ Platform="Linux"
17109
+ Win32=false
17110
 
17111
+ [Mozilla/?.*(*Opera/4.*Mac OS X*)*]
17112
+ Parent=Opera 4.00
17113
+ Platform="MacOSX"
17114
+ Win32=false
17115
 
17116
+ [Mozilla/?.*(*Opera/4.*SunOS*)*]
17117
+ Parent=Opera 4.00
17118
+ Platform="SunOS"
17119
+ Win32=false
17120
 
17121
+ [Mozilla/?.*(*Opera/4.*Win 9x 4.90*)*]
17122
+ Parent=Opera 4.00
17123
+ Platform="WinME"
17124
+
17125
+ [Mozilla/?.*(*Opera/4.*Windows 2000*)*]
17126
+ Parent=Opera 4.00
17127
+ Platform="Win2000"
17128
+
17129
+ [Mozilla/?.*(*Opera/4.*Windows 95*)*]
17130
+ Parent=Opera 4.00
17131
+ Platform="Win95"
17132
+ Platform_Version=95
17133
+
17134
+ [Mozilla/?.*(*Opera/4.*Windows 98*)*]
17135
+ Parent=Opera 4.00
17136
+ Platform="Win98"
17137
+ Platform_Version=98
17138
+
17139
+ [Mozilla/?.*(*Opera/4.*Windows ME*)*]
17140
+ Parent=Opera 4.00
17141
+
17142
+ [Mozilla/?.*(*Opera/4.*Windows NT 4.0*)*]
17143
+ Parent=Opera 4.00
17144
+ Platform="WinNT"
17145
+ Platform_Version=4.0
17146
+
17147
+ [Mozilla/?.*(*Opera/4.*Windows NT 5.0*)*]
17148
+ Parent=Opera 4.00
17149
+ Platform="Win2000"
17150
+ Platform_Version=5.0
17151
+
17152
+ [Mozilla/?.*(*Opera/4.*Windows NT 5.1*)*]
17153
+ Parent=Opera 4.00
17154
+ Platform="WinXP"
17155
+ Platform_Version=5.1
17156
+
17157
+ [Mozilla/?.*(*Opera/4.*Windows NT 5.2*)*]
17158
+ Parent=Opera 4.00
17159
+ Platform="WinXP"
17160
+ Platform_Version=5.2
17161
+
17162
+ [Mozilla/?.*(*Opera/4.*Windows NT 6.0*)*]
17163
+ Parent=Opera 4.00
17164
+ Platform="WinVista"
17165
+ Platform_Version=6.0
17166
+
17167
+ [Mozilla/?.*(*Opera/4.*Windows NT 6.1*)*]
17168
+ Parent=Opera 4.00
17169
+ Platform="Win7"
17170
+ Platform_Version=6.1
17171
+
17172
+ [Mozilla/?.*(*SunOS*)*Opera?4.*]
17173
+ Parent=Opera 4.00
17174
+ Platform="SunOS"
17175
+ Win32=false
17176
 
17177
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?4.*]
17178
+ Parent=Opera 4.00
17179
+ Platform="WinME"
17180
+
17181
+ [Mozilla/?.*(*Windows 2000*)*Opera?4.*]
17182
+ Parent=Opera 4.00
17183
+ Platform="Win2000"
17184
+
17185
+ [Mozilla/?.*(*Windows 95*)*Opera?4.*]
17186
+ Parent=Opera 4.00
17187
+ Platform="Win95"
17188
+ Platform_Version=95
17189
+
17190
+ [Mozilla/?.*(*Windows 98*)*Opera?4.*]
17191
+ Parent=Opera 4.00
17192
+ Platform="Win98"
17193
+ Platform_Version=98
17194
+
17195
+ [Mozilla/?.*(*Windows ME*)*Opera?4.*]
17196
+ Parent=Opera 4.00
17197
+ Platform="WinME"
17198
+
17199
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?4.*]
17200
+ Parent=Opera 4.00
17201
+ Platform="WinNT"
17202
+ Platform_Version=4.0
17203
+
17204
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?4.*]
17205
+ Parent=Opera 4.00
17206
+ Platform="Win2000"
17207
+ Platform_Version=5.0
17208
+
17209
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?4.*]
17210
+ Parent=Opera 4.00
17211
+ Platform="WinXP"
17212
+ Platform_Version=5.1
17213
+
17214
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?4.*]
17215
+ Parent=Opera 4.00
17216
+ Platform="WinXP"
17217
+ Platform_Version=5.2
17218
+
17219
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?4.*]
17220
+ Parent=Opera 4.00
17221
+ Platform="WinVista"
17222
+ Platform_Version=6.0
17223
+
17224
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?4.*]
17225
+ Parent=Opera 4.00
17226
+ Platform="Win7"
17227
+ Platform_Version=6.1
17228
+
17229
+ [Opera/4.*(*FreeBSD*)*]
17230
+ Parent=Opera 4.00
17231
+ Platform="FreeBSD"
17232
+ Win32=false
17233
 
17234
+ [Opera/4.*(*Linux*)*]
17235
+ Parent=Opera 4.00
17236
+ Platform="Linux"
17237
+ Win32=false
17238
 
17239
+ [Opera/4.*(*Mac OS X*)*]
17240
+ Parent=Opera 4.00
17241
+ Platform="MacOSX"
17242
+ Win32=false
17243
 
17244
+ [Opera/4.*(*SunOS*)*]
17245
+ Parent=Opera 4.00
17246
+ Platform="SunOS"
17247
+ Win32=false
17248
 
17249
+ [Opera/4.*(*Win 9x 4.90*)*]
17250
+ Parent=Opera 4.00
17251
+ Platform="WinME"
17252
+
17253
+ [Opera/4.*(*Windows 2000*)*]
17254
+ Parent=Opera 4.00
17255
+ Platform="Win2000"
17256
+
17257
+ [Opera/4.*(*Windows 95*)*]
17258
+ Parent=Opera 4.00
17259
+ Platform="Win95"
17260
+ Platform_Version=95
17261
+
17262
+ [Opera/4.*(*Windows 98*)*]
17263
+ Parent=Opera 4.00
17264
+ Platform="Win98"
17265
+ Platform_Version=98
17266
+
17267
+ [Opera/4.*(*Windows ME*)*]
17268
+ Parent=Opera 4.00
17269
+ Platform="WinME"
17270
+
17271
+ [Opera/4.*(*Windows NT 4.0*)*]
17272
+ Parent=Opera 4.00
17273
+ Platform="WinNT"
17274
+ Platform_Version=4.0
17275
+
17276
+ [Opera/4.*(*Windows NT 5.0*)*]
17277
+ Parent=Opera 4.00
17278
+ Platform="Win2000"
17279
+ Platform_Version=5.0
17280
+
17281
+ [Opera/4.*(*Windows NT 5.1*)*]
17282
+ Parent=Opera 4.00
17283
+ Platform="WinXP"
17284
+ Platform_Version=5.1
17285
+
17286
+ [Opera/4.*(*Windows NT 5.2*)*]
17287
+ Parent=Opera 4.00
17288
+ Platform="WinXP"
17289
+ Platform_Version=5.2
17290
+
17291
+ [Opera/4.*(*Windows NT 6.0*)*]
17292
+ Parent=Opera 4.00
17293
+ Platform="WinVista"
17294
+ Platform_Version=6.0
17295
+
17296
+ [Opera/4.*(*Windows NT 6.1*)*]
17297
+ Parent=Opera 4.00
17298
+ Platform="Win7"
17299
+ Platform_Version=6.1
17300
+
17301
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 5.00
17302
+
17303
+ [Opera 5.00]
17304
+ Parent=DefaultProperties
17305
+ Comment="Opera 5.00"
17306
+ Browser="Opera"
17307
+ Version=5.00
17308
+ MajorVer=5
17309
+ MinorVer=0
17310
  Win32=true
17311
+ Frames=true
17312
+ IFrames=true
17313
+ Tables=true
17314
+ Cookies=true
17315
+ JavaScript=true
17316
+ JavaApplets=true
17317
+ CssVersion=2
17318
 
17319
+ [Mozilla/?.*(*FreeBSD*)*Opera?5.*]
17320
+ Parent=Opera 5.00
17321
+ Platform="FreeBSD"
17322
+ Win32=false
 
 
 
 
 
 
 
 
 
 
 
17323
 
17324
+ [Mozilla/?.*(*Linux*)*Opera?5.*]
17325
+ Parent=Opera 5.00
17326
+ Platform="Linux"
17327
+ Win32=false
17328
 
17329
+ [Mozilla/?.*(*Mac OS X*)*Opera?5.*]
17330
+ Parent=Opera 5.00
17331
+ Platform="MacOSX"
17332
+ Win32=false
17333
 
17334
+ [Mozilla/?.*(*Opera/5.*FreeBSD*)*]
17335
+ Parent=Opera 5.00
17336
+ Platform="FreeBSD"
17337
+ Win32=false
17338
 
17339
+ [Mozilla/?.*(*Opera/5.*Linux*)*]
17340
+ Parent=Opera 5.00
17341
+ Platform="Linux"
17342
+ Win32=false
17343
 
17344
+ [Mozilla/?.*(*Opera/5.*Mac OS X*)*]
17345
+ Parent=Opera 5.00
17346
+ Platform="MacOSX"
17347
+ Win32=false
17348
 
17349
+ [Mozilla/?.*(*Opera/5.*SunOS*)*]
17350
+ Parent=Opera 5.00
17351
+ Platform="SunOS"
17352
+ Win32=false
17353
 
17354
+ [Mozilla/?.*(*Opera/5.*Win 9x 4.90*)*]
17355
+ Parent=Opera 5.00
17356
+ Platform="WinME"
17357
+
17358
+ [Mozilla/?.*(*Opera/5.*Windows 2000*)*]
17359
+ Parent=Opera 5.00
17360
+ Platform="Win2000"
17361
+
17362
+ [Mozilla/?.*(*Opera/5.*Windows 95*)*]
17363
+ Parent=Opera 5.00
17364
+ Platform="Win95"
17365
+ Platform_Version=95
17366
+
17367
+ [Mozilla/?.*(*Opera/5.*Windows 98*)*]
17368
+ Parent=Opera 5.00
17369
+ Platform="Win98"
17370
+ Platform_Version=98
17371
+
17372
+ [Mozilla/?.*(*Opera/5.*Windows ME*)*]
17373
+ Parent=Opera 5.00
17374
+
17375
+ [Mozilla/?.*(*Opera/5.*Windows NT 4.0*)*]
17376
+ Parent=Opera 5.00
17377
+ Platform="WinNT"
17378
+ Platform_Version=4.0
17379
+
17380
+ [Mozilla/?.*(*Opera/5.*Windows NT 5.0*)*]
17381
+ Parent=Opera 5.00
17382
+ Platform="Win2000"
17383
+ Platform_Version=5.0
17384
+
17385
+ [Mozilla/?.*(*Opera/5.*Windows NT 5.1*)*]
17386
+ Parent=Opera 5.00
17387
+ Platform="WinXP"
17388
+ Platform_Version=5.1
17389
+
17390
+ [Mozilla/?.*(*Opera/5.*Windows NT 5.2*)*]
17391
+ Parent=Opera 5.00
17392
+ Platform="WinXP"
17393
+ Platform_Version=5.2
17394
+
17395
+ [Mozilla/?.*(*Opera/5.*Windows NT 6.0*)*]
17396
+ Parent=Opera 5.00
17397
+ Platform="WinVista"
17398
+ Platform_Version=6.0
17399
+
17400
+ [Mozilla/?.*(*Opera/5.*Windows NT 6.1*)*]
17401
+ Parent=Opera 5.00
17402
+ Platform="Win7"
17403
+ Platform_Version=6.1
17404
+
17405
+ [Mozilla/?.*(*SunOS*)*Opera?5.*]
17406
+ Parent=Opera 5.00
17407
+ Platform="SunOS"
17408
+ Win32=false
17409
 
17410
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?5.*]
17411
+ Parent=Opera 5.00
17412
+ Platform="WinME"
17413
+
17414
+ [Mozilla/?.*(*Windows 2000*)*Opera?5.*]
17415
+ Parent=Opera 5.00
17416
+ Platform="Win2000"
17417
+
17418
+ [Mozilla/?.*(*Windows 95*)*Opera?5.*]
17419
+ Parent=Opera 5.00
17420
+ Platform="Win95"
17421
+ Platform_Version=95
17422
+
17423
+ [Mozilla/?.*(*Windows 98*)*Opera?5.*]
17424
+ Parent=Opera 5.00
17425
+ Platform="Win98"
17426
+ Platform_Version=98
17427
+
17428
+ [Mozilla/?.*(*Windows ME*)*Opera?5.*]
17429
+ Parent=Opera 5.00
17430
+ Platform="WinME"
17431
+
17432
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?5.*]
17433
+ Parent=Opera 5.00
17434
+ Platform="WinNT"
17435
+ Platform_Version=4.0
17436
+
17437
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?5.*]
17438
+ Parent=Opera 5.00
17439
+ Platform="Win2000"
17440
+ Platform_Version=5.0
17441
+
17442
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?5.*]
17443
+ Parent=Opera 5.00
17444
+ Platform="WinXP"
17445
+ Platform_Version=5.1
17446
+
17447
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?5.*]
17448
+ Parent=Opera 5.00
17449
+ Platform="WinXP"
17450
+ Platform_Version=5.2
17451
+
17452
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?5.*]
17453
+ Parent=Opera 5.00
17454
+ Platform="WinVista"
17455
+ Platform_Version=6.0
17456
+
17457
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?5.*]
17458
+ Parent=Opera 5.00
17459
+ Platform="Win7"
17460
+ Platform_Version=6.1
17461
+
17462
+ [Opera/5.*(*FreeBSD*)*]
17463
+ Parent=Opera 5.00
17464
+ Platform="FreeBSD"
17465
+ Win32=false
17466
 
17467
+ [Opera/5.*(*Linux*)*]
17468
+ Parent=Opera 5.00
17469
+ Platform="Linux"
17470
+ Win32=false
17471
 
17472
+ [Opera/5.*(*Mac OS X*)*]
17473
+ Parent=Opera 5.00
17474
+ Platform="MacOSX"
17475
+ Win32=false
17476
 
17477
+ [Opera/5.*(*SunOS*)*]
17478
+ Parent=Opera 5.00
17479
+ Platform="SunOS"
17480
+ Win32=false
17481
 
17482
+ [Opera/5.*(*Win 9x 4.90*)*]
17483
+ Parent=Opera 5.00
17484
+ Platform="WinME"
17485
+
17486
+ [Opera/5.*(*Windows 2000*)*]
17487
+ Parent=Opera 5.00
17488
+ Platform="Win2000"
17489
+
17490
+ [Opera/5.*(*Windows 95*)*]
17491
+ Parent=Opera 5.00
17492
+ Platform="Win95"
17493
+ Platform_Version=95
17494
+
17495
+ [Opera/5.*(*Windows 98*)*]
17496
+ Parent=Opera 5.00
17497
+ Platform="Win98"
17498
+ Platform_Version=98
17499
+
17500
+ [Opera/5.*(*Windows ME*)*]
17501
+ Parent=Opera 5.00
17502
+ Platform="WinME"
17503
+
17504
+ [Opera/5.*(*Windows NT 4.0*)*]
17505
+ Parent=Opera 5.00
17506
+ Platform="WinNT"
17507
+ Platform_Version=4.0
17508
+
17509
+ [Opera/5.*(*Windows NT 5.0*)*]
17510
+ Parent=Opera 5.00
17511
+ Platform="Win2000"
17512
+ Platform_Version=5.0
17513
+
17514
+ [Opera/5.*(*Windows NT 5.1*)*]
17515
+ Parent=Opera 5.00
17516
+ Platform="WinXP"
17517
+ Platform_Version=5.1
17518
+
17519
+ [Opera/5.*(*Windows NT 5.2*)*]
17520
+ Parent=Opera 5.00
17521
+ Platform="WinXP"
17522
+ Platform_Version=5.2
17523
+
17524
+ [Opera/5.*(*Windows NT 6.0*)*]
17525
+ Parent=Opera 5.00
17526
+ Platform="WinVista"
17527
+ Platform_Version=6.0
17528
+
17529
+ [Opera/5.*(*Windows NT 6.1*)*]
17530
+ Parent=Opera 5.00
17531
+ Platform="Win7"
17532
+ Platform_Version=6.1
17533
+
17534
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 6.00
17535
+
17536
+ [Opera 6.00]
17537
+ Parent=DefaultProperties
17538
+ Comment="Opera 6.00"
17539
+ Browser="Opera"
17540
+ Version=6.00
17541
+ MajorVer=6
17542
+ MinorVer=0
17543
  Win32=true
17544
+ Frames=true
17545
+ IFrames=true
17546
+ Tables=true
17547
+ Cookies=true
17548
+ JavaScript=true
17549
+ JavaApplets=true
17550
+ CssVersion=2
17551
 
17552
+ [Mozilla/?.*(*FreeBSD*)*Opera?6.*]
17553
+ Parent=Opera 6.00
17554
+ Platform="FreeBSD"
17555
+ Win32=false
17556
 
17557
+ [Mozilla/?.*(*Linux*)*Opera?6.*]
17558
+ Parent=Opera 6.00
17559
+ Platform="Linux"
17560
+ Win32=false
17561
 
17562
+ [Mozilla/?.*(*Mac OS X*)*Opera?6.*]
17563
+ Parent=Opera 6.00
17564
+ Platform="MacOSX"
17565
+ Win32=false
17566
 
17567
+ [Mozilla/?.*(*Opera/6.*FreeBSD*)*]
17568
+ Parent=Opera 6.00
17569
+ Platform="FreeBSD"
17570
+ Win32=false
17571
 
17572
+ [Mozilla/?.*(*Opera/6.*Linux*)*]
17573
+ Parent=Opera 6.00
17574
+ Platform="Linux"
17575
+ Win32=false
17576
 
17577
+ [Mozilla/?.*(*Opera/6.*Mac OS X*)*]
17578
+ Parent=Opera 6.00
17579
+ Platform="MacOSX"
17580
+ Win32=false
17581
 
17582
+ [Mozilla/?.*(*Opera/6.*SunOS*)*]
17583
+ Parent=Opera 6.00
17584
+ Platform="SunOS"
17585
+ Win32=false
17586
 
17587
+ [Mozilla/?.*(*Opera/6.*Win 9x 4.90*)*]
17588
+ Parent=Opera 6.00
17589
+ Platform="WinME"
17590
+
17591
+ [Mozilla/?.*(*Opera/6.*Windows 2000*)*]
17592
+ Parent=Opera 6.00
17593
+ Platform="Win2000"
17594
+
17595
+ [Mozilla/?.*(*Opera/6.*Windows 95*)*]
17596
+ Parent=Opera 6.00
17597
+ Platform="Win95"
17598
+ Platform_Version=95
17599
+
17600
+ [Mozilla/?.*(*Opera/6.*Windows 98*)*]
17601
+ Parent=Opera 6.00
17602
+ Platform="Win98"
17603
+ Platform_Version=98
17604
+
17605
+ [Mozilla/?.*(*Opera/6.*Windows ME*)*]
17606
+ Parent=Opera 6.00
17607
+
17608
+ [Mozilla/?.*(*Opera/6.*Windows NT 4.0*)*]
17609
+ Parent=Opera 6.00
17610
+ Platform="WinNT"
17611
+ Platform_Version=4.0
17612
+
17613
+ [Mozilla/?.*(*Opera/6.*Windows NT 5.0*)*]
17614
+ Parent=Opera 6.00
17615
+ Platform="Win2000"
17616
+ Platform_Version=5.0
17617
+
17618
+ [Mozilla/?.*(*Opera/6.*Windows NT 5.1*)*]
17619
+ Parent=Opera 6.00
17620
+ Platform="WinXP"
17621
+ Platform_Version=5.1
17622
+
17623
+ [Mozilla/?.*(*Opera/6.*Windows NT 5.2*)*]
17624
+ Parent=Opera 6.00
17625
+ Platform="WinXP"
17626
+ Platform_Version=5.2
17627
+
17628
+ [Mozilla/?.*(*Opera/6.*Windows NT 6.0*)*]
17629
+ Parent=Opera 6.00
17630
+ Platform="WinVista"
17631
+ Platform_Version=6.0
17632
+
17633
+ [Mozilla/?.*(*Opera/6.*Windows NT 6.1*)*]
17634
+ Parent=Opera 6.00
17635
+ Platform="Win7"
17636
+ Platform_Version=6.1
17637
+
17638
+ [Mozilla/?.*(*SunOS*)*Opera?6.*]
17639
+ Parent=Opera 6.00
17640
+ Platform="SunOS"
17641
+ Win32=false
17642
 
17643
+ [Mozilla/?.*(*Symbian*)*Opera?6.*]
17644
+ Parent=Opera 6.00
17645
+ Platform="SymbianOS"
17646
+ Win32=false
17647
+ isMobileDevice=true
17648
 
17649
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?6.*]
17650
+ Parent=Opera 6.00
17651
+ Platform="WinME"
17652
+
17653
+ [Mozilla/?.*(*Windows 2000*)*Opera?6.*]
17654
+ Parent=Opera 6.00
17655
+ Platform="Win2000"
17656
+
17657
+ [Mozilla/?.*(*Windows 95*)*Opera?6.*]
17658
+ Parent=Opera 6.00
17659
+ Platform="Win95"
17660
+ Platform_Version=95
17661
+
17662
+ [Mozilla/?.*(*Windows 98*)*Opera?6.*]
17663
+ Parent=Opera 6.00
17664
+ Platform="Win98"
17665
+ Platform_Version=98
17666
+
17667
+ [Mozilla/?.*(*Windows ME*)*Opera?6.*]
17668
+ Parent=Opera 6.00
17669
+ Platform="WinME"
17670
+
17671
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?6.*]
17672
+ Parent=Opera 6.00
17673
+ Platform="WinNT"
17674
+ Platform_Version=4.0
17675
+
17676
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?6.*]
17677
+ Parent=Opera 6.00
17678
+ Platform="Win2000"
17679
+ Platform_Version=5.0
17680
+
17681
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?6.*]
17682
+ Parent=Opera 6.00
17683
+ Platform="WinXP"
17684
+ Platform_Version=5.1
17685
+
17686
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?6.*]
17687
+ Parent=Opera 6.00
17688
+ Platform="WinXP"
17689
+ Platform_Version=5.2
17690
+
17691
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?6.*]
17692
+ Parent=Opera 6.00
17693
+ Platform="WinVista"
17694
+ Platform_Version=6.0
17695
+
17696
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?6.*]
17697
+ Parent=Opera 6.00
17698
+ Platform="Win7"
17699
+ Platform_Version=6.1
17700
+
17701
+ [Opera/6.*(*FreeBSD*)*]
17702
+ Parent=Opera 6.00
17703
+ Platform="FreeBSD"
17704
+ Win32=false
17705
 
17706
+ [Opera/6.*(*Linux*)*]
17707
+ Parent=Opera 6.00
17708
+ Platform="Linux"
17709
+ Win32=false
17710
 
17711
+ [Opera/6.*(*Mac OS X*)*]
17712
+ Parent=Opera 6.00
17713
+ Platform="MacOSX"
17714
+ Win32=false
17715
 
17716
+ [Opera/6.*(*SunOS*)*]
17717
+ Parent=Opera 6.00
17718
+ Platform="SunOS"
17719
+ Win32=false
17720
 
17721
+ [Opera/6.*(*Win 9x 4.90*)*]
17722
+ Parent=Opera 6.00
17723
+ Platform="WinME"
17724
+
17725
+ [Opera/6.*(*Windows 2000*)*]
17726
+ Parent=Opera 6.00
17727
+ Platform="Win2000"
17728
+
17729
+ [Opera/6.*(*Windows 95*)*]
17730
+ Parent=Opera 6.00
17731
+ Platform="Win95"
17732
+ Platform_Version=95
17733
+
17734
+ [Opera/6.*(*Windows 98*)*]
17735
+ Parent=Opera 6.00
17736
+ Platform="Win98"
17737
+ Platform_Version=98
17738
+
17739
+ [Opera/6.*(*Windows ME*)*]
17740
+ Parent=Opera 6.00
17741
+ Platform="WinME"
17742
+
17743
+ [Opera/6.*(*Windows NT 4.0*)*]
17744
+ Parent=Opera 6.00
17745
+ Platform="WinNT"
17746
+ Platform_Version=4.0
17747
+
17748
+ [Opera/6.*(*Windows NT 5.0*)*]
17749
+ Parent=Opera 6.00
17750
+ Platform="Win2000"
17751
+ Platform_Version=5.0
17752
+
17753
+ [Opera/6.*(*Windows NT 5.1*)*]
17754
+ Parent=Opera 6.00
17755
+ Platform="WinXP"
17756
+ Platform_Version=5.1
17757
+
17758
+ [Opera/6.*(*Windows NT 5.2*)*]
17759
+ Parent=Opera 6.00
17760
+ Platform="WinXP"
17761
+ Platform_Version=5.2
17762
+
17763
+ [Opera/6.*(*Windows NT 6.0*)*]
17764
+ Parent=Opera 6.00
17765
+ Platform="WinVista"
17766
+ Platform_Version=6.0
17767
+
17768
+ [Opera/6.*(*Windows NT 6.1*)*]
17769
+ Parent=Opera 6.00
17770
+ Platform="Win7"
17771
+ Platform_Version=6.1
17772
+
17773
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.00
17774
+
17775
+ [Opera 7.00]
17776
  Parent=DefaultProperties
17777
+ Comment="Opera 7.00"
17778
  Browser="Opera"
17779
+ Version=7.00
17780
+ MajorVer=7
17781
+ MinorVer=0
17782
+ Win32=true
17783
  Frames=true
17784
  IFrames=true
17785
  Tables=true
17786
  Cookies=true
 
 
17787
  JavaScript=true
17788
+ JavaApplets=true
17789
+ CssVersion=3
17790
 
17791
+ [Mozilla/?.*(*FreeBSD*)*Opera?7.*]
17792
+ Parent=Opera 7.00
17793
+ Platform="FreeBSD"
17794
+ Win32=false
17795
 
17796
+ [Mozilla/?.*(*Linux*)*Opera?7.*]
17797
+ Parent=Opera 7.00
17798
+ Platform="Linux"
17799
+ Win32=false
17800
 
17801
+ [Mozilla/?.*(*Mac OS X*)*Opera?7.*]
17802
+ Parent=Opera 7.00
17803
+ Platform="MacOSX"
17804
+ Win32=false
17805
 
17806
+ [Mozilla/?.*(*Opera/7.*FreeBSD*)*]
17807
+ Parent=Opera 7.00
17808
+ Platform="FreeBSD"
17809
+ Win32=false
17810
 
17811
+ [Mozilla/?.*(*Opera/7.*Linux*)*]
17812
+ Parent=Opera 7.00
17813
+ Platform="Linux"
17814
+ Win32=false
17815
 
17816
+ [Mozilla/?.*(*Opera/7.*Mac OS X*)*]
17817
+ Parent=Opera 7.00
17818
+ Platform="MacOSX"
17819
+ Win32=false
17820
 
17821
+ [Mozilla/?.*(*Opera/7.*SunOS*)*]
17822
+ Parent=Opera 7.00
17823
+ Platform="SunOS"
17824
+ Win32=false
17825
 
17826
+ [Mozilla/?.*(*Opera/7.*Win 9x 4.90*)*]
17827
+ Parent=Opera 7.00
17828
+ Platform="WinME"
17829
+
17830
+ [Mozilla/?.*(*Opera/7.*Windows 2000*)*]
17831
+ Parent=Opera 7.00
17832
+ Platform="Win2000"
17833
+
17834
+ [Mozilla/?.*(*Opera/7.*Windows 95*)*]
17835
+ Parent=Opera 7.00
17836
+ Platform="Win95"
17837
+ Platform_Version=95
17838
+
17839
+ [Mozilla/?.*(*Opera/7.*Windows 98*)*]
17840
+ Parent=Opera 7.00
17841
+ Platform="Win98"
17842
+ Platform_Version=98
17843
+
17844
+ [Mozilla/?.*(*Opera/7.*Windows ME*)*]
17845
+ Parent=Opera 7.00
17846
+
17847
+ [Mozilla/?.*(*Opera/7.*Windows NT 4.0*)*]
17848
+ Parent=Opera 7.00
17849
+ Platform="WinNT"
17850
+ Platform_Version=4.0
17851
+
17852
+ [Mozilla/?.*(*Opera/7.*Windows NT 5.0*)*]
17853
+ Parent=Opera 7.00
17854
+ Platform="Win2000"
17855
+ Platform_Version=5.0
17856
+
17857
+ [Mozilla/?.*(*Opera/7.*Windows NT 5.1*)*]
17858
+ Parent=Opera 7.00
17859
+ Platform="WinXP"
17860
+ Platform_Version=5.1
17861
+
17862
+ [Mozilla/?.*(*Opera/7.*Windows NT 5.2*)*]
17863
+ Parent=Opera 7.00
17864
+ Platform="WinXP"
17865
+ Platform_Version=5.2
17866
+
17867
+ [Mozilla/?.*(*Opera/7.*Windows NT 6.0*)*]
17868
+ Parent=Opera 7.00
17869
+ Platform="WinVista"
17870
+ Platform_Version=6.0
17871
+
17872
+ [Mozilla/?.*(*Opera/7.*Windows NT 6.1*)*]
17873
+ Parent=Opera 7.00
17874
+ Platform="Win7"
17875
+ Platform_Version=6.1
17876
+
17877
+ [Mozilla/?.*(*SunOS*)*Opera?7.*]
17878
+ Parent=Opera 7.00
17879
+ Platform="SunOS"
17880
+ Win32=false
17881
 
17882
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?7.*]
17883
+ Parent=Opera 7.00
17884
+ Platform="WinME"
17885
+
17886
+ [Mozilla/?.*(*Windows 2000*)*Opera?7.*]
17887
+ Parent=Opera 7.00
17888
+ Platform="Win2000"
17889
+
17890
+ [Mozilla/?.*(*Windows 95*)*Opera?7.*]
17891
+ Parent=Opera 7.00
17892
+ Platform="Win95"
17893
+ Platform_Version=95
17894
+
17895
+ [Mozilla/?.*(*Windows 98*)*Opera?7.*]
17896
+ Parent=Opera 7.00
17897
+ Platform="Win98"
17898
+ Platform_Version=98
17899
+
17900
+ [Mozilla/?.*(*Windows ME*)*Opera?7.*]
17901
+ Parent=Opera 7.00
17902
+ Platform="WinME"
17903
+
17904
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?7.*]
17905
+ Parent=Opera 7.00
17906
+ Platform="WinNT"
17907
+ Platform_Version=4.0
17908
+
17909
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?7.*]
17910
+ Parent=Opera 7.00
17911
+ Platform="Win2000"
17912
+ Platform_Version=5.0
17913
+
17914
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?7.*]
17915
+ Parent=Opera 7.00
17916
+ Platform="WinXP"
17917
+ Platform_Version=5.1
17918
+
17919
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?7.*]
17920
+ Parent=Opera 7.00
17921
+ Platform="WinXP"
17922
+ Platform_Version=5.2
17923
+
17924
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?7.*]
17925
+ Parent=Opera 7.00
17926
+ Platform="WinVista"
17927
+ Platform_Version=6.0
17928
+
17929
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?7.*]
17930
+ Parent=Opera 7.00
17931
+ Platform="Win7"
17932
+ Platform_Version=6.1
17933
+
17934
+ [Opera/7.*(*FreeBSD*)*]
17935
+ Parent=Opera 7.00
17936
+ Platform="FreeBSD"
17937
+ Win32=false
17938
 
17939
+ [Opera/7.*(*Linux*)*]
17940
+ Parent=Opera 7.00
17941
+ Platform="Linux"
17942
+ Win32=false
17943
 
17944
+ [Opera/7.*(*Mac OS X*)*]
17945
+ Parent=Opera 7.00
17946
+ Platform="MacOSX"
17947
+ Win32=false
17948
 
17949
+ [Opera/7.*(*SunOS*)*]
17950
+ Parent=Opera 7.00
17951
+ Platform="SunOS"
17952
+ Win32=false
17953
 
17954
+ [Opera/7.*(*Win 9x 4.90*)*]
17955
+ Parent=Opera 7.00
17956
+ Platform="WinME"
17957
+
17958
+ [Opera/7.*(*Windows 2000*)*]
17959
+ Parent=Opera 7.00
17960
+ Platform="Win2000"
17961
+
17962
+ [Opera/7.*(*Windows 95*)*]
17963
+ Parent=Opera 7.00
17964
+ Platform="Win95"
17965
+ Platform_Version=95
17966
+
17967
+ [Opera/7.*(*Windows 98*)*]
17968
+ Parent=Opera 7.00
17969
+ Platform="Win98"
17970
+ Platform_Version=98
17971
+
17972
+ [Opera/7.*(*Windows ME*)*]
17973
+ Parent=Opera 7.00
17974
+ Platform="WinME"
17975
+
17976
+ [Opera/7.*(*Windows NT 4.0*)*]
17977
+ Parent=Opera 7.00
17978
+ Platform="WinNT"
17979
+ Platform_Version=4.0
17980
+
17981
+ [Opera/7.*(*Windows NT 5.0*)*]
17982
+ Parent=Opera 7.00
17983
+ Platform="Win2000"
17984
+ Platform_Version=5.0
17985
+
17986
+ [Opera/7.*(*Windows NT 5.1*)*]
17987
+ Parent=Opera 7.00
17988
+ Platform="WinXP"
17989
+ Platform_Version=5.1
17990
+
17991
+ [Opera/7.*(*Windows NT 5.2*)*]
17992
+ Parent=Opera 7.00
17993
+ Platform="WinXP"
17994
+ Platform_Version=5.2
17995
+
17996
+ [Opera/7.*(*Windows NT 6.0*)*]
17997
+ Parent=Opera 7.00
17998
+ Platform="WinVista"
17999
+ Platform_Version=6.0
18000
+
18001
+ [Opera/7.*(*Windows NT 6.1*)*]
18002
+ Parent=Opera 7.00
18003
+ Platform="Win7"
18004
+ Platform_Version=6.1
18005
+
18006
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.00
18007
+
18008
+ [Opera 8.00]
18009
+ Parent=DefaultProperties
18010
+ Comment="Opera 8.00"
18011
+ Browser="Opera"
18012
+ Version=8.00
18013
+ MajorVer=8
18014
+ MinorVer=0
18015
  Win32=true
18016
+ Frames=true
18017
+ IFrames=true
18018
+ Tables=true
18019
+ Cookies=true
18020
+ JavaScript=true
18021
+ JavaApplets=true
18022
+ CssVersion=3
18023
 
18024
+ [Mozilla/?.*(*FreeBSD*)*Opera?8.*]
18025
+ Parent=Opera 8.00
18026
+ Platform="FreeBSD"
18027
+ Win32=false
18028
 
18029
+ [Mozilla/?.*(*Linux*)*Opera?8.*]
18030
+ Parent=Opera 8.00
18031
+ Platform="Linux"
18032
+ Win32=false
18033
 
18034
+ [Mozilla/?.*(*Mac OS X*)*Opera?8.*]
18035
+ Parent=Opera 8.00
18036
+ Platform="MacOSX"
18037
+ Win32=false
18038
 
18039
+ [Mozilla/?.*(*Opera/8.*FreeBSD*)*]
18040
+ Parent=Opera 8.00
18041
+ Platform="FreeBSD"
18042
+ Win32=false
18043
 
18044
+ [Mozilla/?.*(*Opera/8.*Linux*)*]
18045
+ Parent=Opera 8.00
18046
+ Platform="Linux"
18047
+ Win32=false
18048
 
18049
+ [Mozilla/?.*(*Opera/8.*Mac OS X*)*]
18050
+ Parent=Opera 8.00
18051
+ Platform="MacOSX"
18052
+ Win32=false
18053
 
18054
+ [Mozilla/?.*(*Opera/8.*SunOS*)*]
18055
+ Parent=Opera 8.00
18056
+ Platform="SunOS"
18057
+ Win32=false
18058
 
18059
+ [Mozilla/?.*(*Opera/8.*Win 9x 4.90*)*]
18060
+ Parent=Opera 8.00
18061
+ Platform="WinME"
18062
+
18063
+ [Mozilla/?.*(*Opera/8.*Windows 2000*)*]
18064
+ Parent=Opera 8.00
18065
+ Platform="Win2000"
18066
+
18067
+ [Mozilla/?.*(*Opera/8.*Windows 95*)*]
18068
+ Parent=Opera 8.00
18069
+ Platform="Win95"
18070
+ Platform_Version=95
18071
+
18072
+ [Mozilla/?.*(*Opera/8.*Windows 98*)*]
18073
+ Parent=Opera 8.00
18074
+ Platform="Win98"
18075
+ Platform_Version=98
18076
+
18077
+ [Mozilla/?.*(*Opera/8.*Windows ME*)*]
18078
+ Parent=Opera 8.00
18079
+
18080
+ [Mozilla/?.*(*Opera/8.*Windows NT 4.0*)*]
18081
+ Parent=Opera 8.00
18082
+ Platform="WinNT"
18083
+ Platform_Version=4.0
18084
+
18085
+ [Mozilla/?.*(*Opera/8.*Windows NT 5.0*)*]
18086
+ Parent=Opera 8.00
18087
+ Platform="Win2000"
18088
+ Platform_Version=5.0
18089
+
18090
+ [Mozilla/?.*(*Opera/8.*Windows NT 5.1*)*]
18091
+ Parent=Opera 8.00
18092
+ Platform="WinXP"
18093
+ Platform_Version=5.1
18094
+
18095
+ [Mozilla/?.*(*Opera/8.*Windows NT 5.2*)*]
18096
+ Parent=Opera 8.00
18097
+ Platform="WinXP"
18098
+ Platform_Version=5.2
18099
+
18100
+ [Mozilla/?.*(*Opera/8.*Windows NT 6.0*)*]
18101
+ Parent=Opera 8.00
18102
+ Platform="WinVista"
18103
+ Platform_Version=6.0
18104
+
18105
+ [Mozilla/?.*(*Opera/8.*Windows NT 6.1*)*]
18106
+ Parent=Opera 8.00
18107
+ Platform="Win7"
18108
+ Platform_Version=6.1
18109
+
18110
+ [Mozilla/?.*(*SunOS*)*Opera?8.*]
18111
+ Parent=Opera 8.00
18112
+ Platform="SunOS"
18113
+ Win32=false
18114
 
18115
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?8.*]
18116
+ Parent=Opera 8.00
18117
+ Platform="WinME"
18118
+
18119
+ [Mozilla/?.*(*Windows 2000*)*Opera?8.*]
18120
+ Parent=Opera 8.00
18121
+ Platform="Win2000"
18122
+
18123
+ [Mozilla/?.*(*Windows 95*)*Opera?8.*]
18124
+ Parent=Opera 8.00
18125
+ Platform="Win95"
18126
+ Platform_Version=95
18127
+
18128
+ [Mozilla/?.*(*Windows 98*)*Opera?8.*]
18129
+ Parent=Opera 8.00
18130
+ Platform="Win98"
18131
+ Platform_Version=98
18132
+
18133
+ [Mozilla/?.*(*Windows ME*)*Opera?8.*]
18134
+ Parent=Opera 8.00
18135
+ Platform="WinME"
18136
+
18137
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?8.*]
18138
+ Parent=Opera 8.00
18139
+ Platform="WinNT"
18140
+ Platform_Version=4.0
18141
+
18142
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?8.*]
18143
+ Parent=Opera 8.00
18144
+ Platform="Win2000"
18145
+ Platform_Version=5.0
18146
+
18147
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?8.*]
18148
+ Parent=Opera 8.00
18149
+ Platform="WinXP"
18150
+ Platform_Version=5.1
18151
+
18152
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?8.*]
18153
+ Parent=Opera 8.00
18154
+ Platform="WinXP"
18155
+ Platform_Version=5.2
18156
+
18157
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?8.*]
18158
+ Parent=Opera 8.00
18159
+ Platform="WinVista"
18160
+ Platform_Version=6.0
18161
+
18162
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?8.*]
18163
+ Parent=Opera 8.00
18164
+ Platform="Win7"
18165
+ Platform_Version=6.1
18166
+
18167
+ [Opera/8.*(*FreeBSD*)*]
18168
+ Parent=Opera 8.00
18169
+ Platform="FreeBSD"
18170
+ Win32=false
18171
 
18172
+ [Opera/8.*(*Linux*)*]
18173
+ Parent=Opera 8.00
18174
+ Platform="Linux"
18175
+ Win32=false
18176
 
18177
+ [Opera/8.*(*Mac OS X*)*]
18178
+ Parent=Opera 8.00
18179
+ Platform="MacOSX"
18180
+ Win32=false
18181
 
18182
+ [Opera/8.*(*SunOS*)*]
18183
+ Parent=Opera 8.00
18184
+ Platform="SunOS"
18185
+ Win32=false
18186
 
18187
+ [Opera/8.*(*Win 9x 4.90*)*]
18188
+ Parent=Opera 8.00
18189
+ Platform="WinME"
18190
+
18191
+ [Opera/8.*(*Windows 2000*)*]
18192
+ Parent=Opera 8.00
18193
+ Platform="Win2000"
18194
+
18195
+ [Opera/8.*(*Windows 95*)*]
18196
+ Parent=Opera 8.00
18197
+ Platform="Win95"
18198
+ Platform_Version=95
18199
+
18200
+ [Opera/8.*(*Windows 98*)*]
18201
+ Parent=Opera 8.00
18202
+ Platform="Win98"
18203
+ Platform_Version=98
18204
+
18205
+ [Opera/8.*(*Windows ME*)*]
18206
+ Parent=Opera 8.00
18207
+ Platform="WinME"
18208
+
18209
+ [Opera/8.*(*Windows NT 4.0*)*]
18210
+ Parent=Opera 8.00
18211
+ Platform="WinNT"
18212
+ Platform_Version=4.0
18213
+
18214
+ [Opera/8.*(*Windows NT 5.0*)*]
18215
+ Parent=Opera 8.00
18216
+ Platform="Win2000"
18217
+ Platform_Version=5.0
18218
+
18219
+ [Opera/8.*(*Windows NT 5.1*)*]
18220
+ Parent=Opera 8.00
18221
+ Platform="WinXP"
18222
+ Platform_Version=5.1
18223
+
18224
+ [Opera/8.*(*Windows NT 5.2*)*]
18225
+ Parent=Opera 8.00
18226
+ Platform="WinXP"
18227
+ Platform_Version=5.2
18228
+
18229
+ [Opera/8.*(*Windows NT 6.0*)*]
18230
+ Parent=Opera 8.00
18231
+ Platform="WinVista"
18232
+ Platform_Version=6.0
18233
+
18234
+ [Opera/8.*(*Windows NT 6.1*)*]
18235
+ Parent=Opera 8.00
18236
+ Platform="Win7"
18237
+ Platform_Version=6.1
18238
+
18239
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.00
18240
+
18241
+ [Opera 9.00]
18242
+ Parent=DefaultProperties
18243
+ Comment="Opera 9.00"
18244
+ Browser="Opera"
18245
+ Version=9.00
18246
+ MajorVer=9
18247
+ MinorVer=0
18248
  Win32=true
18249
+ Frames=true
18250
+ IFrames=true
18251
+ Tables=true
18252
+ Cookies=true
18253
+ JavaScript=true
18254
+ JavaApplets=true
18255
+ CssVersion=3
18256
 
18257
+ [Mozilla/?.*(*FreeBSD*)*Opera?9.*]
18258
+ Parent=Opera 9.00
18259
+ Platform="FreeBSD"
18260
+ Win32=false
18261
 
18262
+ [Mozilla/?.*(*Linux*)*Opera?9.*]
18263
+ Parent=Opera 9.00
18264
+ Platform="Linux"
18265
+ Win32=false
18266
 
18267
+ [Mozilla/?.*(*Mac OS X*)*Opera?9.*]
18268
+ Parent=Opera 9.00
18269
+ Platform="MacOSX"
18270
+ Win32=false
18271
 
18272
+ [Mozilla/?.*(*Mac_PowerPC*)*Opera?9.*]
18273
+ Parent=Opera 9.00
18274
+ Platform="MacPPC"
18275
+ Win32=false
18276
 
18277
+ [Mozilla/?.*(*Opera/9.*FreeBSD*)*]
18278
+ Parent=Opera 9.00
18279
+ Platform="FreeBSD"
18280
+ Win32=false
18281
 
18282
+ [Mozilla/?.*(*Opera/9.*Linux*)*]
18283
+ Parent=Opera 9.00
18284
+ Platform="Linux"
18285
+ Win32=false
18286
 
18287
+ [Mozilla/?.*(*Opera/9.*Mac OS X*)*]
18288
+ Parent=Opera 9.00
18289
+ Platform="MacOSX"
18290
+ Win32=false
18291
 
18292
+ [Mozilla/?.*(*Opera/9.*SunOS*)*]
18293
+ Parent=Opera 9.00
18294
+ Platform="SunOS"
18295
+ Win32=false
18296
 
18297
+ [Mozilla/?.*(*Opera/9.*Win 9x 4.90*)*]
18298
+ Parent=Opera 9.00
18299
+ Platform="WinME"
18300
+
18301
+ [Mozilla/?.*(*Opera/9.*Windows 2000*)*]
18302
+ Parent=Opera 9.00
18303
+ Platform="Win2000"
18304
+
18305
+ [Mozilla/?.*(*Opera/9.*Windows 95*)*]
18306
+ Parent=Opera 9.00
18307
+ Platform="Win95"
18308
+ Platform_Version=95
18309
+
18310
+ [Mozilla/?.*(*Opera/9.*Windows 98*)*]
18311
+ Parent=Opera 9.00
18312
+ Platform="Win98"
18313
+ Platform_Version=98
18314
+
18315
+ [Mozilla/?.*(*Opera/9.*Windows ME*)*]
18316
+ Parent=Opera 9.00
18317
+
18318
+ [Mozilla/?.*(*Opera/9.*Windows NT 4.0*)*]
18319
+ Parent=Opera 9.00
18320
+ Platform="WinNT"
18321
+ Platform_Version=4.0
18322
+
18323
+ [Mozilla/?.*(*Opera/9.*Windows NT 5.0*)*]
18324
+ Parent=Opera 9.00
18325
+ Platform="Win2000"
18326
+ Platform_Version=5.0
18327
+
18328
+ [Mozilla/?.*(*Opera/9.*Windows NT 5.1*)*]
18329
+ Parent=Opera 9.00
18330
+ Platform="WinXP"
18331
+ Platform_Version=5.1
18332
+
18333
+ [Mozilla/?.*(*Opera/9.*Windows NT 5.2*)*]
18334
+ Parent=Opera 9.00
18335
+ Platform="WinXP"
18336
+ Platform_Version=5.2
18337
+
18338
+ [Mozilla/?.*(*Opera/9.*Windows NT 6.0*)*]
18339
+ Parent=Opera 9.00
18340
+ Platform="WinVista"
18341
+ Platform_Version=6.0
18342
+
18343
+ [Mozilla/?.*(*Opera/9.*Windows NT 6.1*)*]
18344
+ Parent=Opera 9.00
18345
+ Platform="Win7"
18346
+ Platform_Version=6.1
18347
+
18348
+ [Mozilla/?.*(*SunOS*)*Opera?9.*]
18349
+ Parent=Opera 9.00
18350
+ Platform="SunOS"
18351
+ Win32=false
18352
 
18353
+ [Mozilla/?.*(*Win 9x 4.90*)*Opera?9.*]
18354
+ Parent=Opera 9.00
18355
+ Platform="WinME"
18356
+
18357
+ [Mozilla/?.*(*Windows 2000*)*Opera?9.*]
18358
+ Parent=Opera 9.00
18359
+ Platform="Win2000"
18360
+
18361
+ [Mozilla/?.*(*Windows 95*)*Opera?9.*]
18362
+ Parent=Opera 9.00
18363
+ Platform="Win95"
18364
+ Platform_Version=95
18365
+
18366
+ [Mozilla/?.*(*Windows 98*)*Opera?9.*]
18367
+ Parent=Opera 9.00
18368
+ Platform="Win98"
18369
+ Platform_Version=98
18370
+
18371
+ [Mozilla/?.*(*Windows ME*)*Opera?9.*]
18372
+ Parent=Opera 9.00
18373
+ Platform="WinME"
18374
+
18375
+ [Mozilla/?.*(*Windows NT 4.0*)*Opera?9.*]
18376
+ Parent=Opera 9.00
18377
+ Platform="WinNT"
18378
+ Platform_Version=4.0
18379
+
18380
+ [Mozilla/?.*(*Windows NT 5.0*)*Opera?9.*]
18381
+ Parent=Opera 9.00
18382
+ Platform="Win2000"
18383
+ Platform_Version=5.0
18384
+
18385
+ [Mozilla/?.*(*Windows NT 5.1*)*Opera?9.*]
18386
+ Parent=Opera 9.00
18387
+ Platform="WinXP"
18388
+ Platform_Version=5.1
18389
+
18390
+ [Mozilla/?.*(*Windows NT 5.2*)*Opera?9.*]
18391
+ Parent=Opera 9.00
18392
+ Platform="WinXP"
18393
+ Platform_Version=5.2
18394
+
18395
+ [Mozilla/?.*(*Windows NT 6.0*)*Opera?9.*]
18396
+ Parent=Opera 9.00
18397
+ Platform="WinVista"
18398
+ Platform_Version=6.0
18399
+
18400
+ [Mozilla/?.*(*Windows NT 6.1*)*Opera?9.*]
18401
+ Parent=Opera 9.00
18402
+ Platform="Win7"
18403
+ Platform_Version=6.1
18404
+
18405
+ [Opera/9.*(*FreeBSD*)*]
18406
+ Parent=Opera 9.00
18407
+ Platform="FreeBSD"
18408
+ Win32=false
18409
 
18410
+ [Opera/9.*(*Linux*)*]
18411
+ Parent=Opera 9.00
18412
+ Platform="Linux"
18413
+ Win32=false
18414
 
18415
+ [Opera/9.*(*Mac OS X*)*]
18416
+ Parent=Opera 9.00
18417
+ Platform="MacOSX"
18418
+ Win32=false
18419
 
18420
+ [Opera/9.*(*SunOS*)*]
18421
+ Parent=Opera 9.00
18422
+ Platform="SunOS"
18423
+ Win32=false
18424
 
18425
+ [Opera/9.*(*Win 9x 4.90*)*]
18426
+ Parent=Opera 9.00
18427
+ Platform="WinME"
18428
+
18429
+ [Opera/9.*(*Windows 2000*)*]
18430
+ Parent=Opera 9.00
18431
+ Platform="Win2000"
18432
+
18433
+ [Opera/9.*(*Windows 95*)*]
18434
+ Parent=Opera 9.00
18435
+ Platform="Win95"
18436
+ Platform_Version=95
18437
+
18438
+ [Opera/9.*(*Windows 98*)*]
18439
+ Parent=Opera 9.00
18440
+ Platform="Win98"
18441
+ Platform_Version=98
18442
+
18443
+ [Opera/9.*(*Windows ME*)*]
18444
+ Parent=Opera 9.00
18445
+ Platform="WinME"
18446
+
18447
+ [Opera/9.*(*Windows NT 4.0*)*]
18448
+ Parent=Opera 9.00
18449
+ Platform="WinNT"
18450
+ Platform_Version=4.0
18451
+
18452
+ [Opera/9.*(*Windows NT 5.0*)*]
18453
+ Parent=Opera 9.00
18454
+ Platform="Win2000"
18455
+ Platform_Version=5.0
18456
+
18457
+ [Opera/9.*(*Windows NT 5.1*)*]
18458
+ Parent=Opera 9.00
18459
+ Platform="WinXP"
18460
+ Platform_Version=5.1
18461
+
18462
+ [Opera/9.*(*Windows NT 5.2*)*]
18463
+ Parent=Opera 9.00
18464
+ Platform="WinXP"
18465
+ Platform_Version=5.2
18466
+
18467
+ [Opera/9.*(*Windows NT 6.0*)*]
18468
+ Parent=Opera 9.00
18469
+ Platform="WinVista"
18470
+ Platform_Version=6.0
18471
+
18472
+ [Opera/9.*(*Windows NT 6.1*)*]
18473
+ Parent=Opera 9.00
18474
+ Platform="Win7"
18475
+ Platform_Version=6.1
18476
+
18477
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Generic
18478
+
18479
+ [Opera Generic]
18480
+ Parent=DefaultProperties
18481
+ Comment="Opera Generic"
18482
+ Browser="Opera"
18483
  Win32=true
18484
+ Frames=true
18485
+ IFrames=true
18486
+ Tables=true
18487
+ Cookies=true
18488
+ CssVersion=1
18489
 
18490
+ [Mozilla/?.*(*Opera?*FreeBSD*)*]
18491
+ Parent=Opera Generic
18492
+ Platform="FreeBSD"
18493
+ Win32=false
18494
 
18495
+ [Mozilla/?.*(*Opera?*Linux*)*]
18496
+ Parent=Opera Generic
18497
+ Platform="Linux"
18498
+ Win32=false
18499
 
18500
+ [Mozilla/?.*(*Opera?*Mac OS X*)*]
18501
+ Parent=Opera Generic
18502
+ Platform="MacOSX"
18503
+ Win32=false
18504
 
18505
+ [Mozilla/?.*(*Opera?*Macintosh*)*]
18506
+ Parent=Opera Generic
18507
+ Platform="MacPPC"
18508
+ Win32=false
18509
 
18510
+ [Mozilla/?.*(*Opera?*SunOS*)*]
18511
+ Parent=Opera Generic
18512
+ Platform="SunOS"
18513
+ Win32=false
18514
 
18515
+ [Mozilla/?.*(*Opera?*UNIX*)*]
18516
+ Parent=Opera Generic
18517
+ Platform="Unix"
18518
+ Win32=false
18519
 
18520
+ [Mozilla/?.*(*Opera?*Win 9x 4.90*)*]
18521
+ Parent=Opera Generic
18522
+ Platform="WinME"
18523
+
18524
+ [Mozilla/?.*(*Opera?*Windows 2000*)*]
18525
+ Parent=Opera Generic
18526
+ Platform="Win2000"
18527
+
18528
+ [Mozilla/?.*(*Opera?*Windows 95*)*]
18529
+ Parent=Opera Generic
18530
+ Platform="Win95"
18531
+ Platform_Version=95
18532
+
18533
+ [Mozilla/?.*(*Opera?*Windows 98*)*]
18534
+ Parent=Opera Generic
18535
+ Platform="Win98"
18536
+ Platform_Version=98
18537
+
18538
+ [Mozilla/?.*(*Opera?*Windows CE*)*]
18539
+ Parent=Opera Generic
18540
+ Platform="WinCE"
18541
+
18542
+ [Mozilla/?.*(*Opera?*Windows ME*)*]
18543
+ Parent=Opera Generic
18544
+ Platform="WinME"
18545
+
18546
+ [Mozilla/?.*(*Opera?*Windows NT 4.0*)*]
18547
+ Parent=Opera Generic
18548
+ Platform="WinNT"
18549
+ Platform_Version=4.0
18550
+
18551
+ [Mozilla/?.*(*Opera?*Windows NT 5.0*)*]
18552
+ Parent=Opera Generic
18553
+ Platform="Win2000"
18554
+ Platform_Version=5.0
18555
+
18556
+ [Mozilla/?.*(*Opera?*Windows NT 5.1*)*]
18557
+ Parent=Opera Generic
18558
+ Platform="WinXP"
18559
+ Platform_Version=5.1
18560
+
18561
+ [Mozilla/?.*(*Opera?*Windows NT 5.2*)*]
18562
+ Parent=Opera Generic
18563
+ Platform="WinXP"
18564
+ Platform_Version=5.2
18565
+
18566
+ [Mozilla/?.*(*Opera?*Windows NT 6.0*)*]
18567
+ Parent=Opera Generic
18568
+ Platform="WinVista"
18569
+ Platform_Version=6.0
18570
+
18571
+ [Mozilla/?.*(*Opera?*Windows NT 6.1*)*]
18572
+ Parent=Opera Generic
18573
+ Platform="Win7"
18574
+ Platform_Version=6.1
18575
+
18576
+ [Mozilla/?.*(*Opera?*Windows XP*)*]
18577
+ Parent=Opera Generic
18578
+ Platform="WinXP"
18579
+
18580
+ [Mozilla/?.*(*Windows CE*Opera*]
18581
+ Parent=Opera Generic
18582
+ Platform="WinCE"
18583
+
18584
+ [Mozilla/?.**(*FreeBSD*)*Opera*]
18585
+ Parent=Opera Generic
18586
+ Platform="FreeBSD"
18587
+ Win32=false
18588
 
18589
+ [Mozilla/?.**(*Linux*)*Opera*]
18590
+ Parent=Opera Generic
18591
+ Platform="Linux"
18592
+ Win32=false
 
 
 
 
 
 
 
 
 
 
 
18593
 
18594
+ [Mozilla/?.**(*Mac OS X*)*Opera*]
18595
+ Parent=Opera Generic
18596
+ Platform="MacOSX"
18597
+ Win32=false
18598
 
18599
+ [Mozilla/?.**(*Macintosh*)*Opera*]
18600
+ Parent=Opera Generic
18601
+ Platform="MacPPC"
18602
+ Win32=false
18603
 
18604
+ [Mozilla/?.**(*SunOS*)*Opera*]
18605
+ Parent=Opera Generic
18606
+ Platform="SunOS"
18607
+ Win32=false
18608
 
18609
+ [Mozilla/?.**(*UNIX*)*Opera*]
18610
+ Parent=Opera Generic
18611
+ Platform="Unix"
18612
+ Win32=false
18613
 
18614
+ [Mozilla/?.**(*Win 9x 4.90*)*Opera*]
18615
+ Parent=Opera Generic
18616
+ Platform="WinME"
18617
+
18618
+ [Mozilla/?.**(*Windows 2000*)*Opera*]
18619
+ Parent=Opera Generic
18620
+ Platform="Win2000"
18621
+
18622
+ [Mozilla/?.**(*Windows 95*)*Opera*]
18623
+ Parent=Opera Generic
18624
+ Platform="Win95"
18625
+ Platform_Version=95
18626
+
18627
+ [Mozilla/?.**(*Windows 98*)*Opera*]
18628
+ Parent=Opera Generic
18629
+ Platform="Win98"
18630
+ Platform_Version=98
18631
+
18632
+ [Mozilla/?.**(*Windows ME*Opera*)*]
18633
+ Parent=Opera Generic
18634
+
18635
+ [Mozilla/?.**(*Windows NT 4.0*)*Opera*]
18636
+ Parent=Opera Generic
18637
+ Platform="WinNT"
18638
+ Platform_Version=4.0
18639
+
18640
+ [Mozilla/?.**(*Windows NT 5.0*)*Opera*]
18641
+ Parent=Opera Generic
18642
+ Platform="Win2000"
18643
+ Platform_Version=5.0
18644
+
18645
+ [Mozilla/?.**(*Windows NT 5.1*)*Opera*]
18646
+ Parent=Opera Generic
18647
+ Platform="WinXP"
18648
+ Platform_Version=5.1
18649
+
18650
+ [Mozilla/?.**(*Windows NT 5.2*)*Opera*]
18651
+ Parent=Opera Generic
18652
+ Platform="WinXP"
18653
+ Platform_Version=5.2
18654
+
18655
+ [Mozilla/?.**(*Windows NT 6.0*)*Opera*]
18656
+ Parent=Opera Generic
18657
+ Platform="WinVista"
18658
+ Platform_Version=6.0
18659
+
18660
+ [Mozilla/?.**(*Windows NT 6.1*)*Opera*]
18661
+ Parent=Opera Generic
18662
+ Platform="Win7"
18663
+ Platform_Version=6.1
18664
+
18665
+ [Mozilla/?.**(*Windows XP*)*Opera*]
18666
+ Parent=Opera Generic
18667
+ Platform="WinXP"
18668
+
18669
+ [Opera/*(*FreeBSD*)*]
18670
+ Parent=Opera Generic
18671
+ Platform="FreeBSD"
18672
+ Win32=false
18673
 
18674
+ [Opera/*(*Linux*)*]
18675
+ Parent=Opera Generic
18676
+ Platform="Linux"
18677
+ Win32=false
18678
 
18679
+ [Opera/*(*Mac OS X*)*]
18680
+ Parent=Opera Generic
18681
+ Platform="MacOSX"
18682
+ Win32=false
18683
 
18684
+ [Opera/*(*Macintosh*)*]
18685
+ Parent=Opera Generic
18686
+ Platform="MacPPC"
18687
+ Win32=false
18688
 
18689
+ [Opera/*(*SunOS*)*]
18690
+ Parent=Opera Generic
18691
+ Platform="SunOS"
18692
+ Win32=false
18693
 
18694
+ [Opera/*(*UNIX*)*]
18695
+ Parent=Opera Generic
18696
+ Platform="Unix"
18697
+ Win32=false
18698
 
18699
+ [Opera/*(*Win 9x 4.90*)*]
18700
+ Parent=Opera Generic
18701
+ Platform="WinME"
18702
+
18703
+ [Opera/*(*Windows 2000*)*]
18704
+ Parent=Opera Generic
18705
+ Platform="Win2000"
18706
+
18707
+ [Opera/*(*Windows 95*)*]
18708
+ Parent=Opera Generic
18709
+ Platform="Win95"
18710
+ Platform_Version=95
18711
+
18712
+ [Opera/*(*Windows 98*)*]
18713
+ Parent=Opera Generic
18714
+ Platform="Win98"
18715
+ Platform_Version=98
18716
+
18717
+ [Opera/*(*Windows CE*)*]
18718
+ Parent=Opera Generic
18719
+ Platform="WinCE"
18720
+
18721
+ [Opera/*(*Windows ME*)*]
18722
+ Parent=Opera Generic
18723
+ Platform="WinME"
18724
+
18725
+ [Opera/*(*Windows NT 4.0*)*]
18726
+ Parent=Opera Generic
18727
+ Platform="WinNT"
18728
+ Platform_Version=4.0
18729
+
18730
+ [Opera/*(*Windows NT 5.0*)*]
18731
+ Parent=Opera Generic
18732
+ Platform="Win2000"
18733
+ Platform_Version=5.0
18734
+
18735
+ [Opera/*(*Windows NT 5.1*)*]
18736
+ Parent=Opera Generic
18737
+ Platform="WinXP"
18738
+ Platform_Version=5.1
18739
+
18740
+ [Opera/*(*Windows NT 5.2*)*]
18741
+ Parent=Opera Generic
18742
+ Platform="WinXP"
18743
+ Platform_Version=5.2
18744
+
18745
+ [Opera/*(*Windows NT 6.0*)*]
18746
+ Parent=Opera Generic
18747
+ Platform="WinVista"
18748
+ Platform_Version=6.0
18749
+
18750
+ [Opera/*(*Windows NT 6.1*)*]
18751
+ Parent=Opera Generic
18752
+ Platform="Win7"
18753
+ Platform_Version=6.1
18754
+
18755
+ [Opera/*(*Windows XP*)*]
18756
+ Parent=Opera Generic
18757
+ Platform="WinXP"
18758
+
18759
+ [Opera/9.80*(*FreeBSD*)*]
18760
+ Parent=Opera Generic
18761
+ Platform="FreeBSD"
18762
+ Win32=false
18763
 
18764
+ [Opera/9.80*(*Linux*)*]
18765
+ Parent=Opera Generic
18766
+ Platform="Linux"
18767
+ Win32=false
18768
 
18769
+ [Opera/9.80*(*Mac OS X*)*]
18770
+ Parent=Opera Generic
18771
+ Platform="MacOSX"
18772
+ Win32=false
18773
 
18774
+ [Opera/9.80*(*Macintosh*)*]
18775
+ Parent=Opera Generic
18776
+ Platform="MacPPC"
18777
+ Win32=false
18778
 
18779
+ [Opera/9.80*(*SunOS*)*]
18780
+ Parent=Opera Generic
18781
+ Platform="SunOS"
18782
+ Win32=false
18783
 
18784
+ [Opera/9.80*(*UNIX*)*]
18785
+ Parent=Opera Generic
18786
+ Platform="Unix"
18787
+ Win32=false
18788
 
18789
+ [Opera/9.80*(*Win 9x 4.90*)*]
18790
+ Parent=Opera Generic
18791
+ Platform="WinME"
18792
+
18793
+ [Opera/9.80*(*Windows 2000*)*]
18794
+ Parent=Opera Generic
18795
+ Platform="Win2000"
18796
+
18797
+ [Opera/9.80*(*Windows 95*)*]
18798
+ Parent=Opera Generic
18799
+ Platform="Win95"
18800
+ Platform_Version=95
18801
+
18802
+ [Opera/9.80*(*Windows 98*)*]
18803
+ Parent=Opera Generic
18804
+ Platform="Win98"
18805
+ Platform_Version=98
18806
+
18807
+ [Opera/9.80*(*Windows CE*)*]
18808
+ Parent=Opera Generic
18809
+ Platform="WinCE"
18810
+
18811
+ [Opera/9.80*(*Windows ME*)*]
18812
+ Parent=Opera Generic
18813
+ Platform="WinME"
18814
+
18815
+ [Opera/9.80*(*Windows NT 4.0*)*]
18816
+ Parent=Opera Generic
18817
+ Platform="WinNT"
18818
+ Platform_Version=4.0
18819
+
18820
+ [Opera/9.80*(*Windows NT 5.0*)*]
18821
+ Parent=Opera Generic
18822
+ Platform="Win2000"
18823
+ Platform_Version=5.0
18824
+
18825
+ [Opera/9.80*(*Windows NT 5.1*)*]
18826
+ Parent=Opera Generic
18827
+ Platform="WinXP"
18828
+ Platform_Version=5.1
18829
+
18830
+ [Opera/9.80*(*Windows NT 5.2*)*]
18831
+ Parent=Opera Generic
18832
+ Platform="WinXP"
18833
+ Platform_Version=5.2
18834
+
18835
+ [Opera/9.80*(*Windows NT 6.0*)*]
18836
+ Parent=Opera Generic
18837
+ Platform="WinVista"
18838
+ Platform_Version=6.0
18839
+
18840
+ [Opera/9.80*(*Windows NT 6.1*)*]
18841
+ Parent=Opera Generic
18842
+ Platform="Win7"
18843
+ Platform_Version=6.1
18844
+
18845
+ [Opera/9.80*(*Windows XP*)*]
18846
+ Parent=Opera Generic
18847
+ Platform="WinXP"
18848
 
18849
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.0
 
 
18850
 
18851
+ [Netscape 4.0]
18852
+ Parent=DefaultProperties
18853
+ Comment="Netscape 4.0"
18854
+ Browser="Netscape"
18855
+ Version=4.0
18856
+ MajorVer=4
18857
+ MinorVer=0
18858
+ Frames=true
18859
+ IFrames=true
18860
+ Tables=true
18861
+ Cookies=true
18862
+ JavaScript=true
18863
+ JavaApplets=true
18864
 
18865
+ [Mozilla/4.*(Macintosh*PPC*)*]
18866
+ Parent=Netscape 4.0
18867
+ Platform="MacPPC"
 
18868
 
18869
+ [Mozilla/4.*(Win2000*)*]
18870
+ Parent=Netscape 4.0
18871
+ Platform="Win2000"
18872
+ Platform_Version=5.0
18873
  Win32=true
18874
 
18875
+ [Mozilla/4.*(Win95*)*]
18876
+ Parent=Netscape 4.0
18877
+ Platform="Win95"
 
18878
 
18879
+ [Mozilla/4.*(Win98*)*]
18880
+ Parent=Netscape 4.0
18881
+ Platform="Win98"
 
18882
 
18883
+ [Mozilla/4.*(Windows NT 4.0*)*]
18884
+ Parent=Netscape 4.0
18885
+ Platform="WinNT"
18886
+ Platform_Version=4.0
18887
  Win32=true
18888
 
18889
+ [Mozilla/4.*(Windows NT 5.0*)*]
18890
+ Parent=Netscape 4.0
18891
+ Platform="Win2000"
18892
+ Platform_Version=5.0
18893
  Win32=true
18894
 
18895
+ [Mozilla/4.*(Windows NT 5.1*)*]
18896
+ Parent=Netscape 4.0
18897
+ Platform="WinXP"
18898
+ Platform_Version=5.1
18899
  Win32=true
18900
 
18901
+ [Mozilla/4.*(WinNT*)*]
18902
+ Parent=Netscape 4.0
18903
+ Platform="WinNT"
18904
  Win32=true
18905
 
18906
+ [Mozilla/4.*(X11*Linux*)*]
18907
+ Parent=Netscape 4.0
18908
+ Platform="Linux"
 
 
 
 
 
 
 
 
 
 
 
 
18909
 
18910
+ [Mozilla/4.*(X11*SunOS*)*]
18911
+ Parent=Netscape 4.0
18912
+ Platform="SunOS"
18913
 
18914
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.7
 
 
 
18915
 
18916
+ [Netscape 4.7]
18917
+ Parent=DefaultProperties
18918
+ Comment="Netscape 4.7"
18919
+ Browser="Netscape"
18920
+ Version=4.7
18921
+ MajorVer=4
18922
+ MinorVer=7
18923
+ Frames=true
18924
+ IFrames=true
18925
+ Tables=true
18926
+ Cookies=true
18927
+ JavaScript=true
18928
+ JavaApplets=true
18929
+ CssVersion=1
18930
 
18931
+ [Mozilla/4.7*(Macintosh*PPC*)*]
18932
+ Parent=Netscape 4.7
18933
+ Platform="MacPPC"
 
18934
 
18935
+ [Mozilla/4.7*(Win2000*)*]
18936
+ Parent=Netscape 4.7
18937
+ Platform="Win2000"
18938
+ Platform_Version=5.0
18939
 
18940
+ [Mozilla/4.7*(Win95*)*]
18941
+ Parent=Netscape 4.7
18942
+ Platform="Win95"
 
18943
 
18944
+ [Mozilla/4.7*(Win98*)*]
18945
+ Parent=Netscape 4.7
18946
+ Platform="Win98"
 
18947
 
18948
+ [Mozilla/4.7*(Windows NT 4.0*)*]
18949
+ Parent=Netscape 4.7
18950
+ Platform="WinNT"
18951
+ Platform_Version=4.0
18952
  Win32=true
18953
 
18954
+ [Mozilla/4.7*(Windows NT 5.0*)*]
18955
+ Parent=Netscape 4.7
18956
+ Platform="Win2000"
18957
+ Platform_Version=5.0
18958
  Win32=true
18959
 
18960
+ [Mozilla/4.7*(Windows NT 5.1*)*]
18961
+ Parent=Netscape 4.7
18962
+ Platform="WinXP"
18963
+ Platform_Version=5.1
18964
  Win32=true
18965
 
18966
+ [Mozilla/4.7*(WinNT*)*]
18967
+ Parent=Netscape 4.7
18968
+ Platform="WinNT"
 
 
 
 
18969
  Win32=true
18970
 
18971
+ [Mozilla/4.7*(X11*Linux*)*]
18972
+ Parent=Netscape 4.7
18973
+ Platform="Linux"
 
 
 
 
18974
 
18975
+ [Mozilla/4.7*(X11*SunOS*)*]
18976
+ Parent=Netscape 4.7
18977
+ Platform="SunOS"
18978
 
18979
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.8
18980
 
18981
+ [Netscape 4.8]
18982
  Parent=DefaultProperties
18983
+ Comment="Netscape 4.8"
18984
+ Browser="Netscape"
18985
+ Version=4.8
18986
+ MajorVer=4
18987
+ MinorVer=8
18988
  Frames=true
18989
  IFrames=true
18990
  Tables=true
18991
  Cookies=true
 
 
18992
  JavaScript=true
18993
+ JavaApplets=true
18994
+ CssVersion=1
18995
 
18996
+ [Mozilla/4.8*(Macintosh*PPC*)*]
18997
+ Parent=Netscape 4.8
18998
+ Platform="MacPPC"
18999
 
19000
+ [Mozilla/4.8*(Win2000*)*]
19001
+ Parent=Netscape 4.8
19002
+ Platform="Win2000"
19003
+ Platform_Version=5.0
19004
 
19005
+ [Mozilla/4.8*(Win95*)*]
19006
+ Parent=Netscape 4.8
19007
+ Platform="Win95"
19008
 
19009
+ [Mozilla/4.8*(Win98*)*]
19010
+ Parent=Netscape 4.8
19011
+ Platform="Win98"
 
19012
 
19013
+ [Mozilla/4.8*(Windows NT 4.0*)*]
19014
+ Parent=Netscape 4.8
19015
+ Platform="WinNT"
19016
+ Platform_Version=4.0
19017
  Win32=true
19018
 
19019
+ [Mozilla/4.8*(Windows NT 5.0*)*]
19020
+ Parent=Netscape 4.8
19021
+ Platform="Win2000"
19022
+ Platform_Version=5.0
19023
  Win32=true
19024
 
19025
+ [Mozilla/4.8*(Windows NT 5.1*)*]
19026
+ Parent=Netscape 4.8
19027
+ Platform="WinXP"
19028
+ Platform_Version=5.1
19029
  Win32=true
19030
 
19031
+ [Mozilla/4.8*(WinNT*)*]
19032
+ Parent=Netscape 4.8
19033
+ Platform="WinNT"
19034
  Win32=true
19035
 
19036
+ [Mozilla/4.8*(X11*Linux*)*]
19037
+ Parent=Netscape 4.8
19038
+ Platform="Linux"
 
19039
 
19040
+ [Mozilla/4.8*(X11*SunOS*)*]
19041
+ Parent=Netscape 4.8
19042
+ Platform="SunOS"
 
19043
 
19044
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.0
 
 
 
19045
 
19046
+ [Netscape 6.0]
19047
+ Parent=DefaultProperties
19048
+ Comment="Netscape 6.0"
19049
+ Browser="Netscape"
19050
+ Version=6.0
19051
+ MajorVer=6
19052
+ MinorVer=0
19053
  Win32=true
19054
+ Frames=true
19055
+ IFrames=true
19056
+ Tables=true
19057
+ Cookies=true
19058
+ JavaScript=true
19059
+ JavaApplets=true
19060
+ CssVersion=2
19061
 
19062
+ [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.*]
19063
+ Parent=Netscape 6.0
19064
+ Platform="MacPPC"
19065
+ Win32=false
19066
 
19067
+ [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.*]
19068
+ Parent=Netscape 6.0
19069
+ Platform="Win95"
19070
+ Platform_Version=95
19071
 
19072
+ [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.*]
19073
+ Parent=Netscape 6.0
19074
+ Platform="Win98"
19075
+ Platform_Version=98
19076
 
19077
+ [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.*]
19078
+ Parent=Netscape 6.0
19079
+ Platform="WinME"
19080
 
19081
+ [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.*]
19082
+ Parent=Netscape 6.0
19083
+ Platform="WinNT"
19084
+ Platform_Version=4.0
19085
 
19086
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.*]
19087
+ Parent=Netscape 6.0
19088
+ Platform="Win2000"
19089
+ Platform_Version=5.0
19090
 
19091
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.*]
19092
+ Parent=Netscape 6.0
19093
+ Platform="WinXP"
19094
+ Platform_Version=5.1
19095
 
19096
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.*]
19097
+ Parent=Netscape 6.0
19098
+ Platform="WinXP"
19099
+ Platform_Version=5.2
19100
 
19101
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.*]
19102
+ Parent=Netscape 6.0
19103
+ Platform="WinVista"
19104
+ Platform_Version=6.0
19105
 
19106
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.*]
19107
+ Parent=Netscape 6.0
19108
+ Platform="Win7"
19109
+ Platform_Version=6.1
19110
 
19111
+ [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.*]
19112
+ Parent=Netscape 6.0
19113
+ Platform="WinNT"
19114
+ Platform_Version=4.0
19115
 
19116
+ [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.*]
19117
+ Parent=Netscape 6.0
19118
+ Platform="Win2000"
 
19119
 
19120
+ [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.*]
19121
+ Parent=Netscape 6.0
19122
+ Platform="WinXP"
 
19123
 
19124
+ [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.*]
19125
+ Parent=Netscape 6.0
19126
+ Platform="WinXP"
19127
+
19128
+ [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.*]
19129
+ Parent=Netscape 6.0
19130
+ Platform="WinVista"
19131
+
19132
+ [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.*]
19133
+ Parent=Netscape 6.0
19134
+ Platform="Win7"
19135
+
19136
+ [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.*]
19137
+ Parent=Netscape 6.0
19138
+ Platform="Linux"
19139
+ Win32=false
19140
+
19141
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.0
19142
 
19143
+ [Netscape 7.0]
19144
+ Parent=DefaultProperties
19145
+ Comment="Netscape 7.0"
19146
+ Browser="Netscape"
19147
+ Version=7.0
19148
+ MajorVer=7
19149
+ MinorVer=0
19150
  Win32=true
19151
+ Frames=true
19152
+ IFrames=true
19153
+ Tables=true
19154
+ Cookies=true
19155
+ JavaScript=true
19156
+ JavaApplets=true
19157
+ CssVersion=2
19158
 
19159
+ [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.*]
19160
+ Parent=Netscape 7.0
19161
+ Platform="MacOSX"
19162
 
19163
+ [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.*]
19164
+ Parent=Netscape 7.0
19165
+ Platform="MacPPC"
19166
+ Win32=false
19167
 
19168
+ [Mozilla/5.0 (Windows; ?; Win*9x 4.90; *) Gecko/* Netscape*/7.*]
19169
+ Parent=Netscape 7.0
19170
+ Platform="WinME"
19171
 
19172
+ [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.*]
19173
+ Parent=Netscape 7.0
19174
+ Platform="Win95"
19175
+ Platform_Version=95
19176
 
19177
+ [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.*]
19178
+ Parent=Netscape 7.0
19179
+ Platform="Win98"
19180
+ Platform_Version=98
19181
 
19182
+ [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.*]
19183
+ Parent=Netscape 7.0
19184
+ Platform="WinNT"
19185
+ Platform_Version=4.0
19186
 
19187
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.*]
19188
+ Parent=Netscape 7.0
19189
+ Platform="Win2000"
19190
+ Platform_Version=5.0
19191
 
19192
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.*]
19193
+ Parent=Netscape 7.0
19194
+ Platform="WinXP"
19195
+ Platform_Version=5.1
19196
 
19197
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.*]
19198
+ Parent=Netscape 7.0
19199
+ Platform="Win2003"
19200
+ Platform_Version=5.2
19201
 
19202
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.*]
19203
+ Parent=Netscape 7.0
19204
+ Platform="WinVista"
19205
+ Platform_Version=6.0
19206
 
19207
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.*]
19208
+ Parent=Netscape 7.0
19209
+ Platform="Win7"
19210
+ Platform_Version=6.1
19211
 
19212
+ [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.*]
19213
+ Parent=Netscape 7.0
19214
+ Platform="WinNT"
19215
+ Platform_Version=4.0
19216
 
19217
+ [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.*]
19218
+ Parent=Netscape 7.0
19219
+ Platform="Win2000"
 
19220
 
19221
+ [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.*]
19222
+ Parent=Netscape 7.0
19223
+ Platform="WinXP"
 
19224
 
19225
+ [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.*]
19226
+ Parent=Netscape 7.0
19227
+ Platform="Win2003"
19228
 
19229
+ [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.*]
19230
+ Parent=Netscape 7.0
19231
+ Platform="WinVista"
 
19232
 
19233
+ [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.*]
19234
+ Parent=Netscape 7.0
19235
+ Platform="Win7"
19236
 
19237
+ [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.*]
19238
+ Parent=Netscape 7.0
19239
+ Platform="Linux"
19240
+ Win32=false
19241
 
19242
+ [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.*]
19243
+ Parent=Netscape 7.0
19244
+ Platform="SunOS"
19245
+ Win32=false
19246
 
19247
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.0
19248
 
19249
+ [Netscape 8.0]
19250
  Parent=DefaultProperties
19251
+ Comment="Netscape 8.0"
19252
+ Browser="Netscape"
19253
+ Version=8.0
19254
+ MajorVer=8
19255
+ MinorVer=0
19256
+ Win32=true
19257
  Frames=true
19258
  IFrames=true
19259
  Tables=true
19260
  Cookies=true
 
 
19261
  JavaScript=true
19262
+ JavaApplets=true
19263
  CssVersion=2
 
19264
 
19265
+ [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/8.*]
19266
+ Parent=Netscape 8.0
19267
+ Platform="MacOSX"
19268
+ Win32=false
19269
+
19270
+ [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/8.*]
19271
+ Parent=Netscape 8.0
19272
+ Platform="MacOSX"
19273
+ Win32=false
19274
+
19275
+ [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.*]
19276
+ Parent=Netscape 8.0
19277
+ Platform="MacPPC"
19278
+ Win32=false
19279
 
19280
+ [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.*]
19281
+ Parent=Netscape 8.0
19282
+ Platform="WinME"
19283
 
19284
+ [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.*]
19285
+ Parent=Netscape 8.0
19286
+ Platform="Win95"
19287
+ Platform_Version=95
19288
 
19289
+ [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.*]
19290
+ Parent=Netscape 8.0
19291
+ Platform="Win98"
19292
+ Platform_Version=98
19293
 
19294
+ [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.*]
19295
+ Parent=Netscape 8.0
19296
+ Platform="WinME"
 
19297
 
19298
+ [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.*]
19299
+ Parent=Netscape 8.0
19300
+ Platform="WinNT"
19301
+ Platform_Version=4.0
19302
 
19303
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.*]
19304
+ Parent=Netscape 8.0
19305
+ Platform="Win2000"
19306
+ Platform_Version=5.0
19307
 
19308
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.*]
19309
+ Parent=Netscape 8.0
19310
+ Platform="WinXP"
19311
+ Platform_Version=5.1
19312
 
19313
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.*]
19314
+ Parent=Netscape 8.0
19315
+ Platform="Win2003"
19316
+ Platform_Version=5.2
19317
 
19318
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.*]
19319
+ Parent=Netscape 8.0
19320
+ Platform="WinVista"
19321
+ Platform_Version=6.0
19322
 
19323
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.*]
19324
+ Parent=Netscape 8.0
19325
+ Platform="Win7"
19326
+ Platform_Version=6.1
19327
 
19328
+ [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.*]
19329
+ Parent=Netscape 8.0
19330
+ Platform="WinNT"
19331
+ Platform_Version=4.0
19332
 
19333
+ [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.*]
19334
+ Parent=Netscape 8.0
19335
+ Platform="Win2000"
 
19336
 
19337
+ [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.*]
19338
+ Parent=Netscape 8.0
19339
+ Platform="WinXP"
19340
 
19341
+ [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.*]
19342
+ Parent=Netscape 8.0
19343
+ Platform="Win2003"
 
19344
 
19345
+ [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.*]
19346
+ Parent=Netscape 8.0
19347
+ Platform="WinVista"
19348
 
19349
+ [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.*]
19350
+ Parent=Netscape 8.0
19351
+ Platform="Win7"
19352
 
19353
+ [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.*]
19354
+ Parent=Netscape 8.0
19355
+ Platform="Linux"
19356
+ Win32=false
19357
 
19358
+ [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.*]
19359
+ Parent=Netscape 8.0
19360
+ Platform="SunOS"
19361
+ Win32=false
19362
 
19363
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 9.0
 
 
 
19364
 
19365
+ [Netscape 9.0]
19366
+ Parent=DefaultProperties
19367
+ Comment="Netscape 9.0"
19368
+ Browser="Navigator"
19369
+ Version=9.0
19370
+ MajorVer=9
19371
+ MinorVer=0
19372
  Win32=true
19373
+ Frames=true
19374
+ IFrames=true
19375
+ Tables=true
19376
+ Cookies=true
19377
+ JavaScript=true
19378
+ JavaApplets=true
19379
+ CssVersion=2
19380
 
19381
+ [Mozilla/5.0 (Macintosh; ?; *Mac OS X*) Gecko/* Netscape*/9.*]
19382
+ Parent=Netscape 9.0
19383
+ Platform="MacOSX"
19384
+ Win32=false
19385
 
19386
+ [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/9.*]
19387
+ Parent=Netscape 9.0
19388
+ Platform="MacPPC"
19389
+ Win32=false
19390
 
19391
+ [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/9.*]
19392
+ Parent=Netscape 9.0
19393
+ Platform="WinME"
19394
+
19395
+ [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/9.*]
19396
+ Parent=Netscape 9.0
19397
+ Platform="Win95"
19398
+ Platform_Version=95
19399
+
19400
+ [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/9.*]
19401
+ Parent=Netscape 9.0
19402
+ Platform="Win98"
19403
+ Platform_Version=98
19404
+
19405
+ [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/9.*]
19406
+ Parent=Netscape 9.0
19407
+ Platform="WinME"
19408
+
19409
+ [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/9.*]
19410
+ Parent=Netscape 9.0
19411
+ Platform="WinNT"
19412
+ Platform_Version=4.0
19413
+
19414
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/9.*]
19415
+ Parent=Netscape 9.0
19416
+ Platform="Win2000"
19417
+ Platform_Version=5.0
19418
+
19419
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/9.*]
19420
+ Parent=Netscape 9.0
19421
+ Platform="WinXP"
19422
+ Platform_Version=5.1
19423
+
19424
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/9.*]
19425
+ Parent=Netscape 9.0
19426
+ Platform="Win2003"
19427
+ Platform_Version=5.2
19428
+
19429
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/9.*]
19430
+ Parent=Netscape 9.0
19431
+ Platform="WinVista"
19432
+ Platform_Version=6.0
19433
+
19434
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/9.*]
19435
+ Parent=Netscape 9.0
19436
+ Platform="Win7"
19437
+ Platform_Version=6.1
19438
+
19439
+ [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/9.*]
19440
+ Parent=Netscape 9.0
19441
+ Platform="WinNT"
19442
+ Platform_Version=4.0
19443
+
19444
+ [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/9.*]
19445
+ Parent=Netscape 9.0
19446
+ Platform="Win2000"
19447
+
19448
+ [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/9.*]
19449
+ Parent=Netscape 9.0
19450
+ Platform="WinXP"
19451
+
19452
+ [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/9.*]
19453
+ Parent=Netscape 9.0
19454
+ Platform="Win2003"
19455
+
19456
+ [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/9.*]
19457
+ Parent=Netscape 9.0
19458
+ Platform="WinVista"
19459
+
19460
+ [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/9.*]
19461
+ Parent=Netscape 9.0
19462
+ Platform="Win7"
19463
+
19464
+ [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/9.*]
19465
+ Parent=Netscape 9.0
19466
+ Platform="Linux"
19467
+ Win32=false
19468
 
19469
+ [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/9.*]
19470
+ Parent=Netscape 9.0
19471
+ Platform="SunOS"
19472
+ Win32=false
19473
 
19474
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PaleMoon 3.6
 
 
 
19475
 
19476
+ [Palemoon]
19477
+ Parent=DefaultProperties
19478
+ Comment="PaleMoon 3.6"
19479
+ Browser="PaleMoon"
19480
+ Version=3.6
19481
+ MajorVer=3
19482
+ MinorVer=6
19483
  Win32=true
19484
+ Frames=true
19485
+ IFrames=true
19486
+ Tables=true
19487
+ Cookies=true
19488
+ JavaScript=true
19489
+ JavaApplets=true
19490
+ CssVersion=2
19491
 
19492
+ [Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.9.*) Gecko/20100403 Firefox/3.6.* (Palemoon/3.6.*)]
19493
+ Parent=Palemoon
19494
+ Platform="Win2000"
19495
+ Platform_Version=5.0
 
 
 
19496
 
19497
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9.*) Gecko/20100403 Firefox/3.6.* (Palemoon/3.6.*)]
19498
+ Parent=Palemoon
19499
+ Platform="WinXP"
19500
+ Platform_Version=5.1
19501
 
19502
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.9.*) Gecko/20100403 Firefox/3.6.* (Palemoon/3.6.*)]
19503
+ Parent=Palemoon
19504
+ Platform="Win2003"
19505
+ Platform_Version=5.2
19506
 
19507
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9.*) Gecko/20100403 Firefox/3.6.* (Palemoon/3.6.*)]
19508
+ Parent=Palemoon
19509
+ Platform="WinVista"
19510
+ Platform_Version=6.0
19511
 
19512
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9.*) Gecko/20100403 Firefox/3.6.* (Palemoon/3.6.*)]
19513
+ Parent=Palemoon
19514
+ Platform="Win7"
19515
+ Platform_Version=6.1
19516
 
19517
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.0
 
 
 
19518
 
19519
+ [SeaMonkey 1.0]
19520
+ Parent=DefaultProperties
19521
+ Comment="SeaMonkey 1.0"
19522
+ Browser="SeaMonkey"
19523
+ Version=1.0
19524
+ MajorVer=1
19525
+ MinorVer=0
19526
  Win32=true
19527
+ Frames=true
19528
+ IFrames=true
19529
+ Tables=true
19530
+ Cookies=true
19531
+ JavaScript=true
19532
+ JavaApplets=true
19533
+ CssVersion=2
19534
 
19535
+ [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
19536
+ Parent=SeaMonkey 1.0
19537
+ Platform="MacOSX"
19538
+ Win32=false
19539
 
19540
+ [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
19541
+ Parent=SeaMonkey 1.0
19542
+ Platform="WinME"
 
19543
 
19544
+ [Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
19545
+ Parent=SeaMonkey 1.0
19546
+ Platform="Win98"
19547
+ Platform_Version=98
19548
 
19549
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
19550
+ Parent=SeaMonkey 1.0
19551
+ Platform="Win2000"
19552
+ Platform_Version=5.0
19553
 
19554
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
19555
+ Parent=SeaMonkey 1.0
19556
+ Platform="WinXP"
19557
+ Platform_Version=5.1
19558
 
19559
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
19560
+ Parent=SeaMonkey 1.0
19561
+ Platform="Win2003"
19562
+ Platform_Version=5.2
19563
 
19564
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
19565
+ Parent=SeaMonkey 1.0
19566
+ Platform="WinVista"
19567
+ Platform_Version=6.0
19568
 
19569
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
19570
+ Parent=SeaMonkey 1.0
19571
+ Platform="Win7"
19572
+ Platform_Version=6.1
19573
 
19574
+ [Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
19575
+ Parent=SeaMonkey 1.0
19576
+ Platform="FreeBSD"
19577
+ Win32=false
19578
 
19579
+ [Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/20060221 SeaMonkey/1.0*]
19580
+ Parent=SeaMonkey 1.0
19581
+ Platform="Linux"
19582
+ Win32=false
19583
 
19584
+ [Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
19585
+ Parent=SeaMonkey 1.0
19586
+ Platform="SunOS"
19587
+ Win32=false
19588
 
19589
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.1
19590
 
19591
+ [SeaMonkey 1.1]
19592
  Parent=DefaultProperties
19593
+ Comment="SeaMonkey 1.1"
19594
+ Browser="SeaMonkey"
19595
+ Version=1.1
19596
+ MajorVer=1
19597
+ MinorVer=1
19598
+ Win32=true
19599
  Frames=true
19600
  IFrames=true
19601
  Tables=true
19602
  Cookies=true
 
 
19603
  JavaScript=true
19604
+ JavaApplets=true
19605
  CssVersion=2
 
19606
 
19607
+ [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
19608
+ Parent=SeaMonkey 1.1
19609
+ Platform="MacOSX"
19610
+ Win32=false
19611
 
19612
+ [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
19613
+ Parent=SeaMonkey 1.1
19614
+ Platform="WinME"
19615
 
19616
+ [Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
19617
+ Parent=SeaMonkey 1.1
19618
+ Platform="Win98"
19619
+ Platform_Version=98
19620
+ Win32=false
19621
 
19622
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
19623
+ Parent=SeaMonkey 1.1
19624
+ Platform="Win2000"
19625
+ Platform_Version=5.0
19626
 
19627
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
19628
+ Parent=SeaMonkey 1.1
19629
+ Platform="WinXP"
19630
+ Platform_Version=5.1
19631
 
19632
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
19633
+ Parent=SeaMonkey 1.1
19634
+ Platform="Win2003"
19635
+ Platform_Version=5.2
19636
 
19637
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
19638
+ Parent=SeaMonkey 1.1
19639
+ Platform="WinVista"
19640
+ Platform_Version=6.0
19641
 
19642
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
19643
+ Parent=SeaMonkey 1.1
19644
+ Platform="Win7"
19645
+ Platform_Version=6.1
19646
 
19647
+ [Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
19648
+ Parent=SeaMonkey 1.1
19649
+ Platform="FreeBSD"
19650
+ Win32=false
19651
 
19652
+ [Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
19653
+ Parent=SeaMonkey 1.1
19654
+ Platform="Linux"
19655
+ Win32=false
19656
 
19657
+ [Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
19658
+ Parent=SeaMonkey 1.1
19659
+ Platform="SunOS"
19660
+ Win32=false
19661
 
19662
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 2.0
 
 
 
19663
 
19664
+ [SeaMonkey 2.0]
19665
+ Parent=DefaultProperties
19666
+ Comment="SeaMonkey 2.0"
19667
+ Browser="SeaMonkey"
19668
+ Version=2.0
19669
+ MajorVer=2
19670
+ MinorVer=0
19671
  Win32=true
19672
+ Frames=true
19673
+ IFrames=true
19674
+ Tables=true
19675
+ Cookies=true
19676
+ JavaScript=true
19677
+ JavaApplets=true
19678
+ CssVersion=2
19679
 
19680
+ [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
19681
+ Parent=SeaMonkey 2.0
19682
+ Platform="MacOSX"
19683
+ Win32=false
 
 
 
 
19684
 
19685
+ [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
19686
+ Parent=SeaMonkey 2.0
19687
+ Platform="WinME"
19688
 
19689
+ [Mozilla/5.0 (Windows; ?; Win98; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
19690
+ Parent=SeaMonkey 2.0
19691
+ Platform="Win98"
19692
+ Platform_Version=98
19693
 
19694
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
19695
+ Parent=SeaMonkey 2.0
19696
+ Platform="Win2000"
19697
+ Platform_Version=5.0
19698
 
19699
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
19700
+ Parent=SeaMonkey 2.0
19701
+ Platform="WinXP"
19702
+ Platform_Version=5.1
19703
 
19704
+ [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
19705
+ Parent=SeaMonkey 2.0
19706
+ Platform="Win2003"
19707
+ Platform_Version=5.2
19708
 
19709
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
19710
+ Parent=SeaMonkey 2.0
19711
+ Platform="WinVista"
19712
+ Platform_Version=6.0
19713
 
19714
+ [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
19715
+ Parent=SeaMonkey 2.0
19716
+ Platform="Win7"
19717
+ Platform_Version=6.1
19718
 
19719
+ [Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
19720
+ Parent=SeaMonkey 2.0
19721
+ Platform="FreeBSD"
19722
+ Win32=false
19723
 
19724
+ [Mozilla/5.0 (X11; ?; Linux*; *; rv:1.9*) Gecko/20060221 SeaMonkey/2.0*]
19725
+ Parent=SeaMonkey 2.0
19726
+ Platform="Linux"
19727
+ Win32=false
19728
 
19729
+ [Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
19730
+ Parent=SeaMonkey 2.0
19731
+ Platform="SunOS"
19732
+ Win32=false
19733
 
19734
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 2.1
 
 
 
19735
 
19736
+ [SeaMonkey 2.1]
19737
+ Parent=DefaultProperties
19738
+ Comment="SeaMonkey 2.1"
19739
+ Browser="SeaMonkey"
19740
+ Version=2.1
19741
+ MajorVer=2
19742
+ MinorVer=1
19743
  Win32=true
19744
+ Frames=true
19745
+ IFrames=true
19746
+ Tables=true
19747
+ Cookies=true
19748
+ JavaScript=true
19749
+ JavaApplets=true
19750
+ CssVersion=3
19751
 
19752
+ [Mozilla/5.0 (Windows NT 5.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.1*]
19753
+ Parent=SeaMonkey 2.1
19754
+ Platform="WinXP"
19755
+ Platform_Version=5.1
 
 
 
19756
 
19757
+ [Mozilla/5.0 (Windows NT 6.0; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.1*]
19758
+ Parent=SeaMonkey 2.1
19759
+ Platform="WinVista"
19760
+ Platform_Version=6.0
19761
 
19762
+ [Mozilla/5.0 (Windows NT 6.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.1*]
19763
+ Parent=SeaMonkey 2.1
19764
+ Platform="Win7"
19765
+ Platform_Version=6.1
19766
 
19767
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seamonkey 2.2
 
 
19768
 
19769
+ [Seamonkey 2.2]
19770
+ Parent=DefaultProperties
19771
+ Comment="Seamonkey 2.2"
19772
+ Browser="SeaMonkey"
19773
+ Version=2.2
19774
+ MajorVer=2
19775
+ MinorVer=2
19776
  Win32=true
19777
+ Frames=true
19778
+ IFrames=true
19779
+ Tables=true
19780
+ Cookies=true
19781
+ JavaScript=true
19782
+ JavaApplets=true
19783
+ CssVersion=3
19784
 
19785
+ [Mozilla/5.0 (Windows NT 5.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.2*]
19786
+ Parent=Seamonkey 2.2
19787
+ Platform="WinXP"
19788
+ Platform_Version=5.1
19789
 
19790
+ [Mozilla/5.0 (Windows NT 6.0; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.2*]
19791
+ Parent=Seamonkey 2.2
19792
+ Platform="WinVista"
19793
+ Platform_Version=6.0
19794
 
19795
+ [Mozilla/5.0 (Windows NT 6.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.2*]
19796
+ Parent=Seamonkey 2.2
19797
+ Platform="Win7"
19798
+ Platform_Version=6.1
19799
 
19800
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seamonkey 2.3
 
 
 
19801
 
19802
+ [Seamonkey 2.3]
19803
+ Parent=DefaultProperties
19804
+ Comment="Seamonkey 2.3"
19805
+ Browser="SeaMonkey"
19806
+ Version=2.3
19807
+ MajorVer=2
19808
+ MinorVer=3
19809
  Win32=true
19810
+ Frames=true
19811
+ IFrames=true
19812
+ Tables=true
19813
+ Cookies=true
19814
+ JavaScript=true
19815
+ JavaApplets=true
19816
+ CssVersion=3
19817
 
19818
+ [Mozilla/5.0 (Windows NT 5.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.3*]
19819
+ Parent=Seamonkey 2.3
19820
+ Platform="WinXP"
19821
+ Platform_Version=5.1
19822
 
19823
+ [Mozilla/5.0 (Windows NT 6.0; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.3*]
19824
+ Parent=Seamonkey 2.3
19825
+ Platform="WinVista"
19826
+ Platform_Version=6.0
19827
 
19828
+ [Mozilla/5.0 (Windows NT 6.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.3*]
19829
+ Parent=Seamonkey 2.3
19830
+ Platform="Win7"
19831
+ Platform_Version=6.1
19832
 
19833
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seamonkey 2.4
 
 
19834
 
19835
+ [Seamonkey 2.4]
19836
+ Parent=DefaultProperties
19837
+ Comment="Seamonkey 2.4"
19838
+ Browser="SeaMonkey"
19839
+ Version=2.4
19840
+ MajorVer=2
19841
+ MinorVer=4
19842
  Win32=true
19843
+ Frames=true
19844
+ IFrames=true
19845
+ Tables=true
19846
+ Cookies=true
19847
+ JavaScript=true
19848
+ JavaApplets=true
19849
+ CssVersion=3
19850
 
19851
+ [Mozilla/5.0 (Windows NT 5.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.4*]
19852
+ Parent=Seamonkey 2.4
19853
+ Platform="WinXP"
19854
+ Platform_Version=5.1
19855
 
19856
+ [Mozilla/5.0 (Windows NT 6.0; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.4*]
19857
+ Parent=Seamonkey 2.4
19858
+ Platform="WinVista"
19859
+ Platform_Version=6.0
19860
 
19861
+ [Mozilla/5.0 (Windows NT 6.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.4*]
19862
+ Parent=Seamonkey 2.4
19863
+ Platform="Win7"
19864
+ Platform_Version=6.1
19865
 
19866
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seamonkey 2.5
19867
 
19868
+ [Seamonkey 2.5]
19869
  Parent=DefaultProperties
19870
+ Comment="Seamonkey 2.5"
19871
+ Browser="SeaMonkey"
19872
+ Version=2.5
19873
+ MajorVer=2
19874
+ MinorVer=5
19875
+ Win32=true
19876
  Frames=true
19877
+ IFrames=true
19878
  Tables=true
19879
  Cookies=true
 
19880
  JavaScript=true
19881
+ JavaApplets=true
19882
+ CssVersion=3
 
 
 
 
 
 
 
 
 
 
19883
 
19884
+ [Mozilla/5.0 (Windows NT 5.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.5*]
19885
+ Parent=Seamonkey 2.5
19886
+ Platform="WinXP"
19887
+ Platform_Version=5.1
 
19888
 
19889
+ [Mozilla/5.0 (Windows NT 6.0; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.5*]
19890
+ Parent=Seamonkey 2.5
19891
+ Platform="WinVista"
19892
+ Platform_Version=6.0
 
19893
 
19894
+ [Mozilla/5.0 (Windows NT 6.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.5*]
19895
+ Parent=Seamonkey 2.5
19896
+ Platform="Win7"
19897
+ Platform_Version=6.1
19898
 
19899
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 1.0
19900
 
19901
+ [Flock 1.0]
19902
  Parent=DefaultProperties
19903
+ Comment="Flock 1.0"
19904
+ Browser="Flock"
19905
+ Version=1.0
19906
+ MajorVer=1
19907
+ MinorVer=0
19908
+ Win32=true
19909
  Frames=true
19910
+ IFrames=true
19911
  Tables=true
19912
  Cookies=true
 
19913
  JavaScript=true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19914
  JavaApplets=true
19915
+ CssVersion=2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19916
 
19917
+ [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
19918
+ Parent=Flock 1.0
19919
+ Platform="MacOSX"
19920
+ Win32=false
19921
 
19922
+ [Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
19923
+ Parent=Flock 1.0
19924
+ Platform="WinME"
19925
 
19926
+ [Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
19927
+ Parent=Flock 1.0
19928
+ Platform="Win2000"
19929
+ Platform_Version=5.0
 
 
19930
 
19931
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
19932
+ Parent=Flock 1.0
19933
+ Platform="WinXP"
19934
+ Platform_Version=5.1
 
 
19935
 
19936
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
19937
+ Parent=Flock 1.0
19938
+ Platform="Win2003"
19939
+ Platform_Version=5.2
 
 
19940
 
19941
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
19942
+ Parent=Flock 1.0
19943
+ Platform="WinVista"
19944
+ Platform_Version=6.0
19945
 
19946
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
19947
+ Parent=Flock 1.0
19948
+ Platform="Win7"
19949
+ Platform_Version=6.1
 
 
19950
 
19951
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 2.0
19952
 
19953
+ [Flock 2.0]
19954
  Parent=DefaultProperties
19955
+ Comment="Flock 2.0"
19956
+ Browser="Flock"
19957
+ Version=2.0
19958
+ MajorVer=2
19959
+ MinorVer=0
19960
+ Win32=true
19961
  Frames=true
19962
+ IFrames=true
19963
  Tables=true
19964
  Cookies=true
 
19965
  JavaScript=true
19966
+ JavaApplets=true
19967
+ CssVersion=2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19968
 
19969
+ [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
19970
+ Parent=Flock 2.0
19971
+ Platform="MacOSX"
19972
+ Win32=false
19973
 
19974
+ [Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
19975
+ Parent=Flock 2.0
19976
+ Platform="WinME"
 
 
19977
 
19978
+ [Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
19979
+ Parent=Flock 2.0
19980
+ Platform="Win2000"
19981
+ Platform_Version=5.0
 
19982
 
19983
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
19984
+ Parent=Flock 2.0
19985
+ Platform="WinXP"
19986
+ Platform_Version=5.1
 
19987
 
19988
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
19989
+ Parent=Flock 2.0
19990
+ Platform="Win2003"
19991
+ Platform_Version=5.2
19992
 
19993
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
19994
+ Parent=Flock 2.0
19995
+ Platform="WinVista"
19996
+ Platform_Version=6.0
19997
 
19998
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
19999
+ Parent=Flock 2.0
20000
+ Platform="Win7"
20001
+ Platform_Version=6.1
20002
 
20003
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 3.0
 
 
 
 
20004
 
20005
+ [Flock 3.0]
20006
+ Parent=DefaultProperties
20007
+ Comment="Flock 3.0"
20008
+ Browser="Flock"
20009
+ Version=3.0
20010
+ MajorVer=3
20011
+ MinorVer=0
20012
+ Win32=true
20013
+ Frames=true
20014
+ IFrames=true
20015
+ Tables=true
20016
+ Cookies=true
20017
+ JavaScript=true
20018
+ JavaApplets=true
20019
+ CssVersion=3
20020
 
20021
+ [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Flock/3.* Chrome/* Safari/*]
20022
+ Parent=Flock 3.0
20023
+ Version=3.5
20024
+ MajorVer=3
20025
+ MinorVer=5
20026
+ Platform="MacOSX"
20027
 
20028
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sleipnir 2.0
 
 
 
 
 
20029
 
20030
+ [Sleipnir]
20031
+ Parent=DefaultProperties
20032
+ Comment="Sleipnir 2.0"
20033
+ Browser="Sleipnir"
20034
+ Version=2.0
20035
+ MajorVer=2
20036
+ MinorVer=0
20037
  Win32=true
20038
+ Frames=true
20039
+ IFrames=true
20040
+ Tables=true
20041
+ Cookies=true
20042
+ JavaScript=true
20043
+ JavaApplets=true
20044
+ CssVersion=2
20045
 
20046
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.0*) Sleipnir/2.*]
20047
+ Parent=Sleipnir
20048
+ Platform="Win2000"
20049
+ Platform_Version=5.0
 
 
20050
 
20051
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.1*) Sleipnir/2.*]
20052
+ Parent=Sleipnir
20053
+ Platform="WinXP"
20054
+ Platform_Version=5.1
 
20055
 
20056
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.2*) Sleipnir/2.*]
20057
+ Parent=Sleipnir
20058
+ Platform="Win2003"
20059
+ Platform_Version=5.2
 
20060
 
20061
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.0*) Sleipnir/2.*]
20062
+ Parent=Sleipnir
20063
+ Platform="WinVista"
20064
+ Platform_Version=6.0
 
20065
 
20066
+ [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.1*) Sleipnir/2.*]
20067
+ Parent=Sleipnir
20068
+ Platform="Win7"
20069
+ Platform_Version=6.1
20070
 
20071
+ [Sleipnir*]
20072
+ Parent=Sleipnir
20073
+ Win32=false
 
20074
 
20075
+ [Sleipnir/2.*]
20076
+ Parent=Sleipnir
20077
+ Win32=false
 
20078
 
20079
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.0
 
 
 
 
20080
 
20081
+ [Firefox 1.0]
20082
+ Parent=DefaultProperties
20083
+ Comment="Firefox 1.0"
20084
+ Browser="Firefox"
20085
+ Version=1.0
20086
+ MajorVer=1
20087
+ MinorVer=0
20088
  Win32=true
20089
+ Frames=true
20090
+ IFrames=true
20091
+ Tables=true
20092
+ Cookies=true
20093
+ JavaScript=true
20094
+ JavaApplets=true
20095
+ CssVersion=2
20096
 
20097
+ [Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.*]
20098
+ Parent=Firefox 1.0
20099
+ Platform="MacPPC"
20100
+ Win32=false
 
20101
 
20102
+ [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.*]
20103
+ Parent=Firefox 1.0
20104
+ Platform="MacOSX"
20105
+ Win32=false
20106
 
20107
+ [Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.*]
20108
+ Parent=Firefox 1.0
20109
+ Platform="OS/2"
20110
+ Win32=false
20111
 
20112
+ [Mozilla/5.0 (Windows; *; Win 9x 4.90*; *; rv:1.*) Gecko/* Firefox/1.*]
20113
+ Parent=Firefox 1.0
20114
+ Platform="WinME"
 
20115
 
20116
+ [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.*]
20117
+ Parent=Firefox 1.0
20118
+ Platform="Win95"
20119
+ Platform_Version=95
20120
 
20121
+ [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.*]
20122
+ Parent=Firefox 1.0
20123
+ Platform="Win98"
20124
+ Platform_Version=98
20125
 
20126
+ [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.*]
20127
+ Parent=Firefox 1.0
20128
+ Platform="Win2000"
20129
+ Platform_Version=5.0
20130
 
20131
+ [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.*]
20132
+ Parent=Firefox 1.0
20133
+ Platform="WinXP"
20134
+ Platform_Version=5.1
 
20135
 
20136
+ [Mozilla/5.0 (Windows; *; Windows NT 5.1; rv:1.*) Gecko/* Firefox/1.*]
20137
+ Parent=Firefox 1.0
20138
+ Platform="WinXP"
20139
+ Platform_Version=5.1
 
20140
 
20141
+ [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.*]
20142
+ Parent=Firefox 1.0
20143
+ Platform="Win2003"
20144
+ Platform_Version=5.2
 
20145
 
20146
+ [Mozilla/5.0 (Windows; *; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/1.*]
20147
+ Parent=Firefox 1.0
20148
+ Platform="WinVista"
20149
+ Platform_Version=6.0
20150
 
20151
+ [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.*]
20152
+ Parent=Firefox 1.0
20153
+ Platform="WinNT"
20154
+ Platform_Version=4.0
20155
 
20156
+ [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.*]
20157
+ Parent=Firefox 1.0
20158
+ Platform="Linux"
20159
+ Win32=false
20160
 
20161
+ [Mozilla/5.0 (X11; *; *Linux*; rv:1.*) Gecko/* Firefox/1.*]
20162
+ Parent=Firefox 1.0
20163
+ Platform="Linux"
20164
+ Win32=false
20165
 
20166
+ [Mozilla/5.0 (X11; *; DragonFly*; *; rv:1.*) Gecko/* Firefox/1.*]
20167
+ Parent=Firefox 1.0
20168
+ Win32=false
 
20169
 
20170
+ [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.*]
20171
+ Parent=Firefox 1.0
20172
+ Platform="FreeBSD"
20173
+ Win32=false
20174
 
20175
+ [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.*]
20176
+ Parent=Firefox 1.0
20177
+ Platform="HP-UX"
20178
+ Win32=false
 
20179
 
20180
+ [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.*]
20181
+ Parent=Firefox 1.0
20182
+ Platform="IRIX64"
20183
+ Win32=false
 
20184
 
20185
+ [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.*]
20186
+ Parent=Firefox 1.0
20187
+ Platform="OpenBSD"
20188
+ Win32=false
 
20189
 
20190
+ [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.*]
20191
+ Parent=Firefox 1.0
20192
+ Platform="SunOS"
20193
+ Win32=false
20194
 
20195
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 10.0
 
 
 
20196
 
20197
+ [Firefox 10.0]
20198
+ Parent=DefaultProperties
20199
+ Comment="Firefox 10.0"
20200
+ Browser="Firefox"
20201
+ Version=10.0
20202
+ MajorVer=10
20203
+ MinorVer=0
20204
+ Win32=true
20205
+ Frames=true
20206
+ IFrames=true
20207
+ Tables=true
20208
+ Cookies=true
20209
+ JavaScript=true
20210
+ JavaApplets=true
20211
+ CssVersion=3
20212
 
20213
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/10.*]
20214
+ Parent=Firefox 10.0
20215
+ Platform="FreeBSD"
20216
+ Win32=false
20217
 
20218
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/10.*]
20219
+ Parent=Firefox 10.0
20220
+ Platform="HP-UX"
20221
+ Win32=false
20222
 
20223
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/10.*]
20224
+ Parent=Firefox 10.0
20225
+ Platform="IRIX64"
20226
+ Win32=false
20227
 
20228
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/10.*]
20229
+ Parent=Firefox 10.0
20230
+ Platform="Linux"
20231
+ Win32=false
 
20232
 
20233
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/10.*]
20234
+ Parent=Firefox 10.0
20235
+ Platform="MacOSX"
20236
+ Win32=false
 
20237
 
20238
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/10.*]
20239
+ Parent=Firefox 10.0
20240
+ Platform="OpenBSD"
20241
+ Win32=false
 
20242
 
20243
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/10.*]
20244
+ Parent=Firefox 10.0
20245
+ Platform="SunOS"
20246
+ Win32=false
20247
 
20248
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/10.*]
20249
+ Parent=Firefox 10.0
20250
+ Platform="Win2000"
20251
+ Platform_Version=5.0
20252
 
20253
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/10.*]
20254
+ Parent=Firefox 10.0
20255
+ Platform="WinXP"
20256
+ Platform_Version=5.1
20257
 
20258
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/10.*]
20259
+ Parent=Firefox 10.0
20260
+ Platform="WinXP"
20261
+ Platform_Version=5.1
20262
+ Win32=false
20263
+ Win64=true
20264
 
20265
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/10.*]
20266
+ Parent=Firefox 10.0
20267
+ Platform="Win2003"
20268
+ Platform_Version=5.2
20269
 
20270
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/10.*]
20271
+ Parent=Firefox 10.0
20272
+ Platform="Win2003"
20273
+ Platform_Version=5.2
20274
+ Win32=false
20275
+ Win64=true
20276
 
20277
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/10.*]
20278
+ Parent=Firefox 10.0
20279
+ Platform="WinVista"
20280
+ Platform_Version=6.0
 
20281
 
20282
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/10.*]
20283
+ Parent=Firefox 10.0
20284
+ Platform="WinVista"
20285
+ Platform_Version=6.0
20286
+ Win32=false
20287
+ Win64=true
20288
 
20289
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/10.*]
20290
+ Parent=Firefox 10.0
20291
+ Platform="Win7"
20292
+ Platform_Version=6.1
 
20293
 
20294
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/10.*]
20295
+ Parent=Firefox 10.0
20296
+ Platform="Win7"
20297
+ Platform_Version=6.1
20298
+ Win32=false
20299
+ Win64=true
20300
 
20301
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/10.*]
20302
+ Parent=Firefox 10.0
20303
+ Platform="Win8"
20304
+ Platform_Version=6.2
20305
 
20306
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/10.*]
20307
+ Parent=Firefox 10.0
20308
+ Platform="Win8"
20309
+ Platform_Version=6.2
20310
+ Win64=true
20311
 
20312
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 11.0
 
 
 
20313
 
20314
+ [Firefox 11.0]
20315
+ Parent=DefaultProperties
20316
+ Comment="Firefox 11.0"
20317
+ Browser="Firefox"
20318
+ Version=11.0
20319
+ MajorVer=11
20320
+ MinorVer=0
20321
+ Win32=true
20322
+ Frames=true
20323
+ IFrames=true
20324
+ Tables=true
20325
+ Cookies=true
20326
+ JavaScript=true
20327
+ JavaApplets=true
20328
+ CssVersion=3
20329
 
20330
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/11.*]
20331
+ Parent=Firefox 11.0
20332
+ Platform="FreeBSD"
20333
+ Win32=false
20334
 
20335
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/11.*]
20336
+ Parent=Firefox 11.0
20337
+ Platform="HP-UX"
20338
+ Win32=false
 
20339
 
20340
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/11.*]
20341
+ Parent=Firefox 11.0
20342
+ Platform="IRIX64"
20343
+ Win32=false
 
20344
 
20345
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/11.*]
20346
+ Parent=Firefox 11.0
20347
+ Platform="Linux"
20348
+ Win32=false
 
20349
 
20350
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/11.*]
20351
+ Parent=Firefox 11.0
20352
+ Platform="MacOSX"
20353
+ Win32=false
20354
 
20355
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/11.*]
20356
+ Parent=Firefox 11.0
20357
+ Platform="OpenBSD"
20358
+ Win32=false
20359
 
20360
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/11.*]
20361
+ Parent=Firefox 11.0
20362
+ Platform="SunOS"
20363
+ Win32=false
20364
 
20365
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/11.*]
20366
+ Parent=Firefox 11.0
20367
+ Platform="Win2000"
20368
+ Platform_Version=5.0
20369
 
20370
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/11.*]
20371
+ Parent=Firefox 11.0
20372
+ Platform="WinXP"
20373
+ Platform_Version=5.1
20374
 
20375
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/11.*]
20376
+ Parent=Firefox 11.0
20377
+ Platform="WinXP"
20378
+ Platform_Version=5.1
20379
+ Win32=false
20380
+ Win64=true
20381
 
20382
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/11.*]
20383
+ Parent=Firefox 11.0
20384
+ Platform="Win2003"
20385
+ Platform_Version=5.2
 
20386
 
20387
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/11.*]
20388
+ Parent=Firefox 11.0
20389
+ Platform="Win2003"
20390
+ Platform_Version=5.2
20391
+ Win32=false
20392
+ Win64=true
20393
 
20394
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/11.*]
20395
+ Parent=Firefox 11.0
20396
+ Platform="WinVista"
20397
+ Platform_Version=6.0
 
20398
 
20399
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/11.*]
20400
+ Parent=Firefox 11.0
20401
+ Platform="WinVista"
20402
+ Platform_Version=6.0
20403
+ Win32=false
20404
+ Win64=true
20405
 
20406
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/11.*]
20407
+ Parent=Firefox 11.0
20408
+ Platform="Win7"
20409
+ Platform_Version=6.1
20410
 
20411
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/11.*]
20412
+ Parent=Firefox 11.0
20413
+ Platform="Win7"
20414
+ Platform_Version=6.1
20415
+ Win32=false
20416
+ Win64=true
20417
 
20418
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/11.*]
20419
+ Parent=Firefox 11.0
20420
+ Platform="Win8"
20421
+ Platform_Version=6.2
 
20422
 
20423
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/11.*]
20424
+ Parent=Firefox 11.0
20425
+ Platform="Win8"
20426
+ Platform_Version=6.2
20427
+ Win64=true
20428
 
20429
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 12.0
 
 
 
 
20430
 
20431
+ [Firefox 12.0]
20432
+ Parent=DefaultProperties
20433
+ Comment="Firefox 12.0"
20434
+ Browser="Firefox"
20435
+ Version=12.0
20436
+ MajorVer=12
20437
+ MinorVer=0
20438
  Win32=true
20439
+ Frames=true
20440
+ IFrames=true
20441
+ Tables=true
20442
+ Cookies=true
20443
+ JavaScript=true
20444
+ JavaApplets=true
20445
+ CssVersion=3
20446
 
20447
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/12.*]
20448
+ Parent=Firefox 12.0
20449
+ Platform="FreeBSD"
20450
+ Win32=false
 
 
20451
 
20452
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/12.*]
20453
+ Parent=Firefox 12.0
20454
+ Platform="HP-UX"
20455
+ Win32=false
 
 
20456
 
20457
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/12.*]
20458
+ Parent=Firefox 12.0
20459
+ Platform="IRIX64"
20460
+ Win32=false
 
20461
 
20462
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/12.*]
20463
+ Parent=Firefox 12.0
20464
+ Platform="Linux"
20465
+ Win32=false
 
20466
 
20467
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/12.*]
20468
+ Parent=Firefox 12.0
20469
+ Platform="MacOSX"
20470
+ Win32=false
 
20471
 
20472
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/12.*]
20473
+ Parent=Firefox 12.0
20474
+ Platform="OpenBSD"
20475
+ Win32=false
20476
 
20477
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/12.*]
20478
+ Parent=Firefox 12.0
20479
+ Platform="SunOS"
20480
+ Win32=false
 
 
 
 
 
 
 
 
 
20481
 
20482
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/12.*]
20483
+ Parent=Firefox 12.0
20484
+ Platform="Win2000"
20485
+ Platform_Version=5.0
20486
 
20487
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/12.*]
20488
+ Parent=Firefox 12.0
20489
+ Platform="WinXP"
20490
+ Platform_Version=5.1
20491
 
20492
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/12.*]
20493
+ Parent=Firefox 12.0
20494
+ Platform="WinXP"
20495
+ Platform_Version=5.1
20496
+ Win32=false
20497
+ Win64=true
20498
 
20499
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/12.*]
20500
+ Parent=Firefox 12.0
20501
+ Platform="Win2003"
20502
+ Platform_Version=5.2
20503
 
20504
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/12.*]
20505
+ Parent=Firefox 12.0
20506
+ Platform="Win2003"
20507
+ Platform_Version=5.2
20508
+ Win32=false
20509
+ Win64=true
20510
 
20511
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/12.*]
20512
+ Parent=Firefox 12.0
20513
+ Platform="WinVista"
20514
+ Platform_Version=6.0
20515
 
20516
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/12.*]
20517
+ Parent=Firefox 12.0
20518
+ Platform="WinVista"
20519
+ Platform_Version=6.0
20520
+ Win32=false
20521
+ Win64=true
20522
 
20523
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/12.*]
20524
+ Parent=Firefox 12.0
20525
+ Platform="Win7"
20526
+ Platform_Version=6.1
20527
 
20528
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/12.*]
20529
+ Parent=Firefox 12.0
20530
+ Platform="Win7"
20531
+ Platform_Version=6.1
20532
+ Win32=false
20533
+ Win64=true
20534
 
20535
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/12.*]
20536
+ Parent=Firefox 12.0
20537
+ Platform="Win8"
20538
+ Platform_Version=6.2
20539
 
20540
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/12.*]
20541
+ Parent=Firefox 12.0
20542
+ Platform="Win8"
20543
+ Platform_Version=6.2
20544
+ Win64=true
20545
 
20546
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 13.0
20547
 
20548
+ [Firefox 13.0]
20549
  Parent=DefaultProperties
20550
+ Comment="Firefox 13.0"
20551
+ Browser="Firefox"
20552
+ Version=13.0
20553
+ MajorVer=13
20554
+ MinorVer=0
20555
+ Win32=true
20556
  Frames=true
20557
  IFrames=true
20558
  Tables=true
20559
  Cookies=true
 
20560
  JavaScript=true
20561
+ JavaApplets=true
20562
+ CssVersion=3
20563
 
20564
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/13.*]
20565
+ Parent=Firefox 13.0
20566
+ Platform="FreeBSD"
20567
+ Win32=false
20568
 
20569
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/13.*]
20570
+ Parent=Firefox 13.0
20571
+ Platform="HP-UX"
20572
+ Win32=false
20573
 
20574
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/13.*]
20575
+ Parent=Firefox 13.0
20576
+ Platform="IRIX64"
20577
+ Win32=false
20578
 
20579
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/13.*]
20580
+ Parent=Firefox 13.0
20581
+ Platform="Linux"
20582
+ Win32=false
20583
 
20584
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/13.*]
20585
+ Parent=Firefox 13.0
20586
+ Platform="MacOSX"
20587
+ Win32=false
20588
 
20589
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/13.*]
20590
+ Parent=Firefox 13.0
20591
+ Platform="OpenBSD"
20592
+ Win32=false
20593
 
20594
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/13.*]
20595
+ Parent=Firefox 13.0
20596
+ Platform="SunOS"
20597
+ Win32=false
20598
 
20599
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/13.*]
20600
+ Parent=Firefox 13.0
20601
+ Platform="Win2000"
20602
+ Platform_Version=5.0
20603
 
20604
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/13.*]
20605
+ Parent=Firefox 13.0
20606
+ Platform="WinXP"
20607
+ Platform_Version=5.1
20608
 
20609
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/13.*]
20610
+ Parent=Firefox 13.0
20611
+ Platform="WinXP"
20612
+ Platform_Version=5.1
20613
+ Win32=false
20614
+ Win64=true
20615
 
20616
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/13.*]
20617
+ Parent=Firefox 13.0
20618
+ Platform="Win2003"
20619
+ Platform_Version=5.2
20620
 
20621
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/13.*]
20622
+ Parent=Firefox 13.0
20623
+ Platform="Win2003"
20624
+ Platform_Version=5.2
20625
+ Win32=false
20626
+ Win64=true
20627
 
20628
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/13.*]
20629
+ Parent=Firefox 13.0
20630
+ Platform="WinVista"
20631
+ Platform_Version=6.0
20632
 
20633
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/13.*]
20634
+ Parent=Firefox 13.0
20635
+ Platform="WinVista"
20636
+ Platform_Version=6.0
20637
+ Win32=false
20638
+ Win64=true
20639
 
20640
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/13.*]
20641
+ Parent=Firefox 13.0
20642
+ Platform="Win7"
20643
+ Platform_Version=6.1
20644
 
20645
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/13.*]
20646
+ Parent=Firefox 13.0
20647
+ Platform="Win7"
20648
+ Platform_Version=6.1
20649
+ Win32=false
20650
+ Win64=true
20651
 
20652
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/13.*]
20653
+ Parent=Firefox 13.0
20654
+ Platform="Win8"
20655
+ Platform_Version=6.2
20656
 
20657
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/13.*]
20658
+ Parent=Firefox 13.0
20659
+ Platform="Win8"
20660
+ Platform_Version=6.2
20661
+ Win64=true
20662
+
20663
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 14.0
20664
 
20665
+ [Firefox 14.0]
20666
  Parent=DefaultProperties
20667
+ Comment="Firefox 14.0"
20668
+ Browser="Firefox"
20669
+ Version=14.0
20670
+ MajorVer=14
20671
+ MinorVer=0
20672
+ Win32=true
20673
  Frames=true
20674
  IFrames=true
20675
  Tables=true
20676
  Cookies=true
 
20677
  JavaScript=true
20678
+ JavaApplets=true
20679
+ CssVersion=3
20680
 
20681
+ [Mozilla/5.0 (*Android; Mobile;*rv:*)*Gecko/14.*Firefox/14.*]
20682
+ Parent=Firefox 14.0
20683
+ Platform="Android"
20684
+ isMobileDevice=true
20685
 
20686
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/14.*]
20687
+ Parent=Firefox 14.0
20688
+ Platform="FreeBSD"
20689
+ Win32=false
20690
 
20691
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/14.*]
20692
+ Parent=Firefox 14.0
20693
+ Platform="HP-UX"
20694
+ Win32=false
20695
 
20696
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/14.*]
20697
+ Parent=Firefox 14.0
20698
+ Platform="IRIX64"
20699
+ Win32=false
20700
 
20701
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/14.*]
20702
+ Parent=Firefox 14.0
20703
+ Platform="Linux"
20704
+ Win32=false
20705
 
20706
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/14.*]
20707
+ Parent=Firefox 14.0
20708
+ Platform="MacOSX"
20709
+ Win32=false
20710
 
20711
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/14.*]
20712
+ Parent=Firefox 14.0
20713
+ Platform="OpenBSD"
20714
+ Win32=false
20715
 
20716
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/14.*]
20717
+ Parent=Firefox 14.0
20718
+ Platform="SunOS"
20719
+ Win32=false
20720
 
20721
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/14.*]
20722
+ Parent=Firefox 14.0
20723
+ Platform="Win2000"
20724
+ Platform_Version=5.0
20725
 
20726
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/14.*]
20727
+ Parent=Firefox 14.0
20728
+ Platform="WinXP"
20729
+ Platform_Version=5.1
20730
 
20731
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/14.*]
20732
+ Parent=Firefox 14.0
20733
+ Platform="WinXP"
20734
+ Platform_Version=5.1
20735
+ Win32=false
20736
+ Win64=true
20737
 
20738
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/14.*]
20739
+ Parent=Firefox 14.0
20740
+ Platform="Win2003"
20741
+ Platform_Version=5.2
20742
 
20743
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/14.*]
20744
+ Parent=Firefox 14.0
20745
+ Platform="Win2003"
20746
+ Platform_Version=5.2
20747
+ Win32=false
20748
+ Win64=true
20749
+
20750
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/14.*]
20751
+ Parent=Firefox 14.0
20752
+ Platform="WinVista"
20753
+ Platform_Version=6.0
20754
+
20755
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/14.*]
20756
+ Parent=Firefox 14.0
20757
+ Platform="WinVista"
20758
+ Platform_Version=6.0
20759
+ Win32=false
20760
+ Win64=true
20761
 
20762
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/14.*]
20763
+ Parent=Firefox 14.0
20764
+ Platform="Win7"
20765
+ Platform_Version=6.1
20766
 
20767
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/14.*]
20768
+ Parent=Firefox 14.0
20769
+ Platform="Win7"
20770
+ Platform_Version=6.1
20771
+ Win32=false
20772
+ Win64=true
20773
 
20774
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/14.*]
20775
+ Parent=Firefox 14.0
20776
+ Platform="Win8"
20777
+ Platform_Version=6.2
20778
 
20779
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/14.*]
20780
+ Parent=Firefox 14.0
20781
+ Platform="Win8"
20782
+ Platform_Version=6.2
20783
+ Win64=true
20784
 
20785
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 15.0
20786
 
20787
+ [Firefox 15.0]
20788
+ Parent=DefaultProperties
20789
+ Comment="Firefox 15.0"
20790
+ Browser="Firefox"
20791
+ Version=15.0
20792
+ MajorVer=15
20793
+ MinorVer=0
20794
+ Beta=true
20795
+ Win32=true
20796
  Frames=true
20797
  IFrames=true
20798
  Tables=true
20799
  Cookies=true
 
20800
  JavaScript=true
20801
+ JavaApplets=true
20802
+ CssVersion=3
 
 
 
 
20803
 
20804
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/15.*]
20805
+ Parent=Firefox 15.0
20806
+ Platform="FreeBSD"
20807
+ Win32=false
20808
 
20809
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/15.*]
20810
+ Parent=Firefox 15.0
20811
+ Platform="HP-UX"
20812
+ Win32=false
20813
 
20814
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/15.*]
20815
+ Parent=Firefox 15.0
20816
+ Platform="IRIX64"
20817
+ Win32=false
20818
 
20819
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/15.*]
20820
+ Parent=Firefox 15.0
20821
+ Platform="Linux"
20822
+ Win32=false
20823
 
20824
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/15.*]
20825
+ Parent=Firefox 15.0
20826
+ Platform="MacOSX"
20827
+ Win32=false
20828
 
20829
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/15.*]
20830
+ Parent=Firefox 15.0
20831
+ Platform="OpenBSD"
20832
+ Win32=false
20833
 
20834
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/15.*]
20835
+ Parent=Firefox 15.0
20836
+ Platform="SunOS"
20837
+ Win32=false
20838
 
20839
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/15.*]
20840
+ Parent=Firefox 15.0
20841
+ Platform="Win2000"
20842
+ Platform_Version=5.0
20843
 
20844
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/15.*]
20845
+ Parent=Firefox 15.0
20846
+ Platform="WinXP"
20847
+ Platform_Version=5.1
20848
 
20849
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/15.*]
20850
+ Parent=Firefox 15.0
20851
+ Platform="WinXP"
20852
+ Platform_Version=5.1
20853
+ Win32=false
20854
+ Win64=true
20855
 
20856
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/15.*]
20857
+ Parent=Firefox 15.0
20858
+ Platform="Win2003"
20859
+ Platform_Version=5.2
20860
 
20861
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/15.*]
20862
+ Parent=Firefox 15.0
20863
+ Platform="Win2003"
20864
+ Platform_Version=5.2
20865
+ Win32=false
20866
+ Win64=true
20867
 
20868
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/15.*]
20869
+ Parent=Firefox 15.0
20870
+ Platform="WinVista"
20871
+ Platform_Version=6.0
20872
 
20873
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/15.*]
20874
+ Parent=Firefox 15.0
20875
+ Platform="WinVista"
20876
+ Platform_Version=6.0
20877
+ Win32=false
20878
+ Win64=true
20879
 
20880
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/15.*]
20881
+ Parent=Firefox 15.0
20882
+ Platform="Win7"
20883
+ Platform_Version=6.1
20884
 
20885
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/15.*]
20886
+ Parent=Firefox 15.0
20887
+ Platform="Win7"
20888
+ Platform_Version=6.1
20889
+ Win32=false
20890
+ Win64=true
20891
 
20892
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/15.*]
20893
+ Parent=Firefox 15.0
20894
+ Platform="Win8"
20895
+ Platform_Version=6.2
20896
 
20897
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/15.*]
20898
+ Parent=Firefox 15.0
20899
+ Platform="Win8"
20900
+ Platform_Version=6.2
20901
+ Win64=true
20902
 
20903
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 16.0
20904
 
20905
+ [Firefox 16.0]
20906
  Parent=DefaultProperties
20907
+ Comment="Firefox 16.0"
20908
+ Browser="Firefox"
20909
+ Version=16.0
20910
+ MajorVer=16
20911
+ MinorVer=0
20912
+ Alpha=true
20913
+ Win32=true
20914
  Frames=true
20915
  IFrames=true
20916
  Tables=true
20917
  Cookies=true
 
20918
  JavaScript=true
20919
+ JavaApplets=true
20920
+ CssVersion=3
 
 
 
 
20921
 
20922
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/16.*]
20923
+ Parent=Firefox 16.0
20924
+ Platform="FreeBSD"
20925
+ Win32=false
20926
 
20927
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/16.*]
20928
+ Parent=Firefox 16.0
20929
+ Platform="HP-UX"
20930
+ Win32=false
20931
 
20932
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/16.*]
20933
+ Parent=Firefox 16.0
20934
+ Platform="IRIX64"
20935
+ Win32=false
20936
 
20937
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/16.*]
20938
+ Parent=Firefox 16.0
20939
+ Platform="Linux"
20940
+ Win32=false
20941
 
20942
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/16.*]
20943
+ Parent=Firefox 16.0
20944
+ Platform="MacOSX"
20945
+ Win32=false
20946
 
20947
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/16.*]
20948
+ Parent=Firefox 16.0
20949
+ Platform="OpenBSD"
20950
+ Win32=false
20951
 
20952
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/16.*]
20953
+ Parent=Firefox 16.0
20954
+ Platform="SunOS"
20955
+ Win32=false
20956
 
20957
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/16.*]
20958
+ Parent=Firefox 16.0
20959
+ Platform="Win2000"
20960
+ Platform_Version=5.0
20961
 
20962
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/16.*]
20963
+ Parent=Firefox 16.0
20964
+ Platform="WinXP"
20965
+ Platform_Version=5.1
20966
 
20967
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/16.*]
20968
+ Parent=Firefox 16.0
20969
+ Platform="WinXP"
20970
+ Platform_Version=5.1
20971
+ Win32=false
20972
+ Win64=true
20973
 
20974
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/16.*]
20975
+ Parent=Firefox 16.0
20976
+ Platform="Win2003"
20977
+ Platform_Version=5.2
20978
 
20979
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/16.*]
20980
+ Parent=Firefox 16.0
20981
+ Platform="Win2003"
20982
+ Platform_Version=5.2
20983
+ Win32=false
20984
+ Win64=true
20985
 
20986
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/16.*]
20987
+ Parent=Firefox 16.0
20988
+ Platform="WinVista"
20989
+ Platform_Version=6.0
20990
 
20991
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/16.*]
20992
+ Parent=Firefox 16.0
20993
+ Platform="WinVista"
20994
+ Platform_Version=6.0
20995
+ Win32=false
20996
+ Win64=true
20997
 
20998
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/16.*]
20999
+ Parent=Firefox 16.0
21000
+ Platform="Win7"
21001
+ Platform_Version=6.1
21002
 
21003
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/16.*]
21004
+ Parent=Firefox 16.0
21005
+ Platform="Win7"
21006
+ Platform_Version=6.1
21007
+ Win32=false
21008
+ Win64=true
21009
 
21010
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/16.*]
21011
+ Parent=Firefox 16.0
21012
+ Platform="Win8"
21013
+ Platform_Version=6.2
21014
 
21015
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/16.*]
21016
+ Parent=Firefox 16.0
21017
+ Platform="Win8"
21018
+ Platform_Version=6.2
21019
+ Win64=true
21020
 
21021
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 17.0
21022
 
21023
+ [Firefox 17.0]
21024
  Parent=DefaultProperties
21025
+ Comment="Firefox 17.0"
21026
+ Browser="Firefox"
21027
+ Version=17.0
21028
+ MajorVer=17
21029
+ MinorVer=0
21030
+ Alpha=true
21031
+ Win32=true
21032
  Frames=true
21033
  IFrames=true
21034
  Tables=true
21035
  Cookies=true
 
21036
  JavaScript=true
21037
+ JavaApplets=true
21038
+ CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
21039
 
21040
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/17.*]
21041
+ Parent=Firefox 17.0
21042
+ Platform="FreeBSD"
21043
+ Win32=false
21044
 
21045
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/17.*]
21046
+ Parent=Firefox 17.0
21047
+ Platform="HP-UX"
21048
+ Win32=false
21049
 
21050
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/17.*]
21051
+ Parent=Firefox 17.0
21052
+ Platform="IRIX64"
21053
+ Win32=false
21054
 
21055
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/17.*]
21056
+ Parent=Firefox 17.0
21057
+ Platform="Linux"
21058
+ Win32=false
21059
 
21060
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/17.*]
21061
+ Parent=Firefox 17.0
21062
+ Platform="MacOSX"
21063
+ Win32=false
21064
 
21065
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/17.*]
21066
+ Parent=Firefox 17.0
21067
+ Platform="OpenBSD"
21068
+ Win32=false
21069
 
21070
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/17.*]
21071
+ Parent=Firefox 17.0
21072
+ Platform="SunOS"
21073
+ Win32=false
21074
 
21075
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/17.*]
21076
+ Parent=Firefox 17.0
21077
+ Platform="Win2000"
21078
+ Platform_Version=5.0
21079
 
21080
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/17.*]
21081
+ Parent=Firefox 17.0
21082
+ Platform="WinXP"
21083
+ Platform_Version=5.1
21084
 
21085
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/17.*]
21086
+ Parent=Firefox 17.0
21087
+ Platform="WinXP"
21088
+ Platform_Version=5.1
21089
+ Win32=false
21090
+ Win64=true
21091
 
21092
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/17.*]
21093
+ Parent=Firefox 17.0
21094
+ Platform="Win2003"
21095
+ Platform_Version=5.2
21096
 
21097
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/17.*]
21098
+ Parent=Firefox 17.0
21099
+ Platform="Win2003"
21100
+ Platform_Version=5.2
21101
+ Win32=false
21102
+ Win64=true
21103
 
21104
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/17.*]
21105
+ Parent=Firefox 17.0
21106
+ Platform="WinVista"
21107
+ Platform_Version=6.0
21108
 
21109
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/17.*]
21110
+ Parent=Firefox 17.0
21111
+ Platform="WinVista"
21112
+ Platform_Version=6.0
21113
+ Win32=false
21114
+ Win64=true
21115
 
21116
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/17.*]
21117
+ Parent=Firefox 17.0
21118
+ Platform="Win7"
21119
+ Platform_Version=6.1
21120
 
21121
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/17.*]
21122
+ Parent=Firefox 17.0
21123
+ Platform="Win7"
21124
+ Platform_Version=6.1
21125
+ Win32=false
21126
+ Win64=true
21127
 
21128
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/17.*]
21129
+ Parent=Firefox 17.0
21130
+ Platform="Win8"
21131
+ Platform_Version=6.2
21132
 
21133
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/17.*]
21134
+ Parent=Firefox 17.0
21135
+ Platform="Win8"
21136
+ Platform_Version=6.2
21137
+ Win64=true
21138
 
21139
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.0
21140
 
21141
+ [Firefox 2.0]
21142
  Parent=DefaultProperties
21143
+ Comment="Firefox 2.0"
21144
+ Browser="Firefox"
21145
+ Version=2.0
21146
+ MajorVer=2
21147
+ MinorVer=0
21148
+ Win32=true
21149
  Frames=true
21150
  IFrames=true
21151
  Tables=true
21152
  Cookies=true
 
21153
  JavaScript=true
21154
+ JavaApplets=true
21155
  CssVersion=2
 
 
 
 
 
 
 
 
 
 
 
 
 
21156
 
21157
+ [Mozilla/5.0 (Linux; *; PPC*; *; rv:1.8*) Gecko/* Firefox/2.*]
21158
+ Parent=Firefox 2.0
21159
+ Platform="Linux"
21160
+ Win32=false
21161
 
21162
+ [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.8*) Gecko/* Firefox/2.*]
21163
+ Parent=Firefox 2.0
21164
+ Platform="MacOSX"
21165
+ Win32=false
21166
 
21167
+ [Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.8*) Gecko/* Firefox/2.*]
21168
+ Parent=Firefox 2.0
21169
+ Platform="OS/2"
21170
+ Win32=false
21171
 
21172
+ [Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.8*) Gecko/* Firefox/2.*]
21173
+ Parent=Firefox 2.0
21174
+ Platform="WinME"
 
21175
 
21176
+ [Mozilla/5.0 (Windows; *; Win95; *; rv:1.8*) Gecko/* Firefox/2.*]
21177
+ Parent=Firefox 2.0
21178
+ Platform="Win95"
21179
+ Platform_Version=95
21180
 
21181
+ [Mozilla/5.0 (Windows; *; Win98; *; rv:1.8*) Gecko/* Firefox/2.*]
21182
+ Parent=Firefox 2.0
21183
+ Platform="Win98"
21184
+ Platform_Version=98
21185
 
21186
+ [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/2.*]
21187
+ Parent=Firefox 2.0
21188
+ Platform="Win2000"
21189
+ Platform_Version=5.0
21190
 
21191
+ [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.8*) Gecko/* Firefox/2.*]
21192
+ Parent=Firefox 2.0
21193
+ Platform="WinXP"
21194
+ Platform_Version=5.1
21195
 
21196
+ [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.8*) Gecko/* Firefox/2.*]
21197
+ Parent=Firefox 2.0
21198
+ Platform="Win2003"
21199
+ Platform_Version=5.2
21200
 
21201
+ [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.8*) Gecko/* Firefox/2.*]
21202
+ Parent=Firefox 2.0
21203
+ Platform="WinVista"
21204
+ Platform_Version=6.0
21205
 
21206
+ [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.8*) Gecko/* Firefox/2.*]
21207
+ Parent=Firefox 2.0
21208
+ Platform="Win7"
21209
+ Platform_Version=6.1
21210
 
21211
+ [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.8*) Gecko/* Firefox/2.*]
21212
+ Parent=Firefox 2.0
21213
+ Platform="WinNT"
21214
+ Platform_Version=4.0
21215
 
21216
+ [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.8*) Gecko/* Firefox/2.*]
21217
+ Parent=Firefox 2.0
21218
+ Platform="Linux"
21219
+ Win32=false
21220
 
21221
+ [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.8*) Gecko/* Firefox/2.*]
21222
+ Parent=Firefox 2.0
21223
+ Platform="FreeBSD"
21224
+ Win32=false
21225
 
21226
+ [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.8*) Gecko/* Firefox/2.*]
21227
+ Parent=Firefox 2.0
21228
+ Platform="HP-UX"
21229
+ Win32=false
21230
 
21231
+ [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.8*) Gecko/* Firefox/2.*]
21232
+ Parent=Firefox 2.0
21233
+ Platform="IRIX64"
21234
+ Win32=false
21235
 
21236
+ [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.8*) Gecko/* Firefox/2.*]
21237
+ Parent=Firefox 2.0
21238
+ Platform="OpenBSD"
21239
+ Win32=false
21240
 
21241
+ [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.8*) Gecko/* Firefox/2.*]
21242
+ Parent=Firefox 2.0
21243
+ Platform="SunOS"
21244
+ Win32=false
21245
 
21246
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.0
21247
 
21248
+ [Firefox 3.0]
21249
  Parent=DefaultProperties
21250
+ Comment="Firefox 3.0"
21251
+ Browser="Firefox"
21252
+ Version=3.0
21253
+ MajorVer=3
21254
+ MinorVer=0
21255
+ Win32=true
21256
  Frames=true
21257
  IFrames=true
21258
  Tables=true
21259
  Cookies=true
 
21260
  JavaScript=true
21261
+ JavaApplets=true
21262
+ CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21263
 
21264
+ [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.0*]
21265
+ Parent=Firefox 3.0
21266
+ Platform="MacOSX"
21267
+ Win32=false
21268
 
21269
+ [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/3.0*]
21270
+ Parent=Firefox 3.0
21271
+ Platform="Win2000"
21272
+ Platform_Version=5.0
21273
 
21274
+ [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.0*]
21275
+ Parent=Firefox 3.0
21276
+ Platform="WinXP"
21277
+ Platform_Version=5.1
21278
 
21279
+ [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.0*]
21280
+ Parent=Firefox 3.0
21281
+ Platform="Win2003"
21282
+ Platform_Version=5.2
21283
 
21284
+ [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.0*]
21285
+ Parent=Firefox 3.0
21286
+ Platform="WinVista"
21287
+ Platform_Version=6.0
21288
 
21289
+ [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* Firefox/3.0*]
21290
+ Parent=Firefox 3.0
21291
+ Platform="Win7"
21292
+ Platform_Version=6.1
21293
 
21294
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
21295
+ Parent=Firefox 3.0
21296
+ Platform="WinXP"
21297
+ Platform_Version=5.1
21298
+ Win32=false
21299
+ Win64=true
21300
 
21301
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
21302
+ Parent=Firefox 3.0
21303
+ Platform="Win2003"
21304
+ Platform_Version=5.2
21305
+ Win32=false
21306
+ Win64=true
21307
 
21308
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
21309
+ Parent=Firefox 3.0
21310
+ Platform="WinVista"
21311
+ Platform_Version=6.0
21312
+ Win32=false
21313
+ Win64=true
21314
 
21315
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
21316
+ Parent=Firefox 3.0
21317
+ Platform="Win7"
21318
+ Platform_Version=6.1
21319
+ Win32=false
21320
+ Win64=true
21321
 
21322
+ [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.0*]
21323
+ Parent=Firefox 3.0
21324
+ Platform="Linux"
21325
+ Win32=false
21326
 
21327
+ [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*]
21328
+ Parent=Firefox 3.0
21329
+ Platform="FreeBSD"
21330
+ Win32=false
21331
 
21332
+ [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.0*]
21333
+ Parent=Firefox 3.0
21334
+ Platform="HP-UX"
21335
+ Win32=false
21336
 
21337
+ [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.0*]
21338
+ Parent=Firefox 3.0
21339
+ Platform="IRIX64"
21340
+ Win32=false
21341
 
21342
+ [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*]
21343
+ Parent=Firefox 3.0
21344
+ Platform="OpenBSD"
21345
+ Win32=false
21346
 
21347
+ [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.0*]
21348
+ Parent=Firefox 3.0
21349
+ Platform="SunOS"
21350
+ Win32=false
21351
 
21352
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.1
21353
 
21354
+ [Firefox 3.1]
21355
  Parent=DefaultProperties
21356
+ Comment="Firefox 3.1"
21357
+ Browser="Firefox"
21358
+ Version=3.1
21359
+ MajorVer=3
21360
  MinorVer=1
21361
+ Win32=true
21362
  Frames=true
21363
  IFrames=true
21364
  Tables=true
21365
  Cookies=true
 
21366
  JavaScript=true
21367
+ JavaApplets=true
21368
+ CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21369
 
21370
+ [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.1*]
21371
+ Parent=Firefox 3.1
21372
+ Platform="MacOSX"
21373
+ Win32=false
21374
 
21375
+ [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.9*) Gecko/* Firefox/3.1*]
21376
+ Parent=Firefox 3.1
21377
+ Platform="Win2000"
21378
+ Platform_Version=5.0
21379
 
21380
+ [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.1*]
21381
+ Parent=Firefox 3.1
21382
+ Platform="WinXP"
21383
+ Platform_Version=5.1
21384
 
21385
+ [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.1*]
21386
+ Parent=Firefox 3.1
21387
+ Platform="Win2003"
21388
+ Platform_Version=5.2
21389
 
21390
+ [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.1*]
21391
+ Parent=Firefox 3.1
21392
+ Platform="WinVista"
21393
+ Platform_Version=6.0
21394
 
21395
+ [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9*) Gecko/* Firefox/3.1*]
21396
+ Parent=Firefox 3.1
21397
+ Platform="Win7"
21398
+ Platform_Version=6.1
21399
 
21400
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
21401
+ Parent=Firefox 3.1
21402
+ Platform="WinXP"
21403
+ Platform_Version=5.1
21404
+ Win32=false
21405
+ Win64=true
21406
 
21407
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
21408
+ Parent=Firefox 3.1
21409
+ Platform="Win2003"
21410
+ Platform_Version=5.2
21411
+ Win32=false
21412
+ Win64=true
21413
 
21414
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
21415
+ Parent=Firefox 3.1
21416
+ Platform="WinVista"
21417
+ Platform_Version=6.0
21418
+ Win32=false
21419
+ Win64=true
21420
 
21421
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
21422
+ Parent=Firefox 3.1
21423
+ Platform="Win7"
21424
+ Platform_Version=6.1
21425
+ Win32=false
21426
+ Win64=true
21427
 
21428
+ [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.1*]
21429
+ Parent=Firefox 3.1
21430
+ Platform="Linux"
21431
+ Win32=false
21432
 
21433
+ [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*]
21434
+ Parent=Firefox 3.1
21435
+ Platform="FreeBSD"
21436
+ Win32=false
21437
 
21438
+ [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.1*]
21439
+ Parent=Firefox 3.1
21440
+ Platform="HP-UX"
21441
+ Win32=false
21442
 
21443
+ [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.1*]
21444
+ Parent=Firefox 3.1
21445
+ Platform="IRIX64"
21446
+ Win32=false
21447
 
21448
+ [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*]
21449
+ Parent=Firefox 3.1
21450
+ Platform="OpenBSD"
21451
+ Win32=false
21452
 
21453
+ [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.1*]
21454
+ Parent=Firefox 3.1
21455
+ Platform="SunOS"
21456
+ Win32=false
21457
 
21458
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.5
21459
 
21460
+ [Firefox 3.5]
21461
  Parent=DefaultProperties
21462
+ Comment="Firefox 3.5"
21463
+ Browser="Firefox"
21464
+ Version=3.5
21465
+ MajorVer=3
21466
+ MinorVer=5
21467
+ Win32=true
21468
  Frames=true
21469
  IFrames=true
21470
  Tables=true
21471
  Cookies=true
 
 
21472
  JavaScript=true
21473
+ JavaApplets=true
21474
+ CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21475
 
21476
+ [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21477
+ Parent=Firefox 3.5
21478
+ Platform="MacOSX"
21479
+ Win32=false
21480
 
21481
+ [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21482
+ Parent=Firefox 3.5
21483
+ Platform="Win2000"
21484
+ Platform_Version=5.0
21485
 
21486
+ [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21487
+ Parent=Firefox 3.5
21488
+ Platform="WinXP"
21489
+ Platform_Version=5.1
21490
 
21491
+ [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21492
+ Parent=Firefox 3.5
21493
+ Platform="Win2003"
21494
+ Platform_Version=5.2
21495
 
21496
+ [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21497
+ Parent=Firefox 3.5
21498
+ Platform="WinVista"
21499
+ Platform_Version=6.0
 
 
 
 
 
 
 
 
 
 
 
21500
 
21501
+ [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21502
+ Parent=Firefox 3.5
21503
+ Platform="Win7"
21504
+ Platform_Version=6.1
21505
 
21506
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21507
+ Parent=Firefox 3.5
21508
+ Platform="WinXP"
21509
+ Platform_Version=5.1
21510
+ Win32=false
21511
+ Win64=true
21512
 
21513
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21514
+ Parent=Firefox 3.5
21515
+ Platform="Win2003"
21516
+ Platform_Version=5.2
21517
+ Win32=false
21518
+ Win64=true
21519
 
21520
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21521
+ Parent=Firefox 3.5
21522
+ Platform="WinVista"
21523
+ Platform_Version=6.0
21524
+ Win32=false
21525
+ Win64=true
21526
 
21527
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21528
+ Parent=Firefox 3.5
21529
+ Platform="Win7"
21530
+ Platform_Version=6.1
21531
+ Win32=false
21532
+ Win64=true
21533
 
21534
+ [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21535
+ Parent=Firefox 3.5
21536
+ Platform="Linux"
21537
+ Win32=false
21538
 
21539
+ [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21540
+ Parent=Firefox 3.5
21541
+ Platform="FreeBSD"
21542
+ Win32=false
21543
 
21544
+ [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21545
+ Parent=Firefox 3.5
21546
+ Platform="HP-UX"
21547
+ Win32=false
21548
 
21549
+ [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21550
+ Parent=Firefox 3.5
21551
+ Platform="IRIX64"
21552
+ Win32=false
21553
 
21554
+ [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21555
+ Parent=Firefox 3.5
21556
+ Platform="OpenBSD"
21557
+ Win32=false
21558
 
21559
+ [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9.*) Gecko/* Firefox/3.5*]
21560
+ Parent=Firefox 3.5
21561
+ Platform="SunOS"
21562
+ Win32=false
21563
 
21564
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.6
21565
 
21566
+ [Firefox 3.6]
21567
+ Parent=DefaultProperties
21568
+ Comment="Firefox 3.6"
21569
+ Browser="Firefox"
21570
+ Version=3.6
21571
+ MajorVer=3
21572
+ MinorVer=6
21573
+ Win32=true
21574
  Frames=true
21575
  IFrames=true
21576
  Tables=true
21577
  Cookies=true
 
 
21578
  JavaScript=true
21579
+ JavaApplets=true
21580
+ CssVersion=3
21581
 
21582
+ [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21583
+ Parent=Firefox 3.6
21584
+ Platform="MacOSX"
21585
+ Win32=false
21586
 
21587
+ [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21588
+ Parent=Firefox 3.6
21589
+ Platform="Win2000"
21590
+ Platform_Version=5.0
21591
 
21592
+ [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21593
+ Parent=Firefox 3.6
21594
+ Platform="WinXP"
21595
+ Platform_Version=5.1
21596
 
21597
+ [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21598
+ Parent=Firefox 3.6
21599
+ Platform="Win2003"
21600
+ Platform_Version=5.2
21601
 
21602
+ [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21603
+ Parent=Firefox 3.6
21604
+ Platform="WinVista"
21605
+ Platform_Version=6.0
21606
 
21607
+ [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21608
+ Parent=Firefox 3.6
21609
+ Platform="Win7"
21610
+ Platform_Version=6.1
21611
 
21612
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21613
+ Parent=Firefox 3.6
21614
+ Platform="WinXP"
21615
+ Platform_Version=5.1
21616
+ Win32=false
21617
+ Win64=true
21618
 
21619
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21620
+ Parent=Firefox 3.6
21621
+ Platform="Win2003"
21622
+ Platform_Version=5.2
21623
+ Win32=false
21624
+ Win64=true
21625
 
21626
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21627
+ Parent=Firefox 3.6
21628
+ Platform="WinVista"
21629
+ Platform_Version=6.0
21630
+ Win32=false
21631
+ Win64=true
21632
 
21633
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21634
+ Parent=Firefox 3.6
21635
+ Platform="Win7"
21636
+ Platform_Version=6.1
21637
+ Win32=false
21638
+ Win64=true
21639
 
21640
+ [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21641
+ Parent=Firefox 3.6
21642
+ Platform="Linux"
21643
+ Win32=false
21644
 
21645
+ [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21646
+ Parent=Firefox 3.6
21647
+ Platform="FreeBSD"
21648
+ Win32=false
21649
 
21650
+ [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21651
+ Parent=Firefox 3.6
21652
+ Platform="HP-UX"
21653
+ Win32=false
21654
+
21655
+ [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21656
+ Parent=Firefox 3.6
21657
+ Platform="IRIX64"
21658
+ Win32=false
21659
+
21660
+ [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21661
+ Parent=Firefox 3.6
21662
+ Platform="OpenBSD"
21663
+ Win32=false
21664
+
21665
+ [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9.2*) Gecko/* Firefox/3.6*]
21666
+ Parent=Firefox 3.6
21667
+ Platform="SunOS"
21668
+ Win32=false
21669
+
21670
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 4.0
21671
+
21672
+ [Firefox 4.0]
21673
  Parent=DefaultProperties
21674
+ Comment="Firefox 4.0"
21675
+ Browser="Firefox"
21676
+ Version=4.0
21677
+ MajorVer=4
21678
+ MinorVer=0
21679
+ Win32=true
21680
  Frames=true
21681
  IFrames=true
21682
  Tables=true
21683
  Cookies=true
 
21684
  JavaScript=true
21685
+ JavaApplets=true
21686
+ CssVersion=3
21687
 
21688
+ [Mozilla/5.0 (*FreeBSD*rv:2.0*) Gecko/* Firefox/4.0*]
21689
+ Parent=Firefox 4.0
21690
+ Platform="FreeBSD"
21691
+ Win32=false
21692
 
21693
+ [Mozilla/5.0 (*HP-UX*rv:2.0*) Gecko/* Firefox/4.0*]
21694
+ Parent=Firefox 4.0
21695
+ Platform="HP-UX"
21696
+ Win32=false
21697
 
21698
+ [Mozilla/5.0 (*IRIX64*rv:2.0*) Gecko/* Firefox/4.0*]
21699
+ Parent=Firefox 4.0
21700
+ Platform="IRIX64"
21701
+ Win32=false
21702
 
21703
+ [Mozilla/5.0 (*Linux*rv:2.0*) Gecko/* Firefox/4.0*]
21704
+ Parent=Firefox 4.0
21705
+ Platform="Linux"
21706
+ Win32=false
21707
 
21708
+ [Mozilla/5.0 (*Mac OS X*rv:2.0*) Gecko/*Firefox/4.0*]
21709
+ Parent=Firefox 4.0
21710
+ Platform="MacOSX"
21711
+ Win32=false
21712
 
21713
+ [Mozilla/5.0 (*OpenBSD*rv:2.0*) Gecko/* Firefox/4.0*]
21714
+ Parent=Firefox 4.0
21715
+ Platform="OpenBSD"
21716
+ Win32=false
21717
 
21718
+ [Mozilla/5.0 (*SunOS*rv:2.0*) Gecko/* Firefox/4.0*]
21719
+ Parent=Firefox 4.0
21720
+ Platform="SunOS"
21721
+ Win32=false
21722
 
21723
+ [Mozilla/5.0 (*Windows NT 5.0*rv:2.0*) Gecko/* Firefox/4.0*]
21724
+ Parent=Firefox 4.0
21725
+ Platform="Win2000"
21726
+ Platform_Version=5.0
21727
 
21728
+ [Mozilla/5.0 (*Windows NT 5.1*rv:2.0*) Gecko/* Firefox/4.0*]
21729
+ Parent=Firefox 4.0
21730
+ Platform="WinXP"
21731
+ Platform_Version=5.1
 
 
 
 
 
 
 
 
 
21732
 
21733
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:2.0*) Gecko/* Firefox/4.0*]
21734
+ Parent=Firefox 4.0
21735
+ Platform="WinXP"
21736
+ Platform_Version=5.1
21737
+ Win32=false
21738
+ Win64=true
21739
 
21740
+ [Mozilla/5.0 (*Windows NT 5.2*rv:2.0*) Gecko/* Firefox/4.0*]
21741
+ Parent=Firefox 4.0
21742
+ Platform="Win2003"
21743
+ Platform_Version=5.2
21744
 
21745
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:2.0*) Gecko/* Firefox/4.0*]
21746
+ Parent=Firefox 4.0
21747
+ Platform="Win2003"
21748
+ Platform_Version=5.2
21749
+ Win32=false
21750
+ Win64=true
21751
 
21752
+ [Mozilla/5.0 (*Windows NT 6.0*rv:2.0*) Gecko/* Firefox/4.0*]
21753
+ Parent=Firefox 4.0
21754
+ Platform="WinVista"
21755
+ Platform_Version=6.0
21756
 
21757
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:2.0*) Gecko/* Firefox/4.0*]
21758
+ Parent=Firefox 4.0
21759
+ Platform="WinVista"
21760
+ Platform_Version=6.0
21761
+ Win32=false
21762
+ Win64=true
21763
 
21764
+ [Mozilla/5.0 (*Windows NT 6.1 WOW64*rv:2.0*) Gecko/* Firefox/4.0*]
21765
+ Parent=Firefox 4.0
21766
+ Platform="Win7"
21767
+ Platform_Version=6.1
21768
+ Win32=false
21769
+ Win64=true
21770
 
21771
+ [Mozilla/5.0 (*Windows NT 6.1*rv:2.0*) Gecko/* Firefox/4.0*]
21772
+ Parent=Firefox 4.0
21773
+ Platform="Win7"
21774
+ Platform_Version=6.1
21775
 
21776
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 4.2
21777
 
21778
+ [Firefox 4.2]
21779
  Parent=DefaultProperties
21780
+ Comment="Firefox 4.2"
21781
+ Browser="Firefox"
21782
+ Version=4.2
21783
+ MajorVer=4
21784
+ MinorVer=2
21785
+ Win32=true
21786
  Frames=true
21787
  IFrames=true
21788
  Tables=true
21789
  Cookies=true
 
21790
  JavaScript=true
21791
+ JavaApplets=true
21792
+ CssVersion=3
21793
 
21794
+ [Mozilla/5.0 (*Windows NT 5.0*rv:2.2a*) Gecko/* Firefox/4.2a*]
21795
+ Parent=Firefox 4.2
21796
+ Platform="Win2000"
21797
+ Platform_Version=5.0
21798
 
21799
+ [Mozilla/5.0 (*Windows NT 5.1*rv:2.2a*) Gecko/* Firefox/4.2a*]
21800
+ Parent=Firefox 4.2
21801
+ Platform="WinXP"
21802
+ Platform_Version=5.1
21803
 
21804
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:2.2a*) Gecko/* Firefox/4.2a*]
21805
+ Parent=Firefox 4.2
21806
+ Platform="WinXP"
21807
+ Platform_Version=5.1
21808
+ Win32=false
21809
+ Win64=true
21810
 
21811
+ [Mozilla/5.0 (*Windows NT 5.2*rv:2.2a*) Gecko/* Firefox/4.2a*]
21812
+ Parent=Firefox 4.2
21813
+ Platform="Win2003"
21814
+ Platform_Version=5.2
21815
 
21816
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:2.2a*) Gecko/* Firefox/4.2a*]
21817
+ Parent=Firefox 4.2
21818
+ Platform="Win2003"
21819
+ Platform_Version=5.2
21820
+ Win32=false
21821
+ Win64=true
21822
 
21823
+ [Mozilla/5.0 (*Windows NT 6.0*rv:2.2a*) Gecko/* Firefox/4.2a*]
21824
+ Parent=Firefox 4.2
21825
+ Platform="WinVista"
21826
+ Platform_Version=6.0
21827
 
21828
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:2.2a*) Gecko/* Firefox/4.2a*]
21829
+ Parent=Firefox 4.2
21830
+ Platform="WinVista"
21831
+ Platform_Version=6.0
21832
+ Win32=false
21833
+ Win64=true
21834
 
21835
+ [Mozilla/5.0 (*Windows NT 6.1 WOW64*rv:2.2a*) Gecko/* Firefox/4.2a*]
21836
+ Parent=Firefox 4.2
21837
+ Platform="Win7"
21838
+ Platform_Version=6.1
21839
+ Win32=false
21840
+ Win64=true
21841
 
21842
+ [Mozilla/5.0 (*Windows NT 6.1*rv:2.2a*) Gecko/* Firefox/4.2a*]
21843
+ Parent=Firefox 4.2
21844
+ Platform="Win7"
21845
+ Platform_Version=6.1
 
 
 
 
 
 
 
 
 
 
21846
 
21847
+ [Mozilla/5.0 (Macintosh; *Mac OS X*; rv:2.2a*) Gecko/* Firefox/4.2a*]
21848
+ Parent=Firefox 4.2
21849
+ Platform="MacOSX"
21850
+ Win32=false
21851
 
21852
+ [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:2.2a*) Gecko/* Firefox/4.2a*]
21853
+ Parent=Firefox 4.2
21854
+ Platform="FreeBSD"
21855
+ Win32=false
21856
 
21857
+ [Mozilla/5.0 (X11; *; HP-UX*; *; rv:2.2a*) Gecko/* Firefox/4.2a*]
21858
+ Parent=Firefox 4.2
21859
+ Platform="HP-UX"
21860
+ Win32=false
21861
 
21862
+ [Mozilla/5.0 (X11; *; IRIX64*; *; rv:2.2a*) Gecko/* Firefox/4.2a*]
21863
+ Parent=Firefox 4.2
21864
+ Platform="IRIX64"
21865
+ Win32=false
21866
 
21867
+ [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:2.2a*) Gecko/* Firefox/4.2a*]
21868
+ Parent=Firefox 4.2
21869
+ Platform="OpenBSD"
21870
+ Win32=false
21871
+
21872
+ [Mozilla/5.0 (X11; *; SunOS*; *; rv:2.2a*) Gecko/* Firefox/4.2a*]
21873
+ Parent=Firefox 4.2
21874
+ Platform="SunOS"
21875
+ Win32=false
21876
+
21877
+ [Mozilla/5.0 (X11; *Linux*; rv:2.2a*) Gecko/* Firefox/4.2a*]
21878
+ Parent=Firefox 4.2
21879
+ Platform="Linux"
21880
+ Win32=false
21881
+
21882
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 5.0
21883
+
21884
+ [Firefox 5.0]
21885
  Parent=DefaultProperties
21886
+ Comment="Firefox 5.0"
21887
  Browser="Firefox"
21888
+ Version=5.0
21889
+ MajorVer=5
21890
+ MinorVer=0
21891
+ Win32=true
21892
  Frames=true
21893
  IFrames=true
21894
  Tables=true
21895
  Cookies=true
 
21896
  JavaScript=true
21897
+ JavaApplets=true
21898
+ CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21899
 
21900
+ [Mozilla/5.0 (*Windows NT 5.0*rv:5.*) Gecko/* Firefox/5.0*]
21901
+ Parent=Firefox 5.0
21902
+ Platform="Win2000"
21903
+ Platform_Version=5.0
21904
 
21905
+ [Mozilla/5.0 (*Windows NT 5.1*rv:5.*) Gecko/* Firefox/5.0*]
21906
+ Parent=Firefox 5.0
21907
+ Platform="WinXP"
21908
+ Platform_Version=5.1
21909
 
21910
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:5.*) Gecko/* Firefox/5.0*]
21911
+ Parent=Firefox 5.0
21912
+ Platform="WinXP"
21913
+ Platform_Version=5.1
21914
+ Win32=false
21915
+ Win64=true
21916
 
21917
+ [Mozilla/5.0 (*Windows NT 5.2*rv:5.*) Gecko/* Firefox/5.0*]
21918
+ Parent=Firefox 5.0
21919
+ Platform="Win2003"
21920
+ Platform_Version=5.2
21921
 
21922
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:5.*) Gecko/* Firefox/5.0*]
21923
+ Parent=Firefox 5.0
21924
+ Platform="Win2003"
21925
+ Platform_Version=5.2
21926
+ Win32=false
21927
+ Win64=true
21928
 
21929
+ [Mozilla/5.0 (*Windows NT 6.0*rv:5.*) Gecko/* Firefox/5.0*]
21930
+ Parent=Firefox 5.0
21931
+ Platform="WinVista"
21932
+ Platform_Version=6.0
21933
 
21934
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:5.*) Gecko/* Firefox/5.0*]
21935
+ Parent=Firefox 5.0
21936
+ Platform="WinVista"
21937
+ Platform_Version=6.0
21938
+ Win32=false
21939
+ Win64=true
21940
 
21941
+ [Mozilla/5.0 (*Windows NT 6.1*rv:5.*) Gecko/* Firefox/5.0*]
21942
+ Parent=Firefox 5.0
21943
+ Platform="Win7"
21944
+ Platform_Version=6.1
21945
 
21946
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:5.*) Gecko/* Firefox/5.0*]
21947
+ Parent=Firefox 5.0
21948
+ Platform="Win7"
21949
+ Platform_Version=6.1
21950
+ Win32=false
21951
+ Win64=true
21952
 
21953
+ [Mozilla/5.0 (Macintosh; *Mac OS X*; rv:5.*) Gecko/* Firefox/5.0*]
21954
+ Parent=Firefox 5.0
21955
+ Platform="MacOSX"
21956
+ Win32=false
21957
 
21958
+ [Mozilla/5.0 (X11; *; HP-UX*;*rv:5.*) Gecko/* Firefox/5.0*]
21959
+ Parent=Firefox 5.0
21960
+ Platform="HP-UX"
21961
+ Win32=false
21962
 
21963
+ [Mozilla/5.0 (X11; *; IRIX64*; *; rv:5.*) Gecko/* Firefox/5.0*]
21964
+ Parent=Firefox 5.0
21965
+ Platform="IRIX64"
21966
+ Win32=false
21967
 
21968
+ [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:5.*) Gecko/* Firefox/5.0*]
21969
+ Parent=Firefox 5.0
21970
+ Platform="OpenBSD"
21971
+ Win32=false
21972
 
21973
+ [Mozilla/5.0 (X11; *; SunOS*; *; rv:5.*) Gecko/* Firefox/5.0*]
21974
+ Parent=Firefox 5.0
21975
+ Platform="SunOS"
21976
+ Win32=false
21977
 
21978
+ [Mozilla/5.0 (X11; *Linux*; rv:5.*) Gecko/* Firefox/5.0*]
21979
+ Parent=Firefox 5.0
21980
+ Platform="Linux"
21981
+ Win32=false
21982
 
21983
+ [Mozilla/5.0 (X11;*FreeBSD*;*rv:5.*) Gecko/* Firefox/5.0*]
21984
+ Parent=Firefox 5.0
21985
+ Platform="FreeBSD"
21986
+ Win32=false
21987
 
21988
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 6.0
21989
 
21990
+ [Firefox 6.0]
21991
  Parent=DefaultProperties
21992
+ Comment="Firefox 6.0"
21993
  Browser="Firefox"
21994
+ Version=6.0
21995
+ MajorVer=6
21996
+ MinorVer=0
21997
+ Win32=true
21998
  Frames=true
21999
  IFrames=true
22000
  Tables=true
22001
  Cookies=true
 
22002
  JavaScript=true
22003
+ JavaApplets=true
22004
+ CssVersion=3
22005
 
22006
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/6.*]
22007
+ Parent=Firefox 6.0
22008
+ Platform="FreeBSD"
22009
+ Win32=false
22010
 
22011
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/6.*]
22012
+ Parent=Firefox 6.0
22013
+ Platform="HP-UX"
22014
+ Win32=false
22015
 
22016
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/6.*]
22017
+ Parent=Firefox 6.0
22018
+ Platform="IRIX64"
22019
+ Win32=false
22020
 
22021
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/6.*]
22022
+ Parent=Firefox 6.0
22023
+ Platform="Linux"
22024
+ Win32=false
22025
 
22026
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/6.*]
22027
+ Parent=Firefox 6.0
22028
+ Platform="MacOSX"
22029
+ Win32=false
22030
 
22031
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/6.*]
22032
+ Parent=Firefox 6.0
22033
+ Platform="OpenBSD"
22034
+ Win32=false
22035
 
22036
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/6.*]
22037
+ Parent=Firefox 6.0
22038
+ Platform="SunOS"
22039
+ Win32=false
22040
 
22041
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/6.*]
22042
+ Parent=Firefox 6.0
22043
+ Platform="Win2000"
22044
+ Platform_Version=5.0
22045
 
22046
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/6.*]
22047
+ Parent=Firefox 6.0
22048
+ Platform="WinXP"
22049
+ Platform_Version=5.1
22050
 
22051
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/6.*]
22052
+ Parent=Firefox 6.0
22053
+ Platform="WinXP"
22054
+ Platform_Version=5.1
22055
+ Win32=false
22056
+ Win64=true
22057
 
22058
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/6.*]
22059
+ Parent=Firefox 6.0
22060
+ Platform="Win2003"
22061
+ Platform_Version=5.2
22062
+
22063
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/6.*]
22064
+ Parent=Firefox 6.0
22065
+ Platform="Win2003"
22066
+ Platform_Version=5.2
22067
+ Win32=false
22068
+ Win64=true
22069
 
22070
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/6.*]
22071
+ Parent=Firefox 6.0
22072
+ Platform="WinVista"
22073
+ Platform_Version=6.0
22074
 
22075
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/6.*]
22076
+ Parent=Firefox 6.0
22077
+ Platform="WinVista"
22078
+ Platform_Version=6.0
22079
+ Win32=false
22080
+ Win64=true
22081
 
22082
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/6.*]
22083
+ Parent=Firefox 6.0
22084
+ Platform="Win7"
22085
+ Platform_Version=6.1
22086
 
22087
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/6.*]
22088
+ Parent=Firefox 6.0
22089
+ Platform="Win7"
22090
+ Platform_Version=6.1
22091
+ Win32=false
22092
+ Win64=true
22093
 
22094
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/6.*]
22095
+ Parent=Firefox 6.0
22096
+ Platform="Win8"
22097
+ Platform_Version=6.2
22098
 
22099
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/6.*]
22100
+ Parent=Firefox 6.0
22101
+ Platform="Win8"
22102
+ Platform_Version=6.2
22103
+ Win64=true
22104
 
22105
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 7.0
22106
 
22107
+ [Firefox 7.0]
22108
  Parent=DefaultProperties
22109
+ Comment="Firefox 7.0"
22110
  Browser="Firefox"
22111
+ Version=7.0
22112
+ MajorVer=7
22113
+ MinorVer=0
22114
+ Win32=true
22115
  Frames=true
22116
  IFrames=true
22117
  Tables=true
22118
  Cookies=true
 
22119
  JavaScript=true
22120
+ JavaApplets=true
22121
+ CssVersion=3
 
 
 
 
22122
 
22123
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/7.*]
22124
+ Parent=Firefox 7.0
22125
+ Platform="FreeBSD"
22126
+ Win32=false
22127
 
22128
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/7.*]
22129
+ Parent=Firefox 7.0
22130
+ Platform="HP-UX"
22131
+ Win32=false
22132
 
22133
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/7.*]
22134
+ Parent=Firefox 7.0
22135
+ Platform="IRIX64"
22136
+ Win32=false
22137
 
22138
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/7.*]
22139
+ Parent=Firefox 7.0
22140
+ Platform="Linux"
22141
+ Win32=false
22142
 
22143
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/7.*]
22144
+ Parent=Firefox 7.0
22145
+ Platform="MacOSX"
22146
+ Win32=false
22147
 
22148
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/7.*]
22149
+ Parent=Firefox 7.0
22150
+ Platform="OpenBSD"
22151
+ Win32=false
22152
 
22153
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/7.*]
22154
+ Parent=Firefox 7.0
22155
+ Platform="SunOS"
22156
+ Win32=false
22157
 
22158
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/7.*]
22159
+ Parent=Firefox 7.0
22160
+ Platform="Win2000"
22161
+ Platform_Version=5.0
22162
 
22163
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/7.*]
22164
+ Parent=Firefox 7.0
22165
+ Platform="WinXP"
22166
+ Platform_Version=5.1
22167
 
22168
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/7.*]
22169
+ Parent=Firefox 7.0
22170
+ Platform="WinXP"
22171
+ Platform_Version=5.1
22172
+ Win32=false
22173
+ Win64=true
22174
 
22175
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/7.*]
22176
+ Parent=Firefox 7.0
22177
+ Platform="Win2003"
22178
+ Platform_Version=5.2
22179
 
22180
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/7.*]
22181
+ Parent=Firefox 7.0
22182
+ Platform="Win2003"
22183
+ Platform_Version=5.2
22184
+ Win32=false
22185
+ Win64=true
22186
 
22187
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/7.*]
22188
+ Parent=Firefox 7.0
22189
+ Platform="WinVista"
22190
+ Platform_Version=6.0
22191
 
22192
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/7.*]
22193
+ Parent=Firefox 7.0
22194
+ Platform="WinVista"
22195
+ Platform_Version=6.0
22196
+ Win32=false
22197
+ Win64=true
22198
 
22199
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/7.*]
22200
+ Parent=Firefox 7.0
22201
+ Platform="Win7"
22202
+ Platform_Version=6.1
22203
 
22204
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/7.*]
22205
+ Parent=Firefox 7.0
22206
+ Platform="Win7"
22207
+ Platform_Version=6.1
22208
+ Win32=false
22209
+ Win64=true
22210
 
22211
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/7.*]
22212
+ Parent=Firefox 7.0
22213
+ Platform="Win8"
22214
+ Platform_Version=6.2
22215
 
22216
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/7.*]
22217
+ Parent=Firefox 7.0
22218
+ Platform="Win8"
22219
+ Platform_Version=6.2
22220
+ Win64=true
22221
 
22222
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 8.0
22223
 
22224
+ [Firefox 8.0]
22225
  Parent=DefaultProperties
22226
+ Comment="Firefox 8.0"
22227
  Browser="Firefox"
22228
+ Version=8.0
22229
+ MajorVer=8
22230
+ MinorVer=0
22231
+ Win32=true
22232
  Frames=true
22233
  IFrames=true
22234
  Tables=true
22235
  Cookies=true
 
22236
  JavaScript=true
22237
+ JavaApplets=true
22238
+ CssVersion=3
22239
 
22240
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/8.*]
22241
+ Parent=Firefox 8.0
22242
+ Platform="FreeBSD"
22243
+ Win32=false
22244
 
22245
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/8.*]
22246
+ Parent=Firefox 8.0
22247
+ Platform="HP-UX"
22248
+ Win32=false
22249
 
22250
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/8.*]
22251
+ Parent=Firefox 8.0
22252
+ Platform="IRIX64"
22253
+ Win32=false
22254
 
22255
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/8.*]
22256
+ Parent=Firefox 8.0
22257
+ Platform="Linux"
22258
+ Win32=false
22259
 
22260
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/8.*]
22261
+ Parent=Firefox 8.0
22262
+ Platform="MacOSX"
22263
+ Win32=false
22264
 
22265
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/8.*]
22266
+ Parent=Firefox 8.0
22267
+ Platform="OpenBSD"
22268
+ Win32=false
22269
 
22270
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/8.*]
22271
+ Parent=Firefox 8.0
22272
+ Platform="SunOS"
22273
+ Win32=false
22274
 
22275
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/8.*]
22276
+ Parent=Firefox 8.0
22277
+ Platform="Win2000"
22278
+ Platform_Version=5.0
22279
 
22280
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/8.*]
22281
+ Parent=Firefox 8.0
22282
+ Platform="WinXP"
22283
+ Platform_Version=5.1
22284
 
22285
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/8.*]
22286
+ Parent=Firefox 8.0
22287
+ Platform="WinXP"
22288
+ Platform_Version=5.1
22289
+ Win32=false
22290
+ Win64=true
22291
 
22292
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/8.*]
22293
+ Parent=Firefox 8.0
22294
+ Platform="Win2003"
22295
+ Platform_Version=5.2
22296
 
22297
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/8.*]
22298
+ Parent=Firefox 8.0
22299
+ Platform="Win2003"
22300
+ Platform_Version=5.2
22301
+ Win32=false
22302
+ Win64=true
22303
 
22304
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/8.*]
22305
+ Parent=Firefox 8.0
22306
+ Platform="WinVista"
22307
+ Platform_Version=6.0
22308
 
22309
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/8.*]
22310
+ Parent=Firefox 8.0
22311
+ Platform="WinVista"
22312
+ Platform_Version=6.0
22313
+ Win32=false
22314
+ Win64=true
22315
 
22316
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/8.*]
22317
+ Parent=Firefox 8.0
22318
+ Platform="Win7"
22319
+ Platform_Version=6.1
22320
 
22321
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/8.*]
22322
+ Parent=Firefox 8.0
22323
+ Platform="Win7"
22324
+ Platform_Version=6.1
22325
+ Win32=false
22326
+ Win64=true
22327
 
22328
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/8.*]
22329
+ Parent=Firefox 8.0
22330
+ Platform="Win8"
22331
+ Platform_Version=6.2
22332
 
22333
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/8.*]
22334
+ Parent=Firefox 8.0
22335
+ Platform="Win8"
22336
+ Platform_Version=6.2
22337
+ Win64=true
22338
 
22339
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 9.0
22340
 
22341
+ [Firefox 9.0]
22342
  Parent=DefaultProperties
22343
+ Comment="Firefox 9.0"
22344
  Browser="Firefox"
22345
+ Version=9.0
22346
+ MajorVer=9
22347
+ MinorVer=0
22348
+ Win32=true
22349
  Frames=true
22350
  IFrames=true
22351
  Tables=true
22352
  Cookies=true
 
22353
  JavaScript=true
22354
+ JavaApplets=true
22355
  CssVersion=3
 
22356
 
22357
+ [Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/9.*]
22358
+ Parent=Firefox 9.0
22359
+ Platform="FreeBSD"
22360
+ Win32=false
22361
 
22362
+ [Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/9.*]
22363
+ Parent=Firefox 9.0
22364
+ Platform="HP-UX"
22365
+ Win32=false
22366
 
22367
+ [Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/9.*]
22368
+ Parent=Firefox 9.0
22369
+ Platform="IRIX64"
22370
+ Win32=false
22371
 
22372
+ [Mozilla/5.0 (*Linux*) Gecko/* Firefox/9.*]
22373
+ Parent=Firefox 9.0
22374
+ Platform="Linux"
22375
+ Win32=false
22376
 
22377
+ [Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/9.*]
22378
+ Parent=Firefox 9.0
22379
+ Platform="MacOSX"
22380
+ Win32=false
22381
 
22382
+ [Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/9.*]
22383
+ Parent=Firefox 9.0
22384
+ Platform="OpenBSD"
22385
+ Win32=false
22386
 
22387
+ [Mozilla/5.0 (*SunOS*) Gecko/* Firefox/9.*]
22388
+ Parent=Firefox 9.0
22389
+ Platform="SunOS"
22390
+ Win32=false
22391
 
22392
+ [Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/9.*]
22393
+ Parent=Firefox 9.0
22394
+ Platform="Win2000"
22395
+ Platform_Version=5.0
22396
+
22397
+ [Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/9.*]
22398
+ Parent=Firefox 9.0
22399
+ Platform="WinXP"
22400
+ Platform_Version=5.1
22401
+
22402
+ [Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/9.*]
22403
+ Parent=Firefox 9.0
22404
+ Platform="WinXP"
22405
+ Platform_Version=5.1
22406
  Win32=false
22407
  Win64=true
22408
 
22409
+ [Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/9.*]
22410
+ Parent=Firefox 9.0
22411
+ Platform="Win2003"
22412
+ Platform_Version=5.2
22413
+
22414
+ [Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/9.*]
22415
+ Parent=Firefox 9.0
22416
+ Platform="Win2003"
22417
+ Platform_Version=5.2
22418
  Win32=false
22419
  Win64=true
22420
 
22421
+ [Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/9.*]
22422
+ Parent=Firefox 9.0
22423
+ Platform="WinVista"
22424
+ Platform_Version=6.0
22425
 
22426
+ [Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/9.*]
22427
+ Parent=Firefox 9.0
22428
+ Platform="WinVista"
22429
+ Platform_Version=6.0
22430
+ Win32=false
22431
+ Win64=true
22432
 
22433
+ [Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/9.*]
22434
+ Parent=Firefox 9.0
22435
+ Platform="Win7"
22436
+ Platform_Version=6.1
22437
 
22438
+ [Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/9.*]
22439
+ Parent=Firefox 9.0
22440
+ Platform="Win7"
22441
+ Platform_Version=6.1
22442
+ Win32=false
22443
+ Win64=true
22444
 
22445
+ [Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/9.*]
22446
+ Parent=Firefox 9.0
22447
+ Platform="Win8"
22448
+ Platform_Version=6.2
22449
 
22450
+ [Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/9.*]
22451
+ Parent=Firefox 9.0
22452
+ Platform="Win8"
22453
+ Platform_Version=6.2
22454
+ Win64=true
22455
 
22456
+ [Mozilla/5.0 (Macintosh; *Mac OS X; U; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
22457
+ Parent=Thunderbird 1.0
22458
+ Platform="MacOSX"
22459
+ Win32=false
22460
 
22461
+ [Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
22462
+ Parent=Thunderbird 1.0
22463
+ Platform="Win2000"
22464
+ Platform_Version=5.0
22465
 
22466
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
22467
+ Parent=Thunderbird 1.0
22468
+ Platform="WinXP"
22469
+ Platform_Version=5.1
22470
 
22471
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
22472
+ Parent=Thunderbird 1.0
22473
+ Platform="Win2003"
22474
+ Platform_Version=5.2
22475
+
22476
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
22477
+ Parent=Thunderbird 1.0
22478
+ Platform="WinVista"
22479
+ Platform_Version=6.0
22480
+
22481
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
22482
+ Parent=Thunderbird 1.0
22483
+ Platform="Win7"
22484
+ Platform_Version=6.1
22485
+
22486
+ [Mozilla/5.0 (X11; U; Linux i686*; *; rv:1.9.*) Gecko/* Thunderbird/1.*]
22487
+ Parent=Thunderbird 1.0
22488
+ Platform="Linux"
22489
+ Win32=false
22490
+
22491
+ [Mozilla/5.0 (Macintosh; *Mac OS X; U; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
22492
+ Parent=Thunderbird 2.0
22493
+ Platform="MacOSX"
22494
+ Win32=false
22495
+
22496
+ [Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
22497
+ Parent=Thunderbird 2.0
22498
+ Platform="Win2000"
22499
+ Platform_Version=5.0
22500
+
22501
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
22502
+ Parent=Thunderbird 2.0
22503
+ Platform="WinXP"
22504
+ Platform_Version=5.1
22505
 
22506
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
22507
+ Parent=Thunderbird 2.0
22508
+ Platform="Win2003"
22509
+ Platform_Version=5.2
22510
 
22511
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
22512
+ Parent=Thunderbird 2.0
22513
+ Platform="WinVista"
22514
+ Platform_Version=6.0
22515
 
22516
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
22517
+ Parent=Thunderbird 2.0
22518
+ Platform="Win7"
22519
+ Platform_Version=6.1
22520
 
22521
+ [Mozilla/5.0 (X11; U; Linux i686*; *; rv:1.9.*) Gecko/* Thunderbird/2.*]
22522
+ Parent=Thunderbird 2.0
22523
+ Platform="Linux"
22524
+ Win32=false
22525
 
22526
+ [Mozilla/5.0 (Macintosh; *Mac OS X; U; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
22527
+ Parent=Thunderbird 3.0
22528
+ Platform="MacOSX"
22529
+ Win32=false
22530
 
22531
+ [Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
22532
+ Parent=Thunderbird 3.0
22533
+ Platform="Win2000"
22534
+ Platform_Version=5.0
22535
 
22536
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
22537
+ Parent=Thunderbird 3.0
22538
+ Platform="WinXP"
22539
+ Platform_Version=5.1
22540
 
22541
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
22542
+ Parent=Thunderbird 3.0
22543
+ Platform="Win2003"
22544
+ Platform_Version=5.2
 
22545
 
22546
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
22547
+ Parent=Thunderbird 3.0
22548
+ Platform="WinVista"
22549
+ Platform_Version=6.0
22550
+
22551
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
22552
+ Parent=Thunderbird 3.0
22553
+ Platform="Win7"
22554
+ Platform_Version=6.1
22555
+
22556
+ [Mozilla/5.0 (X11; U; Linux i686*; *; rv:1.9.*) Gecko/* Thunderbird/3.*]
22557
+ Parent=Thunderbird 3.0
22558
+ Platform="Linux"
22559
  Win32=false
 
22560
 
22561
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 1.0
 
 
22562
 
22563
+ [Fennec 1.0]
22564
+ Parent=DefaultProperties
22565
+ Comment="Fennec 1.0"
22566
+ Browser="Fennec"
22567
+ Version=1.0
22568
+ MajorVer=1
22569
+ MinorVer=0
22570
+ Frames=true
22571
+ IFrames=true
22572
+ Tables=true
22573
+ Cookies=true
22574
+ JavaScript=true
22575
+ isMobileDevice=true
22576
+ CssVersion=3
22577
 
22578
+ [Mozilla/5.0 (*Mac OS X 10.*rv:1.9*)*Gecko/*Fennec/1.*]
22579
+ Parent=Fennec 1.0
22580
+ Platform="MacOSX"
22581
+ Platform_Version=10.0
22582
 
22583
+ [Mozilla/5.0 (*Windows NT 5.1*rv:1.9*)*Gecko/*Fennec/1.*]
22584
+ Parent=Fennec 1.0
22585
+ Platform="WinXP"
22586
+ Platform_Version=5.1
22587
 
22588
+ [Mozilla/5.0 (*Windows NT 5.2*rv:1.9*)*Gecko/*Fennec/1.*]
22589
+ Parent=Fennec 1.0
22590
+ Platform="WinXP"
22591
+ Platform_Version=5.2
22592
 
22593
+ [Mozilla/5.0 (*Windows NT 6.0*rv:1.9*)*Gecko/*Fennec/1.*]
22594
+ Parent=Fennec 1.0
22595
+ Platform="WinVista"
22596
+ Platform_Version=6.0
22597
 
22598
+ [Mozilla/5.0 (*Windows NT 6.1*rv:1.9*)*Gecko/*Fennec/1.*]
22599
+ Parent=Fennec 1.0
22600
+ Platform="Win7"
22601
+ Platform_Version=6.1
22602
 
22603
+ [Mozilla/5.0 (*X11*Linux*rv:1.9*)*Gecko/*Fennec/1.*]
22604
+ Parent=Fennec 1.0
22605
+ Platform="Linux"
22606
 
22607
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 10.0
22608
 
22609
+ [Fennec 10.0]
22610
  Parent=DefaultProperties
22611
+ Comment="Fennec 10.0"
22612
+ Browser="Fennec"
22613
+ Version=10.0
22614
+ MajorVer=10
22615
+ MinorVer=0
22616
+ Platform="Android"
22617
+ Platform_Version=2.3
22618
  Frames=true
22619
  IFrames=true
22620
  Tables=true
22621
  Cookies=true
22622
+ BackgroundSounds=default
22623
  JavaScript=true
22624
+ isMobileDevice=true
22625
  CssVersion=3
 
22626
 
22627
+ [Mozilla/5.0 (*Android*Linux*arm*Mobile*rv:10.*)*Gecko/10.*Firefox/10.*Fennec/10.*]
22628
+ Parent=Fennec 10.0
 
 
 
 
 
 
 
 
 
 
22629
 
22630
+ [Mozilla/5.0 (*Android*Mobile*rv:10.*)*Gecko/10.*Firefox/10.*Fennec/10.*]
22631
+ Parent=Fennec 10.0
 
 
22632
 
22633
+ [Mozilla/5.0 (*Android*Tablet*)*Gecko/10.*Firefox/10.*Fennec/10.*]
22634
+ Parent=Fennec 10.0
 
 
22635
 
22636
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 4.0
 
 
22637
 
22638
+ [Fennec 4.0]
22639
+ Parent=DefaultProperties
22640
+ Comment="Fennec 4.0"
22641
+ Browser="Fennec"
22642
+ Version=4.0
22643
+ MajorVer=4
22644
+ MinorVer=0
22645
  Win32=true
22646
+ Frames=true
22647
+ IFrames=true
22648
+ Tables=true
22649
+ Cookies=true
22650
+ JavaScript=true
22651
+ isMobileDevice=true
22652
+ CssVersion=3
22653
 
22654
+ [Mozilla/5.0 (Android; Linux*; rv:2.*) Gecko/* Firefox/* Fennec/4.*]
22655
+ Parent=Fennec 4.0
22656
+ Platform="Android"
22657
  Win32=false
 
22658
 
22659
+ [Mozilla/5.0 (Macintosh; Intel Mac OS X*; rv:2.*) Gecko/* Firefox/* Fennec/4.*]
22660
+ Parent=Fennec 4.0
22661
+ Platform="MacOSX"
22662
  Win32=false
 
 
 
 
 
 
 
 
 
22663
 
22664
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1;* rv:1.9*) Gecko/* Firefox/* Fennec/4.*]
22665
+ Parent=Fennec 4.0
22666
+ Platform="WinXP"
22667
+ Platform_Version=5.1
22668
 
22669
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2;*rv:1.9*) Gecko/* Firefox/* Fennec/4.*]
22670
+ Parent=Fennec 4.0
22671
+ Platform="WinXP"
22672
+ Platform_Version=5.2
22673
 
22674
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0;*rv:1.9*) Gecko/* Firefox/* Fennec/4.*]
22675
+ Parent=Fennec 4.0
22676
+ Platform="WinVista"
22677
+ Platform_Version=6.0
22678
 
22679
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1;*rv:1.9*) Gecko/* Firefox/* Fennec/4.*]
22680
+ Parent=Fennec 4.0
22681
+ Platform="Win7"
22682
+ Platform_Version=6.1
22683
 
22684
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1;*rv:2.1*) Gecko/* Firefox/* Fennec/4.*]
22685
+ Parent=Fennec 4.0
22686
+ Platform="Win7"
22687
+ Platform_Version=6.1
22688
 
22689
+ [Mozilla/5.0 (X11; U; Linux*) Gecko/* Fennec/4.*]
22690
+ Parent=Fennec 4.0
22691
+ Platform="Linux"
22692
 
22693
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 5.0
22694
 
22695
+ [Fennec 5.0]
22696
  Parent=DefaultProperties
22697
+ Comment="Fennec 5.0"
22698
+ Browser="Fennec"
22699
+ Version=5.0
22700
+ MajorVer=5
22701
+ MinorVer=0
22702
+ Win32=true
22703
  Frames=true
22704
  IFrames=true
22705
  Tables=true
22706
  Cookies=true
 
22707
  JavaScript=true
22708
+ isMobileDevice=true
22709
  CssVersion=3
 
22710
 
22711
+ [Mozilla/5.0 (Android; Linux*rv:2.*) Gecko/* Firefox/* Fennec/5.0*]
22712
+ Parent=Fennec 5.0
22713
+ Platform="Android"
22714
+ Win32=false
22715
 
22716
+ [Mozilla/5.0 (Macintosh; Intel Mac OS X*rv:2.1*) Gecko/* Firefox/* Fennec/5.*]
22717
+ Parent=Fennec 5.0
22718
+ Platform="MacOSX"
22719
+ Win32=false
22720
 
22721
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1;*rv:1.9*) Gecko/* Firefox/* Fennec/5.*]
22722
+ Parent=Fennec 5.0
22723
+ Platform="WinXP"
22724
+ Platform_Version=5.1
22725
 
22726
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2;*rv:1.9*) Gecko/* Firefox/* Fennec/5.*]
22727
+ Parent=Fennec 5.0
22728
+ Platform="WinXP"
22729
+ Platform_Version=5.2
22730
 
22731
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0;*rv:1.9*) Gecko/* Firefox/* Fennec/5.*]
22732
+ Parent=Fennec 5.0
22733
+ Platform="WinVista"
22734
+ Platform_Version=6.0
22735
 
22736
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1;*rv:1.9*) Gecko/* Firefox/* Fennec/5.*]
22737
+ Parent=Fennec 5.0
22738
+ Platform="Win7"
22739
+ Platform_Version=6.1
22740
 
22741
+ [Mozilla/5.0 (X11; U; Linux*) Gecko/* Fennec/5.*]
22742
+ Parent=Fennec 5.0
22743
+ Platform="Linux"
22744
+
22745
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 6.0
22746
+
22747
+ [Fennec 6.0]
22748
+ Parent=DefaultProperties
22749
+ Comment="Fennec 6.0"
22750
+ Browser="Fennec"
22751
+ Version=6.0
22752
+ MajorVer=6
22753
+ MinorVer=0
22754
  Win32=true
22755
+ Frames=true
22756
+ IFrames=true
22757
+ Tables=true
22758
+ Cookies=true
22759
+ JavaScript=true
22760
+ isMobileDevice=true
22761
+ CssVersion=3
22762
 
22763
+ [Mozilla/5.0 (Android; Linux*; rv:2.*) Gecko/* Firefox/* Fennec/6.0*]
22764
+ Parent=Fennec 6.0
22765
+ Platform="Android"
22766
  Win32=false
 
22767
 
22768
+ [Mozilla/5.0 (Macintosh; Intel Mac OS X*rv:2.1) Gecko/* Firefox/* Fennec/6.*]
22769
+ Parent=Fennec 6.0
22770
+ Platform="MacOSX"
22771
  Win32=false
 
 
 
 
 
 
 
 
 
22772
 
22773
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1;*rv:1.9*) Gecko/* Firefox/* Fennec/6.*]
22774
+ Parent=Fennec 6.0
22775
+ Platform="WinXP"
22776
+ Platform_Version=5.1
22777
 
22778
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2;*rv:1.9*) Gecko/* Firefox/* Fennec/6.*]
22779
+ Parent=Fennec 6.0
22780
+ Platform="WinXP"
22781
+ Platform_Version=5.2
22782
 
22783
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0;*rv:1.9*) Gecko/* Firefox/* Fennec/6.*]
22784
+ Parent=Fennec 6.0
22785
+ Platform="WinVista"
22786
+ Platform_Version=6.0
22787
 
22788
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1;*rv:1.9*) Gecko/* Firefox/* Fennec/6.*]
22789
+ Parent=Fennec 6.0
22790
+ Platform="Win7"
22791
+ Platform_Version=6.1
22792
 
22793
+ [Mozilla/5.0 (Windows; U; Windows NT 6.2;*rv:1.9*) Gecko/* Firefox/* Fennec/6.*]
22794
+ Parent=Fennec 6.0
22795
+ Platform="Win8"
22796
+ Platform_Version=6.2
22797
 
22798
+ [Mozilla/5.0 (X11; U; Linux*) Gecko/* Fennec/6.*]
22799
+ Parent=Fennec 6.0
22800
+ Platform="Linux"
22801
 
22802
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 7.0
22803
 
22804
+ [Fennec 7.0]
22805
  Parent=DefaultProperties
22806
+ Comment="Fennec 7.0"
22807
+ Browser="Fennec"
22808
+ Version=7.0
22809
+ MajorVer=7
22810
+ MinorVer=0
22811
+ Win32=true
22812
  Frames=true
22813
  IFrames=true
22814
  Tables=true
22815
  Cookies=true
 
22816
  JavaScript=true
22817
+ isMobileDevice=true
22818
  CssVersion=3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22819
 
22820
+ [Mozilla/5.0 (Android; Linux*; rv:2.*) Gecko/* Firefox/* Fennec/7.0*]
22821
+ Parent=Fennec 7.0
22822
+ Platform="Android"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22823
  Win32=false
 
22824
 
22825
+ [Mozilla/5.0 (Macintosh; Intel Mac OS X*; rv:2.1*) Gecko/* Firefox/* Fennec/7.*]
22826
+ Parent=Fennec 7.0
22827
+ Platform="MacOSX"
22828
  Win32=false
 
 
 
 
 
22829
 
22830
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1;*rv:1.9*) Gecko/* Firefox/* Fennec/7.*]
22831
+ Parent=Fennec 7.0
22832
+ Platform="WinXP"
22833
+ Platform_Version=5.1
22834
 
22835
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2;*rv:1.9*) Gecko/* Firefox/* Fennec/7.*]
22836
+ Parent=Fennec 7.0
22837
+ Platform="WinXP"
22838
+ Platform_Version=5.2
22839
 
22840
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0;*rv:1.9*) Gecko/* Firefox/* Fennec/7.*]
22841
+ Parent=Fennec 7.0
22842
+ Platform="WinVista"
22843
+ Platform_Version=6.0
22844
 
22845
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1;*rv:1.9*) Gecko/* Firefox/* Fennec/7.*]
22846
+ Parent=Fennec 7.0
22847
+ Platform="Win7"
22848
+ Platform_Version=6.1
22849
 
22850
+ [Mozilla/5.0 (Windows; U; Windows NT 6.2;*rv:1.9*) Gecko/* Firefox/* Fennec/7.*]
22851
+ Parent=Fennec 7.0
22852
+ Platform="Win8"
22853
+ Platform_Version=6.2
22854
 
22855
+ [Mozilla/5.0 (X11; U; Linux*) Gecko/* Fennec/7.*]
22856
+ Parent=Fennec 7.0
22857
+ Platform="Linux"
 
 
 
 
22858
 
22859
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Thunderbird 1.0
22860
 
22861
  [Thunderbird 1.0]
22862
  Parent=DefaultProperties
22863
+ Comment="Thunderbird 1.0"
22864
  Browser="Thunderbird"
22865
  Version=1.0
22866
  MajorVer=1
22867
+ MinorVer=0
22868
+ Win32=true
22869
+ Frames=true
22870
+ IFrames=true
22871
+ Tables=true
22872
+ Cookies=true
22873
+ JavaScript=true
22874
+
22875
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Thunderbird 14.0
22876
+
22877
+ [Thunderbird 14.0]
22878
+ Parent=DefaultProperties
22879
+ Comment="Thunderbird 14.0"
22880
+ Browser="Thunderbird"
22881
+ Version=14.0
22882
+ MajorVer=14
22883
+ MinorVer=0
22884
+ Win32=true
22885
  Frames=true
22886
  IFrames=true
22887
  Tables=true
22888
  Cookies=true
 
22889
  JavaScript=true
22890
 
22891
+ [Mozilla/5.0 (Macintosh; *Mac OS X; U; *; rv:*) Gecko/* Thunderbird/14.*]
22892
+ Parent=Thunderbird 14.0
22893
+ Platform="MacOSX"
22894
+ Win32=false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22895
 
22896
+ [Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:*) Gecko/* Thunderbird/14.*]
22897
+ Parent=Thunderbird 14.0
22898
+ Platform="Win2000"
22899
+ Platform_Version=5.0
22900
+
22901
+ [Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:*) Gecko/* Thunderbird/14.*]
22902
+ Parent=Thunderbird 14.0
22903
+ Platform="WinXP"
22904
+ Platform_Version=5.1
22905
+
22906
+ [Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:*) Gecko/* Thunderbird/14.*]
22907
+ Parent=Thunderbird 14.0
22908
+ Platform="Win2003"
22909
+ Platform_Version=5.2
22910
+
22911
+ [Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:*) Gecko/* Thunderbird/14.*]
22912
+ Parent=Thunderbird 14.0
22913
+ Platform="WinVista"
22914
+ Platform_Version=6.0
22915
+
22916
+ [Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:*) Gecko/* Thunderbird/14.*]
22917
+ Parent=Thunderbird 14.0
22918
+ Platform="Win7"
22919
+ Platform_Version=6.1
22920
+
22921
+ [Mozilla/5.0 (Windows; U; Windows NT 6.2; *; rv:*) Gecko/* Thunderbird/14.*]
22922
+ Parent=Thunderbird 14.0
22923
+ Platform="Win8"
22924
+ Platform_Version=6.2
22925
+
22926
+ [Mozilla/5.0 (X11; U; Linux i686*; *; rv:*) Gecko/* Thunderbird/14.*]
22927
+ Parent=Thunderbird 14.0
22928
+ Platform="Linux"
22929
+ Win32=false
22930
 
22931
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Thunderbird 2.0
22932
 
22933
  [Thunderbird 2.0]
22934
  Parent=DefaultProperties
22935
+ Comment="Thunderbird 2.0"
22936
  Browser="Thunderbird"
22937
  Version=2.0
22938
  MajorVer=2
22939
+ MinorVer=0
22940
+ Win32=true
22941
  Frames=true
22942
  IFrames=true
22943
  Tables=true
22944
  Cookies=true
 
22945
  JavaScript=true
22946
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22947
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Thunderbird 3.0
22948
 
22949
  [Thunderbird 3.0]
22950
  Parent=DefaultProperties
22951
+ Comment="Thunderbird 3.0"
22952
  Browser="Thunderbird"
22953
  Version=3.0
22954
  MajorVer=3
22955
+ MinorVer=0
22956
+ Win32=true
22957
  Frames=true
22958
  IFrames=true
22959
  Tables=true
22960
  Cookies=true
 
22961
  JavaScript=true
22962
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22963
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iceweasel
22964
 
22965
  [Iceweasel]
22966
  Parent=DefaultProperties
22967
+ Comment="Iceweasel"
22968
  Browser="Iceweasel"
22969
+ Platform="Debian"
 
22970
  Frames=true
22971
  IFrames=true
22972
  Tables=true
22973
  Cookies=true
 
22974
  JavaScript=true
22975
+ JavaApplets=true
22976
  CssVersion=2
 
22977
 
22978
+ [Mozilla/5.0 (X11; U; Linux*; *; rv:1.8.*) Gecko/* Iceweasel/2.0* (Debian-*)*]
22979
  Parent=Iceweasel
22980
  Version=2.0
22981
  MajorVer=2
22982
  MinorVer=0
22983
 
22984
+ [Mozilla/5.0 (X11; U; Linux*; *; rv:1.9.*) Gecko/* Iceweasel/3.0* (Debian-*)*]
22985
+ Parent=Iceweasel
22986
+ Version=3.0
22987
+ MajorVer=3
22988
+ MinorVer=0
22989
+ Platform="Debian"
22990
+ CssVersion=2
22991
+
22992
+ [Mozilla/5.0 (X11; U; Linux*; *; rv:1.9.*) Gecko/* Iceweasel/3.5* (Debian-*)]
22993
+ Parent=Iceweasel
22994
+ Version=3.5
22995
+ MajorVer=3
22996
+ MinorVer=5
22997
+
22998
+ [Mozilla/5.0 (X11; U; Linux; *; rv:1.9.*) Gecko/* Iceweasel/3.6* (like Firefox/3.6)*]
22999
+ Parent=Iceweasel
23000
+ Version=3.6
23001
+ MajorVer=3
23002
+ MinorVer=6
23003
+
23004
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.0
23005
 
23006
  [Mozilla 1.0]
23007
  Parent=DefaultProperties
23008
+ Comment="Mozilla 1.0"
23009
  Browser="Mozilla"
23010
  Version=1.0
23011
  MajorVer=1
23012
+ MinorVer=0
23013
  Frames=true
23014
  IFrames=true
23015
  Tables=true
23016
  Cookies=true
 
23017
  JavaScript=true
23018
+ JavaApplets=true
23019
  CssVersion=2
 
23020
 
23021
  [Mozilla/5.0 (*rv:1.0.*) Gecko/*]
23022
  Parent=Mozilla 1.0
23025
 
23026
  [Mozilla 1.1]
23027
  Parent=DefaultProperties
23028
+ Comment="Mozilla 1.1"
23029
  Browser="Mozilla"
23030
  Version=1.1
23031
  MajorVer=1
23032
  MinorVer=1
 
23033
  Frames=true
23034
  IFrames=true
23035
  Tables=true
23036
  Cookies=true
 
23037
  JavaScript=true
23038
+ JavaApplets=true
23039
  CssVersion=2
 
23040
 
23041
  [Mozilla/5.0 (*rv:1.1.*) Gecko/*]
23042
  Parent=Mozilla 1.1
23045
 
23046
  [Mozilla 1.2]
23047
  Parent=DefaultProperties
23048
+ Comment="Mozilla 1.2"
23049
  Browser="Mozilla"
23050
  Version=1.2
23051
  MajorVer=1
23052
  MinorVer=2
 
23053
  Frames=true
23054
  IFrames=true
23055
  Tables=true
23056
  Cookies=true
 
23057
  JavaScript=true
23058
+ JavaApplets=true
23059
  CssVersion=2
 
23060
 
23061
  [Mozilla/5.0 (*rv:1.2.*) Gecko/*]
23062
  Parent=Mozilla 1.2
23065
 
23066
  [Mozilla 1.3]
23067
  Parent=DefaultProperties
23068
+ Comment="Mozilla 1.3"
23069
  Browser="Mozilla"
23070
  Version=1.3
23071
  MajorVer=1
23072
  MinorVer=3
 
23073
  Frames=true
23074
  IFrames=true
23075
  Tables=true
23076
  Cookies=true
 
23077
  JavaScript=true
23078
+ JavaApplets=true
23079
  CssVersion=2
 
23080
 
23081
  [Mozilla/5.0 (*rv:1.3.*) Gecko/*]
23082
  Parent=Mozilla 1.3
23085
 
23086
  [Mozilla 1.4]
23087
  Parent=DefaultProperties
23088
+ Comment="Mozilla 1.4"
23089
  Browser="Mozilla"
23090
  Version=1.4
23091
  MajorVer=1
23092
  MinorVer=4
23093
+ Win32=true
23094
  Frames=true
23095
  IFrames=true
23096
  Tables=true
23097
  Cookies=true
 
23098
  JavaScript=true
23099
+ JavaApplets=true
23100
  CssVersion=2
 
23101
 
23102
  [Mozilla/5.0 (*rv:1.4*) Gecko/*]
23103
  Parent=Mozilla 1.4
23104
+ Win32=false
23105
 
23106
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.4*) Gecko/*]
23107
  Parent=Mozilla 1.4
23108
+ Platform="MacOSX"
23109
+ Win32=false
23110
 
23111
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.4*) Gecko/*]
23112
  Parent=Mozilla 1.4
23113
+ Platform="WinME"
 
23114
 
23115
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.4*) Gecko/*]
23116
  Parent=Mozilla 1.4
23117
+ Platform="Win31"
23118
+ Platform_Version=3.1
23119
+ Win16=true
23120
+ Win32=false
23121
 
23122
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.4*) Gecko/*]
23123
  Parent=Mozilla 1.4
23124
+ Platform="Win31"
23125
+ Platform_Version=3.11
23126
  Win16=true
23127
+ Win32=false
23128
 
23129
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.4*) Gecko/*]
23130
  Parent=Mozilla 1.4
23131
+ Platform="Win95"
23132
+ Platform_Version=95
23133
 
23134
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.4*) Gecko/*]
23135
  Parent=Mozilla 1.4
23136
+ Platform="Win98"
23137
+ Platform_Version=98
23138
 
23139
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.4*) Gecko/*]
23140
  Parent=Mozilla 1.4
23141
+ Platform="Win2000"
23142
+ Platform_Version=5.0
23143
 
23144
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.4*) Gecko/*]
23145
  Parent=Mozilla 1.4
23146
+ Platform="WinXP"
23147
+ Platform_Version=5.1
23148
 
23149
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.4*) Gecko/*]
23150
  Parent=Mozilla 1.4
23151
+ Platform="WinNT"
23152
+ Platform_Version=4.0
23153
 
23154
  [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.4*) Gecko/*]
23155
  Parent=Mozilla 1.4
23156
+ Platform="FreeBSD"
23157
+ Win32=false
23158
 
23159
  [Mozilla/5.0 (X11; *Linux*; *rv:1.4*) Gecko/*]
23160
  Parent=Mozilla 1.4
23161
+ Platform="Linux"
23162
+ Win32=false
23163
 
23164
  [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.4*) Gecko/*]
23165
  Parent=Mozilla 1.4
23166
+ Platform="OpenBSD"
23167
+ Win32=false
23168
 
23169
  [Mozilla/5.0 (X11; *SunOS*; *rv:1.4*) Gecko/*]
23170
  Parent=Mozilla 1.4
23171
+ Platform="SunOS"
23172
+ Win32=false
23173
 
23174
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.5
23175
 
23176
  [Mozilla 1.5]
23177
  Parent=DefaultProperties
23178
+ Comment="Mozilla 1.5"
23179
  Browser="Mozilla"
23180
  Version=1.5
23181
  MajorVer=1
23182
  MinorVer=5
23183
+ Win32=true
23184
  Frames=true
23185
  IFrames=true
23186
  Tables=true
23187
  Cookies=true
 
23188
  JavaScript=true
23189
+ JavaApplets=true
23190
  CssVersion=2
 
23191
 
23192
  [Mozilla/5.0 (*rv:1.5*) Gecko/*]
23193
  Parent=Mozilla 1.5
23194
+ Win32=false
23195
 
23196
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.5*) Gecko/*]
23197
  Parent=Mozilla 1.5
23198
+ Platform="MacOSX"
23199
+ Win32=false
23200
 
23201
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.5*) Gecko/*]
23202
  Parent=Mozilla 1.5
23203
+ Platform="WinME"
 
23204
 
23205
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.5*) Gecko/*]
23206
  Parent=Mozilla 1.5
23207
+ Platform="Win31"
23208
+ Platform_Version=3.1
23209
+ Win16=true
23210
+ Win32=false
23211
 
23212
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.5*) Gecko/*]
23213
  Parent=Mozilla 1.5
23214
+ Platform="Win31"
23215
+ Platform_Version=3.11
23216
  Win16=true
23217
+ Win32=false
23218
 
23219
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.5*) Gecko/*]
23220
  Parent=Mozilla 1.5
23221
+ Platform="Win95"
23222
+ Platform_Version=95
23223
 
23224
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.5*) Gecko/*]
23225
  Parent=Mozilla 1.5
23226
+ Platform="Win98"
23227
+ Platform_Version=98
23228
 
23229
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.5*) Gecko/*]
23230
  Parent=Mozilla 1.5
23231
+ Platform="Win2000"
23232
+ Platform_Version=5.0
23233
 
23234
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.5*) Gecko/*]
23235
  Parent=Mozilla 1.5
23236
+ Platform="WinXP"
23237
+ Platform_Version=5.1
23238
 
23239
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.5*) Gecko/*]
23240
  Parent=Mozilla 1.5
23241
+ Platform="WinNT"
23242
+ Platform_Version=4.0
23243
 
23244
  [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.5*) Gecko/*]
23245
  Parent=Mozilla 1.5
23246
+ Platform="FreeBSD"
23247
+ Win32=false
23248
 
23249
  [Mozilla/5.0 (X11; *Linux*; *rv:1.5*) Gecko/*]
23250
  Parent=Mozilla 1.5
23251
+ Platform="Linux"
23252
+ Win32=false
23253
 
23254
  [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.5*) Gecko/*]
23255
  Parent=Mozilla 1.5
23256
+ Platform="OpenBSD"
23257
+ Win32=false
23258
 
23259
  [Mozilla/5.0 (X11; *SunOS*; *rv:1.5*) Gecko/*]
23260
  Parent=Mozilla 1.5
23261
+ Platform="SunOS"
23262
+ Win32=false
23263
 
23264
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.6
23265
 
23266
  [Mozilla 1.6]
23267
  Parent=DefaultProperties
23268
+ Comment="Mozilla 1.6"
23269
  Browser="Mozilla"
23270
  Version=1.6
23271
  MajorVer=1
23272
  MinorVer=6
23273
+ Win32=true
23274
  Frames=true
23275
  IFrames=true
23276
  Tables=true
23277
  Cookies=true
 
23278
  JavaScript=true
23279
+ JavaApplets=true
23280
  CssVersion=2
 
23281
 
23282
  [Mozilla/5.0 (*rv:1.6*) Gecko/*]
23283
  Parent=Mozilla 1.6
23284
+ Win32=false
23285
 
23286
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.6*) Gecko/*]
23287
  Parent=Mozilla 1.6
23288
+ Platform="MacOSX"
23289
+ Win32=false
23290
 
23291
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.6*) Gecko/*]
23292
  Parent=Mozilla 1.6
23293
+ Platform="WinME"
 
23294
 
23295
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.6*) Gecko/*]
23296
  Parent=Mozilla 1.6
23297
+ Platform="Win31"
23298
+ Platform_Version=3.1
23299
+ Win16=true
23300
+ Win32=false
23301
 
23302
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.6*) Gecko/*]
23303
  Parent=Mozilla 1.6
23304
+ Platform="Win31"
23305
+ Platform_Version=3.11
23306
  Win16=true
23307
+ Win32=false
23308
 
23309
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.6*) Gecko/*]
23310
  Parent=Mozilla 1.6
23311
+ Platform="Win95"
23312
+ Platform_Version=95
23313
 
23314
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.6*) Gecko/*]
23315
  Parent=Mozilla 1.6
23316
+ Platform="Win98"
23317
+ Platform_Version=98
23318
 
23319
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.6*) Gecko/*]
23320
  Parent=Mozilla 1.6
23321
+ Platform="Win2000"
23322
+ Platform_Version=5.0
23323
 
23324
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.6*) Gecko/*]
23325
  Parent=Mozilla 1.6
23326
+ Platform="WinXP"
23327
+ Platform_Version=5.1
23328
 
23329
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.6*) Gecko/*]
23330
  Parent=Mozilla 1.6
23331
+ Platform="WinNT"
23332
+ Platform_Version=4.0
23333
 
23334
  [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.6*) Gecko/*]
23335
  Parent=Mozilla 1.6
23336
+ Platform="FreeBSD"
23337
+ Win32=false
23338
 
23339
  [Mozilla/5.0 (X11; *Linux*; *rv:1.6*) Gecko/*]
23340
  Parent=Mozilla 1.6
23341
+ Platform="Linux"
23342
+ Win32=false
23343
 
23344
  [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.6*) Gecko/*]
23345
  Parent=Mozilla 1.6
23346
+ Platform="OpenBSD"
23347
+ Win32=false
23348
 
23349
  [Mozilla/5.0 (X11; *SunOS*; *rv:1.6*) Gecko/*]
23350
  Parent=Mozilla 1.6
23351
+ Platform="SunOS"
23352
+ Win32=false
23353
 
23354
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.7
23355
 
23356
  [Mozilla 1.7]
23357
  Parent=DefaultProperties
23358
+ Comment="Mozilla 1.7"
23359
  Browser="Mozilla"
23360
  Version=1.7
23361
  MajorVer=1
23362
  MinorVer=7
23363
+ Win32=true
23364
  Frames=true
23365
  IFrames=true
23366
  Tables=true
23367
  Cookies=true
 
23368
  JavaScript=true
23369
+ JavaApplets=true
23370
  CssVersion=2
 
23371
 
23372
  [Mozilla/5.0 (*rv:1.7*) Gecko/*]
23373
  Parent=Mozilla 1.7
23374
+ Win32=false
23375
 
23376
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.7*) Gecko/*]
23377
  Parent=Mozilla 1.7
23378
+ Platform="MacOSX"
23379
+ Win32=false
23380
 
23381
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.7*) Gecko/*]
23382
  Parent=Mozilla 1.7
23383
+ Platform="WinME"
 
23384
 
23385
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.7*) Gecko/*]
23386
  Parent=Mozilla 1.7
23387
+ Platform="Win31"
23388
+ Platform_Version=3.1
23389
+ Win16=true
23390
+ Win32=false
23391
 
23392
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.7*) Gecko/*]
23393
  Parent=Mozilla 1.7
23394
+ Platform="Win31"
23395
+ Platform_Version=3.11
23396
  Win16=true
23397
+ Win32=false
23398
 
23399
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.7*) Gecko/*]
23400
  Parent=Mozilla 1.7
23401
+ Platform="Win95"
23402
+ Platform_Version=95
23403
 
23404
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.7*) Gecko/*]
23405
  Parent=Mozilla 1.7
23406
+ Platform="Win98"
23407
+ Platform_Version=98
23408
  Win32=true
23409
 
23410
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.7*) Gecko/*]
23411
  Parent=Mozilla 1.7
23412
+ Platform="Win2000"
23413
+ Platform_Version=5.0
23414
 
23415
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.7*) Gecko/*]
23416
  Parent=Mozilla 1.7
23417
+ Platform="WinXP"
23418
+ Platform_Version=5.1
23419
 
23420
  [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.7*) Gecko/*]
23421
  Parent=Mozilla 1.7
23422
+ Platform="Win2003"
23423
+ Platform_Version=5.2
23424
 
23425
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.7*) Gecko/*]
23426
  Parent=Mozilla 1.7
23427
+ Platform="WinNT"
23428
+ Platform_Version=4.0
23429
 
23430
  [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.7*) Gecko/*]
23431
  Parent=Mozilla 1.7
23432
+ Platform="FreeBSD"
23433
+ Win32=false
23434
 
23435
  [Mozilla/5.0 (X11; *Linux*; *rv:1.7*) Gecko/*]
23436
  Parent=Mozilla 1.7
23437
+ Platform="Linux"
23438
+ Win32=false
23439
 
23440
  [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.7*) Gecko/*]
23441
  Parent=Mozilla 1.7
23442
+ Platform="OpenBSD"
23443
+ Win32=false
23444
 
23445
  [Mozilla/5.0 (X11; *SunOS*; *rv:1.7*) Gecko/*]
23446
  Parent=Mozilla 1.7
23447
+ Platform="SunOS"
23448
+ Win32=false
23449
 
23450
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.8
23451
 
23452
  [Mozilla 1.8]
23453
  Parent=DefaultProperties
23454
+ Comment="Mozilla 1.8"
23455
  Browser="Mozilla"
23456
  Version=1.8
23457
  MajorVer=1
23458
  MinorVer=8
23459
+ Win32=true
23460
  Frames=true
23461
  IFrames=true
23462
  Tables=true
23463
  Cookies=true
 
23464
  JavaScript=true
23465
+ JavaApplets=true
23466
  CssVersion=2
 
23467
 
23468
  [Mozilla/5.0 (*rv:1.8*) Gecko/*]
23469
  Parent=Mozilla 1.8
23470
+ Win32=false
23471
 
23472
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.8*) Gecko/*]
23473
  Parent=Mozilla 1.8
23474
+ Platform="MacOSX"
23475
+ Win32=false
23476
 
23477
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.8*) Gecko/*]
23478
  Parent=Mozilla 1.8
23479
+ Platform="WinME"
 
23480
 
23481
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.8*) Gecko/*]
23482
  Parent=Mozilla 1.8
23483
+ Platform_Version=3.1
23484
+ Win16=true
23485
+ Win32=false
23486
 
23487
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.8*) Gecko/*]
23488
  Parent=Mozilla 1.8
23489
+ Platform="Win31"
23490
+ Platform_Version=3.11
23491
  Win16=true
23492
+ Win32=false
23493
 
23494
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.8*) Gecko/*]
23495
  Parent=Mozilla 1.8
23496
+ Platform="Win95"
23497
+ Platform_Version=95
23498
 
23499
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.8*) Gecko/*]
23500
  Parent=Mozilla 1.8
23501
+ Platform="Win98"
23502
+ Platform_Version=98
23503
 
23504
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.8*) Gecko/*]
23505
  Parent=Mozilla 1.8
23506
+ Platform="Win2000"
23507
+ Platform_Version=5.0
23508
 
23509
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.8*) Gecko/*]
23510
  Parent=Mozilla 1.8
23511
+ Platform="WinXP"
23512
+ Platform_Version=5.1
23513
 
23514
  [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.8*) Gecko/*]
23515
  Parent=Mozilla 1.8
23516
+ Platform="Win2003"
23517
+ Platform_Version=5.2
23518
 
23519
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.8*) Gecko/*]
23520
  Parent=Mozilla 1.8
23521
+ Platform="WinNT"
23522
+ Platform_Version=4.0
23523
 
23524
  [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.8*) Gecko/*]
23525
  Parent=Mozilla 1.8
23526
+ Platform="FreeBSD"
23527
+ Win32=false
23528
 
23529
  [Mozilla/5.0 (X11; *Linux*; *rv:1.8*) Gecko/*]
23530
  Parent=Mozilla 1.8
23531
+ Platform="Linux"
23532
+ Win32=false
23533
 
23534
  [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.8*) Gecko/*]
23535
  Parent=Mozilla 1.8
23536
+ Platform="OpenBSD"
23537
+ Win32=false
23538
 
23539
  [Mozilla/5.0 (X11; *SunOS*; *rv:1.8*) Gecko/*]
23540
  Parent=Mozilla 1.8
23541
+ Platform="SunOS"
23542
+ Win32=false
23543
 
23544
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.9
23545
 
23546
  [Mozilla 1.9]
23547
  Parent=DefaultProperties
23548
+ Comment="Mozilla 1.9"
23549
  Browser="Mozilla"
23550
  Version=1.9
23551
  MajorVer=1
23552
  MinorVer=9
23553
+ Win32=true
23554
  Frames=true
23555
  IFrames=true
23556
  Tables=true
23557
  Cookies=true
 
23558
  JavaScript=true
23559
+ JavaApplets=true
23560
  CssVersion=2
 
23561
 
23562
  [Mozilla/5.0 (*rv:1.9*) Gecko/*]
23563
  Parent=Mozilla 1.9
23564
+ Win32=false
23565
 
23566
  [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.9*) Gecko/*]
23567
  Parent=Mozilla 1.9
23568
+ Platform="MacOSX"
23569
+ Win32=false
23570
 
23571
  [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.9*) Gecko/*]
23572
  Parent=Mozilla 1.9
23573
+ Platform="WinME"
 
23574
 
23575
  [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.9*) Gecko/*]
23576
  Parent=Mozilla 1.9
23577
+ Platform_Version=3.1
23578
+ Win16=true
23579
+ Win32=false
23580
 
23581
  [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.9*) Gecko/*]
23582
  Parent=Mozilla 1.9
23583
+ Platform="Win31"
23584
+ Platform_Version=3.11
23585
  Win16=true
23586
+ Win32=false
23587
 
23588
  [Mozilla/5.0 (Windows; ?; Win95; *rv:1.9*) Gecko/*]
23589
  Parent=Mozilla 1.9
23590
+ Platform="Win95"
23591
+ Platform_Version=95
23592
 
23593
  [Mozilla/5.0 (Windows; ?; Win98; *rv:1.9*) Gecko/*]
23594
  Parent=Mozilla 1.9
23595
+ Platform="Win98"
23596
+ Platform_Version=98
23597
 
23598
  [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.9*) Gecko/*]
23599
  Parent=Mozilla 1.9
23600
+ Platform="Win2000"
23601
+ Platform_Version=5.0
23602
 
23603
  [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.9*) Gecko/*]
23604
  Parent=Mozilla 1.9
23605
+ Platform="WinXP"
23606
+ Platform_Version=5.1
23607
 
23608
  [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.9*) Gecko/*]
23609
  Parent=Mozilla 1.9
23610
+ Platform="Win2003"
23611
+ Platform_Version=5.2
23612
 
23613
  [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.9*) Gecko/*]
23614
  Parent=Mozilla 1.9
23615
+ Platform="WinNT"
23616
+ Platform_Version=4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23617
 
23618
+ [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.9*) Gecko/*]
23619
+ Parent=Mozilla 1.9
23620
+ Platform="FreeBSD"
23621
+ Win32=false
 
23622
 
23623
+ [Mozilla/5.0 (X11; *Linux*; *rv:1.9*) Gecko/*]
23624
+ Parent=Mozilla 1.9
23625
+ Platform="Linux"
23626
+ Win32=false
 
23627
 
23628
+ [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.9*) Gecko/*]
23629
+ Parent=Mozilla 1.9
23630
+ Platform="OpenBSD"
23631
+ Win32=false
 
23632
 
23633
+ [Mozilla/5.0 (X11; *SunOS*; *rv:1.9*) Gecko/*]
23634
+ Parent=Mozilla 1.9
23635
+ Platform="SunOS"
23636
+ Win32=false
 
23637
 
23638
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 5.5
23639
 
23640
  [AOL 9.0/IE 5.5]
23641
  Parent=DefaultProperties
23642
+ Comment="AOL 9.0/IE 5.5"
23643
+ Browser="IE"
23644
  Version=5.5
23645
  MajorVer=5
23646
  MinorVer=5
23650
  Tables=true
23651
  Cookies=true
23652
  BackgroundSounds=true
23653
+ JavaScript=true
23654
  VBScript=true
23655
  JavaApplets=true
 
23656
  ActiveXControls=true
23657
  CssVersion=2
23658
+ AolVersion=9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23659
 
23660
+ [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Win 9x 4.90*]
23661
  Parent=AOL 9.0/IE 5.5
23662
+ Platform="WinME"
23663
 
23664
+ [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows 95*]
23665
  Parent=AOL 9.0/IE 5.5
23666
+ Platform="Win95"
23667
+ Platform_Version=95
23668
 
23669
+ [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows 98*]
23670
  Parent=AOL 9.0/IE 5.5
23671
+ Platform="Win98"
23672
+ Platform_Version=98
23673
 
23674
+ [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows 98; Win 9x 4.90*]
23675
  Parent=AOL 9.0/IE 5.5
23676
+ Platform="WinME"
23677
+ Platform_Version=98
23678
 
23679
+ [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows NT 4.0*]
23680
  Parent=AOL 9.0/IE 5.5
23681
+ Platform="WinNT"
23682
+ Platform_Version=4.0
23683
 
23684
+ [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows NT 5.0*]
23685
  Parent=AOL 9.0/IE 5.5
23686
+ Platform="Win2000"
23687
+ Platform_Version=5.0
23688
 
23689
+ [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows NT 5.1*]
23690
  Parent=AOL 9.0/IE 5.5
23691
+ Platform="WinXP"
23692
+ Platform_Version=5.1
23693
 
23694
+ [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows NT 6.0*]
23695
  Parent=AOL 9.0/IE 5.5
23696
+ Platform="WinVista"
23697
+ Platform_Version=6.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23698
 
23699
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 6.0
23700
 
23701
  [AOL 9.0/IE 6.0]
23702
  Parent=DefaultProperties
23703
+ Comment="AOL 9.0/IE 6.0"
23704
+ Browser="IE"
23705
  Version=6.0
23706
  MajorVer=6
23707
+ MinorVer=0
23708
  Win32=true
23709
  Frames=true
23710
  IFrames=true
23711
  Tables=true
23712
  Cookies=true
23713
  BackgroundSounds=true
23714
+ JavaScript=true
23715
  VBScript=true
23716
  JavaApplets=true
 
23717
  ActiveXControls=true
23718
  CssVersion=2
23719
+ AolVersion=9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23720
 
23721
+ [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Win 9x 4.90*]
23722
  Parent=AOL 9.0/IE 6.0
23723
+ Platform="WinME"
23724
 
23725
+ [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows 95*]
23726
  Parent=AOL 9.0/IE 6.0
23727
+ Platform="Win95"
23728
+ Platform_Version=95
23729
 
23730
+ [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows 98*]
23731
  Parent=AOL 9.0/IE 6.0
23732
+ Platform="Win98"
23733
+ Platform_Version=98
23734
 
23735
+ [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows 98; Win 9x 4.90*]
23736
  Parent=AOL 9.0/IE 6.0
23737
+ Platform="WinME"
23738
+ Platform_Version=98
23739
 
23740
+ [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows NT 4.0*]
23741
  Parent=AOL 9.0/IE 6.0
23742
+ Platform="WinNT"
23743
+ Platform_Version=4.0
23744
 
23745
+ [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows NT 5.0*]
23746
  Parent=AOL 9.0/IE 6.0
23747
+ Platform="Win2000"
23748
+ Platform_Version=5.0
23749
 
23750
+ [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows NT 5.1*]
23751
  Parent=AOL 9.0/IE 6.0
23752
+ Platform="WinXP"
23753
+ Platform_Version=5.1
23754
 
23755
+ [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows NT 6.0*]
23756
  Parent=AOL 9.0/IE 6.0
23757
+ Platform="WinVista"
23758
+ Platform_Version=6.0
23759
 
23760
+ [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows NT 6.1*]
23761
  Parent=AOL 9.0/IE 6.0
23762
+ Platform="Win7"
23763
+ Platform_Version=6.1
23764
 
23765
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 7.0
23766
 
23767
  [AOL 9.0/IE 7.0]
23768
  Parent=DefaultProperties
23769
+ Comment="AOL 9.0/IE 7.0"
23770
+ Browser="IE"
23771
  Version=7.0
23772
  MajorVer=7
23773
+ MinorVer=0
23774
  Win32=true
23775
  Frames=true
23776
  IFrames=true
23777
  Tables=true
23778
  Cookies=true
23779
  BackgroundSounds=true
23780
+ JavaScript=true
23781
  VBScript=true
23782
  JavaApplets=true
 
23783
  ActiveXControls=true
23784
  CssVersion=2
23785
+ AolVersion=9
 
 
23786
 
23787
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Win 9x 4.90*]
23788
  Parent=AOL 9.0/IE 7.0
23789
+ Platform="WinME"
23790
 
23791
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows 95*]
23792
  Parent=AOL 9.0/IE 7.0
23793
+ Platform="Win95"
23794
+ Platform_Version=95
23795
 
23796
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows 98*]
23797
  Parent=AOL 9.0/IE 7.0
23798
+ Platform_Version=98
23799
 
23800
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows 98; Win 9x 4.90*]
23801
  Parent=AOL 9.0/IE 7.0
23802
+ Platform_Version=98
23803
 
23804
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows NT 4.0*]
23805
  Parent=AOL 9.0/IE 7.0
23806
+ Platform="WinNT"
23807
+ Platform_Version=4.0
23808
 
23809
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows NT 5.0*]
23810
  Parent=AOL 9.0/IE 7.0
23811
+ Platform="Win2000"
23812
+ Platform_Version=5.0
23813
 
23814
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows NT 5.1*]
23815
  Parent=AOL 9.0/IE 7.0
23816
+ Platform="WinXP"
23817
+ Platform_Version=5.1
23818
 
23819
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows NT 6.0*]
23820
  Parent=AOL 9.0/IE 7.0
23821
+ Platform="WinVista"
23822
+ Platform_Version=6.0
23823
 
23824
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows NT 6.1*]
23825
  Parent=AOL 9.0/IE 7.0
23826
+ Platform="Win7"
23827
+ Platform_Version=6.1
23828
 
23829
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 8.0
 
 
23830
 
23831
+ [AOL 9.0/IE 8.0]
23832
+ Parent=DefaultProperties
23833
+ Comment="AOL 9.0/IE 8.0"
23834
+ Browser="IE"
23835
+ Version=8.0
23836
+ MajorVer=8
23837
+ MinorVer=0
23838
+ Win32=true
23839
+ Frames=true
23840
+ IFrames=true
23841
+ Tables=true
23842
+ Cookies=true
23843
+ BackgroundSounds=true
23844
+ JavaScript=true
23845
+ VBScript=true
23846
+ JavaApplets=true
23847
+ ActiveXControls=true
23848
+ CssVersion=2
23849
+ AolVersion=9
23850
+
23851
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Win 9x 4.90*]
23852
+ Parent=AOL 9.0/IE 8.0
23853
+ Platform="WinME"
23854
+
23855
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows 95*]
23856
+ Parent=AOL 9.0/IE 8.0
23857
+ Platform="Win95"
23858
+ Platform_Version=95
23859
+
23860
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows 98*]
23861
+ Parent=AOL 9.0/IE 8.0
23862
+ Platform="Win98"
23863
+ Platform_Version=98
23864
+
23865
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows 98; Win 9x 4.90*]
23866
+ Parent=AOL 9.0/IE 8.0
23867
+ Platform="WinME"
23868
+ Platform_Version=98
23869
+
23870
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows NT 4.0*]
23871
+ Parent=AOL 9.0/IE 8.0
23872
+ Platform="WinNT"
23873
+ Platform_Version=4.0
23874
+
23875
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows NT 5.0*]
23876
+ Parent=AOL 9.0/IE 8.0
23877
+ Platform="Win2000"
23878
+ Platform_Version=5.0
23879
+
23880
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows NT 5.1*]
23881
+ Parent=AOL 9.0/IE 8.0
23882
+ Platform="WinXP"
23883
+ Platform_Version=5.1
23884
+
23885
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows NT 6.0*]
23886
+ Parent=AOL 9.0/IE 8.0
23887
+ Platform="WinVista"
23888
+ Platform_Version=6.0
23889
+
23890
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows NT 6.1*]
23891
+ Parent=AOL 9.0/IE 8.0
23892
+ Platform="Win7"
23893
+ Platform_Version=6.1
23894
+
23895
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.1/IE 7.0
23896
+
23897
+ [AOL 9.1/IE 7.0]
23898
+ Parent=DefaultProperties
23899
+ Comment="AOL 9.1/IE 7.0"
23900
+ Browser="IE"
23901
+ Version=7.0
23902
+ MajorVer=7
23903
+ MinorVer=0
23904
+ Win32=true
23905
+ Frames=true
23906
+ IFrames=true
23907
+ Tables=true
23908
+ Cookies=true
23909
+ BackgroundSounds=true
23910
+ JavaScript=true
23911
+ VBScript=true
23912
+ JavaApplets=true
23913
+ ActiveXControls=true
23914
+ CssVersion=2
23915
+ AolVersion=9
23916
+
23917
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Win 9x 4.90*]
23918
+ Parent=AOL 9.1/IE 7.0
23919
+ Platform="WinME"
23920
+
23921
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows 95*]
23922
+ Parent=AOL 9.1/IE 7.0
23923
+ Platform="Win95"
23924
+ Platform_Version=95
23925
+
23926
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows 98*]
23927
+ Parent=AOL 9.1/IE 7.0
23928
+ Platform="Win98"
23929
+ Platform_Version=98
23930
+
23931
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows 98; Win 9x 4.90*]
23932
+ Parent=AOL 9.1/IE 7.0
23933
+ Platform="WinME"
23934
+ Platform_Version=98
23935
+
23936
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 4.0*]
23937
+ Parent=AOL 9.1/IE 7.0
23938
+ Platform="WinNT"
23939
+ Platform_Version=4.0
23940
+
23941
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 5.0*]
23942
+ Parent=AOL 9.1/IE 7.0
23943
+ Platform="Win2000"
23944
+ Platform_Version=5.0
23945
+
23946
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 5.1*]
23947
+ Parent=AOL 9.1/IE 7.0
23948
+ Platform="WinXP"
23949
+ Platform_Version=5.1
23950
+
23951
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 5.2*]
23952
+ Parent=AOL 9.1/IE 7.0
23953
+ Platform="WinXP"
23954
+ Platform_Version=5.2
23955
+
23956
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 6.0*]
23957
+ Parent=AOL 9.1/IE 7.0
23958
+ Platform="WinVista"
23959
+ Platform_Version=6.0
23960
+
23961
+ [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 6.1*]
23962
+ Parent=AOL 9.1/IE 7.0
23963
+ Platform="Win7"
23964
+ Platform_Version=6.1
23965
+
23966
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.1/IE 8.0
23967
+
23968
+ [AOL 9.1/IE 8.0]
23969
+ Parent=DefaultProperties
23970
+ Comment="AOL 9.1/IE 8.0"
23971
+ Browser="IE"
23972
+ Version=8.0
23973
+ MajorVer=8
23974
+ MinorVer=0
23975
+ Win32=true
23976
+ Frames=true
23977
+ IFrames=true
23978
+ Tables=true
23979
+ Cookies=true
23980
+ BackgroundSounds=true
23981
+ JavaScript=true
23982
+ VBScript=true
23983
+ JavaApplets=true
23984
+ ActiveXControls=true
23985
+ CssVersion=2
23986
+ AolVersion=9
23987
+
23988
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Win 9x 4.90*]
23989
+ Parent=AOL 9.1/IE 8.0
23990
+ Platform="WinME"
23991
+
23992
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows 95*]
23993
+ Parent=AOL 9.1/IE 8.0
23994
+ Platform="Win95"
23995
+ Platform_Version=95
23996
+
23997
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows 98*]
23998
+ Parent=AOL 9.1/IE 8.0
23999
+ Platform="Win98"
24000
+ Platform_Version=98
24001
+
24002
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows 98; Win 9x 4.90*]
24003
+ Parent=AOL 9.1/IE 8.0
24004
+ Platform="WinME"
24005
+ Platform_Version=98
24006
+
24007
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 4.0*]
24008
+ Parent=AOL 9.1/IE 8.0
24009
+ Platform="WinNT"
24010
+ Platform_Version=4.0
24011
+
24012
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 5.0*]
24013
+ Parent=AOL 9.1/IE 8.0
24014
+ Platform="Win2000"
24015
+ Platform_Version=5.0
24016
+
24017
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 5.1*]
24018
+ Parent=AOL 9.1/IE 8.0
24019
+ Platform="WinXP"
24020
+ Platform_Version=5.1
24021
+
24022
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 5.2*]
24023
+ Parent=AOL 9.1/IE 8.0
24024
+ Platform="WinXP"
24025
+ Platform_Version=5.2
24026
+
24027
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 6.0*]
24028
+ Parent=AOL 9.1/IE 8.0
24029
+ Platform="WinVista"
24030
+ Platform_Version=6.0
24031
+
24032
+ [Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 6.1*]
24033
+ Parent=AOL 9.1/IE 8.0
24034
+ Platform="Win7"
24035
+ Platform_Version=6.1
24036
+
24037
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.5
24038
+
24039
+ [AOL 9.5]
24040
+ Parent=DefaultProperties
24041
+ Comment="AOL 9.5"
24042
+ Browser="IE"
24043
+ Version=8.0
24044
+ MajorVer=8
24045
+ MinorVer=0
24046
+ Win32=true
24047
+ Frames=true
24048
+ IFrames=true
24049
+ Tables=true
24050
+ Cookies=true
24051
+ BackgroundSounds=true
24052
+ JavaScript=true
24053
+ VBScript=true
24054
+ JavaApplets=true
24055
+ ActiveXControls=true
24056
+ CssVersion=3
24057
+ AolVersion=10
24058
 
24059
+ [Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.5; AOLBuild*; Windows NT 5.1; Trident/4.0*)*]
24060
+ Parent=AOL 9.5
24061
+ Platform="WinXP"
24062
+ Platform_Version=5.1
24063
 
24064
+ [Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.5; AOLBuild*; Windows NT 5.2; Trident/4.0*)*]
24065
+ Parent=AOL 9.5
24066
+ Platform="WinXP"
24067
+ Platform_Version=5.2
24068
 
24069
+ [Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.5; AOLBuild*; Windows NT 6.0; Trident/4.0*)*]
24070
+ Parent=AOL 9.5
24071
+ Platform="WinVista"
24072
+ Platform_Version=6.0
24073
 
24074
+ [Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.5; AOLBuild*; Windows NT 6.1; Trident/4.0*)*]
24075
+ Parent=AOL 9.5
24076
+ Platform="Win7"
24077
+ Platform_Version=6.1
24078
 
24079
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.6
 
 
24080
 
24081
+ [AOL 9.6]
24082
+ Parent=DefaultProperties
24083
+ Comment="AOL 9.6"
24084
+ Browser="IE"
24085
+ Version=8.0
24086
+ MajorVer=8
24087
+ MinorVer=0
24088
+ Win32=true
24089
+ Frames=true
24090
+ IFrames=true
24091
+ Tables=true
24092
+ Cookies=true
24093
+ BackgroundSounds=true
24094
+ JavaScript=true
24095
+ VBScript=true
24096
+ JavaApplets=true
24097
+ ActiveXControls=true
24098
+ CssVersion=3
24099
+ AolVersion=10
24100
 
24101
+ [Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 5.2; Trident/4.0*)*]
24102
+ Parent=AOL 9.6
24103
+ Platform="WinXP"
24104
+ Platform_Version=5.2
24105
 
24106
+ [Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 5.2; WOW64; Trident/4.0*)*]
24107
+ Parent=AOL 9.6
24108
+ Platform="WinXP"
24109
+ Platform_Version=5.2
24110
+ Win32=false
24111
+ Win64=true
24112
 
24113
+ [Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 6.0; Trident/4.0*)*]
24114
+ Parent=AOL 9.6
24115
+ Platform="WinVista"
24116
+ Platform_Version=6.0
24117
 
24118
+ [Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 6.0; WOW64; Trident/4.0*)*]
24119
+ Parent=AOL 9.6
24120
+ Platform_Version=6.0
24121
+ Win32=false
24122
+ Win64=true
24123
 
24124
+ [Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 6.1; Trident/4.0*)*]
24125
+ Parent=AOL 9.6
24126
+ Platform="Win7"
24127
+ Platform_Version=6.1
24128
+
24129
+ [Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 6.1; WOW64; Trident/4.0*)*]
24130
+ Parent=AOL 9.6
24131
+ Platform_Version=6.1
24132
+ Win32=false
24133
+ Win64=true
24134
 
24135
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL Generic
 
 
24136
 
24137
+ [AOL Generic]
24138
+ Parent=DefaultProperties
24139
+ Comment="AOL Generic"
24140
+ Browser="IE"
24141
+ Frames=true
24142
+ IFrames=true
24143
+ Tables=true
24144
+ Cookies=true
24145
+ BackgroundSounds=true
24146
+ JavaScript=true
24147
+ VBScript=true
24148
+ JavaApplets=true
24149
+ ActiveXControls=true
24150
+ CssVersion=1
24151
 
24152
+ [Mozilla/*(*MSIE*America Online Browser*]
24153
+ Parent=AOL Generic
 
24154
 
24155
+ [Mozilla/*(*MSIE*AOL*]
24156
+ Parent=AOL Generic
 
24157
 
24158
+ [Mozilla/*(*MSIE*AOL*Mac*]
24159
+ Parent=AOL Generic
24160
+ Platform="MacOSX"
24161
 
24162
+ [Mozilla/*(*MSIE*AOL*Win*]
24163
+ Parent=AOL Generic
24164
+ Platform="Win"
24165
 
24166
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 1.0
 
 
24167
 
24168
+ [IE 1.0]
24169
+ Parent=DefaultProperties
24170
+ Comment="IE 1.0"
24171
+ Browser="IE"
24172
+ Version=1.0
24173
+ MajorVer=1
24174
+ MinorVer=0
24175
+ Frames=true
24176
+ IFrames=true
24177
+ Tables=true
24178
+ Cookies=true
24179
+ JavaScript=true
24180
+ VBScript=true
24181
 
24182
+ [Mozilla/*(*MSIE 1.0*Windows 3.1*)*]
24183
+ Parent=IE 1.0
24184
+ Platform="WinNT"
24185
+ Platform_Version=3.1
24186
 
24187
+ [Mozilla/*(*MSIE 1.0*Windows 3.11*)*]
24188
+ Parent=IE 1.0
24189
+ Platform="WinNT"
24190
+ Platform_Version=3.11
24191
 
24192
+ [Mozilla/*(*MSIE 1.0*Windows 95*)*]
24193
+ Parent=IE 1.0
24194
+ Win32=true
24195
 
24196
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 1.5
 
 
24197
 
24198
+ [IE 1.5]
24199
+ Parent=DefaultProperties
24200
+ Comment="IE 1.5"
24201
+ Browser="IE"
24202
+ Version=1.5
24203
+ MajorVer=1
24204
+ MinorVer=5
24205
+ Frames=true
24206
+ IFrames=true
24207
+ Tables=true
24208
+ Cookies=true
24209
+ JavaScript=true
24210
+ VBScript=true
24211
 
24212
+ [Mozilla/*(*MSIE 1.5*Windows 3.1*)*]
24213
+ Parent=IE 1.5
24214
+ Platform="Win31"
24215
+ Platform_Version=3.1
24216
 
24217
+ [Mozilla/*(*MSIE 1.5*Windows 3.11*)*]
24218
+ Parent=IE 1.5
24219
+ Platform="Win31"
24220
+ Platform_Version=3.11
24221
 
24222
+ [Mozilla/*(*MSIE 1.5*Windows 95*)*]
24223
+ Parent=IE 1.5
24224
+ Platform="Win95"
24225
+ Win32=true
24226
 
24227
+ [Mozilla/*(*MSIE 1.5*Windows NT 3.1*)*]
24228
+ Parent=IE 1.5
24229
+ Platform="WinNT"
24230
+ Platform_Version=3.1
24231
 
24232
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 10.0
24233
 
24234
+ [IE 10.0]
24235
  Parent=DefaultProperties
24236
+ Comment="IE 10.0"
24237
+ Browser="IE"
24238
+ Version=10.0
24239
+ MajorVer=10
24240
+ MinorVer=0
24241
+ Beta=true
24242
+ Win32=true
24243
  Frames=true
24244
  IFrames=true
24245
  Tables=true
24246
  Cookies=true
24247
  BackgroundSounds=true
24248
+ JavaScript=true
24249
  VBScript=true
24250
  JavaApplets=true
 
24251
  ActiveXControls=true
24252
+ CssVersion=3
 
24253
 
24254
+ [Mozilla/*(*MSIE 10.*Windows NT 6.1*64*Trident/6.0*)*]
24255
+ Parent=IE 10.0
24256
+ Platform="Win7"
24257
+ Platform_Version=6.1
24258
+ Win32=false
24259
+ Win64=true
24260
 
24261
+ [Mozilla/*(*MSIE 10.*Windows NT 6.1*Trident/6.0*)*]
24262
+ Parent=IE 10.0
24263
+ Platform="Win7"
24264
+ Platform_Version=6.1
24265
 
24266
+ [Mozilla/*(*MSIE 10.*Windows NT 6.2*Trident/6.0*)*]
24267
+ Parent=IE 10.0
24268
+ Platform="Win8"
24269
+ Platform_Version=6.2
24270
 
24271
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 2.0
24272
 
24273
+ [IE 2.0]
24274
  Parent=DefaultProperties
24275
+ Comment="IE 2.0"
24276
  Browser="IE"
24277
+ Version=2.0
24278
+ MajorVer=2
24279
+ MinorVer=0
24280
  Win32=true
24281
  Frames=true
24282
  IFrames=true
24283
  Tables=true
24284
  Cookies=true
 
 
 
 
24285
  JavaScript=true
24286
+ VBScript=true
 
 
 
 
 
24287
 
24288
+ [Mozilla/*(*MSIE 2.*Mac_PowerPC*)*]
24289
+ Parent=IE 2.0
24290
+ Platform="MacPPC"
24291
 
24292
+ [Mozilla/*(*MSIE 2.*Windows 3.1*)*]
24293
+ Parent=IE 2.0
24294
+ Platform="Win31"
24295
+ Platform_Version=3.1
24296
 
24297
+ [Mozilla/*(*MSIE 2.*Windows 3.11*)*]
24298
+ Parent=IE 2.0
24299
+ Platform="Win31"
24300
+ Platform_Version=3.11
24301
 
24302
+ [Mozilla/*(*MSIE 2.*Windows 95*)*]
24303
+ Parent=IE 2.0
24304
+ Platform="Win95"
24305
 
24306
+ [Mozilla/*(*MSIE 2.*Windows NT 3.1*)*]
24307
+ Parent=IE 2.0
24308
+ Platform="WinNT"
24309
+ Platform_Version=3.1
24310
 
24311
+ [Mozilla/*(*MSIE 2.*Windows NT 3.5*)*]
24312
+ Parent=IE 2.0
24313
+ Platform="WinNT"
24314
+ Platform_Version=3.5
24315
 
24316
+ [Mozilla/*(*MSIE 2.*Windows NT 4.0*)*]
24317
+ Parent=IE 2.0
24318
+ Platform="WinNT"
24319
+ Platform_Version=4.0
24320
 
24321
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 3.0
24322
 
24323
+ [IE 3.0]
24324
  Parent=DefaultProperties
24325
+ Comment="IE 3.0"
24326
  Browser="IE"
24327
+ Version=3.0
24328
+ MajorVer=3
24329
+ MinorVer=0
24330
  Win32=true
24331
  Frames=true
24332
  IFrames=true
24333
  Tables=true
24334
  Cookies=true
24335
  BackgroundSounds=true
24336
+ JavaScript=true
24337
  VBScript=true
24338
  JavaApplets=true
 
24339
  ActiveXControls=true
 
 
24340
 
24341
+ [Mozilla/*(*MSIE 3.*Mac_PowerPC*)*]
24342
+ Parent=IE 3.0
24343
+ Platform="MacPPC"
24344
 
24345
+ [Mozilla/*(*MSIE 3.*Windows 3.1*)*]
24346
+ Parent=IE 3.0
24347
+ Platform="Win31"
24348
+ Platform_Version=3.1
24349
 
24350
+ [Mozilla/*(*MSIE 3.*Windows 3.11*)*]
24351
+ Parent=IE 3.0
24352
+ Platform="Win31"
24353
+ Platform_Version=3.11
24354
 
24355
+ [Mozilla/*(*MSIE 3.*Windows 95*)*]
24356
+ Parent=IE 3.0
24357
+ Platform="Win95"
24358
 
24359
+ [Mozilla/*(*MSIE 3.*Windows NT 3.1*)*]
24360
+ Parent=IE 3.0
24361
+ Platform="WinNT"
24362
+ Platform_Version=3.1
24363
 
24364
+ [Mozilla/*(*MSIE 3.*Windows NT 3.5*)*]
24365
+ Parent=IE 3.0
24366
+ Platform="WinNT"
24367
+ Platform_Version=3.5
24368
 
24369
+ [Mozilla/*(*MSIE 3.*Windows NT 4.0*)*]
24370
+ Parent=IE 3.0
24371
+ Platform="WinNT"
24372
+ Platform_Version=4.0
24373
 
24374
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 4.0
24375
 
24376
+ [IE 4.0]
24377
  Parent=DefaultProperties
24378
+ Comment="IE 4.0"
24379
  Browser="IE"
24380
+ Version=4.0
24381
+ MajorVer=4
24382
+ MinorVer=0
24383
  Win32=true
24384
  Frames=true
24385
  IFrames=true
24386
  Tables=true
24387
  Cookies=true
24388
  BackgroundSounds=true
24389
+ JavaScript=true
24390
  VBScript=true
24391
  JavaApplets=true
 
24392
  ActiveXControls=true
 
 
24393
 
24394
+ [Mozilla/*(compatible; MSIE 4.*Mac_PowerPC*)*]
24395
+ Parent=IE 4.0
24396
+ Platform="MacPPC"
24397
+
24398
+ [Mozilla/*(compatible; MSIE 4.*Windows 3.1*)*]
24399
+ Parent=IE 4.0
24400
+ Platform="Win31"
24401
+ Platform_Version=3.1
24402
 
24403
+ [Mozilla/*(compatible; MSIE 4.*Windows 3.11*)*]
24404
+ Parent=IE 4.0
24405
+ Platform="Win31"
24406
+ Platform_Version=3.11
24407
 
24408
+ [Mozilla/*(compatible; MSIE 4.*Windows 95*)*]
24409
+ Parent=IE 4.0
24410
+ Platform="Win95"
24411
 
24412
+ [Mozilla/*(compatible; MSIE 4.*Windows 98*)*]
24413
+ Parent=IE 4.0
24414
+ Platform="Win98"
24415
 
24416
+ [Mozilla/*(compatible; MSIE 4.*Windows 98; Win 9x 4.90*)*]
24417
+ Parent=IE 4.0
24418
+ Platform="WinME"
24419
 
24420
+ [Mozilla/*(compatible; MSIE 4.*Windows NT 3.1*)*]
24421
+ Parent=IE 4.0
24422
+ Platform="WinNT"
24423
+ Platform_Version=3.1
24424
 
24425
+ [Mozilla/*(compatible; MSIE 4.*Windows NT 3.5*)*]
24426
+ Parent=IE 4.0
24427
+ Platform="WinNT"
24428
+ Platform_Version=3.5
24429
 
24430
+ [Mozilla/*(compatible; MSIE 4.*Windows NT 4.0*)*]
24431
+ Parent=IE 4.0
24432
+ Platform="WinNT"
24433
+ Platform_Version=4.0
24434
 
24435
+ [Mozilla/*(compatible; MSIE 4.*Windows NT 5.0*)*]
24436
+ Parent=IE 4.0
24437
+ Platform="Win2000"
24438
+ Platform_Version=5.0
24439
+
24440
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.0
24441
+
24442
+ [IE 5.0]
24443
  Parent=DefaultProperties
24444
+ Comment="IE 5.0"
24445
  Browser="IE"
24446
+ Version=5.0
24447
  MajorVer=5
24448
+ MinorVer=0
24449
  Win32=true
24450
  Frames=true
24451
  IFrames=true
24452
  Tables=true
24453
  Cookies=true
24454
  BackgroundSounds=true
24455
+ JavaScript=true
24456
  VBScript=true
24457
  JavaApplets=true
 
24458
  ActiveXControls=true
 
 
24459
 
24460
+ [Mozilla/*(compatible; MSIE 5.*Mac_PowerPC*)*]
24461
+ Parent=IE 5.0
24462
+ Platform="MacPPC"
24463
+
24464
+ [Mozilla/*(compatible; MSIE 5.*Windows 3.1*)*]
24465
+ Parent=IE 5.0
24466
+ Platform="Win31"
24467
+ Platform_Version=3.1
24468
+
24469
+ [Mozilla/*(compatible; MSIE 5.*Windows 3.11*)*]
24470
+ Parent=IE 5.0
24471
+ Platform="Win31"
24472
+ Platform_Version=3.11
24473
+
24474
+ [Mozilla/*(compatible; MSIE 5.*Windows 95*)*]
24475
+ Parent=IE 5.0
24476
+ Platform="Win95"
24477
+
24478
+ [Mozilla/*(compatible; MSIE 5.*Windows 98*)*]
24479
+ Parent=IE 5.0
24480
+ Platform="Win98"
24481
+
24482
+ [Mozilla/*(compatible; MSIE 5.*Windows 98; Win 9x 4.90*)*]
24483
+ Parent=IE 5.0
24484
+ Platform="WinME"
24485
 
24486
+ [Mozilla/*(compatible; MSIE 5.*Windows NT 3.1*)*]
24487
+ Parent=IE 5.0
24488
+ Platform="WinNT"
24489
+ Platform_Version=3.1
24490
 
24491
+ [Mozilla/*(compatible; MSIE 5.*Windows NT 3.5*)*]
24492
+ Parent=IE 5.0
24493
+ Platform="WinNT"
24494
+ Platform_Version=3.5
24495
 
24496
+ [Mozilla/*(compatible; MSIE 5.*Windows NT 4.0*)*]
24497
+ Parent=IE 5.0
24498
+ Platform="WinNT"
24499
+ Platform_Version=4.0
24500
 
24501
+ [Mozilla/*(compatible; MSIE 5.*Windows NT 5.0*)*]
24502
+ Parent=IE 5.0
24503
+ Platform="Win2000"
24504
+ Platform_Version=5.0
24505
 
24506
+ [Mozilla/*(compatible; MSIE 5.*Windows NT 5.1*)*]
24507
+ Parent=IE 5.0
24508
+ Platform="WinXP"
24509
+ Platform_Version=5.1
24510
 
24511
+ [Mozilla/*(compatible; MSIE 5.*Windows NT 5.2*)*]
24512
+ Parent=IE 5.0
24513
+ Platform="WinXP"
24514
+ Platform_Version=5.2
24515
 
24516
+ [Mozilla/*(compatible; MSIE 5.*Windows NT 6.0*)*]
24517
+ Parent=IE 5.0
24518
+ Platform="WinVista"
24519
+ Platform_Version=6.0
24520
 
24521
+ [Mozilla/*(compatible; MSIE 5.*Windows NT 6.1*)*]
24522
+ Parent=IE 5.0
24523
+ Platform="Win7"
24524
+ Platform_Version=6.1
24525
 
24526
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 6.0
24527
 
24528
  [IE 6.0]
24529
  Parent=DefaultProperties
24530
+ Comment="IE 6.0"
24531
  Browser="IE"
24532
  Version=6.0
24533
  MajorVer=6
24534
+ MinorVer=0
24535
  Win32=true
24536
  Frames=true
24537
  IFrames=true
24538
  Tables=true
24539
  Cookies=true
24540
  BackgroundSounds=true
24541
+ JavaScript=true
24542
  VBScript=true
24543
  JavaApplets=true
 
24544
  ActiveXControls=true
24545
+ CssVersion=1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24546
 
24547
+ [Mozilla/* (*MSIE 6*)*]
24548
  Parent=IE 6.0
 
24549
 
24550
+ [Mozilla/* (compatible; MSIE 6.*; *Windows NT 5.0*)*]
24551
  Parent=IE 6.0
24552
+ Platform="Win2000"
24553
+ Platform_Version=5.0
24554
 
24555
+ [Mozilla/* (compatible; MSIE 6.*; *Windows NT 5.1*)*]
24556
  Parent=IE 6.0
24557
+ Platform="WinXP"
24558
+ Platform_Version=5.1
24559
 
24560
+ [Mozilla/* (compatible; MSIE 6.*; *Windows NT 5.2*)*]
24561
  Parent=IE 6.0
24562
+ Platform="WinXP"
24563
+ Platform_Version=5.2
24564
 
24565
+ [Mozilla/* (compatible; MSIE 6.*; *Windows NT 5.2; *Win64*)*]
24566
  Parent=IE 6.0
24567
+ Platform="WinXP"
24568
+ Platform_Version=5.2
24569
  Win32=false
24570
  Win64=true
24571
 
24572
+ [Mozilla/* (compatible; MSIE 6.*; *Windows NT 5.2; *WOW64*)*]
24573
  Parent=IE 6.0
24574
+ Platform="WinXP"
24575
+ Platform_Version=5.2
24576
+ Win32=false
24577
+ Win64=true
24578
 
24579
+ [Mozilla/* (compatible; MSIE 6.*; *Windows NT 6.0*)*]
24580
  Parent=IE 6.0
24581
+ Platform="WinVista"
24582
+ Platform_Version=6.0
24583
 
24584
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0
24585
 
24586
  [IE 7.0]
24587
  Parent=DefaultProperties
24588
+ Comment="IE 7.0"
24589
  Browser="IE"
24590
  Version=7.0
24591
  MajorVer=7
24592
+ MinorVer=0
24593
  Win32=true
24594
  Frames=true
24595
  IFrames=true
24596
  Tables=true
24597
  Cookies=true
24598
  BackgroundSounds=true
24599
+ JavaScript=true
24600
  VBScript=true
24601
  JavaApplets=true
 
24602
  ActiveXControls=true
24603
  CssVersion=2
 
24604
 
24605
+ [Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.0*)*]
24606
+ Parent=IE 7.0
24607
+ Platform="Win2000"
24608
+ Platform_Version=5.0
24609
+
24610
+ [Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.01*)*]
24611
  Parent=IE 7.0
24612
+ Platform="Win2000"
24613
+ Platform_Version=5.01
24614
 
24615
+ [Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.1*)*]
24616
  Parent=IE 7.0
24617
+ Platform="WinXP"
24618
+ Platform_Version=5.1
24619
 
24620
+ [Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.2*)*]
24621
  Parent=IE 7.0
24622
+ Platform="WinXP"
24623
+ Platform_Version=5.2
24624
+
24625
+ [Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.2; *Win64*)*]
24626
+ Parent=IE 7.0
24627
+ Platform="WinXP"
24628
+ Platform_Version=5.2
24629
+ Win32=false
24630
+ Win64=true
24631
 
24632
+ [Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.2; *WOW64*)*]
24633
  Parent=IE 7.0
24634
+ Platform="WinXP"
24635
+ Platform_Version=5.2
24636
+ Win32=false
24637
+ Win64=true
24638
 
24639
+ [Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.2; *WOW64*; Trident/4.0*)*]
24640
  Parent=IE 7.0
24641
+ Platform="Win2003"
24642
+ Platform_Version=5.2
24643
+ Win32=false
24644
+ Win64=true
24645
 
24646
+ [Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.2; *WOW64*; Trident/5.0*)*]
24647
  Parent=IE 7.0
24648
+ Platform="WinXP"
24649
+ Platform_Version=5.2
24650
 
24651
+ [Mozilla/* (compatible; MSIE 7.0*; *Windows NT 6.0*)*]
24652
  Parent=IE 7.0
24653
+ Platform="WinVista"
24654
+ Platform_Version=6.0
24655
 
24656
+ [Mozilla/* (compatible; MSIE 7.0*; *Windows NT 6.1*)*]
24657
  Parent=IE 7.0
24658
+ Platform="Win7"
24659
+ Platform_Version=6.1
24660
 
24661
+ [Mozilla/* (compatible; MSIE 7.0*; Windows NT 5.1; Trident/4.0*)*]
24662
  Parent=IE 7.0
24663
+ Platform="WinXP"
24664
+ Platform_Version=5.1
 
24665
 
24666
+ [Mozilla/* (compatible; MSIE 7.0*; Windows NT 5.2; Trident/4.0*)*]
24667
  Parent=IE 7.0
24668
+ Platform="WinXP"
24669
+ Platform_Version=5.2
24670
 
24671
+ [Mozilla/* (compatible; MSIE 7.0*; Windows NT 6.0; Trident/4.0*)*]
24672
  Parent=IE 7.0
24673
+ Platform="WinVista"
24674
+ Platform_Version=6.0
24675
 
24676
+ [Mozilla/* (compatible; MSIE 7.0*; Windows NT 6.1; *WOW64*; Trident/4.0*)*]
24677
  Parent=IE 7.0
24678
+ Platform="Win7"
24679
+ Platform_Version=6.1
24680
+ Win32=false
24681
+ Win64=true
24682
 
24683
+ [Mozilla/* (compatible; MSIE 7.0*; Windows NT 6.1; Trident/5.0)]
24684
  Parent=IE 7.0
24685
+ Platform="Win7"
24686
+ Platform_Version=6.1
24687
 
24688
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 8.0
24689
 
24690
  [IE 8.0]
24691
  Parent=DefaultProperties
24692
+ Comment="IE 8.0"
24693
  Browser="IE"
24694
  Version=8.0
24695
  MajorVer=8
24696
+ MinorVer=0
24697
  Win32=true
24698
  Frames=true
24699
  IFrames=true
24700
  Tables=true
24701
  Cookies=true
24702
  BackgroundSounds=true
24703
+ JavaScript=true
24704
  VBScript=true
24705
  JavaApplets=true
 
24706
  ActiveXControls=true
24707
+ CssVersion=2
24708
+
24709
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.0*)*]
24710
+ Parent=IE 8.0
24711
+ Version=7.0
24712
+ MajorVer=7
24713
+ MinorVer=0
24714
+ Platform="Win2000"
24715
+ Platform_Version=5.0
24716
+
24717
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.0; *Win64; x64*; Trident/4.0*)*]
24718
+ Parent=IE 8.0
24719
+ Platform="Win2000"
24720
+ Platform_Version=5.0
24721
+ Win32=false
24722
+ Win64=true
24723
 
24724
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.0; *WOW64*; Trident/4.0*)*]
24725
  Parent=IE 8.0
24726
+ Platform="Win2000"
24727
+ Platform_Version=5.0
24728
+ Win32=false
24729
+ Win64=true
24730
 
24731
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.0;*Trident/4.0*)*]
24732
  Parent=IE 8.0
24733
+ Platform="Win2000"
24734
+ Platform_Version=5.0
24735
 
24736
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.1*)*]
24737
  Parent=IE 8.0
24738
+ Version=7.0
24739
+ MajorVer=7
24740
+ MinorVer=0
24741
+ Platform="WinXP"
24742
+ Platform_Version=5.1
24743
 
24744
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.1*; Trident/4.0*)*]
24745
  Parent=IE 8.0
24746
+ Platform="WinXP"
24747
+ Platform_Version=5.1
24748
 
24749
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.1; *Win64; x64*; Trident/4.0*)*]
24750
  Parent=IE 8.0
24751
+ Platform="WinXP"
24752
+ Platform_Version=5.1
24753
+ Win32=false
24754
+ Win64=true
24755
 
24756
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.1; WOW64*; Trident/4.0*)*]
24757
  Parent=IE 8.0
24758
+ Platform="WinXP"
24759
+ Platform_Version=5.1
24760
+ Win32=false
24761
+ Win64=true
24762
 
24763
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.2*)*]
24764
  Parent=IE 8.0
24765
+ Version=7.0
24766
+ MajorVer=7
24767
+ MinorVer=0
24768
+ Platform="WinXP"
24769
+ Platform_Version=5.2
24770
 
24771
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.2*; Trident/4.0*)*]
24772
  Parent=IE 8.0
24773
+ Platform="WinXP"
24774
+ Platform_Version=5.2
24775
 
24776
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.2; *Win64; x64*; Trident/4.0*)*]
24777
  Parent=IE 8.0
24778
+ Platform="WinXP"
24779
+ Platform_Version=5.2
24780
  Win32=false
24781
  Win64=true
24782
 
24783
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.2; *WOW64*; Trident/4.0*)*]
24784
  Parent=IE 8.0
24785
+ Platform="WinXP"
24786
+ Platform_Version=5.2
24787
+ Win32=false
24788
+ Win64=true
24789
 
24790
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.0*)*]
24791
  Parent=IE 8.0
24792
+ Version=7.0
24793
+ MajorVer=7
24794
+ MinorVer=0
24795
+ Platform="WinVista"
24796
+ Platform_Version=6.0
24797
 
24798
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.0; *Win64; x64*; Trident/4.0*)*]
24799
  Parent=IE 8.0
24800
+ Platform="WinVista"
24801
+ Platform_Version=6.0
24802
+ Win32=false
24803
+ Win64=true
24804
 
24805
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.0; *WOW64*; Trident/4.0*)*]
24806
  Parent=IE 8.0
24807
+ Platform="WinVista"
24808
+ Platform_Version=6.0
24809
  Win32=false
24810
  Win64=true
24811
 
24812
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.0;*Trident/4.0*)*]
24813
  Parent=IE 8.0
24814
+ Platform="WinVista"
24815
+ Platform_Version=6.0
24816
+
24817
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.1*)*]
24818
+ Parent=IE 8.0
24819
+ Version=7.0
24820
+ MajorVer=7
24821
+ MinorVer=0
24822
+ Platform="Win7"
24823
+ Platform_Version=6.1
24824
 
24825
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.1*; Trident/4.0*)*]
24826
  Parent=IE 8.0
24827
+ Platform="Win7"
24828
+ Platform_Version=6.1
24829
+
24830
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.1; *Win64; x64*; Trident/4.0*)*]
24831
+ Parent=IE 8.0
24832
+ Platform="Win7"
24833
+ Platform_Version=6.1
24834
+ Win32=false
24835
+ Win64=true
24836
+
24837
+ [Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.1; *WOW64*; Trident/4.0*)*]
24838
+ Parent=IE 8.0
24839
+ Platform="Win7"
24840
+ Platform_Version=6.1
24841
+ Win32=false
24842
+ Win64=true
24843
+
24844
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 9.0
24845
+
24846
+ [IE 9.0]
24847
+ Parent=DefaultProperties
24848
+ Comment="IE 9.0"
24849
+ Browser="IE"
24850
+ Version=9.0
24851
+ MajorVer=9
24852
+ MinorVer=0
24853
+ Win32=true
24854
+ Frames=true
24855
+ IFrames=true
24856
+ Tables=true
24857
+ Cookies=true
24858
+ BackgroundSounds=true
24859
+ JavaScript=true
24860
+ VBScript=true
24861
+ JavaApplets=true
24862
+ ActiveXControls=true
24863
+ CssVersion=3
24864
+
24865
+ [Mozilla/* (compatible; MSIE 9.0; *Windows NT 5.1; Trident/5.0*)*]
24866
+ Parent=IE 9.0
24867
+ Platform="WinXP"
24868
+ Platform_Version=5.1
24869
+
24870
+ [Mozilla/* (compatible; MSIE 9.0; *Windows NT 5.2; Trident/5.0*)*]
24871
+ Parent=IE 9.0
24872
+ Platform="WinXP"
24873
+ Platform_Version=5.2
24874
+
24875
+ [Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.0; Trident/5.0*)*]
24876
+ Parent=IE 9.0
24877
+ Platform="WinVista"
24878
+ Platform_Version=6.0
24879
+
24880
+ [Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.0; Win64; x64; Trident/5.0*)*]
24881
+ Parent=IE 9.0
24882
+ Platform="WinVista"
24883
+ Platform_Version=6.0
24884
+ Win32=false
24885
+ Win64=true
24886
+
24887
+ [Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.0; WOW64; Trident/5.0*)*]
24888
+ Parent=IE 9.0
24889
+ Platform="WinVista"
24890
+ Platform_Version=6.0
24891
+ Win32=false
24892
+ Win64=true
24893
+
24894
+ [Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.1; Trident/5.0*)*]
24895
+ Parent=IE 9.0
24896
+ Platform="Win7"
24897
+ Platform_Version=6.1
24898
+
24899
+ [Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.1; Win64; x64; Trident/5.0*)*]
24900
+ Parent=IE 9.0
24901
+ Platform="Win7"
24902
+ Platform_Version=6.1
24903
+ Win32=false
24904
+ Win64=true
24905
+
24906
+ [Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.1; WOW64; Trident/5.0*)*]
24907
+ Parent=IE 9.0
24908
+ Platform="Win7"
24909
+ Platform_Version=6.1
24910
+ Win32=false
24911
+ Win64=true
24912
 
24913
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Default Browser
24914
 
24915
  [*]
24916
+ Comment="Default Browser"
24917
  Browser="Default Browser"
24918
+ Version=0.0
24919
  MajorVer=0
24920
  MinorVer=0
24921
+ Platform="unknown"
24922
+ Platform_Version="unknown"
24923
  Alpha=false
24924
  Beta=false
24925
  Win16=false
24926
  Win32=false
24927
  Win64=false
24928
+ Frames=false
24929
  IFrames=false
24930
+ Tables=false
24931
  Cookies=false
24932
  BackgroundSounds=false
24933
+ JavaScript=false
24934
  VBScript=false
24935
  JavaApplets=false
 
24936
  ActiveXControls=false
 
24937
  isMobileDevice=false
24938
  isSyndicationReader=false
24939
  Crawler=false
24940
  CssVersion=0
24941
+ AolVersion=0
24942
+
 
pretty-link.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Pretty Link Lite
4
  Plugin URI: http://blairwilliams.com/pretty-link
5
  Description: Shrink, track and share any URL on the Internet from your WordPress website!
6
- Version: 1.6.0
7
  Author: Caseproof
8
  Author URI: http://caseproof.com
9
  Copyright: 2004-2012, Caseproof, LLC
3
  Plugin Name: Pretty Link Lite
4
  Plugin URI: http://blairwilliams.com/pretty-link
5
  Description: Shrink, track and share any URL on the Internet from your WordPress website!
6
+ Version: 1.6.1
7
  Author: Caseproof
8
  Author URI: http://caseproof.com
9
  Copyright: 2004-2012, Caseproof, LLC
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://prettylinkpro.com
4
  Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, click, clicks, track, tracking, tiny, tinyurl, budurl, shrinking, domain, shrink, mask, masking, cloak, cloaking, slug, slugs, admin, administration, stats, statistics, stat, statistic, email, ajax, javascript, ui, csv, download, page, post, pages, posts, shortcode, seo, automation, widget, widgets, dashboard
5
  Requires at least: 3.0
6
  Tested up to: 3.3.1
7
- Stable tag: 1.6.0
8
 
9
  Shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!
10
 
@@ -66,6 +66,15 @@ http://blairwilliams.com/w7a
66
 
67
  == Changelog ==
68
 
 
 
 
 
 
 
 
 
 
69
  = 1.6.0 =
70
  * *Fix* Fixed some potential security vulnerabilities
71
 
@@ -355,6 +364,9 @@ http://blairwilliams.com/w7a
355
 
356
  == Upgrade Notice ==
357
 
 
 
 
358
  = 1.6.0 =
359
  * This adds some security fixes. Everyone should upgrade.
360
 
4
  Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, click, clicks, track, tracking, tiny, tinyurl, budurl, shrinking, domain, shrink, mask, masking, cloak, cloaking, slug, slugs, admin, administration, stats, statistics, stat, statistic, email, ajax, javascript, ui, csv, download, page, post, pages, posts, shortcode, seo, automation, widget, widgets, dashboard
5
  Requires at least: 3.0
6
  Tested up to: 3.3.1
7
+ Stable tag: 1.6.1
8
 
9
  Shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!
10
 
66
 
67
  == Changelog ==
68
 
69
+ = 1.6.1 =
70
+ * Security Fixes
71
+ * Fixed some issues with Pretty Link running in WordPress Multisite
72
+ * Altered the way Keyword Replacements can be disabled on individual pages in Pro
73
+ * Fixed an issue with import feature in Pro
74
+ * Fixed an issue causing "ghost" update messages in Pro
75
+ * Updated browscap file for more accurate click tracking
76
+ * Fixed an issue that interfered with Pretty Link's option saving for some users
77
+
78
  = 1.6.0 =
79
  * *Fix* Fixed some potential security vulnerabilities
80
 
364
 
365
  == Upgrade Notice ==
366
 
367
+ = 1.6.1 =
368
+ * This adds some security fixes. Everyone should upgrade.
369
+
370
  = 1.6.0 =
371
  * This adds some security fixes. Everyone should upgrade.
372