@ -0,0 +1,34 @@ | |||
Name: anaconda-installclass-tigeros | |||
Version: 26 | |||
Release: 1%{?dist} | |||
Summary: @DISTRO_NAME@ installclass for Anaconda | |||
License: GPLv2+ | |||
URL: https://github.com/RITlug/TigerOS/ | |||
Source0: tigeros.py | |||
BuildRequires: anaconda-core | |||
BuildRequires: python3-devel | |||
Requires: anaconda-core | |||
Supplements: (tigeros-release and anaconda-core) | |||
%description | |||
This package contains the installclass for TigerOS for | |||
Anaconda. | |||
%prep | |||
# nothing to prep | |||
%build | |||
# Nothing to build | |||
%install | |||
# Install the installclass file | |||
install -Dpm 0644 %{SOURCE0} %{buildroot}%{python3_sitearch}/pyanaconda/installclasses/tigeros.py | |||
%files | |||
%{python3_sitearch}/pyanaconda/installclasses/tigeros.py | |||
%{python3_sitearch}/pyanaconda/installclasses/__pycache__/tigeros.* | |||
%changelog |
@ -0,0 +1,61 @@ | |||
# | |||
# tigeros.py | |||
# | |||
# Copyright (C) 2007 Red Hat, Inc. All rights reserved. | |||
# | |||
# This program is free software; you can redistribute it and/or modify | |||
# it under the terms of the GNU General Public License as published by | |||
# the Free Software Foundation; either version 2 of the License, or | |||
# (at your option) any later version. | |||
# | |||
# This program is distributed in the hope that it will be useful, | |||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
# GNU General Public License for more details. | |||
# | |||
# You should have received a copy of the GNU General Public License | |||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
# | |||
from pyanaconda.installclass import BaseInstallClass | |||
from pyanaconda.product import productName | |||
from pyanaconda import network | |||
from pyanaconda import nm | |||
__all__ = ["TigerOSBaseInstallClass"] | |||
class TigerOSBaseInstallClass(BaseInstallClass): | |||
name = "TigerOS" | |||
sortPriority = 10000 | |||
if not productName.startswith("TigerOS"): # pylint: disable=no-member | |||
hidden = True | |||
_l10n_domain = "anaconda" | |||
efi_dir = "tigeros" | |||
help_placeholder = "TigerOSPlaceholder.html" | |||
help_placeholder_plain_text = "TigerOSPlaceholder.txt" | |||
help_placeholder_with_links = "TigerOSPlaceholderWithLinks.html" | |||
def configure(self, anaconda): | |||
BaseInstallClass.configure(self, anaconda) | |||
def setNetworkOnbootDefault(self, ksdata): | |||
if any(nd.onboot for nd in ksdata.network.network if nd.device): | |||
return | |||
# choose first wired device having link | |||
for dev in nm.nm_devices(): | |||
if nm.nm_device_type_is_wifi(dev): | |||
continue | |||
try: | |||
link_up = nm.nm_device_carrier(dev) | |||
except (nm.UnknownDeviceError, nm.PropertyNotFoundError): | |||
continue | |||
if link_up: | |||
network.update_onboot_value(dev, True, ksdata=ksdata) | |||
break | |||
def __init__(self): | |||
BaseInstallClass.__init__(self) |
@ -0,0 +1,2 @@ | |||
[org.cinnamon.desktop.background] | |||
picture-uri="file:///usr/share/backgrounds/tigeros/wallpaper2-1920x1080.jpg" |
@ -0,0 +1,428 @@ | |||
Attribution-ShareAlike 4.0 International | |||
======================================================================= | |||
Creative Commons Corporation ("Creative Commons") is not a law firm and | |||
does not provide legal services or legal advice. Distribution of | |||
Creative Commons public licenses does not create a lawyer-client or | |||
other relationship. Creative Commons makes its licenses and related | |||
information available on an "as-is" basis. Creative Commons gives no | |||
warranties regarding its licenses, any material licensed under their | |||
terms and conditions, or any related information. Creative Commons | |||
disclaims all liability for damages resulting from their use to the | |||
fullest extent possible. | |||
Using Creative Commons Public Licenses | |||
Creative Commons public licenses provide a standard set of terms and | |||
conditions that creators and other rights holders may use to share | |||
original works of authorship and other material subject to copyright | |||
and certain other rights specified in the public license below. The | |||
following considerations are for informational purposes only, are not | |||
exhaustive, and do not form part of our licenses. | |||
Considerations for licensors: Our public licenses are | |||
intended for use by those authorized to give the public | |||
permission to use material in ways otherwise restricted by | |||
copyright and certain other rights. Our licenses are | |||
irrevocable. Licensors should read and understand the terms | |||
and conditions of the license they choose before applying it. | |||
Licensors should also secure all rights necessary before | |||
applying our licenses so that the public can reuse the | |||
material as expected. Licensors should clearly mark any | |||
material not subject to the license. This includes other CC- | |||
licensed material, or material used under an exception or | |||
limitation to copyright. More considerations for licensors: | |||
wiki.creativecommons.org/Considerations_for_licensors | |||
Considerations for the public: By using one of our public | |||
licenses, a licensor grants the public permission to use the | |||
licensed material under specified terms and conditions. If | |||
the licensor's permission is not necessary for any reason--for | |||
example, because of any applicable exception or limitation to | |||
copyright--then that use is not regulated by the license. Our | |||
licenses grant only permissions under copyright and certain | |||
other rights that a licensor has authority to grant. Use of | |||
the licensed material may still be restricted for other | |||
reasons, including because others have copyright or other | |||
rights in the material. A licensor may make special requests, | |||
such as asking that all changes be marked or described. | |||
Although not required by our licenses, you are encouraged to | |||
respect those requests where reasonable. More_considerations | |||
for the public: | |||
wiki.creativecommons.org/Considerations_for_licensees | |||
======================================================================= | |||
Creative Commons Attribution-ShareAlike 4.0 International Public | |||
License | |||
By exercising the Licensed Rights (defined below), You accept and agree | |||
to be bound by the terms and conditions of this Creative Commons | |||
Attribution-ShareAlike 4.0 International Public License ("Public | |||
License"). To the extent this Public License may be interpreted as a | |||
contract, You are granted the Licensed Rights in consideration of Your | |||
acceptance of these terms and conditions, and the Licensor grants You | |||
such rights in consideration of benefits the Licensor receives from | |||
making the Licensed Material available under these terms and | |||
conditions. | |||
Section 1 -- Definitions. | |||
a. Adapted Material means material subject to Copyright and Similar | |||
Rights that is derived from or based upon the Licensed Material | |||
and in which the Licensed Material is translated, altered, | |||
arranged, transformed, or otherwise modified in a manner requiring | |||
permission under the Copyright and Similar Rights held by the | |||
Licensor. For purposes of this Public License, where the Licensed | |||
Material is a musical work, performance, or sound recording, | |||
Adapted Material is always produced where the Licensed Material is | |||
synched in timed relation with a moving image. | |||
b. Adapter's License means the license You apply to Your Copyright | |||
and Similar Rights in Your contributions to Adapted Material in | |||
accordance with the terms and conditions of this Public License. | |||
c. BY-SA Compatible License means a license listed at | |||
creativecommons.org/compatiblelicenses, approved by Creative | |||
Commons as essentially the equivalent of this Public License. | |||
d. Copyright and Similar Rights means copyright and/or similar rights | |||
closely related to copyright including, without limitation, | |||
performance, broadcast, sound recording, and Sui Generis Database | |||
Rights, without regard to how the rights are labeled or | |||
categorized. For purposes of this Public License, the rights | |||
specified in Section 2(b)(1)-(2) are not Copyright and Similar | |||
Rights. | |||
e. Effective Technological Measures means those measures that, in the | |||
absence of proper authority, may not be circumvented under laws | |||
fulfilling obligations under Article 11 of the WIPO Copyright | |||
Treaty adopted on December 20, 1996, and/or similar international | |||
agreements. | |||
f. Exceptions and Limitations means fair use, fair dealing, and/or | |||
any other exception or limitation to Copyright and Similar Rights | |||
that applies to Your use of the Licensed Material. | |||
g. License Elements means the license attributes listed in the name | |||
of a Creative Commons Public License. The License Elements of this | |||
Public License are Attribution and ShareAlike. | |||
h. Licensed Material means the artistic or literary work, database, | |||
or other material to which the Licensor applied this Public | |||
License. | |||
i. Licensed Rights means the rights granted to You subject to the | |||
terms and conditions of this Public License, which are limited to | |||
all Copyright and Similar Rights that apply to Your use of the | |||
Licensed Material and that the Licensor has authority to license. | |||
j. Licensor means the individual(s) or entity(ies) granting rights | |||
under this Public License. | |||
k. Share means to provide material to the public by any means or | |||
process that requires permission under the Licensed Rights, such | |||
as reproduction, public display, public performance, distribution, | |||
dissemination, communication, or importation, and to make material | |||
available to the public including in ways that members of the | |||
public may access the material from a place and at a time | |||
individually chosen by them. | |||
l. Sui Generis Database Rights means rights other than copyright | |||
resulting from Directive 96/9/EC of the European Parliament and of | |||
the Council of 11 March 1996 on the legal protection of databases, | |||
as amended and/or succeeded, as well as other essentially | |||
equivalent rights anywhere in the world. | |||
m. You means the individual or entity exercising the Licensed Rights | |||
under this Public License. Your has a corresponding meaning. | |||
Section 2 -- Scope. | |||
a. License grant. | |||
1. Subject to the terms and conditions of this Public License, | |||
the Licensor hereby grants You a worldwide, royalty-free, | |||
non-sublicensable, non-exclusive, irrevocable license to | |||
exercise the Licensed Rights in the Licensed Material to: | |||
a. reproduce and Share the Licensed Material, in whole or | |||
in part; and | |||
b. produce, reproduce, and Share Adapted Material. | |||
2. Exceptions and Limitations. For the avoidance of doubt, where | |||
Exceptions and Limitations apply to Your use, this Public | |||
License does not apply, and You do not need to comply with | |||
its terms and conditions. | |||
3. Term. The term of this Public License is specified in Section | |||
6(a). | |||
4. Media and formats; technical modifications allowed. The | |||
Licensor authorizes You to exercise the Licensed Rights in | |||
all media and formats whether now known or hereafter created, | |||
and to make technical modifications necessary to do so. The | |||
Licensor waives and/or agrees not to assert any right or | |||
authority to forbid You from making technical modifications | |||
necessary to exercise the Licensed Rights, including | |||
technical modifications necessary to circumvent Effective | |||
Technological Measures. For purposes of this Public License, | |||
simply making modifications authorized by this Section 2(a) | |||
(4) never produces Adapted Material. | |||
5. Downstream recipients. | |||
a. Offer from the Licensor -- Licensed Material. Every | |||
recipient of the Licensed Material automatically | |||
receives an offer from the Licensor to exercise the | |||
Licensed Rights under the terms and conditions of this | |||
Public License. | |||
b. Additional offer from the Licensor -- Adapted Material. | |||
Every recipient of Adapted Material from You | |||
automatically receives an offer from the Licensor to | |||
exercise the Licensed Rights in the Adapted Material | |||
under the conditions of the Adapter's License You apply. | |||
c. No downstream restrictions. You may not offer or impose | |||
any additional or different terms or conditions on, or | |||
apply any Effective Technological Measures to, the | |||
Licensed Material if doing so restricts exercise of the | |||
Licensed Rights by any recipient of the Licensed | |||
Material. | |||
6. No endorsement. Nothing in this Public License constitutes or | |||
may be construed as permission to assert or imply that You | |||
are, or that Your use of the Licensed Material is, connected | |||
with, or sponsored, endorsed, or granted official status by, | |||
the Licensor or others designated to receive attribution as | |||
provided in Section 3(a)(1)(A)(i). | |||
b. Other rights. | |||
1. Moral rights, such as the right of integrity, are not | |||
licensed under this Public License, nor are publicity, | |||
privacy, and/or other similar personality rights; however, to | |||
the extent possible, the Licensor waives and/or agrees not to | |||
assert any such rights held by the Licensor to the limited | |||
extent necessary to allow You to exercise the Licensed | |||
Rights, but not otherwise. | |||
2. Patent and trademark rights are not licensed under this | |||
Public License. | |||
3. To the extent possible, the Licensor waives any right to | |||
collect royalties from You for the exercise of the Licensed | |||
Rights, whether directly or through a collecting society | |||
under any voluntary or waivable statutory or compulsory | |||
licensing scheme. In all other cases the Licensor expressly | |||
reserves any right to collect such royalties. | |||
Section 3 -- License Conditions. | |||
Your exercise of the Licensed Rights is expressly made subject to the | |||
following conditions. | |||
a. Attribution. | |||
1. If You Share the Licensed Material (including in modified | |||
form), You must: | |||
a. retain the following if it is supplied by the Licensor | |||
with the Licensed Material: | |||
i. identification of the creator(s) of the Licensed | |||
Material and any others designated to receive | |||
attribution, in any reasonable manner requested by | |||
the Licensor (including by pseudonym if | |||
designated); | |||
ii. a copyright notice; | |||
iii. a notice that refers to this Public License; | |||
iv. a notice that refers to the disclaimer of | |||
warranties; | |||
v. a URI or hyperlink to the Licensed Material to the | |||
extent reasonably practicable; | |||
b. indicate if You modified the Licensed Material and | |||
retain an indication of any previous modifications; and | |||
c. indicate the Licensed Material is licensed under this | |||
Public License, and include the text of, or the URI or | |||
hyperlink to, this Public License. | |||
2. You may satisfy the conditions in Section 3(a)(1) in any | |||
reasonable manner based on the medium, means, and context in | |||
which You Share the Licensed Material. For example, it may be | |||
reasonable to satisfy the conditions by providing a URI or | |||
hyperlink to a resource that includes the required | |||
information. | |||
3. If requested by the Licensor, You must remove any of the | |||
information required by Section 3(a)(1)(A) to the extent | |||
reasonably practicable. | |||
b. ShareAlike. | |||
In addition to the conditions in Section 3(a), if You Share | |||
Adapted Material You produce, the following conditions also apply. | |||
1. The Adapter's License You apply must be a Creative Commons | |||
license with the same License Elements, this version or | |||
later, or a BY-SA Compatible License. | |||
2. You must include the text of, or the URI or hyperlink to, the | |||
Adapter's License You apply. You may satisfy this condition | |||
in any reasonable manner based on the medium, means, and | |||
context in which You Share Adapted Material. | |||
3. You may not offer or impose any additional or different terms | |||
or conditions on, or apply any Effective Technological | |||
Measures to, Adapted Material that restrict exercise of the | |||
rights granted under the Adapter's License You apply. | |||
Section 4 -- Sui Generis Database Rights. | |||
Where the Licensed Rights include Sui Generis Database Rights that | |||
apply to Your use of the Licensed Material: | |||
a. for the avoidance of doubt, Section 2(a)(1) grants You the right | |||
to extract, reuse, reproduce, and Share all or a substantial | |||
portion of the contents of the database; | |||
b. if You include all or a substantial portion of the database | |||
contents in a database in which You have Sui Generis Database | |||
Rights, then the database in which You have Sui Generis Database | |||
Rights (but not its individual contents) is Adapted Material, | |||
including for purposes of Section 3(b); and | |||
c. You must comply with the conditions in Section 3(a) if You Share | |||
all or a substantial portion of the contents of the database. | |||
For the avoidance of doubt, this Section 4 supplements and does not | |||
replace Your obligations under this Public License where the Licensed | |||
Rights include other Copyright and Similar Rights. | |||
Section 5 -- Disclaimer of Warranties and Limitation of Liability. | |||
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE | |||
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS | |||
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF | |||
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, | |||
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, | |||
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR | |||
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, | |||
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT | |||
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT | |||
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. | |||
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE | |||
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, | |||
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, | |||
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, | |||
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR | |||
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN | |||
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR | |||
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR | |||
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. | |||
c. The disclaimer of warranties and limitation of liability provided | |||
above shall be interpreted in a manner that, to the extent | |||
possible, most closely approximates an absolute disclaimer and | |||
waiver of all liability. | |||
Section 6 -- Term and Termination. | |||
a. This Public License applies for the term of the Copyright and | |||
Similar Rights licensed here. However, if You fail to comply with | |||
this Public License, then Your rights under this Public License | |||
terminate automatically. | |||
b. Where Your right to use the Licensed Material has terminated under | |||
Section 6(a), it reinstates: | |||
1. automatically as of the date the violation is cured, provided | |||
it is cured within 30 days of Your discovery of the | |||
violation; or | |||
2. upon express reinstatement by the Licensor. | |||
For the avoidance of doubt, this Section 6(b) does not affect any | |||
right the Licensor may have to seek remedies for Your violations | |||
of this Public License. | |||
c. For the avoidance of doubt, the Licensor may also offer the | |||
Licensed Material under separate terms or conditions or stop | |||
distributing the Licensed Material at any time; however, doing so | |||
will not terminate this Public License. | |||
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public | |||
License. | |||
Section 7 -- Other Terms and Conditions. | |||
a. The Licensor shall not be bound by any additional or different | |||
terms or conditions communicated by You unless expressly agreed. | |||
b. Any arrangements, understandings, or agreements regarding the | |||
Licensed Material not stated herein are separate from and | |||
independent of the terms and conditions of this Public License. | |||
Section 8 -- Interpretation. | |||
a. For the avoidance of doubt, this Public License does not, and | |||
shall not be interpreted to, reduce, limit, restrict, or impose | |||
conditions on any use of the Licensed Material that could lawfully | |||
be made without permission under this Public License. | |||
b. To the extent possible, if any provision of this Public License is | |||
deemed unenforceable, it shall be automatically reformed to the | |||
minimum extent necessary to make it enforceable. If the provision | |||
cannot be reformed, it shall be severed from this Public License | |||
without affecting the enforceability of the remaining terms and | |||
conditions. | |||
c. No term or condition of this Public License will be waived and no | |||
failure to comply consented to unless expressly agreed to by the | |||
Licensor. | |||
d. Nothing in this Public License constitutes or may be interpreted | |||
as a limitation upon, or waiver of, any privileges and immunities | |||
that apply to the Licensor or You, including from the legal | |||
processes of any jurisdiction or authority. | |||
======================================================================= | |||
Creative Commons is not a party to its public | |||
licenses. Notwithstanding, Creative Commons may elect to apply one of | |||
its public licenses to material it publishes and in those instances | |||
will be considered the “Licensor.” The text of the Creative Commons | |||
public licenses is dedicated to the public domain under the CC0 Public | |||
Domain Dedication. Except for the limited purpose of indicating that | |||
material is shared under a Creative Commons public license or as | |||
otherwise permitted by the Creative Commons policies published at | |||
creativecommons.org/policies, Creative Commons does not authorize the | |||
use of the trademark "Creative Commons" or any other trademark or logo | |||
of Creative Commons without its prior written consent including, | |||
without limitation, in connection with any unauthorized modifications | |||
to any of its public licenses or any other arrangements, | |||
understandings, or agreements concerning use of licensed material. For | |||
the avoidance of doubt, this paragraph does not form part of the | |||
public licenses. | |||
Creative Commons may be contacted at creativecommons.org. | |||
@ -0,0 +1,66 @@ | |||
Name: tigeros-backgrounds | |||
Version: 1.0 | |||
Release: 16%{?dist} | |||
Summary: Desktop wallpapers for the TigerOS Fedora Remix | |||
Group: Applications/Multimedia | |||
License: CC-BY-SA-4.0 | |||
URL: https://github.com/RITlug/TigerOS | |||
Source0: %{name}.tar.gz | |||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) | |||
BuildArch: noarch | |||
Requires(post): glib2 dconf | |||
%description | |||
The tigeros-backgrounds package contains tigeros | |||
related artwork intended to be used as desktop background image. | |||
%prep | |||
%setup -q | |||
%build | |||
%install | |||
rm -rf %{buildroot} | |||
mkdir -p %{buildroot}%{_datadir}/backgrounds/tigeros | |||
mkdir -p %{buildroot}%{_datadir}/glib-2.0/schemas | |||
for i in wallpapers/* | |||
do | |||
install -m0644 $i %{buildroot}%{_datadir}/backgrounds/tigeros | |||
done | |||
install -Dm0644 tigeros-backgrounds.xml %{buildroot}%{_datadir}/gnome-background-properties/tigeros-backgrounds.xml | |||
install -m0644 20_tigeros.gschema.override %{buildroot}%{_datadir}/glib-2.0/schemas/20_tigeros.gschema.override | |||
%clean | |||
rm -rf %{buildroot} | |||
%post | |||
glib-compile-schemas /usr/share/glib-2.0/schemas 2>/dev/null | |||
dconf update | |||
%postun | |||
glib-compile-schemas /usr/share/glib-2.0/schemas 2>/dev/null | |||
dconf update | |||
%files | |||
%defattr(-,root,root,-) | |||
%doc LICENSE | |||
%{_datadir}/backgrounds | |||
%{_datadir}/gnome-background-properties | |||
%{_datadir}/glib-2.0/schemas/20_tigeros.gschema.override | |||
%changelog | |||
* Wed Aug 30 2017 Aidan Kahrs <axk4545@rit.edu> - 1.0-16 | |||
- rebuilt for Fedora 26 | |||
* Wed May 31 2017 Aidan Kahrs <axk4545@rit.edu> - 1.0-15 | |||
- fix typo in wallpaper override | |||
* Thu May 25 2017 Aidan Kahrs <axk4545@rit.edu> - 1.0-14 | |||
- add wallpaper override | |||
* Sun May 14 2017 Aidan Kahrs <axk4545@rit.edu> - 1.0-13 | |||
- fix xml so wallpapers are zoomed | |||
* Wed Apr 26 2017 Regina Locicero <rtl3971@rit.edu> - 1.0-12 | |||
- Added wallpapers |
@ -0,0 +1,38 @@ | |||
Name: tigeros-ff-profile | |||
Version: 1.0 | |||
Release: 2%{?dist} | |||
Summary: TigerOS default profile for Firefox | |||
Group: Applications/Internet | |||
License: GPL3 | |||
URL: https://github.com/RITlug/TigerOS | |||
Source0: tigeros-ff-profile.tar.gz | |||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) | |||
BuildArch: noarch | |||
Requires: firefox | |||
%description | |||
This package contains the default bookmarks for TigerOS. | |||
%prep | |||
%setup -q | |||
%build | |||
%install | |||
%{__rm} -rf %{buildroot} | |||
%{__mkdir_p} %{buildroot}/etc/skel/ | |||
cp -r .mozilla/ %{buildroot}/etc/skel/ | |||
chmod -R 755 %{buildroot}/etc/skel/.mozilla | |||
%clean | |||
%{__rm} -rf $RPM_BUILD_ROOT | |||
%files | |||
/etc/skel/.mozilla | |||
%changelog | |||
* Wed Aug 30 2017 Aidan Kahrs <axk4545@rit.edu> - 1.0-2 | |||
- rebuild for Fedora 26 | |||
* Mon May 08 2017 Aidan Kahrs <axk4545@rit.edu> - 1.0-1 | |||
- Initial version |
@ -0,0 +1 @@ | |||
1494281119 |
@ -0,0 +1,9 @@ | |||
[General] | |||
StartWithLastProfile=1 | |||
[Profile0] | |||
Name=default | |||
IsRelative=1 | |||
Path=qc0ki88l.default | |||
Default=1 | |||
@ -0,0 +1,13 @@ | |||
accounts.firefox.com:HSTS 0 17294 1509833137247,1,1 | |||
www.google-analytics.com:HSTS 0 17294 1505167524024,1,1 | |||
services.addons.mozilla.org:HSTS 0 17294 1525817848277,1,0 | |||
versioncheck-bg.addons.mozilla.org:HSTS 0 17294 1494281811633,1,0 | |||
shavar.services.mozilla.com:HSTS 0 17294 1525817124340,1,1 | |||
self-repair.mozilla.org:HSTS 0 17294 1525817741281,1,1 | |||
www.mozilla.org:HSTS 0 17294 1525817123317,1,0 | |||
addons.mozilla.org:HSTS 0 17294 1525817847462,1,0 | |||
blocklist.addons.mozilla.org:HSTS 0 17294 1494281930821,1,0 | |||
discovery.addons.mozilla.org:HSTS 0 17294 1525817608782,1,0 | |||
aus5.mozilla.org:HSTS 0 17294 1525817182274,1,0 | |||
normandy-cloudfront.cdn.mozilla.net:HSTS 0 17294 1525817128690,1,1 | |||
www.eff.org:HSTS 0 17294 1525817849502,1,1 |
@ -0,0 +1,940 @@ | |||
{ | |||
"data": [ | |||
{ | |||
"id": "ae36a32e-5f4f-2f98-804f-22b0de5e7bfa", | |||
"enabled": true, | |||
"schema": 1480349134676, | |||
"feature": "WEBGL_MSAA", | |||
"os": "Darwin 11", | |||
"featureStatus": "BLOCKED_DEVICE", | |||
"vendor": "0x10de", | |||
"devices": [], | |||
"blockID": "g200", | |||
"last_modified": 1480349135384, | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "Mac OS X WebGL anti-aliasing", | |||
"why": "Security problems.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=809550", | |||
"created": "2012-11-12T10:35:32Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "a3fe9700-b9e6-1c31-f94b-030f72f4aa07", | |||
"driverVersion": "10.18.10.3947", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"blockID": "g1217", | |||
"schema": 1480349134676, | |||
"last_modified": 1480349135360, | |||
"os": "WINNT 6.0", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "HARDWARE_VIDEO_DECODING", | |||
"devices": [], | |||
"details": { | |||
"who": ".", | |||
"name": "10.18.10.3947 winnt 6.0", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1266220", | |||
"created": "2016-05-23T15:43:58Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "851c8fcb-5763-bf89-813d-0f98cdd6f8c1", | |||
"driverVersion": "8.15.10.2086", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"schema": 1480349134676, | |||
"last_modified": 1480349135337, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"blockID": "g1124", | |||
"devices": [ | |||
"0x2a42", | |||
"0x2e22", | |||
"0x2e12", | |||
"0x2e32", | |||
"0x0046" | |||
], | |||
"details": { | |||
"who": ".", | |||
"name": "Intel Driver 8.15.10.2086", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1170143", | |||
"created": "2016-02-22T23:40:14Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"id": "a825cb5d-36f6-54b0-31b3-6668aae49cdd", | |||
"enabled": true, | |||
"schema": 1480349134676, | |||
"feature": "WEBGL_MSAA", | |||
"os": "Darwin 12", | |||
"featureStatus": "BLOCKED_DEVICE", | |||
"vendor": "0x10de", | |||
"devices": [], | |||
"blockID": "g202", | |||
"last_modified": 1480349135314, | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "Mac OS X WebGL anti-aliasing", | |||
"why": "Security problems.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=809550", | |||
"created": "2012-11-12T10:37:07Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"id": "a8e8aa1a-8e70-af51-065d-81ed31d23221", | |||
"enabled": true, | |||
"schema": 1480349134676, | |||
"feature": "WEBGL_MSAA", | |||
"os": "Darwin 12", | |||
"featureStatus": "BLOCKED_DEVICE", | |||
"vendor": "0x8086", | |||
"devices": [], | |||
"blockID": "g208", | |||
"last_modified": 1480349135291, | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "Mac OS X WebGL anti-aliasing", | |||
"why": "Security problems", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=809550", | |||
"created": "2012-11-12T10:42:34Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "13f75dff-c65f-eab1-4be5-864a79503ad5", | |||
"driverVersion": "8.15.10.1994", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"schema": 1480349134676, | |||
"last_modified": 1480349135267, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"blockID": "g1073", | |||
"devices": [ | |||
"0x2a42", | |||
"0x2e22", | |||
"0x2e12", | |||
"0x2e32", | |||
"0x0046" | |||
], | |||
"details": { | |||
"who": ".", | |||
"name": "Crash in igd10umd32.dll@0x18f35", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1207993", | |||
"created": "2015-12-21T16:01:46Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "65ad7851-4af6-2a10-1d47-72943e63dcf0", | |||
"driverVersion": "10.18.10.3947", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"blockID": "g1221", | |||
"schema": 1480349134676, | |||
"last_modified": 1480349135245, | |||
"os": "WINNT 10.0", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "HARDWARE_VIDEO_DECODING", | |||
"devices": [], | |||
"details": { | |||
"who": ".", | |||
"name": "10.18.10.3947 winnt 10.0", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1266220", | |||
"created": "2016-05-23T15:47:17Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "18968a19-7317-cc56-f9fc-f568f40abca4", | |||
"driverVersion": "10.18.10.3947", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"blockID": "g1216", | |||
"schema": 1480349134676, | |||
"last_modified": 1480349135215, | |||
"os": "WINNT 5.2", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "HARDWARE_VIDEO_DECODING", | |||
"devices": [], | |||
"details": { | |||
"who": ".", | |||
"name": "10.18.10.3947 winnt 5.2", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1266220", | |||
"created": "2016-05-23T15:32:22Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "5c141970-5076-0af4-152f-efb3642a7b14", | |||
"driverVersion": "10.18.10.3947", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"blockID": "g1215", | |||
"schema": 1480349134676, | |||
"last_modified": 1480349135171, | |||
"os": "WINNT 5.1", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "HARDWARE_VIDEO_DECODING", | |||
"devices": [], | |||
"details": { | |||
"who": ".", | |||
"name": "10.18.10.3947 winnt 5.1", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1266220", | |||
"created": "2016-05-23T15:31:32Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"id": "3310f8b8-1789-1b13-9326-5531943514ae", | |||
"enabled": true, | |||
"schema": 1480349134676, | |||
"feature": "WEBGL_MSAA", | |||
"os": "Darwin 12", | |||
"featureStatus": "BLOCKED_DEVICE", | |||
"vendor": "0x1002", | |||
"devices": [], | |||
"blockID": "g234", | |||
"last_modified": 1480349135145, | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "Mac OS X WebGL anti-aliasing (AMD)", | |||
"why": "Security problems.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=815437", | |||
"created": "2012-11-30T12:50:57Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"id": "4769433c-51e9-a0f9-eef5-45829ac54243", | |||
"enabled": true, | |||
"schema": 1480349134676, | |||
"feature": "WEBGL_MSAA", | |||
"os": "Darwin 10", | |||
"featureStatus": "BLOCKED_DEVICE", | |||
"vendor": "0x1002", | |||
"devices": [], | |||
"blockID": "g230", | |||
"last_modified": 1480349135120, | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "Mac OS X WebGL anti-aliasing (AMD)", | |||
"why": "Security problems.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=815437", | |||
"created": "2012-11-30T12:48:55Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "7a3ea538-8519-2845-53bf-6a4be0ff9e6b", | |||
"driverVersion": "10.18.10.3947", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"blockID": "g1218", | |||
"schema": 1480349134676, | |||
"last_modified": 1480349135096, | |||
"os": "WINNT 6.1", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "HARDWARE_VIDEO_DECODING", | |||
"devices": [], | |||
"details": { | |||
"who": ".", | |||
"name": "10.18.10.3947 winnt 6.1", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1266220", | |||
"created": "2016-05-23T15:44:43Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"id": "c9551a39-62fb-f652-8032-cbe9d2ce419c", | |||
"enabled": true, | |||
"schema": 1480349134676, | |||
"feature": "WEBGL_MSAA", | |||
"os": "Darwin 10", | |||
"featureStatus": "BLOCKED_DEVICE", | |||
"vendor": "0x10de", | |||
"devices": [], | |||
"blockID": "g198", | |||
"last_modified": 1480349135072, | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "Mac OS X WebGL anti-aliasing", | |||
"why": "Security problems.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=809550", | |||
"created": "2012-11-12T10:34:32Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "37ffcc44-0d03-681e-69bf-89c38111fcdd", | |||
"driverVersion": "6.14.10.5218", | |||
"driverVersionComparator": "LESS_THAN", | |||
"enabled": true, | |||
"blockID": "g511", | |||
"schema": 1480349134676, | |||
"last_modified": 1480349135048, | |||
"os": "WINNT 5.1", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT3D_9_LAYERS", | |||
"devices": [], | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "Intel driver < 6.14.10.5216 for DIRECT3D_9_LAYERS on XP", | |||
"why": "Stability.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=951422", | |||
"created": "2013-12-18T14:29:36Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x10de", | |||
"id": "6ac4f440-9661-ee18-248f-f3b7b6eb8deb", | |||
"driverVersion": "8.17.12.5896", | |||
"driverVersionComparator": "LESS_THAN_OR_EQUAL", | |||
"enabled": true, | |||
"blockID": "g36", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134662, | |||
"os": "WINNT 6.1", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT3D_9_LAYERS", | |||
"devices": [ | |||
"0x0a6c" | |||
], | |||
"details": { | |||
"who": "", | |||
"name": "<BlocklistGfx: None: WINNT 6.1 : 0x10de : 0x0a6c>", | |||
"why": "", | |||
"bug": "", | |||
"created": "2011-03-01T12:13:42Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "9928c898-4941-555d-e502-54a90e9e5371", | |||
"driverVersion": "8.15.10.1855", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134638, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"blockID": "g1069", | |||
"devices": [ | |||
"0x2a42", | |||
"0x2e22", | |||
"0x2e12", | |||
"0x2e32", | |||
"0x0046" | |||
], | |||
"details": { | |||
"who": ".", | |||
"name": "Crash in igd10umd32.dll@0x18f35", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1207993", | |||
"created": "2015-12-21T15:58:51Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x1002", | |||
"id": "ec9cf554-49de-e5ea-bbdc-54f84d290605", | |||
"driverVersion": "15.201.1151.0", | |||
"driverVersionComparator": "LESS_THAN", | |||
"enabled": true, | |||
"blockID": "g974", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134615, | |||
"os": "WINNT 10.0", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT2D", | |||
"devices": [ | |||
"0x6920", | |||
"0x6921", | |||
"0x6928", | |||
"0x6929", | |||
"0x692b", | |||
"0x692f", | |||
"0x6930", | |||
"0x6938", | |||
"0x6939", | |||
"0x6900", | |||
"0x6901", | |||
"0x6902", | |||
"0x6903", | |||
"0x6907", | |||
"0x7300", | |||
"0x9870", | |||
"0x9874", | |||
"0x9875", | |||
"0x9876", | |||
"0x9877" | |||
], | |||
"details": { | |||
"who": "All users who have these cards on Windows 10.", | |||
"name": "ATI cards on Windows 10", | |||
"why": "Crashes on Windows 10.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1189266", | |||
"created": "2015-08-11T10:30:37Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"id": "9b7a25d9-075e-e5e9-678e-af1292db7463", | |||
"enabled": true, | |||
"schema": 1480343737148, | |||
"feature": "DIRECT3D_9_LAYERS", | |||
"os": "WINNT 6.1", | |||
"featureStatus": "BLOCKED_DEVICE", | |||
"vendor": "0x1002", | |||
"devices": [ | |||
"0x9802", | |||
"0x9803", | |||
"0x9803", | |||
"0x9804", | |||
"0x9805", | |||
"0x9806", | |||
"0x9807" | |||
], | |||
"blockID": "g280", | |||
"last_modified": 1480349134582, | |||
"details": { | |||
"who": "All Firefox user who use this driver.", | |||
"name": "AMD Radeon HD 6290/6300/6310/6320 for Direct3D 9", | |||
"why": "Crashes.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=840161", | |||
"created": "2013-02-13T14:52:05Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "f1830d7b-c807-afda-1b97-f41474157165", | |||
"driverVersion": "8.15.10.2413", | |||
"driverVersionComparator": "LESS_THAN_OR_EQUAL", | |||
"enabled": true, | |||
"blockID": "g984", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134550, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT2D", | |||
"devices": [], | |||
"details": { | |||
"who": "All users using these driver versions.", | |||
"name": "Intel graphics block", | |||
"why": "Major graphics artifacts.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1193802", | |||
"created": "2015-08-14T16:21:45Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "0f7b2114-976c-db1c-2d9a-02d47d1968e1", | |||
"driverVersion": "8.15.10.1872", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134528, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"blockID": "g1070", | |||
"devices": [ | |||
"0x2a42", | |||
"0x2e22", | |||
"0x2e12", | |||
"0x2e32", | |||
"0x0046" | |||
], | |||
"details": { | |||
"who": ".", | |||
"name": "Crash in igd10umd32.dll@0x18f35", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1207993", | |||
"created": "2015-12-21T15:59:29Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x1022", | |||
"id": "85925d60-d04e-2cbd-cdee-de70ea6be4f4", | |||
"driverVersion": "8.982.0.0", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"blockID": "g148", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134505, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT3D_9_LAYERS", | |||
"devices": [], | |||
"details": { | |||
"who": "All Firefox users who have these drivers installed.", | |||
"name": "ATI/AMD driver 8.982.0.0 (Direct3D)", | |||
"why": "Some features in these drivers are causing frequent crashes in Firefox.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=793869", | |||
"created": "2012-09-25T14:31:35Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x1002", | |||
"id": "5e34680b-5279-4ffc-7382-b1bc661b3094", | |||
"driverVersion": "9.10.8.0", | |||
"driverVersionComparator": "LESS_THAN_OR_EQUAL", | |||
"enabled": true, | |||
"blockID": "g192", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134483, | |||
"os": "WINNT 6.2", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT2D", | |||
"devices": [], | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "AMD DIRECT2D on Windows 8, [0x1002]", | |||
"why": "Crashes.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=806991", | |||
"created": "2012-11-02T16:33:13Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x10de", | |||
"id": "00a6b9d2-285f-83f0-0a1f-ef0205a60067", | |||
"driverVersion": "8.17.12.5896", | |||
"driverVersionComparator": "LESS_THAN_OR_EQUAL", | |||
"enabled": true, | |||
"blockID": "g35", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134459, | |||
"os": "WINNT 6.1", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT2D", | |||
"devices": [ | |||
"0x0a6c" | |||
], | |||
"details": { | |||
"who": "", | |||
"name": "<BlocklistGfx: None: WINNT 6.1 : 0x10de : 0x0a6c>", | |||
"why": "", | |||
"bug": "", | |||
"created": "2011-03-01T12:13:40Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "d4297784-dbac-906c-16b7-1a8792e868de", | |||
"driverVersion": "8.15.10.1883", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134436, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"blockID": "g1071", | |||
"devices": [ | |||
"0x2a42", | |||
"0x2e22", | |||
"0x2e12", | |||
"0x2e32", | |||
"0x0046" | |||
], | |||
"details": { | |||
"who": ".", | |||
"name": "Crash in igd10umd32.dll@0x18f35", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1207993", | |||
"created": "2015-12-21T16:00:05Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x1002", | |||
"id": "6a3c05bb-f971-d3d4-2a02-184e6970ba87", | |||
"driverVersion": "8.982.0.0", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"blockID": "g150", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134413, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT3D_9_LAYERS", | |||
"devices": [], | |||
"details": { | |||
"who": "All Firefox users who have these drivers installed.", | |||
"name": "ATI/AMD driver 8.982.0.0 (Direct3D)", | |||
"why": "Some features in these drivers are causing frequent crashes in Firefox.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=793869", | |||
"created": "2012-09-25T14:33:17Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x1002", | |||
"id": "35e25a7c-d77d-6b43-fa5e-39b7e9c8a481", | |||
"driverVersion": "8.982.0.0", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"blockID": "g144", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134391, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT2D", | |||
"devices": [], | |||
"details": { | |||
"who": "All Firefox users who have these drivers installed.", | |||
"name": "ATI/AMD driver 8.982.0.0", | |||
"why": "Some features in these drivers are causing frequent crashes in Firefox.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=792480", | |||
"created": "2012-09-24T08:23:25Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "ea27a4d2-ed88-0190-db12-473820b340b2", | |||
"devices": [], | |||
"driverVersion": "6.14.10.5218", | |||
"enabled": true, | |||
"blockID": "g1251", | |||
"versionRange": { | |||
"maxVersion": "49.9" | |||
}, | |||
"schema": 1480343737148, | |||
"driverVersionComparator": "LESS_THAN", | |||
"os": "WINNT 5.1", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "WEBGL_ANGLE", | |||
"last_modified": 1480349134369, | |||
"details": { | |||
"who": ".", | |||
"name": "Intel driver < 6.14.10.5216 for DIRECT3D_9_LAYERS on XP", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1283601", | |||
"created": "2016-07-22T12:30:30Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"id": "91cc2cec-11dd-0f77-ffad-f57e69b3f441", | |||
"enabled": true, | |||
"schema": 1480343737148, | |||
"feature": "WEBGL_MSAA", | |||
"os": "Darwin 11", | |||
"featureStatus": "BLOCKED_DEVICE", | |||
"vendor": "0x8086", | |||
"devices": [], | |||
"blockID": "g206", | |||
"last_modified": 1480349134345, | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "Mac OS X WebGL anti-aliasing", | |||
"why": "Security problems", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=809550", | |||
"created": "2012-11-12T10:39:32Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "b7452893-25cc-497a-626c-aacee78683c6", | |||
"driverVersion": "8.15.10.1851", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134323, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"blockID": "g1068", | |||
"devices": [ | |||
"0x2a42", | |||
"0x2e22", | |||
"0x2e12", | |||
"0x2e32", | |||
"0x0046" | |||
], | |||
"details": { | |||
"who": ".", | |||
"name": "Crash in igd10umd32.dll@0x18f35", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1207993", | |||
"created": "2015-12-21T15:58:01Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "73e4e12d-f27a-1113-b0e9-c05cb4dd78d2", | |||
"driverVersion": "10.18.10.3947", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"blockID": "g1219", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134301, | |||
"os": "WINNT 6.2", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "HARDWARE_VIDEO_DECODING", | |||
"devices": [], | |||
"details": { | |||
"who": ".", | |||
"name": "10.18.10.3947 winnt 6.2", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1266220", | |||
"created": "2016-05-23T15:45:21Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x10de", | |||
"id": "fb507393-460e-685e-91de-1ce3b18ddbc0", | |||
"driverVersion": "7.0.0.0", | |||
"driverVersionComparator": "GREATER_THAN_OR_EQUAL", | |||
"enabled": true, | |||
"blockID": "g37", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134278, | |||
"os": "WINNT 5.1", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT3D_9_LAYERS", | |||
"devices": [], | |||
"details": { | |||
"who": "", | |||
"name": "<BlocklistGfx: None: WINNT 5.1 : 0x10de : >", | |||
"why": "", | |||
"bug": "", | |||
"created": "2011-03-14T14:11:51Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x1022", | |||
"id": "e6984930-7969-3cbc-fbaa-0f350afe6f14", | |||
"driverVersion": "8.982.0.0", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"blockID": "g146", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134255, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT2D", | |||
"devices": [], | |||
"details": { | |||
"who": "All Firefox users who have these drivers installed.", | |||
"name": "ATI/AMD driver 8.982.0.0", | |||
"why": "Some features in these drivers are causing frequent crashes in Firefox.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=792480", | |||
"created": "2012-09-24T08:23:33Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x1002", | |||
"id": "77b27d80-1ebe-04de-2db9-bb197acbac32", | |||
"driverVersion": "15.201.1151.0", | |||
"driverVersionComparator": "LESS_THAN", | |||
"enabled": true, | |||
"blockID": "g992", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134232, | |||
"os": "WINNT 8.1", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT2D", | |||
"devices": [ | |||
"0x6920", | |||
"0x6921", | |||
"0x6928", | |||
"0x6929", | |||
"0x692b", | |||
"0x692f", | |||
"0x6930", | |||
"0x6938", | |||
"0x6939", | |||
"0x6900", | |||
"0x6901", | |||
"0x6902", | |||
"0x6903", | |||
"0x6907", | |||
"0x7300", | |||
"0x9870", | |||
"0x9874", | |||
"0x9875", | |||
"0x9876", | |||
"0x9877" | |||
], | |||
"details": { | |||
"who": "Users who have these cards installed.", | |||
"name": "ATI cards on Windows 10", | |||
"why": "Crashing.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1189266", | |||
"created": "2015-08-20T09:56:09Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"id": "8f8e9025-a9ec-5f1e-ae9f-aee28176bdf7", | |||
"enabled": true, | |||
"schema": 1480343737148, | |||
"feature": "WEBGL_MSAA", | |||
"os": "Darwin 11", | |||
"featureStatus": "BLOCKED_DEVICE", | |||
"vendor": "0x1002", | |||
"devices": [], | |||
"blockID": "g232", | |||
"last_modified": 1480349134210, | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "Mac OS X WebGL anti-aliasing (AMD)", | |||
"why": "Security problems.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=809550", | |||
"created": "2012-11-30T12:49:56Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "1f91fdd6-8b89-d948-d05a-86491c705ce2", | |||
"driverVersion": "10.18.10.3947", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"blockID": "g1220", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134187, | |||
"os": "WINNT 6.3", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "HARDWARE_VIDEO_DECODING", | |||
"devices": [], | |||
"details": { | |||
"who": ".", | |||
"name": "10.18.10.3947 winnt 6.3", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1266220", | |||
"created": "2016-05-23T15:46:34Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"id": "33866148-1d41-2d4c-27b8-5f147467686b", | |||
"enabled": true, | |||
"schema": 1480343737148, | |||
"feature": "WEBGL_MSAA", | |||
"os": "Darwin 10", | |||
"featureStatus": "BLOCKED_DEVICE", | |||
"vendor": "0x8086", | |||
"devices": [], | |||
"blockID": "g204", | |||
"last_modified": 1480349134160, | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "Mac OS X WebGL anti-aliasing", | |||
"why": "Security problems.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=809550", | |||
"created": "2012-11-12T10:38:32Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"id": "bccdbab1-c335-6f2e-6d0a-d563ccb2f1f4", | |||
"enabled": true, | |||
"schema": 1480343737148, | |||
"feature": "DIRECT2D", | |||
"os": "WINNT 6.1", | |||
"featureStatus": "BLOCKED_DEVICE", | |||
"vendor": "0x1002", | |||
"devices": [ | |||
"0x9802", | |||
"0x9803", | |||
"0x9803", | |||
"0x9804", | |||
"0x9805", | |||
"0x9806", | |||
"0x9807" | |||
], | |||
"blockID": "g278", | |||
"last_modified": 1480349134138, | |||
"details": { | |||
"who": "All Firefox users using these drivers.", | |||
"name": "AMD Radeon HD 6290/6300/6310/6320 for Direct2D", | |||
"why": "Crashes", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=840161", | |||
"created": "2013-02-13T14:50:33Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x8086", | |||
"id": "d780a857-b80d-0049-981e-1a8d3ebe485e", | |||
"driverVersion": "8.15.10.1892", | |||
"driverVersionComparator": "EQUAL", | |||
"enabled": true, | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134115, | |||
"os": "All", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"blockID": "g1072", | |||
"devices": [ | |||
"0x2a42", | |||
"0x2e22", | |||
"0x2e12", | |||
"0x2e32", | |||
"0x0046" | |||
], | |||
"details": { | |||
"who": ".", | |||
"name": "Crash in igd10umd32.dll@0x18f35", | |||
"why": ".", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1207993", | |||
"created": "2015-12-21T16:00:50Z" | |||
}, | |||
"_status": "synced" | |||
}, | |||
{ | |||
"vendor": "0x1022", | |||
"id": "0afc5fe9-1f81-7fde-2424-0cb4d933c173", | |||
"driverVersion": "9.10.8.0", | |||
"driverVersionComparator": "LESS_THAN_OR_EQUAL", | |||
"enabled": true, | |||
"blockID": "g194", | |||
"schema": 1480343737148, | |||
"last_modified": 1480349134090, | |||
"os": "WINNT 6.2", | |||
"featureStatus": "BLOCKED_DRIVER_VERSION", | |||
"feature": "DIRECT2D", | |||
"devices": [], | |||
"details": { | |||
"who": "All Firefox users.", | |||
"name": "AMD DIRECT2D on Windows 8, [0x1022]", | |||
"why": "Crashes.", | |||
"bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=806991", | |||
"created": "2012-11-02T16:35:37Z" | |||
}, | |||
"_status": "synced" | |||
} | |||
] | |||
} |
@ -0,0 +1,7 @@ | |||
[Compatibility] | |||
LastVersion=53.0_20170420084331/20170420084331 | |||
LastOSABI=Linux_x86_64-gcc3 | |||
LastPlatformDir=/usr/lib64/firefox | |||
LastAppDir=/usr/lib64/firefox/browser | |||
InvalidateCaches=1 |
@ -0,0 +1 @@ | |||
{"version":2,"lastUserContextId":5,"identities":[{"userContextId":1,"public":true,"icon":"fingerprint","color":"blue","l10nID":"userContextPersonal.label","accessKey":"userContextPersonal.accesskey","telemetryId":1},{"userContextId":2,"public":true,"icon":"briefcase","color":"orange","l10nID":"userContextWork.label","accessKey":"userContextWork.accesskey","telemetryId":2},{"userContextId":3,"public":true,"icon":"dollar","color":"green","l10nID":"userContextBanking.label","accessKey":"userContextBanking.accesskey","telemetryId":3},{"userContextId":4,"public":true,"icon":"cart","color":"pink","l10nID":"userContextShopping.label","accessKey":"userContextShopping.accesskey","telemetryId":4},{"userContextId":5,"public":false,"icon":"","color":"","name":"userContextIdInternal.thumbnail","accessKey":""}]} |
@ -0,0 +1 @@ | |||
{"sessionId":"d80d499e-aad3-4bf5-bdf6-ea36d0183a37","subsessionId":"1cd618d8-17d4-4a06-88df-e5a4d649c586","profileSubsessionCounter":3} |
@ -0,0 +1 @@ | |||
{"clientID":"8e0e1da3-5680-40a9-9b1a-19324ea1b671"} |
@ -0,0 +1,7 @@ | |||
[ExtensionDirs] | |||
Extension0=/home/test/.mozilla/firefox/qc0ki88l.default/extensions/https-everywhere@eff.org.xpi | |||
[ThemeDirs] | |||
Extension0=/usr/lib64/firefox/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |||
[MultiprocessIncompatibleExtensions] |
@ -0,0 +1,74 @@ | |||
<?xml version="1.0"?> | |||
<RDF:RDF xmlns:NC="http://home.netscape.com/NC-rdf#" | |||
xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> | |||
<RDF:Description RDF:about="urn:scheme:handler:irc" | |||
NC:alwaysAsk="true"> | |||
<NC:possibleApplication RDF:resource="urn:handler:web:https://www.mibbit.com/?url=%s"/> | |||
</RDF:Description> | |||
<RDF:Description RDF:about="urn:handler:web:https://30boxes.com/external/widget?refer=ff&url=%s" | |||
NC:prettyName="30 Boxes" | |||
NC:uriTemplate="https://30boxes.com/external/widget?refer=ff&url=%s" /> | |||
<RDF:Description RDF:about="urn:handler:web:https://mail.google.com/mail/?extsrc=mailto&url=%s" | |||
NC:prettyName="Gmail" | |||
NC:uriTemplate="https://mail.google.com/mail/?extsrc=mailto&url=%s" /> | |||
<RDF:Description RDF:about="urn:scheme:webcal" | |||
NC:value="webcal"> | |||
<NC:handlerProp RDF:resource="urn:scheme:handler:webcal"/> | |||
</RDF:Description> | |||
<RDF:Description RDF:about="urn:scheme:handler:webcal" | |||
NC:alwaysAsk="true"> | |||
<NC:possibleApplication RDF:resource="urn:handler:web:https://30boxes.com/external/widget?refer=ff&url=%s"/> | |||
</RDF:Description> | |||
<RDF:Description RDF:about="urn:scheme:ircs" | |||
NC:value="ircs"> | |||
<NC:handlerProp RDF:resource="urn:scheme:handler:ircs"/> | |||
</RDF:Description> | |||
<RDF:Description RDF:about="urn:handler:web:https://compose.mail.yahoo.com/?To=%s" | |||
NC:prettyName="Yahoo! Mail" | |||
NC:uriTemplate="https://compose.mail.yahoo.com/?To=%s" /> | |||
<RDF:Description RDF:about="urn:handler:web:https://www.mibbit.com/?url=%s" | |||
NC:prettyName="Mibbit" | |||
NC:uriTemplate="https://www.mibbit.com/?url=%s" /> | |||
<RDF:Description RDF:about="urn:scheme:irc" | |||
NC:value="irc"> | |||
<NC:handlerProp RDF:resource="urn:scheme:handler:irc"/> | |||
</RDF:Description> | |||
<RDF:Description RDF:about="urn:mimetypes"> | |||
<NC:MIME-types RDF:resource="urn:mimetypes:root"/> | |||
</RDF:Description> | |||
<RDF:Description RDF:about="urn:root" | |||
NC:en-US_defaultHandlersVersion="4" /> | |||
<RDF:Seq RDF:about="urn:schemes:root"> | |||
<RDF:li RDF:resource="urn:scheme:webcal"/> | |||
<RDF:li RDF:resource="urn:scheme:ircs"/> | |||
<RDF:li RDF:resource="urn:scheme:mailto"/> | |||
<RDF:li RDF:resource="urn:scheme:irc"/> | |||
</RDF:Seq> | |||
<RDF:Description RDF:about="urn:scheme:mailto" | |||
NC:value="mailto"> | |||
<NC:handlerProp RDF:resource="urn:scheme:handler:mailto"/> | |||
</RDF:Description> | |||
<RDF:Description RDF:about="urn:scheme:handler:ircs" | |||
NC:alwaysAsk="true"> | |||
<NC:possibleApplication RDF:resource="urn:handler:web:https://www.mibbit.com/?url=%s"/> | |||
</RDF:Description> | |||
<RDF:Seq RDF:about="urn:mimetypes:root"> | |||
<RDF:li RDF:resource="urn:mimetype:application/pdf"/> | |||
</RDF:Seq> | |||
<RDF:Description RDF:about="urn:mimetype:handler:application/pdf" | |||
NC:handleInternal="true" | |||
NC:alwaysAsk="false" /> | |||
<RDF:Description RDF:about="urn:mimetype:application/pdf" | |||
NC:value="application/pdf" | |||
NC:fileExtensions="pdf"> | |||
<NC:handlerProp RDF:resource="urn:mimetype:handler:application/pdf"/> | |||
</RDF:Description> | |||
<RDF:Description RDF:about="urn:schemes"> | |||
<NC:Protocol-Schemes RDF:resource="urn:schemes:root"/> | |||
</RDF:Description> | |||
<RDF:Description RDF:about="urn:scheme:handler:mailto" | |||
NC:alwaysAsk="true"> | |||
<NC:possibleApplication RDF:resource="urn:handler:web:https://compose.mail.yahoo.com/?To=%s"/> | |||
<NC:possibleApplication RDF:resource="urn:handler:web:https://mail.google.com/mail/?extsrc=mailto&url=%s"/> | |||
</RDF:Description> | |||
</RDF:RDF> |
@ -0,0 +1,20 @@ | |||
Generated File. Do not edit. | |||
[HEADER] | |||
Version:0.18t:$ | |||
Arch:x86_64-gcc3:$ | |||
[PLUGINS] | |||
libflashplayer.so:$ | |||
/usr/lib64/flash-plugin/libflashplayer.so:$ | |||
25.0.0.148:$ | |||
1490381526000:0:0:0:$ | |||
Shockwave Flash 25.0 r0:$ | |||
Shockwave Flash:$ | |||
2 | |||
0:application/x-shockwave-flash:Shockwave Flash:swf:$ | |||
1:application/futuresplash:FutureSplash Player:spl:$ | |||
[INVALID] | |||
/usr/lib64/mozilla/plugins/librhythmbox-itms-detection-plugin.so:$ | |||
1473610242000:$ |
@ -0,0 +1,126 @@ | |||
# Mozilla User Preferences | |||
/* Do not edit this file. | |||
* | |||
* If you make changes to this file while the application is running, | |||
* the changes will be overwritten when the application exits. | |||
* | |||
* To make a manual change to preferences, you can visit the URL about:config | |||
*/ | |||
user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1494281511); | |||
user_pref("app.update.lastUpdateTime.blocklist-background-update-timer", 1494281631); | |||
user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1494281151); | |||
user_pref("app.update.lastUpdateTime.experiments-update-timer", 1494281391); | |||
user_pref("app.update.lastUpdateTime.search-engine-update-timer", 1494281271); | |||
user_pref("app.update.lastUpdateTime.xpi-signature-verification", 1494281764); | |||
user_pref("browser.bookmarks.restore_default_bookmarks", false); | |||
user_pref("browser.bookmarks.showRecentlyBookmarked", false); | |||
user_pref("browser.cache.disk.capacity", 358400); | |||
user_pref("browser.cache.disk.filesystem_reported", 1); | |||
user_pref("browser.cache.disk.smart_size.first_run", false); | |||
user_pref("browser.cache.frecency_experiment", 3); | |||
user_pref("browser.customizemode.tip0.shown", true); | |||
user_pref("browser.download.importedFromSqlite", true); | |||
user_pref("browser.laterrun.bookkeeping.profileCreationTime", 1494281120); | |||
user_pref("browser.laterrun.bookkeeping.sessionCount", 2); | |||
user_pref("browser.laterrun.enabled", true); | |||
user_pref("browser.migration.version", 43); | |||
user_pref("browser.newtabpage.enhanced", true); | |||
user_pref("browser.newtabpage.storageVersion", 1); | |||
user_pref("browser.pagethumbnails.storage_version", 3); | |||
user_pref("browser.places.smartBookmarksVersion", 8); | |||
user_pref("browser.safebrowsing.provider.google.lastupdatetime", "1494281168983"); | |||
user_pref("browser.safebrowsing.provider.google.nextupdatetime", "1494283078983"); | |||
user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1494281125204"); | |||
user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1494284725204"); | |||
user_pref("browser.search.countryCode", "US"); | |||
user_pref("browser.search.region", "US"); | |||
user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20170420084331"); | |||
user_pref("browser.slowStartup.averageTime", 2447); | |||
user_pref("browser.slowStartup.samples", 2); | |||
user_pref("browser.startup.homepage", "http://ritlug.com/"); | |||
user_pref("browser.startup.homepage_override.buildID", "20170420084331"); | |||
user_pref("browser.startup.homepage_override.mstone", "53.0"); | |||
user_pref("browser.tabs.remote.autostart.2", true); | |||
user_pref("browser.uiCustomization.state", "{\"placements\":{\"PanelUI-contents\":[\"edit-controls\",\"zoom-controls\",\"new-window-button\",\"privatebrowsing-button\",\"save-page-button\",\"print-button\",\"history-panelmenu\",\"fullscreen-button\",\"find-button\",\"preferences-button\",\"add-ons-button\",\"developer-button\",\"sync-button\"],\"addon-bar\":[\"addonbar-closebutton\",\"status-bar\"],\"PersonalToolbar\":[\"personal-bookmarks\"],\"nav-bar\":[\"urlbar-container\",\"search-container\",\"bookmarks-menu-button\",\"downloads-button\",\"home-button\",\"https-everywhere-button\",\"ublock0-button\",\"jid1-mnnxcxisbpnsxq_jetpack-browser-action\"],\"TabsToolbar\":[\"tabbrowser-tabs\",\"new-tab-button\",\"alltabs-button\"],\"toolbar-menubar\":[\"menubar-items\"]},\"seen\":[\"pocket-button\",\"developer-button\",\"ublock0-button\",\"jid1-mnnxcxisbpnsxq_jetpack-browser-action\"],\"dirtyAreaCache\":[\"PersonalToolbar\",\"nav-bar\",\"TabsToolbar\",\"toolbar-menubar\",\"PanelUI-contents\",\"addon-bar\"],\"currentVersion\":6,\"newElementCount\":0}"); | |||
user_pref("browser.urlbar.daysBeforeHidingSuggestionsPrompt", 3); | |||
user_pref("browser.urlbar.lastSuggestionsPromptDate", 20170508); | |||
user_pref("datareporting.policy.dataSubmissionPolicyAcceptedVersion", 2); | |||
user_pref("datareporting.policy.dataSubmissionPolicyNotifiedTime", "1494281182082"); | |||
user_pref("datareporting.sessions.current.activeTicks", 17); | |||
user_pref("datareporting.sessions.current.clean", true); | |||
user_pref("datareporting.sessions.current.firstPaint", 2986); | |||
user_pref("datareporting.sessions.current.main", 27); | |||
user_pref("datareporting.sessions.current.sessionRestored", 2709); | |||
user_pref("datareporting.sessions.current.startTime", "1494281732740"); | |||
user_pref("datareporting.sessions.current.totalTime", 161); | |||
user_pref("datareporting.sessions.currentIndex", 1); | |||
user_pref("datareporting.sessions.previous.0", "{\"s\":1494281119697,\"a\":69,\"t\":612,\"c\":true,\"m\":80,\"fp\":2498,\"sr\":2385}"); | |||
user_pref("devtools.theme", "dark"); | |||
user_pref("distribution.fedora.bookmarksProcessed", true); | |||
user_pref("e10s.rollout.cohort", "addons-set50allmpc-test"); | |||
user_pref("e10s.rollout.cohortSample", "0.695065"); | |||
user_pref("experiments.activeExperiment", false); | |||
user_pref("extensions.blocklist.pingCountTotal", 2); | |||
user_pref("extensions.blocklist.pingCountVersion", 2); | |||
user_pref("extensions.bootstrappedAddons", "{\"e10srollout@mozilla.org\":{\"version\":\"1.15\",\"type\":\"extension\",\"descriptor\":\"/usr/lib64/firefox/browser/features/e10srollout@mozilla.org.xpi\",\"multiprocessCompatible\":true,\"runInSafeMode\":true,\"dependencies\":[],\"hasEmbeddedWebExtension\":false},\"firefox@getpocket.com\":{\"version\":\"1.0.5\",\"type\":\"extension\",\"descriptor\":\"/usr/lib64/firefox/browser/features/firefox@getpocket.com.xpi\",\"multiprocessCompatible\":true,\"runInSafeMode\":true,\"dependencies\":[],\"hasEmbeddedWebExtension\":false},\"webcompat@mozilla.org\":{\"version\":\"1.0\",\"type\":\"extension\",\"descriptor\":\"/usr/lib64/firefox/browser/features/webcompat@mozilla.org.xpi\",\"multiprocessCompatible\":true,\"runInSafeMode\":true,\"dependencies\":[],\"hasEmbeddedWebExtension\":false},\"uBlock0@raymondhill.net\":{\"version\":\"1.12.1\",\"type\":\"extension\",\"descriptor\":\"/home/test/.mozilla/firefox/qc0ki88l.default/extensions/uBlock0@raymondhill.net.xpi\",\"multiprocessCompatible\":true,\"runInSafeMode\":false,\"dependencies\":[],\"hasEmbeddedWebExtension\":false},\"jid1-MnnxcxisBPnSXQ@jetpack\":{\"version\":\"2017.4.19.1\",\"type\":\"webextension\",\"descriptor\":\"/home/test/.mozilla/firefox/qc0ki88l.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi\",\"multiprocessCompatible\":true,\"runInSafeMode\":false,\"dependencies\":[],\"hasEmbeddedWebExtension\":false}}"); | |||
user_pref("extensions.databaseSchema", 19); | |||
user_pref("extensions.e10s.rollout.blocklist", "{dc572301-7619-498c-a57d-39143191b318};firefox@mega.co.nz"); | |||
user_pref("extensions.e10s.rollout.hasAddon", true); | |||
user_pref("extensions.e10s.rollout.policy", "50allmpc"); | |||
user_pref("extensions.e10sBlockedByAddons", false); | |||
user_pref("extensions.enabledAddons", "https-everywhere%40eff.org:5.2.15,%7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:53.0"); | |||
user_pref("extensions.getAddons.cache.lastUpdate", 1494281511); | |||
user_pref("extensions.getAddons.databaseSchema", 5); | |||
user_pref("extensions.https_everywhere.firstrun_context_menu", false); | |||
user_pref("extensions.https_everywhere.prefs_version", 1); | |||
user_pref("extensions.https_everywhere.toolbar_hint_shown", true); | |||
user_pref("extensions.lastAppVersion", "53.0"); | |||
user_pref("extensions.lastPlatformVersion", "53.0"); | |||
user_pref("extensions.pendingOperations", false); | |||
user_pref("extensions.systemAddonSet", "{\"schema\":1,\"addons\":{}}"); | |||
user_pref("extensions.ublock0.cloudStorage.myFiltersPane", ""); | |||
user_pref("extensions.ublock0.cloudStorage.myRulesPane", ""); | |||
user_pref("extensions.ublock0.cloudStorage.tpFiltersPane", ""); | |||
user_pref("extensions.ublock0.cloudStorage.whitelistPane", ""); | |||
user_pref("extensions.ui.dictionary.hidden", true); | |||
user_pref("extensions.ui.experiment.hidden", true); | |||
user_pref("extensions.ui.lastCategory", "addons://discover/"); | |||
user_pref("extensions.ui.locale.hidden", true); | |||
user_pref("extensions.webextensions.uuids", "{\"jid1-MnnxcxisBPnSXQ@jetpack\":\"15aa2728-73d1-447b-aa9d-1ab079b34fc7\"}"); | |||
user_pref("extensions.xpiState", "{\"app-profile\":{\"https-everywhere@eff.org\":{\"d\":\"/home/test/.mozilla/firefox/qc0ki88l.default/extensions/https-everywhere@eff.org.xpi\",\"e\":true,\"v\":\"5.2.15\",\"st\":1494281733000},\"uBlock0@raymondhill.net\":{\"d\":\"/home/test/.mozilla/firefox/qc0ki88l.default/extensions/uBlock0@raymondhill.net.xpi\",\"e\":true,\"v\":\"1.12.1\",\"st\":1494281817000},\"jid1-MnnxcxisBPnSXQ@jetpack\":{\"d\":\"/home/test/.mozilla/firefox/qc0ki88l.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi\",\"e\":true,\"v\":\"2017.4.19.1\",\"st\":1494281848000}},\"app-system-defaults\":{\"e10srollout@mozilla.org\":{\"d\":\"/usr/lib64/firefox/browser/features/e10srollout@mozilla.org.xpi\",\"e\":true,\"v\":\"1.15\",\"st\":1492679717000},\"firefox@getpocket.com\":{\"d\":\"/usr/lib64/firefox/browser/features/firefox@getpocket.com.xpi\",\"e\":true,\"v\":\"1.0.5\",\"st\":1492679717000},\"webcompat@mozilla.org\":{\"d\":\"/usr/lib64/firefox/browser/features/webcompat@mozilla.org.xpi\",\"e\":true,\"v\":\"1.0\",\"st\":1492679717000}},\"app-global\":{\"{972ce4c6-7e08-4474-a285-3208198ce6fd}\":{\"d\":\"/usr/lib64/firefox/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi\",\"e\":false,\"v\":\"53.0\",\"st\":1492679717000}}}"); | |||
user_pref("lightweightThemes.persisted.footerURL", false); | |||
user_pref("lightweightThemes.persisted.headerURL", false); | |||
user_pref("lightweightThemes.selectedThemeID", "firefox-compact-dark@mozilla.org"); | |||
user_pref("lightweightThemes.usedThemes", "[]"); | |||
user_pref("media.gmp-manager.buildID", "20170420084331"); | |||
user_pref("media.gmp-manager.lastCheck", 1494281182); | |||
user_pref("media.gmp.storage.version.observed", 1); | |||
user_pref("media.webrtc.debug.log_file", "/tmp/WebRTC.log"); | |||
user_pref("network.cookie.prefsMigrated", true); | |||
user_pref("network.dns.disablePrefetch", true); | |||
user_pref("network.http.speculative-parallel-limit", 0); | |||
user_pref("network.predictor.cleaned-up", true); | |||
user_pref("network.prefetch-next", false); | |||
user_pref("pdfjs.migrationVersion", 2); | |||
user_pref("pdfjs.previousHandler.alwaysAskBeforeHandling", true); | |||
user_pref("pdfjs.previousHandler.preferredAction", 4); | |||
user_pref("places.history.expiration.transient_current_max_pages", 122334); | |||
user_pref("plugin.disable_full_page_plugin_for_types", "application/pdf"); | |||
user_pref("privacy.donottrackheader.enabled", true); | |||
user_pref("services.blocklist.addons.checked", 1494187369); | |||
user_pref("services.blocklist.clock_skew_seconds", 94262); | |||
user_pref("services.blocklist.gfx.checked", 1494187369); | |||
user_pref("services.blocklist.last_update_seconds", 1494187369); | |||
user_pref("services.blocklist.onecrl.checked", 1494187369); | |||
user_pref("services.blocklist.plugins.checked", 1494187369); | |||
user_pref("services.sync.prefs.sync.extensions.ublock0.cloudStorage.myFiltersPane", true); | |||
user_pref("services.sync.prefs.sync.extensions.ublock0.cloudStorage.myRulesPane", true); | |||
user_pref("services.sync.prefs.sync.extensions.ublock0.cloudStorage.tpFiltersPane", true); | |||
user_pref("services.sync.prefs.sync.extensions.ublock0.cloudStorage.whitelistPane", true); | |||
user_pref("signon.importedFromSqlite", true); | |||
user_pref("toolkit.startup.last_success", 1494281732); | |||
user_pref("toolkit.telemetry.cachedClientID", "8e0e1da3-5680-40a9-9b1a-19324ea1b671"); | |||
user_pref("toolkit.telemetry.previousBuildID", "20170420084331"); | |||
user_pref("toolkit.telemetry.reportingpolicy.firstRun", false); |
@ -0,0 +1,475 @@ | |||
# Auto generated contents. Do not edit. | |||
MIGKMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDA1IFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxKTAnBgNVBAMTIFdJU2VLZXkgQ2VydGlmeUlEIEFkdmFuY2VkIEcxIENB | |||
WD1AyQAAAAAAJQ== | |||
MGoxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xOzA5BgNVBAMMMlN0YWF0IGRlciBOZWRlcmxhbmRlbiBPcmdhbmlzYXRpZSBTZXJ2aWNlcyBDQSAtIEcz | |||
e9JTGBe45yw= | |||
MGExCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxIDAeBgNVBAsTF0lkZW5UcnVzdCBQdWJsaWMgU2VjdG9yMRwwGgYDVQQDExNJZGVuVHJ1c3QgQUNFUyBDQSAx | |||
fwAAAQAAAUrz/HmrAAAAAg== | |||
MEMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHTAbBgNVBAMTFHRoYXd0ZSBTSEEyNTYgU1NMIENB | |||
UKKK5ol/rKBZchAAOnZjaA== | |||
MD8xJDAiBgNVBAoTG0RpZ2l0YWwgU2lnbmF0dXJlIFRydXN0IENvLjEXMBUGA1UEAxMORFNUIFJvb3QgQ0EgWDM= | |||
AJiU+bpWh2Uc4xFRf8GM9yA= | |||
CgFBQgAAAUFcf/EVAAAAAg== | |||
AJBQSPqrEvDE2Hz8xH39Low= | |||
APt5i5rs4dIIQPwZdk9/ISc= | |||
MIG8MQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOzA5BgNVBAsTMlRlcm1zIG9mIHVzZSBhdCBodHRwczovL3d3dy52ZXJpc2lnbi5jb20vcnBhIChjKTEwMTYwNAYDVQQDEy1WZXJpU2lnbiBDbGFzcyAzIEludGVybmF0aW9uYWwgU2VydmVyIENBIC0gRzM= | |||
bzTw0uq05TUYEGS98bh0Ww== | |||
A9GPKQ8jv9oIxfwiOy7qxQ== | |||
fWK0j/Vi8vNWg3VAGjc02w== | |||
BYyEX2b5+K+myAIR7eXaRQ== | |||
By7fBTreouRwX/qrpgSUsg== | |||
LdbnCbsA9sOgI4mkUpWXPw== | |||
Gd/pPu+qLnXUdvP9sW73CQ== | |||
JV/LVzSKI/wsDgg3UuZHlA== | |||
UUFV3S2cUidOOv7ESN65Ng== | |||
COwoDFvz7GD8R2K7Lo0rYQ== | |||
GtXUVojhwOTkaQ4bTKblEQ== | |||
VN2yeFexyXjPf34fHGmbhg== | |||
NMpMcEnex3eXx4ohk9glcQ== | |||
VOcIuNbTqkpOMUyI108FOg== | |||
J2La+q+JOURNWkX60OP2lQ== | |||
OnvXX72mvUI2Id/NMzegmg== | |||
MF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 | |||
L7tgs/W85vnhV7I7qJ6N/g== | |||
MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIyMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu | |||
BAAAAAABIg08D3U= | |||
BAAAAAABRE7wRk4= | |||
BAAAAAABIg08FMU= | |||
BAAAAAABEAuMoRs= | |||
BAAAAAABElatX7I= | |||
BAAAAAABJ/v3ZwA= | |||
MHUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMSgwJgYDVQQDDB9FRSBDZXJ0aWZpY2F0aW9uIENlbnRyZSBSb290IENBMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWU= | |||
M64Z5ufZzDRVTHkJR1uXzw== | |||
JLiDzgpL7oFNgJN+jIjt7w== | |||
KuzHPJLdK5hNgJRo3R47Ag== | |||
cJ+vg4742XhNgJW2ot9eIg== | |||
LU4d0t7PAsZNgJGZcb+o/w== | |||
MIGpMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhhd3RlLCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMTgwNgYDVQQLEy8oYykgMjAwNiB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTEfMB0GA1UEAxMWdGhhd3RlIFByaW1hcnkgUm9vdCBDQQ== | |||
Ikdj3zYXXGsC/Afm9Tvx+g== | |||
MG0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRswGQYDVQQLExJQcmltYXJ5IENsYXNzIDEgQ0ExJjAkBgNVBAMTHUdsb2JhbFNpZ24gUHJpbWFyeSBDbGFzcyAxIENB | |||
BAAAAAABHkSl5ao= | |||
MEgxCzAJBgNVBAYTAlVTMSAwHgYDVQQKExdTZWN1cmVUcnVzdCBDb3Jwb3JhdGlvbjEXMBUGA1UEAxMOU2VjdXJlVHJ1c3QgQ0E= | |||
ANygrItIJ2rcKlyS3Lue07U= | |||
MABJSw== | |||
R4af5A== | |||
MABJTA== | |||
MFoxCzAJBgNVBAYTAkZSMRMwEQYDVQQKEwpDZXJ0aW5vbWlzMRcwFQYDVQQLEw4wMDAyIDQzMzk5ODkwMzEdMBsGA1UEAxMUQ2VydGlub21pcyAtIFJvb3QgQ0E= | |||
J8mznxvTvOR5p4Br3a3sm5j5iM0= | |||
MIG1MQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOzA5BgNVBAsTMlRlcm1zIG9mIHVzZSBhdCBodHRwczovL3d3dy52ZXJpc2lnbi5jb20vcnBhIChjKTEwMS8wLQYDVQQDEyZWZXJpU2lnbiBDbGFzcyAzIFNlY3VyZSBTZXJ2ZXIgQ0EgLSBHMw== | |||
QZBvapTZFvmYktEPsBYLQQ== | |||
OqQ2rV0ISTc308Z/oQgzFw== | |||
NvEJoRYL2yvAZrAjbDIipQ== | |||
MFAxCzAJBgNVBAYTAkpQMRgwFgYDVQQKEw9TRUNPTSBUcnVzdC5uZXQxJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmljYXRpb24gUm9vdENBMQ== | |||
Ermw0Q== | |||
Ermwxw== | |||
Ermwtg== | |||
MIGFMQswCQYDVQQGEwJVUzEgMB4GA1UECgwXV2VsbHMgRmFyZ28gV2VsbHNTZWN1cmUxHDAaBgNVBAsME1dlbGxzIEZhcmdvIEJhbmsgTkExNjA0BgNVBAMMLVdlbGxzU2VjdXJlIFB1YmxpYyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eQ== | |||
AMs= | |||
AZ0= | |||
Aw== | |||
MIGuMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTE2MDQGA1UEAxMtVVROLVVTRVJGaXJzdC1DbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWls | |||
D/wZ7+m1Mv8SONSEFcs73w== | |||
MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA== | |||
BAAAAAABJpQ0AbA= | |||
MFIxCzAJBgNVBAYTAk5MMRkwFwYDVQQKDBBEaWdpZGVudGl0eSBCLlYuMSgwJgYDVQQDDB9EaWdpZGVudGl0eSBPcmdhbmlzYXRpZSBDQSAtIEcy | |||
Cw== | |||
DA== | |||
MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIzMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu | |||
BAAAAAABJQcQRNU= | |||
BAAAAAABMYnGRuw= | |||
BAAAAAABJQcQQN0= | |||
MFwxCzAJBgNVBAYTAkJFMRUwEwYDVQQLEwxUcnVzdGVkIFJvb3QxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExGzAZBgNVBAMTElRydXN0ZWQgUm9vdCBDQSBHMg== | |||
DAk9hy8DhHSo+aQetvPB/fY= | |||
F7PAjw2k0dTX5escPnyVOBo= | |||
sPNcCSE9Nkg3jy5IN1xe2Q== | |||
Mq0P6o03FDk0B2bnJ+mYPGo= | |||
RVWTeb5EKqE7cy7MUD2oJ3M= | |||
IHj3eiEK3K1Xrpu1uvtBuvE= | |||
bAOrKSMsmA0MLJyAJ5BRsUM= | |||
UV9aaDeNRNtQuXjRYk4Skhg= | |||
Iqpyf/YoGgvHc8HiDAxAI8o= | |||
YUlF+VXF2FWFqCo472HfZlw= | |||
QM1zZ4GZ4gfwpQtUYye3Ne0= | |||
LAVIFm0MWZYH+Sv8Vf+IqkM= | |||
O2S99lVUxErLSk56GvWRv+E= | |||
OYBKgxEHpW/8XGAGAlvJyMA= | |||
UU3AP1SMxmyhBFq7MRFZmf0= | |||
YRJNfMoc12IpmW+Enpv3Pdo= | |||
e/fIfg2Dj2tkYIWVu2r82Cc= | |||
MD4xCzAJBgNVBAYTAlBMMRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBDQQ== | |||
ALxyZmb/WL/wAuUiPK5oK/g= | |||
e7wSpVxmgAS5/ioLi2iBIA== | |||
MGQxCzAJBgNVBAYTAmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGlnaXRhbCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAx | |||
HxT1XSjIpzjMprp9Qu1gYQ== | |||
JD1wxDd8IgmiqX7MyPPg1g== | |||
U+1Y1QpJc0FOR5JdCJ01gQ== | |||
MEoxCzAJBgNVBAYTAlVTMSAwHgYDVQQKExdTZWN1cmVUcnVzdCBDb3Jwb3JhdGlvbjEZMBcGA1UEAxMQU2VjdXJlIEdsb2JhbCBDQQ== | |||
QAAnEQ== | |||
TXxtAQ== | |||
MIGTMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTEbMBkGA1UEAxMSVVROIC0gREFUQUNvcnAgU0dD | |||
Ew1ee9Jq7Q/Dig3ACF4V6Q== | |||
MHcxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEoMCYGA1UEAxMfU3ltYW50ZWMgQ2xhc3MgMyBFViBTU0wgQ0EgLSBHMw== | |||
acI1CFIgmwSFBoU5+ahDgg== | |||
MIGQMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxOzA5BgNVBAMTMkFyaXN0b3RsZSBVbml2ZXJzaXR5IG9mIFRoZXNzYWxvbmlraSBDZW50cmFsIENBIFI0 | |||
EqthLKdUgwI= | |||
MGMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMR4wHAYDVQQDExV0aGF3dGUgRFYgU1NMIENBIC0gRzI= | |||
DYifRdP6aQQ8MLbXZY2f5g== | |||
BUrYjru5px1ym4QUN33TOQ== | |||
CqZgEvHAsnzkT//QV9KjXw== | |||
Rvm2CEw2IC2Mu/ax0A46QQ== | |||
IIxFSyNM6mWtCgTG0IL3Og== | |||
E5I2y6sIonl4a+TmlXc7fw== | |||
GdXz4L1b6FKNCMG9Jz2tjA== | |||
TqfXw+FkhxfVgE9GVMgjWQ== | |||
MHMxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEkMCIGA1UEAxMbU3ltYW50ZWMgQ2xhc3MgMyBEU0EgU1NMIENB | |||
AuhvPsYZfVP6UDsuyjeZ4Q== | |||
MH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 | |||
Qh/SqA== | |||
Qh/O5w== | |||
Qh/SnQ== | |||
Qh/QbQ== | |||
MIGFMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDErMCkGA1UEAxMiQ09NT0RPIFJTQSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ== | |||
AKrMYlJmUUin8FOM/0TJrmk= | |||
MG0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRswGQYDVQQLExJQcmltYXJ5IENsYXNzIDIgQ0ExJjAkBgNVBAMTHUdsb2JhbFNpZ24gUHJpbWFyeSBDbGFzcyAyIENB | |||
BAAAAAABHkSl6Co= | |||
MEExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxUaGF3dGUsIEluYy4xGzAZBgNVBAMTElRoYXd0ZSBTR0MgQ0EgLSBHMg== | |||
cDggUYfwJ3A1YcdoeT6s4A== | |||
e0bEFhI16xx9U1yvlI56rA== | |||
MFgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 | |||
IyIVazG4RE9AERkb+ekH8w== | |||
MEQxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQDExRHZW9UcnVzdCBTU0wgQ0EgLSBHMw== | |||
bx/XHJqcwxDOptxJ2lh5vw== | |||
cpqpXVWPk5AXzGw+zNIcBw== | |||
RUT1Gehd1KKYPfqOlgspoQ== | |||
MFoxCzAJBgNVBAYTAklFMRIwEAYDVQQKEwlCYWx0aW1vcmUxEzARBgNVBAsTCkN5YmVyVHJ1c3QxIjAgBgNVBAMTGUJhbHRpbW9yZSBDeWJlclRydXN0IFJvb3Q= | |||
ByfFnw== | |||
Byeaqw== | |||
Bydr0Q== | |||
ByfHkw== | |||
ByeQ9g== | |||
Bye2Cg== | |||
Bydp0g== | |||
BydiAg== | |||
ByembA== | |||
Byc85g== | |||
BydKkg== | |||
BydeGg== | |||
Bydxog== | |||
BydSYg== | |||
Byc68g== | |||
BydInw== | |||
Bydrxg== | |||
ByfNeA== | |||
Byd5cg== | |||
MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXR2VvVHJ1c3QgRFYgU1NMIENBIC0gRzQ= | |||
H08= | |||
MIGVMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9vdENBIDIwMTE= | |||
GN2Hrh9LtnI= | |||
AQAAAAI= | |||
GN2Hrh9Ltms= | |||
GN2Hrh9LtnM= | |||
GN2Hrh9Ltm4= | |||
FJl6tXgNpSk= | |||
AQAAAAU= | |||
GN2Hrh9LtnA= | |||
FJl6tXgNpSg= | |||
AQAAAAM= | |||
AQAAAAQ= | |||
AQAAAAA= | |||
MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHjAcBgNVBAMTFXRoYXd0ZSBFViBTU0wgQ0EgLSBHMw== | |||
CrTHPEE6AZSfI3jysin2bA== | |||
MIHKMQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAyMDA3IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHNA== | |||
cXXMzbWDHMIdCotb3h64yw== | |||
MGQxCzAJBgNVBAYTAmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGlnaXRhbCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAy | |||
ANX8SnNRxCmsE/GCl5hw+8A= | |||
GpO48aJ8GngtwECqZhm/xA== | |||
AIChpbGNqu4XKp9J70syKEs= | |||
MEcxCzAJBgNVBAYTAkhLMRYwFAYDVQQKEw1Ib25na29uZyBQb3N0MSAwHgYDVQQDExdIb25na29uZyBQb3N0IFJvb3QgQ0EgMQ== | |||
BHk= | |||
BGU= | |||
MHExCzAJBgNVBAYTAkRFMRwwGgYDVQQKExNEZXV0c2NoZSBUZWxla29tIEFHMR8wHQYDVQQLExZULVRlbGVTZWMgVHJ1c3QgQ2VudGVyMSMwIQYDVQQDExpEZXV0c2NoZSBUZWxla29tIFJvb3QgQ0EgMg== | |||
ARQ= | |||
AImQERVYPoeb | |||
AQw= | |||
MIHKMQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMw== | |||
TrKEMhb2PKktH8lHg0AV5A== | |||
Pgyeh2mqlVzqI9hFntRbUQ== | |||
TAA2G+UIK6mqznQKBT77NA== | |||
Er0moq4zwH8ke2pYafIKdg== | |||
U4P1tUoxl/XkztlVHdtdgw== | |||
MGExCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xMjAwBgNVBAMMKVN0YWF0IGRlciBOZWRlcmxhbmRlbiBPcmdhbmlzYXRpZSBDQSAtIEcy | |||
ATE0vw== | |||
ZECgRdZEsns= | |||
LTRcDHabRHU= | |||
MGMxCzAJBgNVBAYTAkJFMRUwEwYDVQQLEwxUcnVzdGVkIFJvb3QxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExIjAgBgNVBAMTGVRydXN0ZWQgUm9vdCBDQSBTSEEyNTYgRzI= | |||
RdHgEmEIjdyRFWDRRlk= | |||
RvCM2iRdkCE82ZOO2dU= | |||
Rea7UUYH3jl33BryPIo= | |||
MGExCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEbMBkGA1UEAxMSR2VvVHJ1c3QgRFYgU1NMIENB | |||
CWhp | |||
MGsxCzAJBgNVBAYTAklUMQ4wDAYDVQQHDAVNaWxhbjEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxJzAlBgNVBAMMHkFjdGFsaXMgQXV0aGVudGljYXRpb24gUm9vdCBDQQ== | |||
OfJBIhFwAdQ= | |||
WJ2qHzWUqTk= | |||
MIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEGA1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp | |||
TA5iEg== | |||
TA6EVg== | |||
TA6BjA== | |||
MDsxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBGTk1ULVJDTQ== | |||
BQ== | |||
Eg== | |||
EQ== | |||
EA== | |||
Bg== | |||
BA== | |||
MEQxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQDExRHZW9UcnVzdCBTU0wgQ0EgLSBHMg== | |||
SdegFrLaFTCsoMAW5ED+zA== | |||
VfTSum25nb65YPlpuhJAvg== | |||
WX89jn8yGZVvoKTD9jDfRQ== | |||
MGcxCzAJBgNVBAYTAkRFMRMwEQYDVQQKEwpGcmF1bmhvZmVyMSEwHwYDVQQLExhGcmF1bmhvZmVyIENvcnBvcmF0ZSBQS0kxIDAeBgNVBAMTF0ZyYXVuaG9mZXIgUm9vdCBDQSAyMDA3 | |||
YR3YYQAAAAAABA== | |||
YR0zGQAAAAAAAw== | |||
MDIxCzAJBgNVBAYTAkNOMQ4wDAYDVQQKEwVDTk5JQzETMBEGA1UEAxMKQ05OSUMgUk9PVA== | |||
STMAjg== | |||
STMAeg== | |||
STMAFQ== | |||
MDcxJDAiBgNVBAMTG1JDUyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEPMA0GA1UEChMGSFQgc3Js | |||
AN9bfYOvlR1t | |||
MIHKMQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAyMDA2IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHNQ== | |||
buROL/l2GuXISv+/JVLkdA== | |||
MDwxGzAZBgNVBAMTEkNvbVNpZ24gU2VjdXJlZCBDQTEQMA4GA1UEChMHQ29tU2lnbjELMAkGA1UEBhMCSUw= | |||
XJ8pGvGNM9RIcLUG9YQjLQ== | |||
CdYL9vSQCEKzBwjO10ud2w== | |||
Hnms0W0OxHSYE2F0XE97sw== | |||
fbsHfUkagQtznc3rtY1uDg== | |||
MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxTaWduIFJvb3QgQ0E= | |||
BAAAAAABFUtaxac= | |||
BAAAAAABIBnBjWg= | |||
BAAAAAABKUXDqA8= | |||
BAAAAAABLF5/Gog= | |||
BAAAAAABHkSl5AQ= | |||
MFExCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MS0wKwYDVQQDEyRGdWppIFhlcm94IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IDI= | |||
AUa47POQ1dN5 | |||
MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBFQ0MgMjU2IGJpdCBFViBDQSAtIEcy | |||
OhrtngFwotLcm4i+z00SjA== | |||
MFgxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRlcmxhbmRlbiBFViBSb290IENB | |||
AJiWmg== | |||
MHcxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEoMCYGA1UEAxMfU3ltYW50ZWMgQ2xhc3MgMyBFViBTU0wgQ0EgLSBHMg== | |||
UVKsEezpGWOVQ4W9esstng== | |||
ME0xCzAJBgNVBAYTAk5MMRkwFwYDVQQKDBBEaWdpZGVudGl0eSBCLlYuMSMwIQYDVQQDDBpEaWdpZGVudGl0eSBCdXJnZXIgQ0EgLSBHMg== | |||
DA== | |||
MFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RDQTEx | |||
Aw== | |||
MFwxCzAJBgNVBAYTAlVTMRkwFwYDVQQKDBBWZXJpem9uIEJ1c2luZXNzMREwDwYDVQQLDAhPbW5pUm9vdDEfMB0GA1UEAwwWVmVyaXpvbiBHbG9iYWwgUm9vdCBDQQ== | |||
A4g= | |||
A4w= | |||
MG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEmMCQGA1UECxMdQWRkVHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsxIjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENBIFJvb3Q= | |||
Os2rnHWYhryvdOXfgan06A== | |||
U3t2Vk8pfxTcaUPpIq0seQ== | |||
RurwlgVMxeP6Zepun0LGZA== | |||
MEAxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlPcGVuVHJ1c3QxHTAbBgNVBAMMFE9wZW5UcnVzdCBSb290IENBIEcx | |||
ESDDtMgFFiaUfKo7HD9qImM7 | |||
ESBrHE7sFC7CQ8EM681xA3CY | |||
MEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDI= | |||
BXA= | |||
EM8bDLBnnoYe4LnWpLIhS4esr3I= | |||
MIGQMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE2MDQGA1UEAxMtQ09NT0RPIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB | |||
UoRGnb96CUDTxIqVry6LBg== | |||
D9UltDPl4XVfSSqQOvdiwQ== | |||
MIGCMQswCQYDVQQGEwJVUzEeMBwGA1UECxMVd3d3LnhyYW1wc2VjdXJpdHkuY29tMSQwIgYDVQQKExtYUmFtcCBTZWN1cml0eSBTZXJ2aWNlcyBJbmMxLTArBgNVBAMTJFhSYW1wIEdsb2JhbCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ== | |||
QZCrvA== | |||
QZCrvQ== | |||
QDi5sQ== | |||
QDi5rw== | |||
QDi5sA== | |||
MD8xCzAJBgNVBAYTAlRXMTAwLgYDVQQKDCdHb3Zlcm5tZW50IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk= | |||
K1ftto7Xcb0YKwQ6uMvOIA== | |||
APdCebq8ZyZr/T0luxlicNw= | |||
MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXR2VvVHJ1c3QgRFYgU1NMIENBIC0gRzI= | |||
XhcFm2g619rt8Sro+a4rHA== | |||
EDQMI0tR4kSntv1O37N10g== | |||
P6G7IYSL2RZxtzTh8I6qPA== | |||
MHExKDAmBgNVBAMTH0dsb2JhbFNpZ24gUm9vdFNpZ24gUGFydG5lcnMgQ0ExHTAbBgNVBAsTFFJvb3RTaWduIFBhcnRuZXJzIENBMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMQswCQYDVQQGEwJCRQ== | |||
BAAAAAABJZbEU4I= | |||
BAAAAAABMrS7t2g= | |||
BAAAAAABFqoAZoI= | |||
BAAAAAABKB/OGqI= | |||
BAAAAAABAJmPjfQ= | |||
BAAAAAABMxvC9bk= | |||
BAAAAAAA+X/GIyk= | |||
BAAAAAABJQdAjik= | |||
BAAAAAABHkSHlSo= | |||
BAAAAAABM6d3Z0s= | |||
BAAAAAABBHYoIFs= | |||
BAAAAAABCUVQ9No= | |||
BAAAAAABA/A35EU= | |||
BAAAAAABHJRKNmk= | |||
BAAAAAABLM/7qjk= | |||
BAAAAAABHkSHki0= | |||
BAAAAAABJ/ufQg8= | |||
BAAAAAABKUXDqxw= | |||
BAAAAAABGMGjftY= | |||
BAAAAAABGMG0Gmw= | |||
BAAAAAABHJRKMpA= | |||
BAAAAAABLF5/HXY= | |||
BAAAAAABHkSHjz8= | |||
BAAAAAABAPpuVh0= | |||
BAAAAAABJ/ufRdg= | |||
MIGVMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTEdMBsGA1UEAxMUVVROLVVTRVJGaXJzdC1PYmplY3Q= | |||
CMNfzETd7XxesS9FOUj9Mg== | |||
a9rf7/BmG9JkKvRuy7J5QA== | |||
Jq6jgeApiT9O4W2Tx/NTRQ== | |||
MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXR2VvVHJ1c3QgRFYgU1NMIENBIC0gRzM= | |||
KjoVfZ3by6+pL8fssyfM6A== | |||
HNo1DR4XCe4mS1iUMsY6Wg== | |||
UW3oKZKTDsrPy/rfwmGNaQ== | |||
YNOos6YJoPC77qwSGCpb7w== | |||
dItWlz2V62Philqj9m6Pbg== | |||
ORFgmCj072NjcJnrxOMfQA== | |||
XLhHIg7vP+tWfRqvuKeAxw== | |||
L79XLVO2ZmtAu7FAG8Wmzw== | |||
MEYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR8wHQYDVQQDExZHZW9UcnVzdCBTSEEyNTYgU1NMIENB | |||
OUvvVscW0/NltofkmV9qmg== | |||
ME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQQ== | |||
Aa8e+91erglSMgsk/mtVaA== | |||
MF8xCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAlUQUlXQU4tQ0ExEDAOBgNVBAsMB1Jvb3QgQ0ExKjAoBgNVBAMMIVRXQ0EgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ== | |||
DL8= | |||
MIG9MQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 | |||
BYOGvG32ukb1Yxj2oKoFyw== | |||
Ai7cBJYqBE0I9NdyoZfRrw== | |||
eR1nUEz8k+nDSBD+bb5uIQ== | |||
fMTRbGCp280pnyE/u53zbA== | |||
VLm3Xe60+1YgPpXCGtXLng== | |||
Aw1SPC56593ZCZ9vCNHKwQ== | |||
Xbevr3ut3Z9m1GuXC9SonA== | |||
MFoxCzAJBgNVBAYTAkRFMRMwEQYDVQQKEwpERk4tVmVyZWluMRAwDgYDVQQLEwdERk4tUEtJMSQwIgYDVQQDExtERk4tVmVyZWluIFBDQSBHbG9iYWwgLSBHMDE= | |||
CeFU2w== | |||
Cbssdw== | |||
Cfk9lw== | |||
F5Bg+EziQQ== | |||
DHmmaw== | |||
F5BhE0zbgQ== | |||
CcHC/g== | |||
Cyr1PA== | |||
F6QlB/yX+A== | |||
Cd/dug== | |||
CcL+EA== | |||
CqL7CA== | |||
CdWFNw== | |||
Cfk9qg== | |||
F5Bg/C8eXg== | |||
CqnbFQ== | |||
CcHC1w== | |||
EAdmaA== | |||
CeagHQ== | |||
F5BhENPfVw== | |||
F5Bg6C237Q== | |||
Cfk9oA== | |||
CskruA== | |||
MEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDM= | |||
CLc= | |||
BwImeaRkSZQLYwFREwKo3R1Jn+8= | |||
CjM= | |||
CSU= | |||
NTgf4iwIfeyJPIomw2dwSXEwtxQ= | |||
Cj0= | |||
SurdtfsuPcXXDpY2LkBpYO6BT7o= | |||
CSY= | |||
B+U= | |||
MFAxJDAiBgNVBAsTG0dsb2JhbFNpZ24gRUNDIFJvb3QgQ0EgLSBSNDETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbg== | |||
RnQ3dg5KdDZs0nyFZk4= | |||
Hwexgn/ZCJicZPcsIyI8zxQ= | |||
RnQ3dYovwvB0D5q2YGY= | |||
MEIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9iYWwgQ0E= | |||
AjqK | |||
Ajp/ | |||
AjpW | |||
Ajp+ | |||
AjqL | |||
MFkxCzAJBgNVBAYTAk5MMR4wHAYDVQQKExVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xKjAoBgNVBAMTIVN0YWF0IGRlciBOZWRlcmxhbmRlbiBPdmVyaGVpZCBDQQ== | |||
ATFEdg== | |||
ATFpsA== | |||
MIGXMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTEfMB0GA1UEAxMWVVROLVVTRVJGaXJzdC1IYXJkd2FyZQ== | |||
Xrr31RF0DoIzMKXS6XtD+g== | |||
EEpERSryZFMagbsNw/WoWQ== | |||
MEExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xGzAZBgNVBAMTEnRoYXd0ZSBTU0wgQ0EgLSBHMg== | |||
FNISyWWTGi5Yco6fGh58/A== | |||
JpUvYJyWjdGmeoH7YcYunw== | |||
MDQxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25h | |||
Ig== | |||
FQ== | |||
Iw== | |||
HA== | |||
Gg== | |||
IA== | |||
Ew== | |||
Aw== | |||
Fw== | |||
Bw== | |||
BA== | |||
MD0xCzAJBgNVBAYTAkZSMREwDwYDVQQKEwhDZXJ0cGx1czEbMBkGA1UEAxMSQ2xhc3MgMiBQcmltYXJ5IENB | |||
ESDu2nhlLPzfx+LYgjlYFP/k | |||
ESBqoILo90ntDW7OTK43MS2F | |||
ESAyW/JX3+hZIp44EAMlXU2b | |||
ESCis569omrbb20yySF39+aE | |||
DjIvBkX+ECVbB/C3i6w2Gg== | |||
ESD9YhzIEOwiOT7Nwip+E1KI | |||
ESCC9oPNcRdPOox+SjWm9dTX | |||
ESCEUbthDurBjJw0/h/FfuNY | |||
ESC8DawWRiAyEMd38UXbfgPR | |||
ESDItX4ruWiLnrlz0rk4/bmz | |||
ESISuBo/wdW2tBztKmHdFCFz | |||
ESByYNtAIfizf2L3NMzCH8zZ | |||
ESByNJZ5TPjg9iZyL6a/h5Zx | |||
ESJJweWBPhoXAaB9c8SHwI4O | |||
ESCyHU+xOECnh9Rf2IvgR8zS | |||
ESCVop+Q4/OBgtf4WJkr01Gh | |||
ESDYXNBhF+dePFjojs7u2vj1 | |||
ESCLRVuhcUZaluIgIVlRJx+O | |||
MF8xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRQwEgYDVQQLEwtQYXJ0bmVycyBDQTEfMB0GA1UEAxMWR2xvYmFsU2lnbiBQYXJ0bmVycyBDQQ== | |||
BAAAAAABHhw1vwc= | |||
BAAAAAABCFiEp9s= | |||
BAAAAAABCfhiO+s= | |||
BAAAAAABF2Tb8Bc= | |||
MG0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRswGQYDVQQLExJQcmltYXJ5IENsYXNzIDMgQ0ExJjAkBgNVBAMTHUdsb2JhbFNpZ24gUHJpbWFyeSBDbGFzcyAzIENB | |||
BAAAAAABHkSl6mw= | |||
MH4xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEvMC0GA1UEAxMmU3ltYW50ZWMgQ2xhc3MgMyBTZWN1cmUgU2VydmVyIENBIC0gRzQ= | |||
AygWP2Fgd2T+iLbmAlKT6g== | |||
LnfcUaXG/pxV2CpXM5+YSg== | |||
TurPPI6eivtNeGYdM0ZWXQ== | |||
d8AtKymQwkOPDBj+hjPzFg== | |||
E77H6yvyFQjO0PcN3x0H+Q== | |||
HZyLf+K70FKc+jomm8DiDw== | |||
UMUwXwT1Z4juyQ/CNTf4mw== | |||
Sx51x7V8pYe8rp7PMP/3qg== | |||
a9/VeyVWrzFD7rM2PEHwQA== | |||
45KI4WIxyXfNrdtdj7C6 | |||
ezdAeCxKH7BFs7vn3byYaw== | |||
PAdKZPiaac2CvPxbOrsHOw== | |||
MHsxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEsMCoGA1UEAxMjU3ltYW50ZWMgQ2xhc3MgMyBFQ0MgMjU2IGJpdCBTU0wgQ0E= | |||
U3SgRR3J+D6575WuCxuXeQ== | |||
MFwxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xLTArBgNVBAMMJFN0YWF0IGRlciBOZWRlcmxhbmRlbiBCdXJnZXIgQ0EgLSBHMg== | |||
ATE3ew== | |||
MDwxHjAcBgNVBAMMFUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU= | |||
a12RvBNhznU= | |||
M0VSOewW3WI= | |||
MIGBMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTElMCMGA1UECxMcUHJpbWFyeSBPYmplY3QgUHVibGlzaGluZyBDQTEwMC4GA1UEAxMnR2xvYmFsU2lnbiBQcmltYXJ5IE9iamVjdCBQdWJsaXNoaW5nIENB | |||
BAAAAAABHkSl7L4= | |||
BAAAAAABI54PryQ= | |||
MGgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEiMCAGA1UEAxMZR2VvVHJ1c3QgRFYgU1NMIFNIQTI1NiBDQQ== | |||
OE4/d+p3YRzzcSl+kmZ8Mw== | |||
ZgwfEqZnBsUNvNuZ77FbQA== | |||
MCgxCzAJBgNVBAYTAkJFMRkwFwYDVQQDExBCZWxnaXVtIFJvb3QgQ0Ey | |||
Nbc68Q8EHza72P/hSWcddw== | |||
LizeWXFWP5pZPI/dLc+PVQ== | |||
VUtahOwvvmJFwlvmGDZP5w== | |||
VBSf+IncsTB3RZS4KFCJPQ== | |||
RFlmmjulj6Ve7PfBi44nnw== | |||
RH7WhshwXRK6f0VfOfjXgQ== | |||
eLumDUO40KwnecZLJxFM2A== | |||
L1fHogsVxmfMBka5q4uzaQ== | |||
frj5jTuqBnQ4fljPvVU3KA== | |||
MFYxCzAJBgNVBAYTAkpQMQ8wDQYDVQQKEwZKSVBERUMxGjAYBgNVBAsTEUpDQU4gU3ViIFJvb3QgQ0EwMRowGAYDVQQDExFKQ0FOIFN1YiBSb290IENBMA== | |||
BAAAAAABL07hUBg= | |||
BAAAAAABK84ykc0= | |||
BAAAAAABL07hTcY= | |||
BAAAAAABK84yjs8= |
@ -0,0 +1 @@ | |||
{"profile-after-change":true,"final-ui-startup":true,"sessionstore-windows-restored":true,"quit-application-granted":true,"quit-application":true,"sessionstore-final-state-write-complete":true,"profile-change-net-teardown":true,"profile-change-teardown":true,"profile-before-change":true} |
@ -0,0 +1,3 @@ | |||
{ | |||
"created": 1494281119791 | |||
} |
@ -0,0 +1 @@ | |||
{"chrome://browser/content/browser.xul":{"navigator-toolbox":{"iconsize":"small"},"main-window":{"sizemode":"normal","screenX":"0","screenY":"18","width":"1362","height":"729"},"PersonalToolbar":{"collapsed":"false","currentset":"personal-bookmarks"},"toolbar-menubar":{"currentset":"menubar-items"},"TabsToolbar":{"currentset":"tabbrowser-tabs,new-tab-button,alltabs-button"},"nav-bar":{"currentset":"urlbar-container,search-container,bookmarks-menu-button,downloads-button,home-button,https-everywhere-button"},"addon-bar":{"currentset":"addonbar-closebutton,status-bar"},"sidebar-title":{"value":""}},"chrome://browser/content/places/places.xul":{"placesContentTags":{"ordinal":"3"},"placesContentUrl":{"ordinal":"5"},"placesContentDate":{"ordinal":"7"},"placesContentVisitCount":{"ordinal":"9"},"placesContentDescription":{"ordinal":"11"},"placesContentDateAdded":{"ordinal":"13"},"placesContentLastModified":{"ordinal":"15"},"places":{"screenX":"683","screenY":"18","width":"679","height":"729","sizemode":"normal"},"place:folder=BOOKMARKS_MENU&excludeItems=1&expandQueries=0":{"open":"true"}}} |
@ -0,0 +1,347 @@ | |||
Some of the images in generic-logos are built from GNOME icons licensed | |||
under the GNU GPL, version 2. Hence, generic-logos is also licensed on | |||
the GNU GPL, version 2. | |||
------------------------------------------------------------------------ | |||
GNU GENERAL PUBLIC LICENSE | |||
Version 2, June 1991 | |||
Copyright (C) 1989, 1991 Free Software Foundation, Inc. | |||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA | |||
Everyone is permitted to copy and distribute verbatim copies | |||
of this license document, but changing it is not allowed. | |||
Preamble | |||
The licenses for most software are designed to take away your | |||
freedom to share and change it. By contrast, the GNU General Public | |||
License is intended to guarantee your freedom to share and change free | |||
software--to make sure the software is free for all its users. This | |||
General Public License applies to most of the Free Software | |||
Foundation's software and to any other program whose authors commit to | |||
using it. (Some other Free Software Foundation software is covered by | |||
the GNU Library General Public License instead.) You can apply it to | |||
your programs, too. | |||
When we speak of free software, we are referring to freedom, not | |||
price. Our General Public Licenses are designed to make sure that you | |||
have the freedom to distribute copies of free software (and charge for | |||
this service if you wish), that you receive source code or can get it | |||
if you want it, that you can change the software or use pieces of it | |||
in new free programs; and that you know you can do these things. | |||
To protect your rights, we need to make restrictions that forbid | |||
anyone to deny you these rights or to ask you to surrender the rights. | |||
These restrictions translate to certain responsibilities for you if you | |||
distribute copies of the software, or if you modify it. | |||
For example, if you distribute copies of such a program, whether | |||
gratis or for a fee, you must give the recipients all the rights that | |||
you have. You must make sure that they, too, receive or can get the | |||
source code. And you must show them these terms so they know their | |||
rights. | |||
We protect your rights with two steps: (1) copyright the software, and | |||
(2) offer you this license which gives you legal permission to copy, | |||
distribute and/or modify the software. | |||
Also, for each author's protection and ours, we want to make certain | |||
that everyone understands that there is no warranty for this free | |||
software. If the software is modified by someone else and passed on, we | |||
want its recipients to know that what they have is not the original, so | |||
that any problems introduced by others will not reflect on the original | |||
authors' reputations. | |||
Finally, any free program is threatened constantly by software | |||
patents. We wish to avoid the danger that redistributors of a free | |||
program will individually obtain patent licenses, in effect making the | |||
program proprietary. To prevent this, we have made it clear that any | |||
patent must be licensed for everyone's free use or not licensed at all. | |||
The precise terms and conditions for copying, distribution and | |||
modification follow. | |||
GNU GENERAL PUBLIC LICENSE | |||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | |||
0. This License applies to any program or other work which contains | |||
a notice placed by the copyright holder saying it may be distributed | |||
under the terms of this General Public License. The "Program", below, | |||
refers to any such program or work, and a "work based on the Program" | |||
means either the Program or any derivative work under copyright law: | |||
that is to say, a work containing the Program or a portion of it, | |||
either verbatim or with modifications and/or translated into another | |||
language. (Hereinafter, translation is included without limitation in | |||
the term "modification".) Each licensee is addressed as "you". | |||
Activities other than copying, distribution and modification are not | |||
covered by this License; they are outside its scope. The act of | |||
running the Program is not restricted, and the output from the Program | |||
is covered only if its contents constitute a work based on the | |||
Program (independent of having been made by running the Program). | |||
Whether that is true depends on what the Program does. | |||
1. You may copy and distribute verbatim copies of the Program's | |||
source code as you receive it, in any medium, provided that you | |||
conspicuously and appropriately publish on each copy an appropriate | |||
copyright notice and disclaimer of warranty; keep intact all the | |||
notices that refer to this License and to the absence of any warranty; | |||
and give any other recipients of the Program a copy of this License | |||
along with the Program. | |||
You may charge a fee for the physical act of transferring a copy, and | |||
you may at your option offer warranty protection in exchange for a fee. | |||
2. You may modify your copy or copies of the Program or any portion | |||
of it, thus forming a work based on the Program, and copy and | |||
distribute such modifications or work under the terms of Section 1 | |||
above, provided that you also meet all of these conditions: | |||
a) You must cause the modified files to carry prominent notices | |||
stating that you changed the files and the date of any change. | |||
b) You must cause any work that you distribute or publish, that in | |||
whole or in part contains or is derived from the Program or any | |||
part thereof, to be licensed as a whole at no charge to all third | |||
parties under the terms of this License. | |||
c) If the modified program normally reads commands interactively | |||
when run, you must cause it, when started running for such | |||
interactive use in the most ordinary way, to print or display an | |||
announcement including an appropriate copyright notice and a | |||
notice that there is no warranty (or else, saying that you provide | |||
a warranty) and that users may redistribute the program under | |||
these conditions, and telling the user how to view a copy of this | |||
License. (Exception: if the Program itself is interactive but | |||
does not normally print such an announcement, your work based on | |||
the Program is not required to print an announcement.) | |||
These requirements apply to the modified work as a whole. If | |||
identifiable sections of that work are not derived from the Program, | |||
and can be reasonably considered independent and separate works in | |||
themselves, then this License, and its terms, do not apply to those | |||
sections when you distribute them as separate works. But when you | |||
distribute the same sections as part of a whole which is a work based | |||
on the Program, the distribution of the whole must be on the terms of | |||
this License, whose permissions for other licensees extend to the | |||
entire whole, and thus to each and every part regardless of who wrote it. | |||
Thus, it is not the intent of this section to claim rights or contest | |||
your rights to work written entirely by you; rather, the intent is to | |||
exercise the right to control the distribution of derivative or | |||
collective works based on the Program. | |||
In addition, mere aggregation of another work not based on the Program | |||
with the Program (or with a work based on the Program) on a volume of | |||
a storage or distribution medium does not bring the other work under | |||
the scope of this License. | |||
3. You may copy and distribute the Program (or a work based on it, | |||
under Section 2) in object code or executable form under the terms of | |||
Sections 1 and 2 above provided that you also do one of the following: | |||
a) Accompany it with the complete corresponding machine-readable | |||
source code, which must be distributed under the terms of Sections | |||
1 and 2 above on a medium customarily used for software interchange; or, | |||
b) Accompany it with a written offer, valid for at least three | |||
years, to give any third party, for a charge no more than your | |||
cost of physically performing source distribution, a complete | |||
machine-readable copy of the corresponding source code, to be | |||
distributed under the terms of Sections 1 and 2 above on a medium | |||
customarily used for software interchange; or, | |||
c) Accompany it with the information you received as to the offer | |||
to distribute corresponding source code. (This alternative is | |||
allowed only for noncommercial distribution and only if you | |||
received the program in object code or executable form with such | |||
an offer, in accord with Subsection b above.) | |||
The source code for a work means the preferred form of the work for | |||
making modifications to it. For an executable work, complete source | |||
code means all the source code for all modules it contains, plus any | |||
associated interface definition files, plus the scripts used to | |||
control compilation and installation of the executable. However, as a | |||
special exception, the source code distributed need not include | |||
anything that is normally distributed (in either source or binary | |||
form) with the major components (compiler, kernel, and so on) of the | |||
operating system on which the executable runs, unless that component | |||
itself accompanies the executable. | |||
If distribution of executable or object code is made by offering | |||
access to copy from a designated place, then offering equivalent | |||
access to copy the source code from the same place counts as | |||
distribution of the source code, even though third parties are not | |||
compelled to copy the source along with the object code. | |||
4. You may not copy, modify, sublicense, or distribute the Program | |||
except as expressly provided under this License. Any attempt | |||
otherwise to copy, modify, sublicense or distribute the Program is | |||
void, and will automatically terminate your rights under this License. | |||
However, parties who have received copies, or rights, from you under | |||
this License will not have their licenses terminated so long as such | |||
parties remain in full compliance. | |||
5. You are not required to accept this License, since you have not | |||
signed it. However, nothing else grants you permission to modify or | |||
distribute the Program or its derivative works. These actions are | |||
prohibited by law if you do not accept this License. Therefore, by | |||
modifying or distributing the Program (or any work based on the | |||
Program), you indicate your acceptance of this License to do so, and | |||
all its terms and conditions for copying, distributing or modifying | |||
the Program or works based on it. | |||
6. Each time you redistribute the Program (or any work based on the | |||
Program), the recipient automatically receives a license from the | |||
original licensor to copy, distribute or modify the Program subject to | |||
these terms and conditions. You may not impose any further | |||
restrictions on the recipients' exercise of the rights granted herein. | |||
You are not responsible for enforcing compliance by third parties to | |||
this License. | |||
7. If, as a consequence of a court judgment or allegation of patent | |||
infringement or for any other reason (not limited to patent issues), | |||
conditions are imposed on you (whether by court order, agreement or | |||
otherwise) that contradict the conditions of this License, they do not | |||
excuse you from the conditions of this License. If you cannot | |||
distribute so as to satisfy simultaneously your obligations under this | |||
License and any other pertinent obligations, then as a consequence you | |||
may not distribute the Program at all. For example, if a patent | |||
license would not permit royalty-free redistribution of the Program by | |||
all those who receive copies directly or indirectly through you, then | |||
the only way you could satisfy both it and this License would be to | |||
refrain entirely from distribution of the Program. | |||
If any portion of this section is held invalid or unenforceable under | |||
any particular circumstance, the balance of the section is intended to | |||
apply and the section as a whole is intended to apply in other | |||
circumstances. | |||
It is not the purpose of this section to induce you to infringe any | |||
patents or other property right claims or to contest validity of any | |||
such claims; this section has the sole purpose of protecting the | |||
integrity of the free software distribution system, which is | |||
implemented by public license practices. Many people have made | |||
generous contributions to the wide range of software distributed | |||
through that system in reliance on consistent application of that | |||
system; it is up to the author/donor to decide if he or she is willing | |||
to distribute software through any other system and a licensee cannot | |||
impose that choice. | |||
This section is intended to make thoroughly clear what is believed to | |||
be a consequence of the rest of this License. | |||
8. If the distribution and/or use of the Program is restricted in | |||
certain countries either by patents or by copyrighted interfaces, the | |||
original copyright holder who places the Program under this License | |||
may add an explicit geographical distribution limitation excluding | |||
those countries, so that distribution is permitted only in or among | |||
countries not thus excluded. In such case, this License incorporates | |||
the limitation as if written in the body of this License. | |||
9. The Free Software Foundation may publish revised and/or new versions | |||
of the General Public License from time to time. Such new versions will | |||
be similar in spirit to the present version, but may differ in detail to | |||
address new problems or concerns. | |||
Each version is given a distinguishing version number. If the Program | |||
specifies a version number of this License which applies to it and "any | |||
later version", you have the option of following the terms and conditions | |||
either of that version or of any later version published by the Free | |||
Software Foundation. If the Program does not specify a version number of | |||
this License, you may choose any version ever published by the Free Software | |||
Foundation. | |||
10. If you wish to incorporate parts of the Program into other free | |||
programs whose distribution conditions are different, write to the author | |||
to ask for permission. For software which is copyrighted by the Free | |||
Software Foundation, write to the Free Software Foundation; we sometimes | |||
make exceptions for this. Our decision will be guided by the two goals | |||
of preserving the free status of all derivatives of our free software and | |||
of promoting the sharing and reuse of software generally. | |||
NO WARRANTY | |||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY | |||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN | |||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES | |||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED | |||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS | |||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE | |||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, | |||
REPAIR OR CORRECTION. | |||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING | |||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR | |||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, | |||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING | |||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED | |||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY | |||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER | |||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE | |||
POSSIBILITY OF SUCH DAMAGES. | |||
END OF TERMS AND CONDITIONS | |||
How to Apply These Terms to Your New Programs | |||
If you develop a new program, and you want it to be of the greatest | |||
possible use to the public, the best way to achieve this is to make it | |||
free software which everyone can redistribute and change under these terms. | |||
To do so, attach the following notices to the program. It is safest | |||
to attach them to the start of each source file to most effectively | |||
convey the exclusion of warranty; and each file should have at least | |||
the "copyright" line and a pointer to where the full notice is found. | |||
<one line to give the program's name and a brief idea of what it does.> | |||
Copyright (C) <year> <name of author> | |||
This program is free software; you can redistribute it and/or modify | |||
it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation; either version 2 of the License, or | |||
(at your option) any later version. | |||
This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | |||
along with this program; if not, write to the Free Software | |||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA | |||
Also add information on how to contact you by electronic and paper mail. | |||
If the program is interactive, make it output a short notice like this | |||
when it starts in an interactive mode: | |||
Gnomovision version 69, Copyright (C) year name of author | |||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. | |||
This is free software, and you are welcome to redistribute it | |||
under certain conditions; type `show c' for details. | |||
The hypothetical commands `show w' and `show c' should show the appropriate | |||
parts of the General Public License. Of course, the commands you use may | |||
be called something other than `show w' and `show c'; they could even be | |||
mouse-clicks or menu items--whatever suits your program. | |||
You should also get your employer (if you work as a programmer) or your | |||
school, if any, to sign a "copyright disclaimer" for the program, if | |||
necessary. Here is a sample; alter the names: | |||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program | |||
`Gnomovision' (which makes passes at compilers) written by James Hacker. | |||
<signature of Ty Coon>, 1 April 1989 | |||
Ty Coon, President of Vice | |||
This General Public License does not permit incorporating your program into | |||
proprietary programs. If your program is a subroutine library, you may | |||
consider it more useful to permit linking proprietary applications with the | |||
library. If this is what you want to do, use the GNU Library General | |||
Public License instead of this License. |
@ -0,0 +1,10 @@ | |||
From http://www.kde.org/stuff/clipart.php: | |||
Trademark License | |||
Copying of the KDE Logo is subject to the LGPL copyright license. | |||
Trading and branding with the KDE Logo is subject to our trademark licence: | |||
1. The KDE logo can be used freely as long as it is not used to refer to | |||
products other than KDE itself. | |||
2. There is no formal procedure for using the KDE logo as long as you stay | |||
within the above guideline for usage. | |||
3. Whilst not required you should acknowledge the KDE e.V.s rights by mentioning | |||
"KDE, K Desktop Environment and the KDE Logo are trademarks of KDE e.V." |
@ -0,0 +1,26 @@ | |||
NAME = TigerOS | |||
XML = backgrounds/desktop-backgrounds-fedora.xml | |||
all: bootloader/fedora.icns | |||
VERSION := $(shell awk '/Version:/ { print $$2 }' $(NAME).spec) | |||
RELEASE := $(shell awk '/Release:/ { print $$2 }' $(NAME).spec | sed 's|%{?dist}||g') | |||
TAG=$(NAME)-$(VERSION)-$(RELEASE) | |||
bootloader/fedora.icns: pixmaps/fedora-logo-small.png | |||
png2icns bootloader/fedora.icns pixmaps/fedora-logo-small.png | |||
tag: | |||
@git tag -a -f -m "Tag as $(TAG)" -f $(TAG) | |||
@echo "Tagged as $(TAG)" | |||
archive: tag | |||
@git archive --format=tar --prefix=$(NAME)-$(VERSION)/ HEAD > $(NAME)-$(VERSION).tar | |||
@bzip2 -f $(NAME)-$(VERSION).tar | |||
@echo "$(NAME)-$(VERSION).tar.bz2 created" | |||
@sha1sum $(NAME)-$(VERSION).tar.bz2 > $(NAME)-$(VERSION).sha1sum | |||
@scp $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION).sha1sum fedorahosted.org:$(NAME) || scp $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION).sha1sum fedorahosted.org:/srv/web/releases/g/e/generic-logos/ | |||
@echo "Everything done, files uploaded to Fedorahosted.org" | |||
clean: | |||
rm -f *~ *bz2 bootloader/fedora.icns |
@ -0,0 +1,15 @@ | |||
generic-logos - A replacement for fedora-logos | |||
============================================== | |||
The generic-logos package contains various image files which can be | |||
used by the bootloader, anaconda, and other related tools. It can | |||
be used as a replacement for the fedora-logos package, if you are | |||
unable for any reason to abide by the trademark restrictions on the | |||
fedora-logos package. | |||
Homepage: https://fedorahosted.org/generic-logos/ | |||
Source: https://fedorahosted.org/releases/g/e/generic-logos/ | |||
CVS: https://fedorahosted.org/generic-logos/browser | |||
generic-logos is licensed under GPLv2 and LGPl, for more details check | |||
COPYING and COPYING-kde-logo. |
@ -0,0 +1,32 @@ | |||
ANACONDADATADIR = /usr/share/anaconda | |||
ANACONDABOOTDIR = $(ANACONDADATADIR)/boot | |||
all: | |||
@echo "Nothing to do." | |||
splash.lss: syslinux-splash.png | |||
./splashtolss.sh syslinux-splash.png splash.lss | |||
install: | |||
@if [ "$(DESTDIR)" = "" ]; then \ | |||
echo " "; \ | |||
echo "ERROR: A destdir is required"; \ | |||
exit 1; \ | |||
fi | |||
mkdir -p $(DESTDIR)/$(ANACONDADATADIR) | |||
mkdir -p $(DESTDIR)/$(ANACONDABOOTDIR) | |||
mkdir -p $(DESTDIR)/$(ANACONDADATADIR)/pixmaps | |||
install -m 644 anaconda_header.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps | |||
install -m 644 progress_first.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps | |||
install -m 644 splash.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps | |||
install -m 644 syslinux-splash.png $(DESTDIR)/$(ANACONDABOOTDIR)/syslinux-splash.png | |||
install -m 644 syslinux-vesa-splash.png $(DESTDIR)/$(ANACONDABOOTDIR)/splash.png | |||
install -m 644 sidebar-logo.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps | |||
install -m 644 sidebar-bg.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps | |||
install -m 644 topbar-bg.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps | |||
clean: | |||
rm -f splash.lss |
@ -0,0 +1,19 @@ | |||
These files are used by anaconda during the installation process. A | |||
basic description/specification for them is as follows: | |||
* anaconda_header.png: This is strip header at the top of | |||
the screen during the install. 800x58. | |||
* progress_first.png: First graphic displayed during package | |||
installation. If there are no rnotes, this is displayed the entire | |||
time. 500x325 | |||
* progress_first-lowres.png: Lowres version of progress_first.png. 350x225 | |||
* splash.png: Splash screen shown on the "Welcome to ..." screen. | |||
400x420 | |||
* syslinux-splash.png: Splash screen used at the boot prompt with | |||
syslinux/isolinux. This gets transformed into the syslinux specific | |||
format. 640x300. This uses a 16 color palette (should be an indexed png). | |||
You should ensure that 0 = #000000, 1 = #ffffff, 7 = #cdcfd5, 15 = #c90000. | |||
Alternately, you can use 12 colors and have them be any that you want. | |||
* syslinux-vesa-splash.jpg: Splash screen used at the boot prompt when | |||
using the menu. It should be 640x480 RGB. Can just be a conversion | |||
of the grub splash and work well. |
@ -0,0 +1,8 @@ | |||
splash.xpm.gz: the splashscreen used by grub. | |||
Format requirements: | |||
640x480, 15 colors, XPM format. Note that the grub text is defined to be | |||
white, highlighted in black, so keep contrast in mind. | |||
grub does not use descriptive color names; if using ppmtoxpm, pass -hexonly. |
@ -0,0 +1,437 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<!-- Created with Inkscape (http://www.inkscape.org/) --> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
width="220" | |||
height="254" | |||
viewBox="0 0 206.25 238.12501" | |||
id="svg2" | |||
version="1.1" | |||
inkscape:version="0.92.1 r" | |||
sodipodi:docname="fedora-logo-sprite.svg" | |||
inkscape:export-filename="/home/regina/Documents/TigerOS/design/fedora-logo-small.png" | |||
inkscape:export-xdpi="34.534557" | |||
inkscape:export-ydpi="34.534557"> | |||
<defs | |||
id="defs4" /> | |||
<sodipodi:namedview | |||
id="base" | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1.0" | |||
inkscape:pageopacity="0.0" | |||
inkscape:pageshadow="2" | |||
inkscape:zoom="2.2160599" | |||
inkscape:cx="94.045346" | |||
inkscape:cy="185.1185" | |||
inkscape:document-units="px" | |||
inkscape:current-layer="layer9" | |||
showgrid="false" | |||
inkscape:window-width="1366" | |||
inkscape:window-height="710" | |||
inkscape:window-x="0" | |||
inkscape:window-y="26" | |||
inkscape:window-maximized="1" | |||
showguides="false" | |||
inkscape:guide-bbox="true" | |||
units="px"> | |||
<sodipodi:guide | |||
position="275.52448,750.34967" | |||
orientation="0,1" | |||
id="guide4311" | |||
inkscape:locked="false" /> | |||
<sodipodi:guide | |||
position="218.88112,713.98603" | |||
orientation="1,0" | |||
id="guide4313" | |||
inkscape:locked="false" /> | |||
<sodipodi:guide | |||
position="552.44756,630.76924" | |||
orientation="1,0" | |||
id="guide4315" | |||
inkscape:locked="false" /> | |||
<sodipodi:guide | |||
position="383.21679,594.40561" | |||
orientation="1,0" | |||
id="guide4477" | |||
inkscape:locked="false" /> | |||
<sodipodi:guide | |||
position="349.65035,557.34267" | |||
orientation="1,0" | |||
id="guide4480" | |||
inkscape:locked="false" /> | |||
<sodipodi:guide | |||
position="415.38462,570.62938" | |||
orientation="1,0" | |||
id="guide4482" | |||
inkscape:locked="false" /> | |||
<sodipodi:guide | |||
position="415.38462,513.54437" | |||
orientation="0,1" | |||
id="guide4503" | |||
inkscape:locked="false" /> | |||
<sodipodi:guide | |||
position="445.1188,610.18666" | |||
orientation="1,0" | |||
id="guide95" | |||
inkscape:locked="false" /> | |||
<sodipodi:guide | |||
position="319.55439,610.89208" | |||
orientation="1,0" | |||
id="guide97" | |||
inkscape:locked="false" /> | |||
</sodipodi:namedview> | |||
<metadata | |||
id="metadata7"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
<dc:title></dc:title> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<g | |||
style="display:none" | |||
inkscape:label="feet1Behind" | |||
id="g3731" | |||
inkscape:groupmode="layer" | |||
transform="translate(0,-814.23715)"> | |||
<ellipse | |||
ry="16.083916" | |||
rx="35.664333" | |||
cy="615.29926" | |||
cx="451.04895" | |||
id="ellipse3727" | |||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1" /> | |||
<ellipse | |||
ry="16.083916" | |||
rx="35.664333" | |||
cy="613.9007" | |||
cx="315.38461" | |||
id="ellipse3729" | |||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1" /> | |||
</g> | |||
<g | |||
inkscape:groupmode="layer" | |||
id="layer5" | |||
inkscape:label="balckbase" | |||
style="display:inline" | |||
transform="translate(0,-814.23715)"> | |||
<ellipse | |||
style="display:inline;opacity:1;fill:#f36e21;fill-opacity:1;stroke:#f36e21;stroke-width:1.09862876;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |||
id="path3336" | |||
cx="102.5891" | |||
cy="942.31134" | |||
rx="100.30097" | |||
ry="101.7213" /> | |||
</g> | |||
<g | |||
inkscape:groupmode="layer" | |||
id="layer2" | |||
inkscape:label="outline" | |||
style="display:inline" | |||
transform="translate(0,-814.23715)"> | |||
<ellipse | |||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#f36e21;stroke-width:1.05299199;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |||
id="path3370" | |||
cx="103.01194" | |||
cy="942.48328" | |||
rx="74.285957" | |||
ry="75.418747" /> | |||
<path | |||
style="fill:#f36e21;fill-opacity:1;fill-rule:evenodd;stroke:#f36e21;stroke-width:0.59756684px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 104.53404,865.48582 c -7.577705,0.0749 -13.358069,2.46089 -20.203189,3.47783 10.757745,-1.51829 16.681809,5.87614 17.678809,7.47892 3.07634,-2.7566 9.34682,-7.94561 21.51902,-6.68575 -7.7836,-3.29102 -13.80989,-4.3222 -18.99464,-4.271 z m -2.52438,10.95675 c -0.0185,0.0166 -0.0441,0.0375 -0.0623,0.054 0.26849,0.3808 0.28426,0.30289 0.0623,-0.054 z" | |||
id="path3372" | |||
inkscape:connector-curvature="0" /> | |||
<path | |||
style="fill:#000000;stroke:#000000;stroke-width:0.56686515px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 114.95708,899.48087 c 6.47638,-10.59807 7.24872,-6.04216 12.68509,0 -6.57421,-3.72902 -5.0613,-5.71713 -12.68509,0 z" | |||
id="path3739" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
<path | |||
style="display:inline;fill:#000000;stroke:#000000;stroke-width:0.56686515px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 76.917367,899.10582 c 6.476381,-10.59808 7.248725,-6.04216 12.685099,0 -6.574217,-3.72903 -5.061305,-5.71715 -12.685099,0 z" | |||
id="path3739-3" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
</g> | |||
<g | |||
inkscape:groupmode="layer" | |||
id="layer6" | |||
inkscape:label="eyes" | |||
style="display:none" | |||
transform="translate(0,-814.23715)"> | |||
<ellipse | |||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |||
id="path3469" | |||
cx="352.44754" | |||
cy="306.20834" | |||
rx="3.4965036" | |||
ry="6.9930072" /> | |||
<ellipse | |||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |||
id="path3469-6" | |||
cx="415.38461" | |||
cy="306.90765" | |||
rx="3.4965036" | |||
ry="6.9930072" /> | |||
</g> | |||
<g | |||
style="display:inline" | |||
inkscape:label="eyes2" | |||
id="g3737" | |||
inkscape:groupmode="layer" | |||
transform="translate(0,-814.23715)" /> | |||
<g | |||
inkscape:groupmode="layer" | |||
id="layer7" | |||
inkscape:label="nose" | |||
style="opacity:1" | |||
transform="translate(0,-814.23715)"> | |||
<path | |||
style="fill:#ffd42a;fill-rule:evenodd;stroke:#ffd42a;stroke-width:0.60465616;stroke-opacity:1" | |||
d="m 85.252817,922.10262 c 10.220015,-0.7773 13.545023,-2.9336 18.459113,-4.77208 3.65953,2.17327 11.20001,4.18046 18.20243,5.23943 -5.16245,5.77473 -10.85793,11.01642 -19.3656,13.44593 -8.8147,-3.8754 -12.836644,-8.94902 -17.295943,-13.91328 z" | |||
id="path3489" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccccc" /> | |||
</g> | |||
<g | |||
inkscape:groupmode="layer" | |||
id="layer9" | |||
inkscape:label="feet1" | |||
style="display:inline" | |||
transform="translate(0,-814.23715)"> | |||
<ellipse | |||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.60465616;stroke-opacity:1" | |||
id="path4484" | |||
cx="141.9129" | |||
cy="1040.4097" | |||
rx="21.564659" | |||
ry="9.7252388" /> | |||
<ellipse | |||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.60465616;stroke-opacity:1" | |||
id="path4484-3" | |||
cx="59.882633" | |||
cy="1040.6978" | |||
rx="21.564659" | |||
ry="9.7252388" /> | |||
</g> | |||
<g | |||
style="display:none" | |||
inkscape:label="feet2" | |||
id="g4528" | |||
inkscape:groupmode="layer" | |||
transform="translate(0,-814.23715)"> | |||
<path | |||
id="ellipse4530" | |||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1" | |||
sodipodi:type="arc" | |||
sodipodi:cx="451.74826" | |||
sodipodi:cy="-620.1972" | |||
sodipodi:rx="35.664333" | |||
sodipodi:ry="16.083916" | |||
sodipodi:start="0" | |||
sodipodi:end="3.1415927" | |||
d="m 487.41259,-620.1972 a 35.664333,16.083916 0 0 1 -17.83216,13.92908 35.664333,16.083916 0 0 1 -35.66434,-1e-5 35.664333,16.083916 0 0 1 -17.83216,-13.92908 l 35.66433,1e-5 z" | |||
transform="scale(1,-1)" /> | |||
<path | |||
id="ellipse4530-0" | |||
style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1" | |||
sodipodi:type="arc" | |||
sodipodi:cx="315.38461" | |||
sodipodi:cy="-619.84613" | |||
sodipodi:rx="35.664333" | |||
sodipodi:ry="16.083916" | |||
sodipodi:start="0" | |||
sodipodi:end="3.1415927" | |||
d="m 351.04895,-619.84613 a 35.664333,16.083916 0 0 1 -17.83217,13.92908 35.664333,16.083916 0 0 1 -35.66433,0 35.664333,16.083916 0 0 1 -17.83217,-13.92908 l 35.66433,0 z" | |||
transform="scale(1,-1)" /> | |||
</g> | |||
<g | |||
inkscape:groupmode="layer" | |||
id="layer3" | |||
inkscape:label="flippers1" | |||
style="display:none" | |||
transform="translate(0,-814.23715)"> | |||
<ellipse | |||
style="opacity:1;fill:#f36e21;fill-opacity:1;stroke:#f36e21;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |||
id="path3338" | |||
cx="516.49341" | |||
cy="415.79843" | |||
rx="43.053001" | |||
ry="111.75468" /> | |||
<ellipse | |||
style="opacity:1;fill:#f36e21;fill-opacity:1;stroke:#f36e21;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |||
id="path3338-3" | |||
cx="256.93317" | |||
cy="416.89801" | |||
rx="43.053001" | |||
ry="111.75468" /> | |||
</g> | |||
<g | |||
style="display:inline" | |||
inkscape:label="flippers2" | |||
id="g4449" | |||
inkscape:groupmode="layer" | |||
transform="translate(0,-814.23715)"> | |||
<ellipse | |||
ry="63.051125" | |||
rx="30.125235" | |||
cy="941.27069" | |||
cx="169.96751" | |||
id="ellipse4451" | |||
style="opacity:1;fill:#f36e21;fill-opacity:1;stroke:#f36e21;stroke-width:1.25662899;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||
<ellipse | |||
ry="59.87661" | |||
rx="29.296667" | |||
cy="942.48816" | |||
cx="34.252544" | |||
id="ellipse4451-3" | |||
style="display:inline;opacity:1;fill:#f36e21;fill-opacity:1;stroke:#f36e21;stroke-width:1.20762777;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||
<path | |||
sodipodi:nodetypes="ccc" | |||
inkscape:connector-curvature="0" | |||
id="path4467-6" | |||
d="m 57.75521,914.04632 c -19.104336,5.31195 -9.78356,8.53126 -9.78356,8.53126 -85.642719,-22.67856 -11.212902,-7.23031 9.78356,-8.53126 z" | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.18429908px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
<path | |||
sodipodi:nodetypes="ccc" | |||
inkscape:connector-curvature="0" | |||
id="path4469-7" | |||
d="m 54.247073,955.76444 c -19.104348,5.31205 -9.78356,8.53131 -9.78356,8.53131 -85.642724,-22.67857 -11.212902,-7.23027 9.78356,-8.53131 z" | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.18429908px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
<path | |||
sodipodi:nodetypes="ccc" | |||
inkscape:connector-curvature="0" | |||
id="path4471-5" | |||
d="m 54.247073,941.16237 c -19.104348,5.31194 -9.78356,8.53131 -9.78356,8.53131 -85.642724,-22.67857 -11.212902,-7.23027 9.78356,-8.53131 z" | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.18429908px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
<path | |||
sodipodi:nodetypes="ccc" | |||
inkscape:connector-curvature="0" | |||
id="path4473-3" | |||
d="m 55.632747,927.74426 c -19.104336,5.312 -9.78356,8.53126 -9.78356,8.53126 -85.64272,-22.67855 -11.212902,-7.23031 9.78356,-8.53126 z" | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.18429908px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
<path | |||
sodipodi:nodetypes="ccc" | |||
inkscape:connector-curvature="0" | |||
id="path4475-5" | |||
d="m 55.632759,970.76126 c -19.104348,5.31194 -9.78356,8.53119 -9.78356,8.53119 -85.642719,-22.67845 -11.212902,-7.23027 9.78356,-8.53119 z" | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.18429908px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
</g> | |||
<g | |||
inkscape:groupmode="layer" | |||
id="layer8" | |||
inkscape:label="stripes1" | |||
style="display:none" | |||
transform="translate(0,-814.23715)"> | |||
<path | |||
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.30186254px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 293.5897,372.97555 c -28.9237,9.41249 -14.81217,15.11693 -14.81217,15.11693 -129.66181,-40.18516 -16.97617,-12.8117 14.81217,-15.11693 z" | |||
id="path4318" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
<path | |||
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.30186254px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 289.67702,448.99581 c -28.9237,9.41249 -14.81217,15.11693 -14.81217,15.11693 -129.66181,-40.18516 -16.97617,-12.8117 14.81217,-15.11693 z" | |||
id="path4318-3" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
<path | |||
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.30186254px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 288.27842,421.02378 c -28.9237,9.41249 -14.81217,15.11693 -14.81217,15.11693 -129.66181,-40.18516 -16.97617,-12.8117 14.81217,-15.11693 z" | |||
id="path4318-3-6" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
<path | |||
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.30186254px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 290.37632,397.24756 c -28.9237,9.41249 -14.81217,15.11693 -14.81217,15.11693 -129.66181,-40.18516 -16.97617,-12.8117 14.81217,-15.11693 z" | |||
id="path4318-3-6-0" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
<path | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.30186254px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 293.87283,474.86993 c -28.9237,9.41249 -14.81217,15.11693 -14.81217,15.11693 -129.66181,-40.18516 -16.97617,-12.8117 14.81217,-15.11693 z" | |||
id="path4318-3-0" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
<path | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.30186254px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 478.43827,360.98569 c 28.9237,9.41249 14.81217,15.11693 14.81217,15.11693 129.66181,-40.18516 16.97617,-12.8117 -14.81217,-15.11693 z" | |||
id="path4318-6" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
<path | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.30186254px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 483.74955,434.90805 c 28.9237,9.41249 14.81217,15.11693 14.81217,15.11693 129.66181,-40.18516 16.97617,-12.8117 -14.81217,-15.11693 z" | |||
id="path4318-3-1" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
<path | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.30186254px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 483.74955,409.03392 c 28.9237,9.41249 14.81217,15.11693 14.81217,15.11693 129.66181,-40.18516 16.97617,-12.8117 -14.81217,-15.11693 z" | |||
id="path4318-3-6-4" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
<path | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.30186254px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 481.65165,385.2577 c 28.9237,9.41249 14.81217,15.11693 14.81217,15.11693 129.66181,-40.18516 16.97617,-12.8117 -14.81217,-15.11693 z" | |||
id="path4318-3-6-0-2" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
<path | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.30186254px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |||
d="m 481.65164,461.48146 c 28.9237,9.41249 14.81217,15.11693 14.81217,15.11693 129.66181,-40.18515 16.97617,-12.8117 -14.81217,-15.11693 z" | |||
id="path4318-3-0-8" | |||
inkscape:connector-curvature="0" | |||
sodipodi:nodetypes="ccc" /> | |||
</g> | |||
<g | |||
style="display:inline" | |||
inkscape:label="stripes2" | |||
id="g4455" | |||
inkscape:groupmode="layer" | |||
transform="translate(0,-814.23715)"> | |||
<path | |||
sodipodi:nodetypes="ccc" | |||
inkscape:connector-curvature="0" | |||
id="path4467" | |||
d="m 147.95229,912.89629 c 19.10435,5.31194 9.78356,8.53126 9.78356,8.53126 85.64272,-22.67855 11.2129,-7.23031 -9.78356,-8.53126 z" | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.18429908px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
<path | |||
sodipodi:nodetypes="ccc" | |||
inkscape:connector-curvature="0" | |||
id="path4469" | |||
d="m 151.46044,954.61441 c 19.10435,5.31205 9.78356,8.53131 9.78356,8.53131 85.64271,-22.67857 11.2129,-7.23027 -9.78356,-8.53131 z" | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.18429908px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
<path | |||
sodipodi:nodetypes="ccc" | |||
inkscape:connector-curvature="0" | |||
id="path4471" | |||
d="m 151.46044,940.01234 c 19.10435,5.31194 9.78356,8.53131 9.78356,8.53131 85.64271,-22.67857 11.2129,-7.23027 -9.78356,-8.53131 z" | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.18429908px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
<path | |||
sodipodi:nodetypes="ccc" | |||
inkscape:connector-curvature="0" | |||
id="path4473" | |||
d="m 150.07475,926.59423 c 19.10435,5.312 9.78357,8.53126 9.78357,8.53126 85.64271,-22.67855 11.21289,-7.23031 -9.78357,-8.53126 z" | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.18429908px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
<path | |||
sodipodi:nodetypes="ccc" | |||
inkscape:connector-curvature="0" | |||
id="path4475" | |||
d="m 150.07475,969.61123 c 19.10434,5.31194 9.78356,8.53119 9.78356,8.53119 85.64271,-22.67845 11.2129,-7.23027 -9.78356,-8.53119 z" | |||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.18429908px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
</g> | |||
</svg> |