Changeset - a2f38653fb02
[Not reviewed]
0 55 0
Ben Sturmfels (bsturmfels) - 2 months ago 2024-07-22 08:39:05
ben@sturm.com.au
Fix trailing whitespace and missing end-of-file newline
55 files changed with 164 insertions and 187 deletions:
0 comments (0 inline, 0 general)
conservancy/blog/admin.py
Show inline comments
 
from django.contrib import admin
 

	
 
from .models import Entry, EntryTag
 

	
 

	
 
@admin.register(EntryTag)
 
class EntryTagAdmin(admin.ModelAdmin):
 
    prepopulated_fields = {'slug': ('label',)}
 

	
 

	
 

	
 
@admin.register(Entry)
 
class EntryAdmin(admin.ModelAdmin):
 
    list_display = ('pub_date', 'headline', 'author')
 
    list_filter = ['pub_date']
 
    date_hierarchy = 'pub_date'
 
    search_fields = ['headline', 'summary', 'body']
 
    prepopulated_fields = {'slug': ("headline",)}
 
    filter_horizontal = ('tags',)
 

	
 

	
conservancy/blog/views.py
Show inline comments
 
from datetime import datetime
 
from functools import reduce
 

	
 
from django.core.paginator import EmptyPage, PageNotAnInteger, Paginator
 
from django.shortcuts import get_object_or_404, render
 
from django.views.generic.dates import (
 
    DateDetailView,
 
    DayArchiveView,
 
    MonthArchiveView,
 
    YearArchiveView,
 
)
 

	
 
from ..staff.models import Person
 
from .models import EntryTag
 

	
 

	
 
def OR_filter(field_name, objs):
 
    from django.db.models import Q
 
    return reduce(lambda x, y: x | y,
 
                  [Q(**{field_name: x.id}) for x in objs])
 

	
 
def last_name(person):
 
    return person.formal_name.rpartition(' ')[2]
 

	
 
def custom_index(request, queryset, *args, **kwargs):
 
    """Blog list view that allows scrolling and also shows an index by
 
    year.
 
    """
 

	
 
    extra_context = kwargs.get('extra_context', {}).copy()
 
    date_field = kwargs['date_field']
 

	
 
    if not kwargs.get('allow_future', False):
 
        queryset = queryset.filter(**{'%s__lte' % date_field: datetime.now()})
 

	
 
    authors = []
 
    if 'author' in request.GET:
 
        authors = [get_object_or_404(Person, username=author)
 
                   for author in request.GET.getlist('author')]
 
        extra_context['authors'] = authors
 
        queryset = queryset.filter(OR_filter('author', authors))
 

	
 
    tags = []
 
    if 'tag' in request.GET:
 
        tags = [get_object_or_404(EntryTag, slug=tag)
 
                for tag in request.GET.getlist('tag')]
 
        extra_context['tags'] = tags
 
        queryset = queryset.filter(OR_filter('tags', tags))
 

	
 
    if authors or tags:
 
        query_string = '&'.join(['author=%s' % a.username for a in authors]
 
                                + ['tag=%s' % t.slug for t in tags])
 
        extra_context['query_string'] = query_string
 

	
 
    else:
 
        date_list = queryset.dates(date_field, 'year')
 
        extra_context['date_list'] = date_list
 

	
 
    paginate_by = kwargs.get('paginate_by', 6)  # Show 6 news items per page, by default
 
    paginator = Paginator(queryset, paginate_by)
 
    page = request.GET.get('page')
 

	
 
    try:
 
        blog_entries = paginator.page(page)
 
    except PageNotAnInteger:
 
        # If page is not an integer, deliver first page.
 
        blog_entries = paginator.page(1)
 
    except EmptyPage:
 
        # If page is out of range (e.g. 9999), deliver last page of results.
 
        blog_entries = paginator.page(paginator.num_pages)
 

	
 
    extra_context['blog_entries'] = blog_entries
 

	
 
    return render(request, 'blog/entry_list.html', extra_context)
 

	
 
def techblog_redirect(request):
 
    """Redirect from the old 'techblog' to the new blog
 
    """
 

	
 
    path = request.path[len('/technology'):]
 
    if path == '/blog/':
 
        path += "?author=bkuhn"
 

	
 
    return relative_redirect(request, path)
 

	
 
def query(request):
 
    """Page to query the blog based on authors and tags
 
    """
 

	
 
    if request.GET:
 
        d = request.GET.copy()
 
        if 'authors' in d.getlist('all'):
 
            d.setlist('author', []) # remove author queries
 
        if 'tags' in d.getlist('all'):
 
            d.setlist('tag', []) # remove tag queries
 
        d.setlist('all', []) # remove "all" from the query string
 

	
 
        base_url = '/blog/'
 
        if 'rss' in d:
 
            base_url = '/feeds/blog/'
 
            d.setlist('rss', []) # remove it
 

	
 
        query_string = d.urlencode()
 

	
 
        return relative_redirect(request, '{}{}{}'.format(base_url, '?' if query_string else '', query_string))
 

	
 
    else:
 
        authors = sorted(Person.objects.filter(currently_employed=True,
 
                                               entry__isnull=False).distinct(),
 
                         key=last_name)
 
        tags = EntryTag.objects.all().order_by('label')
 
        return render(request, 'blog/query.html', {'authors': authors, 'tags': tags})
 

	
 
def relative_redirect(request, path):
 
    from django import http
 

	
 
    host = request.get_host()
 

	
 
    url = "{}://{}{}".format(request.is_secure() and 'https' or 'http', host, path)
 
    return http.HttpResponseRedirect(url)
 

	
 
class BlogYearArchiveView(YearArchiveView):
 
    make_object_list = True
 
    allow_future = True
 
    extra_context = {}
 
    
 

 
    def get_context_data(self, **kwargs):
 
        context = super().get_context_data(**kwargs)
 
        context.update(self.extra_context)
 
        return context
 

	
 
class BlogMonthArchiveView(MonthArchiveView):
 
    allow_future = True
 
    extra_context = {}
 
    
 

 
    def get_context_data(self, **kwargs):
 
        context = super().get_context_data(**kwargs)
 
        context.update(self.extra_context)
 
        return context
 

	
 
class BlogDayArchiveView(DayArchiveView):
 
    allow_future = True
 
    extra_context = {}
 
    
 

 
    def get_context_data(self, **kwargs):
 
        context = super().get_context_data(**kwargs)
 
        context.update(self.extra_context)
 
        return context
 

	
 
class BlogDateDetailView(DateDetailView):
 
    allow_future = True
 
    extra_context = {}
 
    
 

 
    def get_context_data(self, **kwargs):
 
        context = super().get_context_data(**kwargs)
 
        context.update(self.extra_context)
 
        return context
conservancy/content/about/board/index.html
Show inline comments
 
{% extends "base_about.html" %}
 
{% block subtitle %}Directors - {% endblock %}
 
{% block submenuselection %}Directors{% endblock %}
 
{% block content %}
 

	
 
<h1>Directors</h1>
 

	
 
<p>Like many non-profits, Conservancy is directed by a
 
self-perpetuating Board of Directors, who
 
appoint the <a href="/about/staff/">Executive Director and staff</a> to carry out the
 
day-to-day operations of the organization.  The Directorship of the
 
Conservancy includes both talented non-profit managers and experienced
 
FLOSS project leaders who can both guide the administrative operations of
 
the organization as well as mentor member project leaders as needed.  Our
 
Directors constantly search for additional directors who can contribute a
 
variety of expertise and perspective related to the Conservancy's
 
mission.</p>
 

	
 
<p>Currently, the directors of Conservancy are:</p>
 

	
 
<h2 id="jeremy">Jeremy Allison</h2>
 

	
 
<p>Jeremy Allison is one of the lead developers on the Samba Team, a
 
group of programmers developing an Open Source Windows compatible file
 
and print server product for UNIX systems. Developed over the Internet
 
in a distributed manner similar to the Linux system, Samba is used by
 
all Linux distributions as well as many thousands of corporations and
 
products worldwide. Jeremy handles the co-ordination of Samba
 
development efforts and acts as a corporate liaison to companies using
 
the Samba code commercially.</p>
 

	
 
<p>He works for CIQ as a Distinguished Engineer, working on Open
 
Source code.</p>
 

	
 
<h2 id="laura">Dr. Laura Fortunato</h2>
 

	
 
<p><a href="http://www.santafe.edu/~fortunato/">Dr. Laura Fortunato</a>
 
is a professor of evolutionary anthropology at the University
 
of Oxford, where she researches the evolution of human social and
 
cultural behavior, working at the interface of anthropology and
 
biology. An advocate of reproducible computational methods in
 
research, including the use of Free/Open-Source tools, she founded the
 
<a href="https://rroxford.github.io/">Reproducible Research Oxford</a>
 
project, with the aim to foster a culture of reproducibility and open
 
research at Oxford.</p>
 

	
 
<p>Laura holds a degree in Biological Sciences from the University of
 
Padova and masters and PhD in Anthropology from University College
 
London. Before joining Oxford she was an Omidyar fellow at the <a
 
href="http://www.santafe.edu/">Santa Fe Institute</a>, where she is
 
currently an External Professor and a member of the Science Steering
 
Committee. She is also a member of the steering group of the <a
 
href="http://www.ukrn.org/">UK Reproducibility Network</a>, a peer-led
 
consortium that aims to promote robust research practice in the UK.</p>
 

	
 
<h2 id="mark">Dr. Mark Galassi</h2>
 

	
 
<p>Mark Galassi has been involved in the GNU project since 1984. He
 
currently works as a researcher in the International, Space, and Response
 
division at Los Alamos National Laboratory, where he has worked on the
 
HETE-2 satellite, ISIS/Genie, the Raptor telescope, the Swift satellite,
 
and the muon tomography project. In 1997 Mark took a couple of years off
 
from Los Alamos (where he was previously in the ISR division and the
 
Theoretical Astrophysics group) to work for Cygnus (now a part of Red Hat)
 
writing software and books for eCos, although he continued working on the
 
HETE-2 satellite (an astrophysical Gamma Ray Burst mission) part
 
time. Mark earned his BA in Physics at Reed College and a PhD from the
 
Institute for Theoretical Physics at Stony Brook. </p>
 

	
 
<h2 id="bdale">Bdale Garbee</h2>
 

	
 
<p><a href="https://gag.com/bdale/">Bdale Garbee</a> has been a contributor
 
to the Free Software community since 1979.  Bdale's background also includes
 
many years of hardware design, Unix internals, and embedded systems work.
 
He was an early participant in the Debian project, helped port Debian
 
GNU/Linux to 5 architectures, served as Debian Project Leader, then
 
chairman of the Debian Technical Committee for nearly a decade, and remains
 
active in the Debian community.</p>
 

	
 
<p>Bdale served as an HP Fellow in the Office of the CTO until 2016 where
 
he led HP's open source strategy work.  Bdale served as President of
 
Software in the Public Interest for a decade.  He served nearly as long on
 
the board of directors of the Linux Foundation representing individual
 
affiliates and the developer community.  Bdale currently serves on the
 
boards of the Freedombox Foundation, Linux Professional Institute, and
 
Aleph Objects.</p>
 

	
 
<h2 id="bkuhn">Bradley M. Kuhn</h2>
 

	
 
<p><a href="http://ebb.org/bkuhn/">Bradley M. Kuhn</a> is
 
the <a href="/about/staff/#bkuhn">Policy Fellow and Hacker-in-Residence</a>
 
at <a href="/">Software Freedom Conservancy</a> and editor-in-chief
 
of <a href="https://copyleft.org">copyleft.org</a>. Kuhn began his work in
 
the software freedom movement as a volunteer in 1992, when he became an early
 
adopter of Linux-based systems, and began contributing to various Free
 
Software projects, including Perl.  He worked during the 1990s as a system
 
administrator and software developer for various companies, and taught AP
 
Computer Science at Walnut Hills High School in Cincinnati.  Kuhn's
 
non-profit career began in 2000, when he was hired by the FSF.  As FSF's
 
Executive Director from 2001&ndash;2005, Kuhn
 
led <a href="https://www.fsf.org/licensing">FSF's GPL enforcement</a>,
 
launched <a href="https://www.fsf.org/associate/">its Associate Member
 
program</a>, and invented
 
the <a href="http://www.gnu.org/licenses/agpl-3.0.html">Affero GPL</a>.  Kuhn
 
was appointed President of Software Freedom Conservancy in April 2006, was
 
Conservancy's primary volunteer from 2006&ndash;2010, and has been a
 
full-time staffer since early 2011.  Kuhn holds a summa cum laude B.S. in
 
Computer Science
 
from <a href="http://www.loyola.edu/academic/computerscience">Loyola
 
University in Maryland</a>, and an M.S. in Computer Science from
 
the <a href="http://www.cs.uc.edu/">University of
 
Cincinnati</a>.  <a href="http://www.ebb.org/bkuhn/articles/thesis/">Kuhn's
 
Master's thesis</a> discussed methods for dynamic interoperability of Free
 
Software programming languages.  Kuhn received
 
the <a href="http://www.oscon.com/oscon2012/public/schedule/detail/25039">O'Reilly
 
Open Source Award in 2012</a>, in recognition for his lifelong policy work on
 
copyleft licensing.  Kuhn has <a href="http://ebb.org/bkuhn/blog/">a
 
blog</a> and co-hosts
 
the audcast, <a href="http://faif.us/"><cite>Free as in Freedom</cite></a>.</p>
 
  
 

 
<h2 id="allison">Dr. Allison Randal - Chair of the Board</h2>
 

	
 
<p> Over the course of multiple decades as a free software developer,
 
 Allison has worked in a wide variety of projects and domains, from
 
 games, linguistic analysis tools, websites, mobile apps, shipping
 
 fulfillment, and talking smart-home appliances, to programming language
 
 design, compilers, hypervisors, containers, deployment automation,
 
 database replication, operating systems and kernels, and hardware
 
 architectures and microarchitectures.</p>
 

	
 
<p>She is a board member at the Open Infrastructure Foundation, vice chair
 
 of the Microarchitecture Side Channels (Security) SIG at RISC-V
 
 International, and co-founder of the FLOSS Foundations group for free
 
 software community leaders. At various points in the past she has served
 
 as chair of the board at the Open Infrastructure Foundation, president
 
 and board member of the Open Source Initiative, president and board
 
 member of the Perl Foundation, board member of the Python Software
 
 Foundation, chair of the board at the Parrot Foundation, chief architect
 
 of the Parrot virtual machine, Open Source Evangelist at O’Reilly Media,
 
 conference chair of OSCON, Technical Architect of Ubuntu, Open Source
 
 Advisor at Canonical, Distinguished Technologist and Open Source
 
 Strategist at HP, and Distinguished Engineer at SUSE. She collaborates
 
 in the Debian and RISC-V projects, and currently works on free software
 
 and open hardware at Rivos.</p>
 

	
 
<h2 id="tony">Tony Sebro</h2>
 

	
 
<p>Tony currently serves as the Deputy General Counsel for
 
    the <a href="https://foundation.wikimedia.org/wiki/Home">Wikimedia
 
    Foundation</a>, where he manages the day-to-day operations of Wikimedia's
 
    legal department, and provide specific expertise on free and open source
 
    licensing, intellectual property, non-profit law, and privacy matters.
 
    Tony is also an organizer of
 
    Conservancy's <a href="https://outreachy.org">Outreachy</a> project,
 
    which provides paid internships in free and open source for people from
 
    groups traditionally underrepresented in tech.  Prior to joining
 
    Wikimedia, Tony served as General Counsel (and &ldquo;Employee #2&rdquo;)
 
    of Software Freedom Conservancy for over six years.  Tony has also spent
 
    time in the private sector with PCT Law Group and Kenyon &amp; Kenyon, and as
 
    an intellectual property licensing and business development professional
 
    with IBM.  Tony received an O'Reilly Open Source Award in 2017.  Tony is
 
    an active participant in and supporter of the non-profit community, and
 
    lives in the Bay Area with his family.</p>
 

	
 
{% endblock %}
conservancy/content/about/staff/index.html
Show inline comments
 
{% extends "base_about.html" %}
 
{% block subtitle %}Staff - {% endblock %}
 
{% block submenuselection %}Staff{% endblock %}
 
{% block content %}
 
<h1>Staff</h1>
 

	
 
<p>The staff are listed alphabetically by surname.</p>
 

	
 
<h2 id="dimesio">Rosanne DiMesio - Technical Bookkeeper</h2>
 

	
 
<p>Rosanne DiMesio is the Technical Bookkeeper at the Software Freedom
 
Conservancy where she handles incoming and outgoing accounting
 
activities for all its member projects as well as financial operations
 
for Conservancy itself. Rosanne has been volunteering with the Wine
 
Project since 2008 where she focuses on user support and documentation.
 
She has worked as an English teacher, a freelance writer and as IT
 
support. She is passionate about helping free software projects improve
 
their user experience. Rosanne received her Masters in Communication &amp;
 
Theater at the University of Illinois at Chicago and her Bachelor&rsquo;s
 
degree in English from the University of Chicago.</p>
 

	
 
<h2 id="denver">Denver Gingerich - Director of Compliance</h2>
 

	
 
<p>Denver manages SFC's license compliance work, including its technical parts
 
(such as triaging new reports and verifying complete corresponding source) as
 
well as planning and carrying out our enforcement strategy (with advice and
 
input from SFC's Executive Director and Policy Fellow).  Outside of SFC, Denver
 
also co-runs a FOSS business. Previously, Denver authored financial trading
 
software on Linux.  Denver writes free software in his spare time: his patches
 
have been accepted into Wine, Linux, and wdiff.  Denver received his BMath in
 
Computer Science from the University of Waterloo.  He gives presentations about
 
digital civil rights and how to ensure FOSS remains sustainable as a community
 
and financially, having spoken at conferences such as LinuxCon North America,
 
Texas Linux Fest, LibrePlanet, CopyCamp Toronto, FOSSLC's Summercamp,
 
CopyleftConf, and the Open Video Conference.</p>
 

	
 
<h2 id="tracy">Tracy Homer - Operations Manager</h2>
 
<p>Tracy acts as Operations Manager at Software Freedom Conservancy. 
 
<p>Tracy acts as Operations Manager at Software Freedom Conservancy.
 
Bringing her super-skills of organization and love of bureaucracy,
 
she helps things run at SFC smoothly behind the scenes.
 
Tracy also serves on the board of her local hackerspace, an organization
 
committed to teaching and promoting open technology exclusively.
 
She feels that open techonology allows people to express their creativity
 
regardless of their financial situation or technical background.
 
Tracy is currently persuing a degree in GIS from the University of Tennessee.</p>
 

	
 

	
 
<h2 id="bkuhn">Bradley M. Kuhn - Policy Fellow and Hacker-in-Residence</h2>
 

	
 
<p><a href="http://ebb.org/bkuhn/">Bradley M. Kuhn</a> is
 
the <a href="https://sfconservancy.org/about/staff/#bkuhn">Policy Fellow and
 
Hacker-in-Residence</a> at <a href="https://sfconservancy.org/">Software Freedom
 
Conservancy</a> and editor-in-chief
 
of <a href="https://copyleft.org">copyleft.org</a>. Kuhn began his work in
 
the software freedom movement as a volunteer in 1992, when he became an early
 
adopter of Linux-based systems, and began contributing to various Free
 
Software projects, including Perl.  He worked during the 1990s as a system
 
administrator and software developer for various companies, and taught AP
 
Computer Science at Walnut Hills High School in Cincinnati.  Kuhn's
 
non-profit career began in 2000, when he was hired by the FSF.  As FSF's
 
Executive Director from 2001&ndash;2005, Kuhn
 
led <a href="https://www.fsf.org/licensing">FSF's GPL enforcement</a>,
 
launched <a href="https://www.fsf.org/associate/">its Associate Member
 
program</a>, and invented
 
the <a href="http://www.gnu.org/licenses/agpl-3.0.html">Affero GPL</a>.  Kuhn
 
began as Conservancy's primary volunteer from 2006–2010, and became its first
 
staff person in 2011.  Kuhn holds a summa cum laude B.S. in Computer Science
 
from <a href="http://www.loyola.edu/academic/computerscience">Loyola
 
University in Maryland</a>, and an M.S. in Computer Science from
 
the <a href="http://www.cs.uc.edu/">University of
 
Cincinnati</a>.  <a href="http://www.ebb.org/bkuhn/articles/thesis/">Kuhn's
 
Master's thesis</a> discussed methods for dynamic interoperability of Free
 
Software programming languages.  Kuhn received
 
the <a href="http://www.oscon.com/oscon2012/public/schedule/detail/25039">O'Reilly
 
Open Source Award in 2012</a>, in recognition for his lifelong policy work on
 
copyleft licensing.  Kuhn has <a href="http://ebb.org/bkuhn/blog/">a
 
blog</a> and co-hosts
 
the audcast, <a href="http://faif.us/"><cite>Free as in
 
Freedom</cite></a>.</p>
 

	
 
<h2 id="rick">Rick Sanders - General Counsel</h2>
 

	
 
<p>Rick Sanders, has over 20 years' experience as a intellectual-property
 
litigator. He started his legal career at Fenwick & West's Silicon Valley
 
office, then moved to Nashville to join Waller,   before co-founding Aaron &
 
Sanders, with the goal of providing sophisticated legal services to technology
 
clients in Middle Tennessee. Rick also taught copyright law at Vanderbilt
 
University School of Law, and he co-produced The Copyright Office   Comes to
 
Music City for many years. He is also a past chair of the American Bar
 
Association's Trademarks and the Internet   committee, and the Nashville Bar
 
Association's Intellectual Property Section. He is admitted to the bar of the
 
States of California and Tennessee, as well as the U.S. Court of Appeal for the
 
Sixth and Ninth Circuits and all U.S. District Courts in California and
 
Tennessee. Before becoming a lawyer, Rick was a college instructor in English
 
composition and literature, especially Shakespeare. He is a native of Mountain
 
View, California and now lives in Nashville.</p>
 

	
 
<h2 id="karen">Karen M. Sandler - Executive Director</h2>
 

	
 
<p>Karen M. Sandler is an attorney and the executive director of Software Freedom
 
Conservancy, a 501c3 nonprofit organization focused on ethical technology. As
 
a patient deeply concerned with the technology in her own body, Karen is known
 
as a cyborg lawyer for her advocacy for free software as a life-or-death
 
issue, particularly in relation to the software on medical devices. She
 
co-organizes Outreachy, the award-winning outreach program for people who face
 
under-representation, systemic bias, or discrimination in tech. She is an
 
adjunct Lecturer-In-Law of Columbia Law School and a visiting scholar at
 
University of California Santa Cruz.</p>
 

	
 
<p>Prior to joining Software Freedom Conservancy, Karen was the executive
 
director of the GNOME Foundation. Before that, she was the general counsel of
 
the Software Freedom Law Center. She began her career as a lawyer at Clifford
 
Chance and Gibson, Dunn & Crutcher LLP.</p>
 

	
 
<p>Karen received her law degree from Columbia Law School where she was a James
 
Kent Scholar and co-founder of the Columbia Science and Technology Law Review.
 
She also holds a bachelor of science in engineering from
 
The Cooper Union for the Advancement of Science and Art.</p>
 

	
 
<p>Sandler has won awards for her work on behalf of software freedom, including
 
the O’Reilly Open Source Award in 2011. She received an honorary doctorate
 
from KU Leuven in 2023.</p>
 

	
 
<h2 id="sage">Sage Sharp - Senior Director of Diversity & Inclusion</h2>
 
<p>Sage Sharp is the Senior Director of Diversity & Inclusion at the Software
 
Freedom Conservancy. Sage runs Outreachy, which is Conservancy's diversity
 
initiative that provides paid, remote internships to people who are subject to
 
systemic bias or impacted by underrepresentation in tech. Sage is a
 
long-standing free software contributor, and is known for their work as a
 
Linux kernel maintainer for seven years. They also founded their own company,
 
Otter Tech, which has trained over 400 people on how to enforce a Code of
 
Conduct.</p>
 

	
 
<h2 id="pono">Daniel Pono Takamori - Community Organizer & Non-Profit Problem Solver</h2>
 
<p>Pono joined Conservancy to help fill a community need for bridging technical
 
and non-technical roles. Having worked at FOSS foundations and organizations
 
for over a decade, his background in FOSS infrastructure led him to think more
 
deeply about how to better use community intelligence instead of technology
 
to solve governance questions. He is passionate about making FOSS a more
 
equitable and inclusive space. With a background in mathematics and physics,
 
he looks forward to mobilizing social intelligence and community goveranance
 
as a basis for solving both technical and non-technical problems.</p>
 

	
 
<h2 id="paul">Paul Visscher - Systems Administrator</h2>
 
<p>Paul has been using Linux and FOSS for over 26 years and working as a sysadmin
 
for over 20 years. Having fallen in love with computers at a young age, he
 
found it intellectually intersting and found the FOSS world an incredible
 
and natural place to learn. He brings a passion for how free and open source
 
software can make our society a much more equitable place, and work for us
 
rather than against us. </p>
 

	
 
{% endblock %}
conservancy/content/copyleft-compliance/about.html
Show inline comments
 
{% extends "base_compliance.html" %}
 
{% block subtitle %}Copyleft Compliance Projects - {% endblock %}
 
{% block submenuselection %}CopyleftCompliance{% endblock %}
 
{% block content %}
 
<h1 id="ourwork">Conservancy's Copyleft Compliance Projects</h1>
 

	
 
<p>As existing donors and sustainers know, the Software Freedom Conservancy
 
  is a 501(c)(3) non-profit charity registered in New York, and Conservancy
 
  helps people take control of their computing by growing the software
 
  freedom movement, supporting community-driven alternatives to proprietary
 
  software, and defending free software with practical initiatives.
 
  Conservancy accomplishes these goals with various initiatives, including
 
  defending and upholding the rights of software users and consumers under
 
  copyleft licenses, such as the GPL.</p>
 

	
 
<p>Free and open source software (FOSS) is everywhere and in everything; yet
 
our software freedom is constantly eroded.  With the help of its
 
volunteers, <a href="/members/current/">member projects</a>,
 
and <a href="/about/staff/">staff</a>, Conservancy stands up for users'
 
software freedom via its copyleft compliance work.</p>
 

	
 
<p>Conservancy's primary work in copyleft compliance currently focuses on
 
our <a href="/copyleft-compliance/enforcement-strategy.html">Strategic GPL
 
Enforcement Initiative</a>.  This initiative, <a href="/news/2020/oct/01/new-copyleft-strategy-launched-with-ARDC-grant/">launched in October 2020</a>,
 
represents the culmination of nearly 15 years of compliance work of
 
Conservancy spanning ten different fiscally sponsored projects, past lawsuits
 
against more than a dozen defendants, and hundreds of non-litigation
 
compliance actions.</p>
 

	
 
<p>For these many years, Conservancy has always given the benefit of the
 
  doubt to companies who exploited our good nature and ultimately simply
 
  ignore the rights of users and consumers.  In that time, the compliance
 
  industrial complex has risen to a multi-million-dollar industry &mdash;
 
  selling (mostly proprietary) products, services, and consulting to
 
  companies.  Yet, these compliance efforts ignore consistently the most
 
  essential promise of copyleft &mdash; the complete, Corresponding Source
 
  and &ldquo;the scripts used to control compilation and installation of the
 
  executable&rdquo;.</p>
 

	
 
<p>We encourage our sustainers and software freedom enthusiasts everywhere to
 
  <a href="/copyleft-compliance/enforcement-strategy.html">read our detailed
 
  strategic plan for GPL enforcement</a> and its companion
 
  project, <a href="/copyleft-compliance/firmware-liberation.html">our
 
    Firmware Liberation Project</a>.</p>
 

	
 
<h2 id="projects">Compliance Relationship to Fiscally Sponsored Projects</h2>
 

	
 
<p>Historically, Conservancy was well-known for its ongoing license
 
compliance efforts on behalf of its BusyBox member project.  Today,
 
Conservancy does semi-regular compliance work for its BusyBox, Git, Inkscape,
 
Mercurial, Samba, QEMU and Wine member projects.  If you are a copyright
 
holder in any member project of Conservancy, please contact the project's
 
leadership committtee,
 
via <a href="mailto:PROJECTNAME@sfconservancy.org">&lt;PROJECTNAME@sfconservancy.org&gt;</a>
 
for more information on getting involved in compliance efforts in that
 
project.
 
</p>
 

	
 
<h2 id="linux">GPL Compliance Project For Linux Developers</h2>
 

	
 
<p>In May
 
2012, <a href="/news/2012/may/29/compliance/">Conservancy
 
launched</a> the <cite>GPL
 
Compliance Project for Linux Developers</cite>, which handles compliance and
 
enforcement activities on behalf of more than a dozen Linux copyright
 
holders.</p>
 
 
 

 
<p>The GPL Compliance Project for Linux Developers is comprised of copyright
 
holders in the kernel, Linux, who have contributed to Linux under its
 
license, <a href="http://www.gnu.org/licenses/gpl-2.0.html">the
 
GPLv2</a>. These copyright holders have formally asked Conservancy to engage
 
in compliance efforts for their copyrights in the Linux kernel.  In addition,
 
some developers have directly assigned their copyrights on Linux to Conservancy,
 
so Conservancy also enforces the GPL on Linux via its own copyrights in Linux.</p>
 

	
 
<p>Linux copyright holders who wish to assign copyright to or sign an enforcement agreement with
 
Conservancy should
 
  contact <a href="mailto:linux-services@sfconservancy.org">&lt;linux-services@sfconservancy.org&gt;</a>.
 
  In 2016,
 
  Conservancy <a href="/news/2016/nov/03/linux-compliance-agreements/">made
 
    public the template agreements used as part of this project</a>; both the
 
  <a href="/docs/blank_linux-enforcement-agreement.pdf">non-anonymous</a> and
 
  <a href="/docs/blank_anonymous-linux-enforcement-agreement.pdf">anonymous</a>
 
  versions are available.  However, please <strong>do not</strong> sign these
 
  unilaterally without contacting and discussing
 
  with <a href="mailto:linux-services@sfconservancy.org">&lt;linux-services@sfconservancy.org&gt;</a>
 
  first.</p>
 

	
 
<h2 id="debian">The Debian Copyright Aggregation Project</h2>
 

	
 
<p>In August 2015, <a href="/news/2015/aug/17/debian/">Conservancy announced the Debian Copyright Aggregation
 
Project</a>.  This project allows Debian contributors to assign copyrights to
 
Conservancy, or sign enforcement agreements allowing Conservancy to enforce
 
Free and Open Source (FOSS) licenses on their behalf.  Many Debian contributors
 
have chosen each of these options already, and more continue to join.</p>
 

	
 
<p>Debian contributors who wish to assign copyright to or sign an enforcement agreement with
 
Conservancy should contact <a href="mailto:debian-services@sfconservancy.org">&lt;debian-services@sfconservancy.org&gt;</a>.</p>
 

	
 
<h2 id="commitment">Conservancy's Commitment to Copyleft License Compliance</h2>
 

	
 
<p>Conservancy is dedicated to encouraging all users of software to comply
 
  with Free Software licenses. Toward this goal, in its compliance efforts,
 
  Conservancy helps distributors of Free Software in a friendly spirit of
 
  cooperation and participation.  In this spirit, Conservancy has co-published,
 
  with the Free Software Foundation (FSF), <a href="/copyleft-compliance/principles.html">the principles that both organizations
 
  follow in their compliance efforts</a>.
 
  </p>
 

	
 
{% endblock %}
conservancy/content/copyleft-compliance/enforcement-strategy.html
Show inline comments
 
{% extends "base_compliance.html" %}
 
{% block subtitle %}Copyleft Compliance Projects - {% endblock %}
 
{% block submenuselection %}EnforcementStrategy{% endblock %}
 
{% block content %}
 

	
 
<h1 id="strategic-gpl-enforcement-initiative">The Strategic GPL Enforcement Initiative</h1>
 

	
 
<p>As existing donors and sustainers know, the Software Freedom Conservancy
 
  is a 501(c)(3) non-profit charity registered in New York, and Conservancy
 
  helps people take control of their computing by growing the software
 
  freedom movement, supporting community-driven alternatives to proprietary
 
  software, and defending free software with practical initiatives.
 
  Conservancy accomplishes these goals with various initiatives, including
 
  defending and upholding the rights of software users and consumers under
 
  copyleft licenses, such as the <acronym title="General Public License">GPL</acronym>.</p>
 

	
 
<h2 id="brief-history-of-user-focused-gpl-enforcement">Brief History of
 
  User-Focused GPL Enforcement</h2>
 

	
 
<p>The spring of 2003 was a watershed moment for software freedom on
 
  electronic devices. 802.11 wireless technology had finally reached the
 
  mainstream, and wireless routers for home use had flooded the market
 
  earlier in the year. By June
 
  2003, <a href="https://hardware.slashdot.org/story/03/06/08/1749217/is-linksys-violating-the-GPL">the
 
  general public knew that Linksys (a division of Cisco) was violating the
 
  GPL</a> on their WRT54G model wireless routers. Hobbyists discovered
 
  (rather easily) that Linux and BusyBox were included in the router, but
 
  Linksys and Cisco had failed to provide source code or any offer for source
 
  code to its customers.</p>
 

	
 
<p>A coalition formed made up of organizations and individuals — including
 
  Erik Andersen (major contributor to and former leader of the BusyBox
 
  project) and Harald Welte (major contributor to Linux’s netfilter
 
  subsystem) — to enforce the
 
  GPL. <a href="https://sfconservancy.org/about/staff/#bkuhn">Bradley
 
  M. Kuhn</a>, who is now Conservancy’s Policy Fellow and
 
  Hacker-in-Residence, led and coordinated that coalition (when he was
 
  Executive Director of the <acronym title="Free Software Foundation">FSF</acronym>). By early 2004, this coalition, through the
 
  process of GPL enforcement, compelled Linksys to release an
 
  almost-GPL-compliant source release for the
 
  WRT54G. A <a href="https://openwrt.org/about/history">group of volunteers
 
  quickly built a new project, called OpenWrt</a> based on that source
 
  release. In the years that have followed, OpenWrt has been ported to almost
 
  every major wireless router product.  Now, more than 15 years later, the
 
  OpenWrt project routinely utilizes GPL source releases to build, improve
 
  and port OpenWrt.  The project has also joined coalitions to fight the FCC
 
  to ensure that consumers have and deserve rights to install modified
 
  firmwares on their devices and that such hobbyist improvements are no
 
  threat to spectrum regulation.</p>
 

	
 
<p>Recently, <a href="https://sfconservancy.org/news/2020/sep/10/openwrt-joins/">OpenWrt joined Conservancy as one its member projects</a>,
 
  and Conservancy has committed to long-term assistance to this project.</p>
 

	
 
<p>OpenWrt has spurred companies to create better routers and other wireless
 
  devices than such companies would otherwise have designed because they now need to
 
  either compete with hobbyists, or (better still) cooperate with those hobbyists to
 
  create hardware that fully supports OpenWrt’s features and improvements
 
  (such as dealing
 
  with <a href="https://openwrt.org/docs/guide-user/network/traffic-shaping/sqm">the
 
  dreaded “bufferbloat” bugs</a>). This interplay between the hobbyist
 
  community and for-profit ventures promotes innovation in
 
  technology. Without both permission <em>and</em> the ability to build and
 
  modify the software on their devices, the hobbyist community
 
  shrinks. Without intervention to ensure companies respect the hobbyist
 
  community, hobbyists are limited by the oft-arbitrary manufacturer-imposed
 
  restraints in the OEM firmware. OpenWrt saved the wireless router market
 
  from this disaster; we seek to help other embedded electronic subindustries
 
  avoid that fate. The authors of GPL’d software chose that license so its
 
  source is usable and readily available to hobbyists. It is our duty, as
 
  activists for the software freedom of hobbyists, to ensure these legally
 
  mandated rights are never curtailed.</p>
 

	
 
<p>(More on the OpenWrt project’s history and its connection to GPL
 
  enforcement can be found
 
  in <a href="https://www.youtube.com/watch?v=r4lCMx-EI1s">Kuhn’s talk
 
    at <em>OpenWrt Summit 2016</em></a>.)</p>
 

	
 
<p>Conservancy has had substantial success in leveraging more device freedom
 
  in other subindustries through GPL compliance. In 2009, Conservancy, with
 
  co-Plaintiff Erik Andersen, sued fourteen defendants in federal court under
 
  copyright claims on behalf of its BusyBox member project. Conservancy 
 
  copyright claims on behalf of its BusyBox member project. Conservancy
 
  achieved compliance for the BusyBox project in all fourteen
 
  cases. Most notably, the GPL-compliant source release obtained in the
 
  lawsuit for certain Samsung televisions provided the basis for
 
  the <a href="https://www.samygo.tv/">SamyGo project</a> — an alternative
 
  firmware that works on that era of Samsung televisions and allows consumers
 
  to modify and upgrade their firmware using FOSS.</p>
 

	
 
<p>Harald Welte also continued his efforts during the early and mid-2000s,
 
  after the Linksys enforcement, through
 
  his <a href="https://gpl-violations.org/">gpl-violations.org
 
    project</a>. Harald successfully sued many companies (mostly in the
 
  wireless router industry) in Germany to achieve compliance and yield source
 
  releases that helped OpenWrt during that period.</p>
 

	
 
<h2 id="importance-of-linux-enforcement-specifically">Importance of Linux Enforcement Specifically</h2>
 

	
 
<p>In recent years, embedded systems technology has expanded beyond wireless
 
  routers to so-called “Internet of Things” (IoT) devices designed for
 
  connectivity with other devices in the home and to the “Cloud”. Consumer
 
  electronics companies now feature and differentiate products based on
 
  Internet connectivity and related services. Conservancy has seen
 
  Linux-based firmwares on refrigerators, baby monitors, virtual assistants,
 
  soundbars, doorbells, home security cameras, police body cameras, cars, AV
 
  receivers, and televisions.</p>
 

	
 
<p>This wide deployment of general purpose computers into
 
  mundane household devices raises profound privacy and consumer rights
 
  implications. <a href="https://www.nytimes.com/2019/12/15/us/Hacked-ring-home-security-cameras.html">Home</a> <a href="https://www.washingtonpost.com/technology/2019/01/23/family-says-hacked-nest-camera-warned-them-north-korean-missile-attack/">security</a> <a href="https://www.npr.org/sections/thetwo-way/2018/06/05/617196788/s-c-mom-says-baby-monitor-was-hacked-experts-say-many-devices-are-vulnerable">cameras</a> <a href="https://www.cnn.com/2019/12/12/tech/ring-security-camera-hacker-harassed-girl-trnd/index.html">are</a> <a href="https://abc7.com/baby-monitor-hack-leads-to-kidnap-scare/4931822/">routinely</a> <a href="https://www.bbc.com/news/av/uk-44117337/security-footage-viewed-by-thousands">compromised</a>
 
  — invading the privacy and security of individual homes. Even when
 
  companies succeed in keeping out third parties, consumers
 
  are <a href="https://www.theguardian.com/technology/2019/aug/29/ring-amazon-police-partnership-social-media-neighbor">pressured
 
  by camera makers</a> to automatically upload their videos to local
 
  police. Televisions
 
  routinely <a href="https://techcrunch.com/2019/01/07/vizio-settlement-moves-forward/">spy
 
  on consumers for the purposes of marketing and massive data
 
  collection</a>.</p>
 

	
 
<p>There is one overarching irony to this growing dystopia: nearly all these
 
  devices are based primarily on GPL'd software: most
 
  notably, Linux. While Linux-based systems do allow proprietary user-space
 
  applications (i.e., not licensed under GPL), the kernel and many other system
 
  utilities routinely used in embedded systems, such as Conservancy’s BusyBox
 
  project, are under that license (or similar copyleft licenses such as the
 
  LGPL). These licenses require device makers to provide complete,
 
  corresponding source code to everyone in possession of their
 
  devices. Furthermore, Linux’s specific license (GPL, version 2), mandates
 
  that source code must also include “the scripts used to control compilation
 
  and installation of the executable”. In short, the consumers must receive
 
  all the source code and the ability to modify, recompile and reinstall that
 
  software. Upholding of this core freedom for Linux made OpenWrt
 
  possible. We work to preserve (or, more often, restore) that software
 
  freedom for consumers of other types of electronic devices.</p>
 

	
 
<p>When devices are compliant with the GPL’s requirements, customers can
 
  individually or collectively take action against the surveillance and other
 
  predatory behavior perpetuated by the manufacturers of these devices by
 
  modifying and replacing the software. Hobbyists can aid their community by
 
  providing these alternatives. People with no technical background already
 
  replace firmware on their wireless routers with OpenWrt to both improve
 
  network performance and allay privacy concerns. Furthermore, older
 
  equipment is often saved from planned obsolescence by alternative
 
  solutions. E-recyclers
 
  like <a href="https://www.freegeek.org/">Freegeek</a> do this regularly for
 
  desktop and laptop machines with GNU/Linux distributions like Debian, and
 
  with OpenWrt for wireless routers. We seek to ensure they can do this for
 
  other types of electronic products. However, without the complete,
 
  corresponding source code (CCS), including the scripts to control its compilation and
 
  installation, the fundamental purpose of copyleft is frustrated. Consumers,
 
  hobbyists, non-profit e-recyclers and the general public are left without
 
  the necessary tools they need and deserve, and which the license promises
 
  them.</p>
 

	
 
<p>Additionally, copyleft compliance relates directly to significant
 
  generational educational opportunities. There are few easier ways to
 
  understand technology than to experiment with a device one already
 
  has. Historically, FOSS has succeeded because young hobbyists could
 
  examine, modify and experiment with software in their own devices. Those
 
  hobbyists became the professional embedded device developers of today!
 
  Theoretically, the advent of the “Internet of Things” — with its many
 
  devices that run Linux — <em>should</em> give opportunities for young
 
  hobbyists to quickly explore and improve the devices they depend on in
 
  their every day lives.  Yet, that’s rarely possible in reality.  To ensure
 
  that both current and future hobbyists can practically modify their
 
  Linux-based devices, we must enforce Linux’s license. With public awareness
 
  that their devices can be improved, the desire for learning will increase,
 
  and will embolden the curiosity of newcomers of all ages and
 
  backgrounds. The practical benefits of this virtuous cycle are immediately
 
  apparent. With technological experimentation, people are encouraged to try
 
  new things, learn how their devices work, and perhaps create whole new
 
  types of devices and technologies that no one has even dreamed of
 
  before.</p>
 

	
 
<p>IoT firmware should never rely on one vendor — even the vendor of the
 
  hardware itself. This centralized approach is brittle and inevitably leads
 
  to invasions of the public’s privacy and loss of control of their
 
  technology. Conservancy’s GPL enforcement work is part of the puzzle that
 
  ensures users can choose who their devices connect to, and how they
 
  connect. Everyone deserves control over their own computing — from their
 
  laptop to their television to their toaster. When the public can modify (or
 
  help others modify) the software on their devices, they choose the level of
 
  centralized control they are comfortable with. Currently, users with
 
  Linux-based devices usually don’t even realize what is possible with
 
  copyleft; Conservancy aims to show them.</p>
 

	
 
<h2 id="the-gpl-compliance-project-for-linux-developers">The GPL Compliance
 
  Project for Linux Developers</h2>
 

	
 
<p>In May 2012, Software Freedom Conservancy
 
  formed <a href="https://sfconservancy.org/copyleft-compliance/#linux">The GPL
 
    Compliance Project for Linux Developers</a> in response to frustration by
 
  upstream Linux developers about the prevalence of noncompliance in the
 
  field, and their desire to stand with Conservancy’s BusyBox, Git and Samba
 
  projects in demanding widespread GPL compliance. This coalition of Linux
 
  developers works with Conservancy to enforce the GPL for the rights of
 
  Linux users everywhere — particularly consumers who own electronic
 
  devices. We accept violation reports from the general public, and
 
  prioritize enforcement in those classes of devices where we believe that we
 
  can do the most good to help achieve GPL compliance that will increase
 
  software freedom for the maximum number of device users.</p>
 

	
 
<h2 id="the-need-for-litigation">The Need for Litigation</h2>
 

	
 
<p>While we still gain some success, we have found that the landscape of GPL
 
  compliance has changed in recent years. Historically, the true “bad actors”
 
  were rare. We found in the early days that mere education and basic
 
  supply-chain coordination assistance yielded compliance. We sought and
 
  often achieved goodwill in the industry via education-focused
 
  compliance.</p>
 

	
 
<p>Those tactics no longer succeed; the industry has taken advantage of that
 
  goodwill. After the BusyBox lawsuit settled, we observed a slow move toward
 
  intentional non-compliance throughout the embedded electronics
 
  industry. Companies use delay and “hardball” pre-litigation tactics to
 
  drain the limited resources available for enforcement, which we faced (for
 
  example) in <a href="/copyleft-compliance/vmware-lawsuit-links.html">the
 
  VMware violation</a>. While VMware ultimately complied with the GPL, they
 
  did so by reengineering the product and removing Linux from it — and only
 
  after the product was nearing end-of-life.</p>
 

	
 
<p>Conservancy has recently completed an evaluation of the industry’s use of
 
  Linux in embedded products. Our findings are disheartening and require
 
  action.  Across the entire industry, most major manufacturers almost flaunt
 
  their failure to comply with the GPL.  In our private negotiations,
 
  pursuant to
 
  our <a href="/copyleft-compliance/principles.html">Principles
 
  of Community-Oriented GPL Enforcement</a>, GPL violators stall, avoid,
 
  delay and generally refuse to comply with the GPL. Their disdain for the
 
  rights of their customers is often palpable.  Their attitude is almost
 
  universal: <q>if you think we’re really violating the GPL, then go ahead and
 
  sue us. Otherwise, you’re our lowest priority</q>.</p>
 

	
 
<h2 id="conservancys-plan-for-action">Conservancy’s Plan For Action</h2>
 

	
 
<p>Conservancy has a three-pronged plan for action: litigation, persistent
 
  non-litigation enforcement, and alternative firmware development.</p>
 

	
 
<h3 id="litigation">Litigation</h3>
 

	
 
<p>Conservancy has many violation matters that we have pursued during the
 
  last year where we expect compliance is impossible without litigation.  We
 
  are poised to select — from among the many violations in the embedded
 
  electronics space — a representative example and take action in USA courts
 
  against a violator who has failed to properly provide source code
 
  sufficient for consumers to rebuild and install Linux, and who still
 
  refuses to remedy that error after substantial friendly negotiation with
 
  Conservancy.</p>
 

	
 
<p>Our goal remains the same as in all matters: we want a source release that
 
  works, and we’ll end any litigation when the company fully complies on its
 
  products and makes a bona fide commitment to future compliance.</p>
 

	
 
<p>Conservancy, after years of analyzing its successes and failures of
 
  previous GPL compliance litigation, has developed — in conjunction with
 
  litigation counsel over the last year — new approaches to litigation
 
  strategy.  We believe this will bring to fruition the promise of copyleft:
 
  a license that ensures the rights and software freedoms of hobbyists who
 
  seek full control and modifiability of devices they own. Conservancy plans
 
  to accelerate these plans in late 2020 into early 2021 and we'll keep the
 
  public informed at every stage of the process.</p>
 

	
 
<h3 id="persistent-non-litigation-enforcement">Persistent Non-Litigation Enforcement</h3>
 

	
 
<p>While we will seek damages to cover our reasonable costs of this work, we
 
  do not expect that any recovery in litigation can fully fund the broad base
 
  of work necessary to ensure compliance and the software freedom it brings.
 
  Conservancy is the primary charitable watchdog of GPL compliance for
 
  Linux-based devices.  We seek to use litigation as a tool in a broader
 
  course of action to continue our work in this regard.  We expect and
 
  welcome that the high profile nature of litigation will inspire more device
 
  owners to report violations to us. We expect we’ll learn about classes of
 
  devices we previously had no idea contained Linux, and we’ll begin our
 
  diligent and unrelenting work to achieve software freedom for the owners of
 
  those devices. We will also build more partnerships across the technology
 
  sector and consumer rights organizations to highlight the benefit of
 
  copyleft to not just hobbyists, but the entire general public.</p>
 

	
 
<h3 id="alternative-firmware-project"><a href="/copyleft-compliance/firmware-liberation.html">Alternative Firmware Project</a></h3>
 

	
 
<p>The success of the OpenWrt project, born from GPL enforcement, has an
 
  important component. While we’ve long hoped that volunteers, as they did
 
  with OpenWrt and SamyGo, will take up compliant sources obtained in our GPL
 
  enforcement efforts and build alternative firmware projects, history shows
 
  us that the creation of such projects is not guaranteed and exceedingly
 
  rare.</p>
 

	
 
<p>Traditionally, our community has relied exclusively on volunteers to take
 
  up this task, and financial investment only comes after volunteers have put
 
  in the unfunded work to make an <acronym title="minimal viable product">MVP</acronym> alternative firmware. While volunteer
 
  involvement remains essential to the success of alternative firmware
 
  projects, we know from our fiscal sponsorship work that certain aspects of
 
  FOSS projects require an experienced charity to initiate and jump-start
 
  some of the less exciting aspects of FOSS project creation and
 
  development.</p>
 

	
 
<p>Conservancy plans to select a specific class of device. Upon achieving
 
  compliant source releases in that subindustry through GPL enforcement,
 
  Conservancy will <a href="firmware-liberation.html">launch an alternative
 
  firmware project</a> for that class of device.</p>
 

	
 
{% endblock %}
conservancy/content/copyleft-compliance/firmware-liberation.html
Show inline comments
 
{% extends "base_compliance.html" %}
 
{% block subtitle %}Copyleft Compliance Projects - {% endblock %}
 
{% block submenuselection %}LiberateFirmware{% endblock %}
 
{% block content %}
 

	
 
<h1 id="software-freedom-conservancy-proposal-for-firmware-liberation-project">Firmware Liberation Project</h1>
 

	
 
<p>Conservancy plans to select a class of product in the Linux-based embedded
 
system space.  For this product, Conservancy will launch, or assist, a
 
project that creates a functioning alternative firmware for those devices.
 
The promise of GPL enforcement is only realized through actual, practical use
 
and improvement of the released software for users.</p>
 

	
 
<h2 id="gpl-enforcement-needs-follow-through">GPL Enforcement Needs Follow-Through</h2>
 

	
 
<p>Simply enforcing the GPL is an important first step, and Conservancy
 
  <a href="enforcement-strategy.html">continues our efforts in that
 
  regard</a>. However, we can
 
  replicate <a href="/copyleft-compliance/enforcement-strategy.html#brief-history-of-user-focused-gpl-enforcement">the
 
  success found with OpenWrt</a> <em>only by</em> a substantial
 
  effort <strong>after</strong> enforcement occurs to turn the compliant
 
  source release into a viable alternative firmware for the platform.</p>
 
                                           
 

 
<p>Conservancy has seen non-compliant Linux-based firmwares on refrigerators,
 
  baby monitors, virtual assistants, soundbars, doorbells, home security
 
  cameras, police body cameras, cars, AV receivers, and televisions.  We
 
  believe that building an alternative firmware for one of these classes of
 
  devices &mdash; or joining our work with an existing alternative firmware project
 
  that is struggling due to lack of sources available &mdash; will lead to
 
  more palpable software freedom for users of these device.</p>
 

	
 

	
 
<h2 id="limited-success-of-alternative-hardware">Limited Success of
 
  Alternative Hardware</h2>
 

	
 
<p>Alternative hardware projects remain an essential component of small
 
  device freedom. Conservancy supports and engages with communities that seek
 
  to source and build IoT-style devices from the ground up. We’re excited to
 
  see deployable boards that allow Maker efforts to create new devices.</p>
 

	
 
<p>Nevertheless, we remain ever-cognizant that FOSS succeeded on servers,
 
  laptop, desktop, and wireless router computers <em>precisely</em> because
 
  users could buy commodity hardware at any store and install FOSS
 
  alternatives to the vendor-provided software.  Throughout the history of
 
  FOSS, most new users who seek to experience software freedom want to do so
 
  with their existing devices first.  Many don't even know much about the
 
  issues involved in software liberation <em>until they've already purchased
 
  hardware</em>.  Conservancy therefore believes support of alternative
 
  firmwares for such devices is paramount.</p>
 

	
 
<h3 id="demonstrating-the-power-of-software-freedom">Demonstrating the power
 
  of software freedom</h3>
 

	
 
<p>To many, the benefits of software freedom are abstract. For less technical
 
  users, the idea of modifying or even reviewing the software on their
 
  devices is wholly theoretical. For technical users, there is a limited time
 
  available to invest in the devices they use for their everyday
 
  lives. Bringing people together to take collective action for the control
 
  of their own technology is a powerful proposition that has rarely been
 
  demonstrated.</p>
 

	
 
<p>When alternative firmware projects like OpenWrt exist for IoT devices,
 
  non-technical users can replace the software on their devices and benefit
 
  from custom, community-controlled software. Technical users are more likely
 
  to contribute knowing their efforts will be meaningful.</p>
 

	
 
<p>However, decades of corporate involvement in copyleft have demonstrated
 
  that without an organized effort, control over one’s own software is purely
 
  theoretical, even when software has a copyleft license, and
 
  sometimes <em>even when</em> compliance with the copyleft license is
 
  acheived. Conservancy recognizes that there is a unique opportunity for
 
  charitable organizations to step in and change the power dynamic of the
 
  tech industry for consumers.</p>
 

	
 
<h2 id="conservancys-plan-for-action">Conservancy’s Plan For Action</h2>
 

	
 
<p>Conservancy seeks to fund work on liberating firmware for a specific
 
  device. This is accomplished with a two-prong approach: first, we will
 
  leverage increased interest and tendency toward GPL compliance throughout
 
  the embedded industry to more quickly achieve compliant source releases in
 
  a particular subindustry.</p>
 

	
 
<p>Second, depending on what subindustry (i.e., specific class of devices)
 
  seems most responsive to increased enforcement activity and willing to
 
  provide compliant source releases quickly, we will launch, coordinate and
 
  fund an alternative firmware project for that class, or, if appropriate,
 
  merge our efforts with an existing alternative firmware project for that
 
  class of device.</p>
 

	
 
<h2 id="leveraging-on-increased-enforcement">Leveraging on Increased
 
  Enforcement</h2>
 

	
 
<p><a href="enforcement-strategy.html">Conservancy already plans to select a
 
  specific violation and engage in litigation.</a> Based on past experience,
 
  we expect that the press and attention to that ongoing litigation will
 
  yield increased responsiveness by violators throughout the industry. (A
 
  similar outcome occurred after our BusyBox-related litigation in 2006.)
 
  This expected change in behavior will open opportunities to replicate the
 
  OpenWrt approach in another embedded electronic subindustry. Fast action
 
  will be necessary; most IoT products have an 18 month lifecycle, so we seek
 
  to quickly identify the right subindustry, gain compliance there, and move
 
  on to the next phase.</p>
 

	
 
<h3 id="funding-firmware-liberation">Funding Firmware Liberation</h3>
 

	
 
<p>While we’ve long hoped that volunteers would take up compliant sources
 
  obtained in our GPL enforcement efforts and build alternative firmware
 
  projects as they did with OpenWrt, history shows us that the creation of
 
  such projects is not guaranteed and exceedingly rare.</p>
 

	
 
<p>Traditionally, our community has relied exclusively on volunteers to take
 
  up this task, and financial investment only comes after volunteers have put
 
  in the unfunded work to make a Minimum Viable Product (MVP) liberated
 
  firmware. While volunteer involvement remains essential to the success of
 
  alternative firmware projects, we know from our fiscal sponsorship work
 
  that certain aspects of FOSS projects require an experienced charity to
 
  initiate and jump-start some of the less exciting aspects of FOSS project
 
  creation and development. (In our last fiscal year, Conservancy funded 160
 
  contributors to work on FOSS.)</p>
 

	
 
<p>In the initial phase, Conservancy will select a specific
 
  class of device. Upon achieving compliant source releases in that
 
  subindustry through GPL enforcement, Conservancy will launch an alternative
 
  firmware project for that class of device.</p>
 

	
 
<p>Conservancy will seek to fund the time of project leaders and
 
  infrastructure for the project. The goal is to build a firm base that draws
 
  volunteers to the project. We know that sustaining funding over long
 
  periods for a grassroots hobbyist activity is quite challenging; we seek to
 
  bootstrap and catalyze interest and contribution to the project. Ideally,
 
  Conservancy would run the project with a single full-time staffer for about
 
  a year, and achieve a volunteer base sufficient to reduce funding to one
 
  part-time staffer.</p>
 

	
 
<h3 id="criteria-for-device-selection">Criteria for Device Selection</h3>
 

	
 
<p>The IoT device industry moves quickly and we must be prepared to adapt
 
  based on new information. The first stage in this work will be to carefully
 
  evaluate and select the device on which to focus for this
 
  project. Conservancy will evaluate the following criteria in selecting a
 
  class of devices:</p>
 

	
 
<ul>
 
<li><p>Do most devices in the subindustry already run a known FOSS system
 
    (such as Android/Linux, BusyBox/Linux or GNU/Linux)?</p></li>
 

	
 
<li><p>In response to our increased enforcement activity, how many existing
 
    GPL-compliant source releases are available from how many different
 
    vendors in this subindustry?</p></li>
 

	
 
<li><p>Is there a known userspace application that runs on Maker-built
 
    hardware that does the task the proprietary userspace software from the
 
    vendor did?</p></li>
 

	
 
<li><p>What is the excitement level among volunteers for this
 
    project?</p></li>
 

	
 
<li><p>What value will hobbyists achieve from replacing the software on their
 
    device? For example, would they be able to avoid surveillance or add
 
    accessibility features?</p></li>
 

	
 
</ul>
 

	
 
<p>Finally, Conservancy will be prepared and willing to recognize temporary
 
  failure and setbacks in a particular subindustry and pivot quickly to
 
  choosing a different class of devices. This project is ambitious, and we’ll
 
  be adroit in our approach to ensure success.</p>
 

	
 
{% endblock %}
conservancy/content/copyleft-compliance/help.html
Show inline comments
 
{% extends "base_compliance.html" %}
 
{% block subtitle %}Copyleft Compliance Projects - {% endblock %}
 
{% block submenuselection %}HelpComply{% endblock %}
 
{% block content %}
 
<h1 id="ourwork">Help Defend Software Freedom and Rights</h1>
 

	
 
<p>Folks often ask us how they can help us defend the software freedoms and
 
  rights that copyleft makes possible.  There are lots of ways to help and we
 
  believe that the entire public can help.</p>
 

	
 
<h2 id="request">Request Source Code</h2>
 

	
 
<p>All versions of the GPL and LGPL allow companies to make an <em>offer</em>
 
    for Complete, Corresponding Source (CCS) <em>rather than</em> giving you
 
    the CCS outright with the product.  Sadly, <strong>many</strong>
 
    companies make an offer with no intention of actually providing that CCS
 
    to you.  As consumers, you have a right to that source code.  Look in
 
    every manual and &ldquo;Legal Notices&rdquo; section of every product you
 
    buy.  If you see an offer, follow the instructions and <strong>request
 
    that CCS</strong>!  If you don't get it, or they give you the run-around,
 
    then <a href="#reporting">report the violation to us</a>!</p>
 

	
 
<h2 id="reporting">Reporting GPL Violations To Us</h2>
 

	
 
<p>If you are aware of a license violation or compliance issue regarding any
 
  copyleft license, such as the AGPL, GPL or LGPL,
 
  please <a href="mailto:compliance@sfconservancy.org">contact us by email at
 
  &lt;compliance@sfconservancy.org&gt;</a>.</p>
 

	
 
<!--- FIXME: bkuhn is rewriting this blog post fresh the weekend of --
 
      2020-07-18 so we need not link to ebb.org anymore when we roll out
 
      these changes ... which never happened, still need to do that --> 
 
      these changes ... which never happened, still need to do that -->
 

	
 
<p>If you think you've found a GPL violation, we encourage you to
 
   read <a href="http://ebb.org/bkuhn/blog/2009/11/08/gpl-enforcement.html">this
 
   personal blog post by our Policy Fellow, Bradley M. Kuhn</a>, about good
 
   practices in discovering and reporting GPL violations.</p>
 
   
 

 
<h2 id="sustain">Donate to Sustain This Work</h2>
 

	
 
<p>Finally, Conservancy welcomes <a href="#donate-box"
 
  class="donate-now">donations</a> in support of our copyleft compliance work,
 
  and we encourage you to become a <a href="/sustainer/">an official
 
  Sustainer of Software Freedom Conservancy</a>. </p>
 
{% endblock %}
conservancy/content/copyleft-compliance/vizio-filing-press-release.html
Show inline comments
 
{% extends "base_vizio.html" %}
 
{% block subtitle %}Copyleft Compliance Projects - {% endblock %}
 
{% block submenuselection %}VizioMain{% endblock %}
 
{% block content %}
 

	
 
<h1>Software Freedom Conservancy files right-to-repair lawsuit against California TV manufacturer Vizio Inc. for alleged GPL violations</h1>
 
<h2>Litigation is historic in nature due to its focus on consumer rights, filing as third-party beneficiary</h2>
 

	
 
<p><strong>FOR IMMEDIATE RELEASE</strong></p>
 

	
 
<p>IRVINE, Calif. (Oct. 19, 2021) Software Freedom Conservancy announced today
 
it has filed a lawsuit against Vizio Inc. for what it calls repeated failures
 
to fulfill even the basic requirements of the General Public License (GPL).</p>
 

	
 

	
 
<p>The lawsuit alleges that Vizio’s TV products, built on its SmartCast system,
 
contain software that Vizio unfairly appropriated from a community of
 
developers who intended consumers to have very specific rights to modify,
 
improve, share, and reinstall modified versions of the software.</p>
 

	
 

	
 
<p>The GPL is a copyleft license that ensures end users the freedom to run,
 
study, share, and modify the software. Copyleft is a kind of software
 
licensing that leverages the restrictions of copyright, but with the intent
 
to promote sharing (using copyright licensing to freely use and repair
 
software).</p>
 

	
 
<p>Software Freedom Conservancy, a nonprofit organization focused on ethical
 
technology, is filing the lawsuit as the purchaser of a product which has
 
copylefted code. This approach makes it the first legal case that focuses on
 
the rights of individual consumers as third-party beneficiaries of the GPL.
 

	
 
<p>&ldquo;That’s what makes this litigation unique and historic in terms of
 
defending consumer rights,&rdquo; says Karen M. Sandler, the organization’s
 
executive director.</p>
 

	
 

	
 
<p>According to the lawsuit, a consumer of a product such as this has the
 
right to access the source code so that it can be modified, studied, and
 
redistributed (under the appropriate license conditions).</p>
 

	
 

	
 

	
 
<p>&ldquo;We are asking the court to require Vizio to make good on its
 
  obligations under copyleft compliance requirements,&rdquo; says
 
  Sandler. She explains that in past litigation, the plaintiffs have always
 
  been copyright holders of the specific GPL code. In this case, Software
 
  Freedom Conservancy hopes to demonstrate that it's not just the copyright
 
  holders, but also the receivers of the licensed code who are entitled to
 
  rights.</p>
 

	
 
<p>The lawsuit suit seeks no monetary damages, but instead seeks access to
 
the technical information that the copyleft licenses require Vizio to provide
 
to all customers who purchase its TVs (specifically, the plaintiff is asking
 
for the technical information via &ldquo;specific performance&rdquo; rather
 
than &ldquo;damages&rdquo;).</p>
 

	
 

	
 
<p>&ldquo;Software Freedom Conservancy is standing up for customers who are
 
  alienated and exploited by the technology on which they increasingly
 
  rely,&rdquo; says Sandler, adding that the lawsuit also aims to help
 
  educate consumers about their right to repair their devices as well as show
 
  policy makers that there are mechanisms for corporate accountability
 
  already in place that can be leveraged through purchasing power and
 
  collective action.</p>
 

	
 

	
 
<p>Copyleft licensing was designed as an ideological alternative to the
 
classic corporate software model because it: allows people who receive the
 
software to fix their devices, improve them and control them; entitles people
 
to curtail surveillance and ads; and helps people continue to use their
 
devices for a much longer time (instead of being forced to purchase new
 
ones).</p>
 

	
 

	
 
<p>&ldquo;The global supply chain shortages that have affected everything
 
from cars to consumer electronics underscore one of the reasons why it is
 
important to be able to repair products we already own,&rdquo; says
 
Sandler. &ldquo;Even without supply chain challenges, the forced obsolescence
 
of devices like TVs isn’t in the best interest of the consumer or even the
 
planet. This is another aspect of what we mean by &lsquo;ethical
 
technology.&rsquo; Throwing away a TV because its software is no longer
 
supported by its manufacturer is not only wasteful, it has dire environmental
 
consequences. Consumers should have more control over this, and they would if
 
companies like Vizio played by the rules.&ldquo;</p>
 

	
 

	
 
<p>According to Sandler, the organization first raised the issue of
 
non-compliance with the GPL with Vizio in August 2018. After a year of
 
diplomatic attempts to work with the company, it was not only still refusing
 
to comply, but stopped responding to inquiries altogether as of January 2020.</p>
 

	
 

	
 
<p>&ldquo;By July 2021, the TV model that we originally complained was
 
non-compliant was discontinued,” says Sandler. “When we purchased new models,
 
we found that despite our efforts they still had no source code included with
 
the device, nor any offer for source code. People buying these models would
 
never know that there was anything special about the software in these
 
devices, or that they had any rights whatsoever connected with the software
 
on their TVs.&rdquo;</p>
 

	
 

	
 
<p>Software Freedom Conservancy analyzed the TVs and concluded that not only
 
was Vizio not providing the source code and technical information that
 
copyleft licenses require, Vizio was not even informing its customers about
 
copylefted software and the rights it gives them as consumers.</p>
 

	
 

	
 
<h3>ABOUT SOFTWARE FREEDOM CONSERVANCY</h3>
 

	
 

	
 
<p>Software Freedom Conservancy is a nonprofit organization centered around
 
ethical technology. Our mission is to ensure the right to repair, improve,
 
and reinstall software. We promote and defend these rights through fostering
 
free and open source software (FOSS) projects, driving initiatives that
 
actively make technology more inclusive, and advancing policy strategies that
 
defend FOSS (such as copyleft). The organization is incorporated in New
 
York. For more information, go
 
to <a href="https://sfconservancy.org">sfconservancy.org</a>.</p>
 

	
 

	
 

	
 
<h3>SUPPLEMENTAL RESOURCES FOR JOURNALISTS</h3>
 

	
 
<ul>
 
<li><a href="https://sfconservancy.org/docs/software-freedom-conservancy-v-vizio-announce-press-kit.pdf">A
 
full press kit, with substantial additional information and resources for
 
    journalists covering this story, can be viewed and downloaded here.</li>
 

	
 
<li><a href="/docs/software-freedom-conservancy-v-vizio-complaint-2021-10-19.pdf">The
 
    legal complaint is available</a>.</li>
 
</ul>
 
  
 

 

	
 
<h3>MEDIA CONTACT</h3>
 

	
 
<p>Hannah Gregory, Media Rep for Good Causes<br/>
 
<a href="mailto:media@sfconservancy.org">&lt;media@sfconservancy.org&gt;</a></p>
 
{% endblock %}
conservancy/content/copyleft-compliance/vmware-lawsuit-appeal.html
Show inline comments
 
{% extends "base_compliance.html" %}
 
{% block subtitle %}Copyleft Compliance Projects - {% endblock %}
 
{% block submenuselection %}PastLawsuits{% endblock %}
 
{% block content %}
 
<h2>The time has come to stand up for the GPL.</h2>
 

	
 
<p><strong>Update 2019-04-02:</strong> Please
 
  see <a href="https://sfconservancy.org/news/2019/apr/02/vmware-no-appeal/">this
 
  announcement regarding conclusion of the VMware suit in Germany</a>.  Since the suit has
 
  concluded, any funds you donate here will support our ongoing compliance efforts.  The
 
  remaining material below is left as it was before that announcement:</p>
 

	
 
<p><em>In March 2015, Conservancy <a href="/news/2015/mar/05/vmware-lawsuit/">announced Christoph Hellwig's
 
    lawsuit against VMware in Germany</a>.  In July 2016,
 
    we <a href="/news/2016/aug/09/vmware-appeal/">announced that Christoph
 
    would appeal the lower court's ruling</a>.</p>
 
    Support Conservancy's and Christoph's efforts in this area
 
    by <a href="/sustainer/">becoming a Conservancy
 
    sustainer</a> or <a href="#donate-box" class="donate-now">donating via
 
    the link on the right</a>.</em></p>
 

	
 

	
 
<p>We were told to ask nicely and repeatedly, so we did.</p>
 

	
 
<p>We asked allies to help us make contact in friendly and professional
 
  ways.</p>
 

	
 
<p>Everyone asked us to give companies as many chances as possible and as
 
  much help as possible to comply with copyleft, so we did.</p>
 

	
 
<p>We've worked for years to help VMware comply with the GPL, but they
 
refuse. Negotiations broke down for the last time when they insisted on an 
 
refuse. Negotiations broke down for the last time when they insisted on an
 
NDA just to discuss settlement terms!</p>
 

	
 
<p>Christoph is among the most active developers of Linux.  As of Feburary 
 
19, 2015, Christoph has contributed 279,653 lines of code to the Linux kernel, 
 
and ranks 20th among the 1,340 developers involved in the latest 3.19 kernel 
 
<p>Christoph is among the most active developers of Linux.  As of Feburary
 
19, 2015, Christoph has contributed 279,653 lines of code to the Linux kernel,
 
and ranks 20th among the 1,340 developers involved in the latest 3.19 kernel
 
release.  Christoph also
 
ranks 4th among those who have reviewed third-party source code, tirelessly
 
corrected and commented on other developers' contributions.  Christoph
 
licenses his code to the public under the terms of the GPL for practical and
 
ideological reasons.  VMware, a company with net revenue of over $1 billion
 
and over 14,000 employees, ignored Christoph's choice.  They took Christoph's
 
code from Linux and modified it to work with their own kernel without releasing
 
source code of the resulting complete work.  This is precisely the kind of
 
activity Christoph and other kernel developers seek to prevent by choosing
 
the GPL.  The GPL was written to prevent this specific scenario!</p>
 

	
 
<h3>This is a matter of principle.</h3>
 

	
 
<p>Free and open source software is everywhere and in everything; yet our
 
  software freedom is constantly eroded.</p>
 

	
 
<p>We want companies to incorporate our software into new products, but there
 
are a few simple rules.  Copylefted free software is so prevalent because
 
there's no way a company can compete without using a significant amount of
 
free software to bring products to market in reasonable time. They get so
 
much benefit from our work.  Allowing the whole community to review, use,
 
improve and work with the code seems very little to ask in return.  Copyleft
 
also ensures competitors cannot undercut those who contribute.  Without active enforcement, the GPL is
 
effectively no different from a non-copyleft license.</p>
 

	
 
<p>What point is there for companies to make sure that they're compliant if
 
there are no consequences when the GPL is violated? Many will continue to
 
ignore the rules without enforcement.  We know that there are so many
 
companies that willingly comply and embrace GPL as part of their business.
 
Some are temporarily out of compliance and need to be brought up to speed,
 
but willingly comply once they realize there is an issue.  Sadly, VMware sits
 
in the rare but infamous class of perpetually non-compliant companies. VMware
 
has been aware of their noncompliance for years but actively refuses to do
 
the right thing.  Help us do right by those who take the code in the spirit
 
it was given and comply with copyleft, and stop those don't.</p>
 

	
 
<p>We know that copyleft isn't a favorite licensing strategy for some in our
 
community.  Even so, this case will help bring clarity on the question of
 
combined and derivative works, and is essential to the future of all software
 
freedom.  This case deserves support from copyleft and non-copyleft free
 
software communities alike.</p>
 

	
 
<h3>Show you care</h3>
 

	
 
<p>Bad actors have become complacent because they think you don't care.  A
 
  strong show of public support for Conservancy and Christoph's position will
 
  help our legal case and demonstrate the interpretive context for it.
 
  Please <a href="#donate-box" class="donate-now">donate</a> to our campaign to enforce the GPL.  Help Conservancy
 
  increase its number of individual donors, so we have clear evidence to show
 
  bad actors that the GPL matters to the individuals in our community.
 
  After you <a href="#donate-box" class="donate-now">donate</a>, go and tell the world: &ldquo;Play by the rules, @VMware. I defend the #GPL with Christoph &amp; @Conservancy. #DTRTvmware  Help at https://sfconservancy.org/sustainer/ &rdquo; on your blog or microblog.
 
  </p>
 

	
 

	
 
<h3>Isn't the combined works and/or derivative works question a legal grey area?</h3>
 

	
 
<p>We don't think so, but this case will let the court to decide that question.
 
Either way, it's beneficial to our entire community to find out what the
 
judges think.  (Check out our <a href="/copyleft-compliance/vmware-lawsuit-faq.html">FAQ to find out more
 
information</a>.)</p>
 

	
 
<p>Help us pay for this expensive lawsuit and to generally defend software
 
  freedom and the GPL.  Help us show the world that copyleft matters.  We are excited 
 
  to announce that we already reached an anonymous match for this campaign, where every dollar donated 
 
  freedom and the GPL.  Help us show the world that copyleft matters.  We are excited
 
  to announce that we already reached an anonymous match for this campaign, where every dollar donated
 
  was matched up to $50,000. However, that $100,000 is just an initial step
 
  and there is so much GPL enforcement work to do.  So, please
 
  donate now: by becoming <a href="/sustainer/">a Conservancy Sustainer</a> or
 
  via <a href="#donate-box" class="donate-now">donate link on the right</a>.</p>
 

	
 
<h3>Want To Know More?</h3>
 

	
 
<p>Watch the video below of Conservancy Executive Director, Karen Sandler,
 
  <a href="/news/2015/mar/31/libreplanet/">delivering a keynote on this topic
 
  at
 
    LibrePlanet 2015</a>:</p>
 
<p>
 
 <video controls
 
         preload="auto" class="video-js vjs-default-skin"
 
         data-setup='{"height": 276,
 
                      "width": 640 }'>
 
    <source src="https://media.libreplanet.org/mgoblin_media/media_entries/113/karen-sandler-keynote-2015.medium.webm"
 

	
 
              type="video/webm; codecs=&#34;vp8, vorbis&#34;"
 
             />
 
   
 

 
 </video>
 
</p>
 

	
 
<p>Or, read <a href="/copyleft-compliance/vmware-lawsuit-faq.html">our FAQ about
 
    the lawsuit</a>.</p>
 

	
 
{% endblock %}
conservancy/content/npoacct/index.html
Show inline comments
 
{% extends "base_conservancy.html" %}
 
{% load humanize %}
 
{% load static %}
 

	
 
{% block subtitle %}NPOAcct - {% endblock %}
 
{% block category %}npoacct{% endblock %}
 

	
 
{% block content %}
 

	
 
<div class="donate-sidebar">
 
<table style="background-color:#afe478;width:100%;">
 
<tr><td style="text-align:center;padding:10px;padding-bottom:10px;">
 
<div id="donate-box" class="toggle-unit"><h1 class="toggle-content">Support
 
    Now!</h1></div>
 

	
 
<h3>Support NPOAcct Now!</h3>
 

	
 
<p>
 
  To support our non-profit accounting work,
 
  please&hellip; </p>
 

	
 
<p><span class="donate-box-highlight">Donate now via PayPal:</span>
 
</p>
 
<!-- PayPal start -->
 
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
 
<input type="hidden" name="cmd" value="_s-xclick">
 
<input type="hidden" name="hosted_button_id" value="3VRTJALJ5PQRW">
 
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" style="border:0" name="submit" alt="Donate Now!">
 
<img alt="" style="border:0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
 
</form>
 
<!-- PayPal end -->
 

	
 
<p>Or, <a href="/sustainer/#annual"><span class="donate-box-highlight">become a Conservancy
 
      Sustainer</span></a> (&mdash; a better option if you're donating more
 
      than $120, since you'll get a t-shirt!).</p>
 
</td></tr></table>
 
</div>
 
<div class="content-with-donate-sidebar">
 

	
 
<h2>Non-Profit Accounting Software</h2>
 

	
 
<img src="{% static 'img/conservancy-accounting-campaign-logo.png' %}" alt="Conservancy accounting campaign logo" style="float:left;" />
 

	
 
<p>Conservancy has a plan to help all non-profit organizations (NPOs) by
 
creating an Open Source and Free Software accounting system usable by
 
non-technical bookkeepers, accountants, and non-profit managers.  You can
 
help us do it by donating now.
 
</p>
 

	
 
<h3>News</h3>
 

	
 
<p><b>31 August 2016</b>: We're beginning work on a system for Payment and Reimbursement Requests.  This is a smaller piece of the larger NPO Accounting project.  Because it doesn't require much integration with larger accounting systems, we can help address this specific bookkeeping problem for NPOs sooner, and start building interest in the larger NPO Accounting project.</p>
 

	
 
<p>We haven't started writing code yet, so now's a great time to get in on the ground floor!  Check the <a href="https://npoacct.sfconservancy.org/Reimbursements/Requirements/">Requirements document</a> we're putting together on the wiki.  <a href="https://lists.sfconservancy.org/mailman/listinfo/npo-accounting">Join us on the mailing list</a> to let us know what's missing, and hear first other ways you can contribute as we start building the system.</p>
 

	
 
<h3>What is the Non-Profit Accounting Software Project?</h3>
 

	
 
<p>To keep their books and produce annual government filings, most NPOs rely
 
on proprietary software, paying exorbitant licensing fees.  This is
 
fundamentally at cross purposes with their underlying missions of charity,
 
equality, democracy, and sharing.</p>
 

	
 
<p>This project has the potential to save the non-profit sector
 
millions in licensing fees every year.  Even non-profits that continue to use proprietary accounting
 
software will benefit, since the existence of quality Open Source and Free
 
  Software for a particular task curtails predatory behavior by proprietary
 
  software companies, and creates a new standard of comparison.</p>
 

	
 
<p>But, more powerfully, this project's realization
 
will increase the agility and collaborative potential
 
for the non-profit sector &mdash; a boon to funders, boards, and employees &mdash;  bringing the Free Software and general NPO communities
 
into closer collaboration and understanding.</p>
 

	
 
<p><a href="#endorsements">Endorsers of this effort</a> include April, Fractured Atlas, The Free Software
 
Foundation, Mozilla Foundation, GNOME Foundation, OpenHatch, Open
 
Source Initiative, QuestionCopyright.org, and Software in the Public
 
Interest; all encourage you to <a href="#donate-box" class="donate-now">donate and support it</a>.</p>
 

	
 

	
 
<h3>Background</h3>
 

	
 
<p>Like many non-profit organizations (NPOs) in the USA, Conservancy's
 
  financial accounts are audited annually by an independent accounting firm;
 
  we recently completed our fiscal year 2011 audit.  As usual, our auditors
 
  asked plenty of questions about our accounting software.  Conservancy uses
 
  only Free Software, of course, centered around a set of straightforward reporting
 
  scripts that we created to run on top
 
  of <a href="http://www.ledger-cli.org/">Ledger CLI</a>. (Conservancy's
 
  current configuration using Ledger CLI
 
  is <a href="https://gitorious.org/ledger/npo-ledger-cli">publicly
 
  documented and explained</a>.)</p>
 

	
 
<p>Our auditors were only familiar with proprietary accounting software, and
 
  so our system seemed foreign to them, as it relies on Ledger CLI's text files, Emacs and
 
  version control.  During their questions
 
  about our setup, we asked them to hypothetically prescribe a specific
 
  proprietary software setup as a model for  managing Conservancy's
 
  accounts.  Our chief auditor started by mentioning a few well-known
 
  proprietary solutions.   But then he paused and continued:  <q>Given
 
  that Conservancy's a fiscal sponsor with so many temporarily restricted
 
  accounts, existing systems really wouldn't do that good of a job for
 
  you</q>.</p>
 

	
 
<p>Indeed, Conservancy reached out into the broader fiscal sponsorship
 
  community beyond the <abbr title="Free, Libre and Open Source Software">FLOSS</abbr>
 
  <abbr title="Non-profit Organization">NPO</abbr> community and discovered that many larger fiscal sponsors &mdash; even
 
  those willing to use proprietary components &mdash; have cobbled together
 
  their own unique systems, idiosyncratically tailored to their specific
 
  environments.  Thus, good, well-designed, and reusable accounting software
 
  for non-profit fiscal sponsorship is not just missing in the software
 
  freedom community; it's missing altogether.</p>
 

	
 

	
 
<p>The project that Conservancy proposes will take a modest step
 
  forward in creating a better solution for everyone. 
 
  forward in creating a better solution for everyone.
 
  <a href="#quotes">Many NPO leaders and academics agree</a> with Conservancy about the
 
  immediate need for work to begin on this
 
  effort.  <a id="endorsements"
 
  style="text-decoration:none"></a><a href="http://april.org">April</a>, <a href="https://www.fracturedatlas.org">Fractured Atlas</a>, The <a href="http://fsf.org">Free Software
 
  Foundation</a>, The <a href="https://www.mozilla.org/foundation/">Mozilla
 
Foundation</a>, The <a href="http://www.gnome.org/foundation/">GNOME Foundation</a>,  <a
 
        href="https://openhatch.org/">OpenHatch</a>, <a href="http://opensource.org/node/658">Open Source Initiative</a>,
 
  <a href="http://QuestionCopyright.org">QuestionCopyright.org</a>, and <a href="http://www.spi-inc.org/">Software in the Public Interest</a> have
 
  all endorsed Conservancy's plan, and they encourage you to <a href="#donate-box" class="donate-now">donate and
 
  support it</a>.</p>
 

	
 
<p>Conservancy is uniquely qualified to undertake this task.  Using only Free
 
  Software, Conservancy already meets the complex accounting challenges of
 
  earmarked, directed donations for over thirty different projects.  We've
 
  learned much about this work in our first seven years of
 
  operation, and we're prepared to apply what we've learned to solve
 
  this problem not just for ourselves, but for anyone who seeks a
 
  solution that both respects software freedom and handles non-profit
 
  accounting for all sorts of NPOs, including fiscal sponsors.  General NPO
 
  accounting is just a &ldquo;base case&rdquo; of fiscal sponsorship (i.e.,
 
  an NPO is just a fiscal sponsor for one and only one specific project),
 
  and Conservancy therefore believes a solution that handles fiscal sponsors
 
  will also handle the simpler case as well.</p>
 

	
 
<h3>Why Conservancy Must Fund This Work</h3>
 

	
 
<p>As it stands, nearly all Open Source and Free Software NPOs either use
 
  proprietary software, or fully outsource their bookkeeping and accounting
 
  to third-parties.  Those that don't do so (such as Conservancy and the Free
 
  Software Foundation) have long complained that existing Free Software in
 
  this area is inadequate, and have been forced to develop customized,
 
  one-off solutions in-house to make the systems work.</p>
 

	
 
<p>It's highly unlikely that the for-profit sector will adapt existing Free
 
  Software accounting systems to meet the differing needs of NPOs (let alone
 
  the more complex needs of fiscal sponsors; based on
 
  advice from our auditors and other fiscal sponsors, Conservancy understands that <em>no existing
 
  solution &mdash; proprietary or Free &mdash; meets the requirements of fiscal sponsorship accounting</em>).  Fiscal sponsors like
 
  Conservancy must track a separate set of books for every project, keeping
 
  in mind that a project may leave at any time for another NPO and need to take
 
  their books with them.  Yet, the books of the entire organization are the
 
  aggregate of the books of all these projects, and internally, they need to
 
  be presented as a single set of books for those purposes.</p>
 

	
 
<p>Meanwhile, even if an organization is not a fiscal sponsor, non-profit
 
  accounting is <em>just different</em> than for-profit accounting, particularly in
 
  the USA.  For example, for-profit-oriented systems often make problematic
 
  assumptions about the workflow of accounting tasks (often because NPOs
 
  rely primarily on donations, rather than fee-for-service or widget-selling
 
  income).  Also, non-profit income is categorized differently than
 
  for-profit income, and the reporting requirements vary wildly from their
 
  for-profit equivalents.</p>
 

	
 
<p>Conservancy's existing system is working adequately, but requires daily
 
  the relatively more expensive time of a highly technical person to do the
 
  job of bookkeeping.  Also, the system cannot easily be adapted in its
 
  current form for another NPO, unless they also have a
 
  skilled technical employee to act as bookkeeper.  This project aims to build
 
  on what Conservancy has learned and produce a non-profit accounting system
 
  that corrects these flaws.</p>
 

	
 
<p>Finally, Conservancy's mission (as stated
 
on <a href="/docs/conservancy_Form-1023.pdf">our Form
 
1023 with the USA IRS</a>) includes producing Open Source and Free Software.
 
Thus, this project is a great way to pursue Conservancy's mission and address a
 
specific need that so many NPOs (including us) have.  If no one steps up to create Free Software to replace the widely used
 
proprietary software, NPOs in aggregate will pay <em>much more</em> money for
 
proprietary licensing than Conservancy will ever spend in developing a
 
replacement. Please <a href="#donate-box" class="donate-now">donate
 
generously</a> to help us do it!</p>
 

	
 
<a id="quotes"></a>
 
<h3>Statements of Support For This Project from Others</h3>
 

	
 
<p><q>As a national fiscal sponsor with over 3,000 arts and cultural projects
 
under our umbrella, Fractured Atlas is ecstatic about this effort's
 
potential. After 15 years wrestling with Quickbooks and other inadequate
 
options, the idea of an open source tool designed specifically for this niche
 
of the field is beyond welcome. We wholeheartedly support the Conservancy's
 
work on this front and look forward to seeing where it leads.</q> &mdash;
 
<a href="https://www.fracturedatlas.org/site/bios/staff/1/Adam%20Forest_Huttler">Adam
 
  Huttler</a>, Chief Executive Officer, <a href="https://www.fracturedatlas.org">Fractured Atlas</a></p>
 

	
 
<p><q><a href="http://QuestionCopyright.org">QuestionCopyright.org</a> is
 
just one of many organizations that would benefit from a Free Software
 
accounting system that is usable by non-technical people.  We
 
enthusiastically support the Conservancy's campaign to create one, and look
 
forward to using the result.</q>
 
&mdash; <a href="http://questioncopyright.org/speakers/karl_fogel">Karl
 
Fogel</a>, Executive Director,
 
  <a href="http://QuestionCopyright.org">QuestionCopyright.org</a></p>
 

	
 
<p><q>Software in the Public Interest is a fiscal sponsor for 44 free and open
 
source projects. We share many of the accounting needs and challenges of
 
the Conservancy and are excited to collaborate on a Free Software
 
solution to these needs and challenges.</q>
 
&mdash; Michael Schultheiss, Treasurer, <a href="http://www.spi-inc.org/">Software
 
    in the Public Interest</a></p>
 

	
 
<p><q>Open Source accounting software specifically tailored for non-profits
 
    will fill a pretty large need.</q>
 
    &mdash; <a href="http://wagner.nyu.edu/calabrese">Thad Calabrese</a>,
 
    Assistant Professor of Public and Nonprofit Financial Management
 
    at <a href="http://wagner.nyu.edu/">NYU Wagner</a>, and co-author
 
    of <cite>Financial Management for Public, Health, and Not-for-Profit
 
    Organizations, 4th Edition</cite>.</p>
 

	
 
<p><q>The Open Source Initiative has shared the experiences of Software
 
     Freedom Conservancy in navigating the financial management needs of
 
     non-profit organisations and shares their concern. We have many NPOs as
 
     members and we welcome this useful initiative by Conservancy.</q>
 
     &mdash; Simon Phipps, (former) President, <a href="http://opensource.org/node/658">Open Source
 
     Initiative</a></p>
 

	
 
<p><q>The <a href="https://fsf.org/">Free Software Foundation</a> is committed to doing all of its work,
 
both public-facing and internal, using only free software. We are thankful to
 
the developers of SQL Ledger for providing the accounting software that has
 
served us well for many years. As we have grown, so have the complexities of
 
our finances.  Because of our own needs and our mission to help other
 
organizations &mdash; both inside and outside of the technology sphere
 
&mdash; run their operations on exclusively free software, we wholeheartedly
 
support this Conservancy initiative.</q> &mdash; <a href="http://www.fsf.org/about/staff-and-board#johns">John Sullivan</a>, Executive
 
Director, <a href="https://fsf.org">Free Software Foundation</a></p>
 

	
 
<p><q>Open source is a great way to solve new problems and make software that
 
is more flexible and responsive to the needs of the people who use it. That's
 
as true for the finance industry as it is on the web.</q>
 
&mdash; <a href="http://blog.mozilla.org/press/bios/mark-surman/">Mark
 
Surman</a>, Executive
 
Director, <a href="https://www.mozilla.org/foundation/">Mozilla
 
Foundation</a></p>
 

	
 
<p><q>As a young free software non-profit, OpenHatch is thrilled to see this
 
effort; it would let us spend more of our time on programs and less on
 
paperwork.  I have already personally <a href="#donate-box" class="donate-now">donated</a>.</q> &mdash; Asheesh Laroia,
 
Founder, <a href="https://openhatch.org/">OpenHatch</a></p>
 

	
 
<!-- closes div.content-with-donate-sidebar -->
 
</div>
 

	
 
{% endblock %}
conservancy/content/press/qanda.html
Show inline comments
 
{% extends "base_vizio.html" %}
 
{% block subtitle %}Press - {% endblock %}
 
{% block submenuselection %}VizioQandA{% endblock %}
 
{% block content %}
 
<h1 id="QandA">Vizio Lawsuit Q &amp; A</h1>
 

	
 
<a href="https://shoestring.agency/wp-content/uploads/2021/10/SFC_QA_GeneralPublic.pdf">[
 
         A PDF version of this Q&amp;A is available. ]</a>
 

	
 
<h3 id="">Q: Who is the defendant in this lawsuit?</h3>
 

	
 
<p>The defendant is Vizio, Inc., a U.S.-based TV maker and media company that has been publicly traded on the New York Stock Exchange since March 2021.</p>
 

	
 
<h3 id="">Q: What did Vizio do wrong?</h3>
 

	
 
<p>The lawsuit alleges that Vizio’s TV products, built on its SmartCast system, contain software that Vizio unfairly appropriated from a community of developers who intended consumers to have very specific rights to modify, improve, share, and reinstall modified versions of the software.</p>
 

	
 
<h3 id="">Q: So, Vizio didn’t create SmartCast?</h3>
 

	
 
<p>It appears from extensive research that the core components of SmartCast were not created by Vizio, but rather, are based on various components licensed to the public under free and open-source software (FOSS) licenses. Most notably, many of the programs that are part of the SmartCast system are licensed under the GPL.</p>
 

	
 
<h3 id="">Q: What is copyleft?</h3>
 

	
 
<p>Copyleft is a term used to describe a license that uses the rights granted under copyright—not to restrict usage, but instead to ensure that the software is always shared freely.</p>
 

	
 
<h3 id="">Q: What is FOSS? </h3>
 

	
 
<p>“FOSS” stands for free and open-source software that allows for software freedom. “Software freedom” means the freedom of a user to run, study, (re)distribute, and (re)install (modified) versions of a piece of software. More generally, it is the idea that we are entitled to rights when using software and there should be equal protections for privacy and redistribution. The rights should treat everyone equally: big businesses and individual consumers and users alike.</p>
 

	
 
<h3 id="">Q: I thought FOSS allowed companies to simply take software from the commons and put it into their products whenever they wanted? Isn’t that the whole point of FOSS—for companies to get components for their products and lower their cost of production?</h3>
 
   
 

 
<p>While that is the main advantage that big corporations get from FOSS, it was never the primary impetus behind FOSS. Particularly through special licensing terms like the GPL, this licensing approach creates an egalitarian community of users, developers, and consumers. When functioning correctly, each individual and organization that participates in FOSS stands on equal footing with everyone else. Licenses like the GPL have rules to assure everyone's rights in that ecosystem are treated with equal respect and reverence. This is why compliance with these rules is important and we must stand up against companies who refuse to comply. </p>
 
 
 

 
<h3 id="">Q: But, I'm not a software developer. Why should I care at all that Vizio won’t let me modify and reinstall GPL’d components in its SmartCast system?</h3>
 
 
 

 
<p>Right-to-repair software is essential for everyone, even if you don't know how to make the repairs yourself. Once upon a time, we had lots of local vendors that could repair and fix TVs when they broke.  That’s because TVs were once analog hardware devices that could be taken apart and understood merely by inspection from someone with the sufficient knowledge. TVs today are simply a little computer attached to a large display. As such, the most important part that needs repairs is usually when the software malfunctions, has bugs, or otherwise needs upgrades and changes. The GPL was specifically designed to assure such fixes could be done, and that consumers (or agents those consumers hire on the open market) can make such repairs and changes. </p>
 
     
 

 
<h3 id="">Q: Alright, that makes sense, but I’m happy with Vizio’s SmartCast right now. What difference does it make to me if Vizio won’t give me the rights under the GPL?</h3>
 

	
 
<p>Time and time again, companies stop supporting the software build for the device long before the computer inside the device fails. In other words, these devices are built for planned premature obsolescence. </p>
 

	
 
<p>By refusing to comply with the pro-consumer terms of the GPL, Vizio has the power to disable your TV at any time it wants, over your internet connection, without your knowledge or consent. If Vizio complied with the GPL, all would not be lost in this scenario: volunteers and third-party entities could take GPL’d software as a basis for a replacement for SmartCast. Without these rights, consumers are essentially forced to purchase new devices when they could be repaired.</p>
 

	
 
<h3 id="">Q: Creation of a replacement for SmartCast seems far-fetched to me. After all, most of the software in SmartCast is not actually GPL’d, only a portion of the components and programs are GPL’d.  How will Vizio's compliance with the GPL actually lead to an alternative firmware?</h3>
 
    
 

 
<p>Years ago, people said the very same thing about wireless routers, which had only partially GPL'd firmwares. However, thanks to actions to enforce the GPL in the wireless router market, the OpenWrt project was born! That project is now the premiere replacement software for wireless routers from almost every major manufacturer on the market. There is now healthy competition and even occasional cooperation between a hobbyist and community-led firmware project and the wireless router manufacturers. We believe the same can happen for TVs, but the first step is assuring the entire TV market complies with the GPL.</p>
 
    
 

 
<h3 id="">Q: What indications do you have that compliance with the GPL will be a catalyst for alternative firmwares?</h3>
 

	
 
<p>Beyond the OpenWrt example, Software Freedom Conservancy sued 14 defendants for GPL violations in 2009, including Samsung for its 2009-era TV models. Thanks to the source release that was achieved through the settlement of that lawsuit, a community-led SamyGo project was created for that era of TVs. (source)</p>
 
    
 

 
<h3 id="">Q: Who is the plaintiff in the lawsuit?</h3>
 

	
 
<p>Software Freedom Conservancy is the plaintiff in this case. The organization is filing as a third-party beneficiary, as the purchaser of a product which has copylefted code on it. A consumer of a product such as this has the right to access the source code so that it can be modified, studied, and redistributed (under the appropriate license conditions).</p>
 

	
 
<h3 id="">Q: What makes this different than other GPL compliance lawsuits?</h3>
 

	
 
<p>In the past, the plaintiffs have always been copyright holders of the specific GPL code. In this case Software Freedom Conservancy is demonstrating that it's not just the copyright holders, but also the receivers of the licensed code which are entitled to their rights.</p>
 

	
 
<h3 id="">Q: What type of case is this?  How does it compare to previous litigation by Software Freedom Conservancy regarding the GPL?</h3>
 

	
 
<p>Previously, Software Freedom Conservancy filed as a copyright holder in federal court, or coordinated or funded litigation by other copyright holders in copyright cases in the U.S. and Germany. This is an example of how, historically, GPL litigation has focused on the rights of the developers. However, the rights assured by the GPL are actually not intended primarily for the original developers, but rather for people who purchase products that contain GPL’d software. That is what makes this litigation unique and historic in terms of defending consumer rights. It is the first case that focuses on the rights of individual consumers as third-party beneficiaries of the GPL.</p>
 
     
 

 
<h3 id="">Q: Why are you filing a third-party beneficiary claim instead of a copyright claim?</h3>
 

	
 
<p>For too long, GPL enforcement has focused only on the rights of developers, who are often not the ones impacted by the technology in question. Some of those same developers even have lucrative jobs working for the various companies that violate the GPL. The GPL was designed to put the rights of hobbyists, individual developers, consumers, small companies, and nonprofit organizations on equal footing with big companies. With the advent of more contributions to GPL’d software coming from for-profit multinational corporations and fewer from individuals, the rights of these other parties are often given second-class billing. The third-party beneficiary claim prioritizes the consumers, who are the users and the most important beneficiaries of the rights under GPL.</p>
 

	
 
<h3 id="">Q:  Are you saying the rights of developers under the GPL are not important?</h3>
 

	
 
<p>Not at all! Most would agree that individual developers care deeply about the software freedom of users. They are the artists who create the amazing FOSS on which all of us rely. However, as Francis Ford Coppola once said (paraphrased), “to understand who holds the power in any culture, look not to the artists but who employs the artists”—a quote which suits this situation well. Large multinational corporations have co-opted FOSS for their own bottom lines. While many developers privately cheer Software Freedom Conservancy’s efforts and donate money to this cause, they fear the power that their employers exert and have asked Software Freedom Conservancy to fight for the software freedom of users.</p>
 
    
 

 
<h3 id="">Q:  Why is this important for the future of developers?</h3>
 

	
 
<p>The next generation of developers comes from the users of today. The golden age of FOSS that the industry now enjoys came to fruition from the counterculture created by FOSS activists in the 1990s and early 2000s. During this time, Linux and other GPL’d software was considered just a curiosity (and was even accused of being anti-American). Nevertheless, the rights assured by the GPL ultimately led to a new generation of software developers learning how to build Linux and all the amazingly useful FOSS around it. To recruit a diverse group of the next generation of enthusiastic developers, we must ensure that the rights under GPL are available to every single individual, consumer and hobbyist around the globe. That is what this lawsuit is about.</p>
 

	
 
<h3 id="">Q: If the goal is to fight for all consumer rights, why not file this lawsuit as a class action? </h3>
 

	
 
<p>Forcing consumers to fight for their individual rights is one way that for-profit corporations exert their inappropriate power. Actions such as this lawsuit seek to disrupt this power dynamic by asserting that all consumers of copylefted code deserve the opportunity to know, access and modify the code on their devices. However, expecting all consumers to have to personally participate in that process not only puts an undue burden on them, it simply is not realistic. It is not how change happens. Furthermore, pursuant to “The Principles of Community Oriented GPL Enforcement,” the lawsuit does not prioritize financial remedy over compliance. This lawsuit seeks the most important remedy for the public good: release of the Complete, Corresponding Source (CCS) for all GPL’d components on Vizio TVs. Once that is achieved, the benefit is immediately available to not only all who purchased a Vizio TV, but also to the entire FOSS community.  </p>
 
     
 

 
<h3 id="">Q: What are “The Principles of Community Oriented GPL Enforcement”?</h3>
 

	
 
<p>In 2016, Software Freedom Conservancy published “The Principles of Community-Oriented GPL Enforcement” in response to those who might use copyleft licenses for their own financial gain. Software Freedom Conservancy is part of a long tradition of using copyleft enforcement as intended: to further the rights and freedoms of individual users, consumers, and developers. Pursuant to those principles, Software Freedom Conservancy never prioritizes financial gain over assuring the rights guaranteed by the GPL are upheld.</p>
 
     
 

 
<h3 id="">Q: Are the court documents released? Does that relate to why the litigation was brought in the U.S.?</h3>
 

	
 
<p>Software Freedom Conservancy brought this litigation within the U.S. specifically because litigation in this country is completely public. Historically, Germany has been one of the most popular venues for GPL litigation but it also has a huge downside: the German legal system keeps all details of the cases private and there is little transparency. </p>
 

	
 
<h3 id="">Q: Who is funding this lawsuit? </h3>
 

	
 
<p>This lawsuit is central to the mission of Software Freedom Conservancy. The organization has received grants from Amateur Radio Digital Communications (ARDC) to support GPL compliance work. As a nonprofit, charitable donations are also an important source of funding to carry out the work. This combined financial support allowed for this litigation to begin. However, continued donor support will be vital since litigation like this is quite expensive.</p>
 

	
 
<h3 id="">Q: How can someone make a donation?</h3>
 

	
 
<p>To make a tax-deductible donation to Software Freedom Conservancy, go to sfconservancy.org/donate. The best way to support this important work is to join as an official Sustainer. Details on that program are available at sfconservancy.org/sustainer. </p>
 

	
 
<h3 id="">Q: Why must you file a lawsuit? Isn’t there any other way to convince Vizio to comply with the GPL? </h3>
 

	
 
<p>Vizio has a long history of violating copyleft. The company has also stopped replying to inquiries from Software Freedom Conservancy. Vizio has been benefiting from the use of an abundance of existing copylefted software, but completely ignores the responsibilities that come with using the licenses. Furthermore, Vizio has already been subject to a large class-action suit that alleged that Vizio was misusing its customers’ private information (Vizio settled that class action for $17 million).</p>
 

	
 
<h3 id="">Q: What GPL code has been discovered in Vizio’s SmartCast? </h3>
 

	
 
<p>SmartCast is a Linux-based operating system. That means that not only do multiple copies of the Linux kernel appear in the firmware, other GPL'd and LGPL'd programs were found, including U-Boot, bash, gawk, tar, glibc, and ffmpeg.</p>
 

	
 
<h3 id="">Q: How can I verify Software Freedom Conservancy’s technical findings above? </h3>
 

	
 
<p>Object code can be found on the TVs and source code/binaries on the filesystem. There are multiple models in which we can confirm the findings. Go to sfconservancy.org/vizio for details.</p>
 

	
 
<a href="https://shoestring.agency/wp-content/uploads/2021/10/SFC_QA_GeneralPublic.pdf">[
 
         A PDF version of this Q&amp;A is available. ]</a>
 

	
 
{% endblock %}
conservancy/content/projects/apply/conservancy-fsa-template.tex
Show inline comments
 
\documentclass[letterpaper,12pt]{article}
 
\usepackage{draftcopy}
 
\usepackage{enumitem}
 
\usepackage{parskip}
 
\usepackage{fancyhdr}
 
\usepackage{xspace}
 
\usepackage[verbose, twoside, dvips,
 
              paperwidth=8.5in, paperheight=11in,
 
              left=1in, right=1in, top=1.25in, bottom=.75in,
 
           ]{geometry}
 

	
 
\pagestyle{fancy}
 

	
 
\lhead{}
 
\rhead{}
 
\chead{}
 

	
 
\cfoot{\thepage}
 
\lfoot{}
 
\rfoot{Initials: \rule{0.15\textwidth}{0.2mm}}
 
\renewcommand{\headrulewidth}{0pt}
 
\renewcommand{\footrulewidth}{0pt}
 

	
 
\newcommand{\projectname}{FIXME-PROJECT-NAME\xspace}
 
\newcommand{\signatories}{FIXME-SIGNATORIES\xspace}
 
\newcommand{\leadershipbody}{FIXME-LEADERSHIP-BODY-NAME\xspace}
 
\newcommand{\signature}[3]{
 
\vspace{2ex}
 

	
 
By: \hspace{0.95em}\rule{0.50\textwidth}{0.2mm} \hfill{}Date: \rule{0.25\textwidth}{0.2mm}
 

	
 
\if\relax\detokenize{#1}\relax
 
\else
 
\hspace{2.5em} \textsc{#1}
 
\fi
 
\if\relax\detokenize{#2}\relax
 
\else
 

	
 
\hspace{2.5em} #2
 
\fi
 
\if\relax\detokenize{#3}\relax
 
\else
 

	
 
\hspace{2.5em} #3
 
\fi
 
\vspace{6ex}
 
}
 

	
 
\begin{document}
 

	
 
\begin{center}
 
\textsc{\Huge Fiscal Sponsorship Agreement}{\Huge {} } 
 
\textsc{\Huge Fiscal Sponsorship Agreement}{\Huge {} }
 
\par\end{center}
 

	
 
\bigskip{}
 

	
 

	
 
This Agreement is made by and between Software Freedom Conservancy
 
(``Conservancy'') and FIXME-CONTRIBUTOR-NAMES (the ``\signatories'')
 
on behalf of the project known as \projectname (the ``Project'') (each, a 
 
``Party''; together, ``the Parties'').  Conservancy is a New York nonprofit 
 
public benefit corporation located in Brooklyn, New York, which has received 
 
recognition of exemption from federal income tax under Section 501(c)(3) of 
 
the Internal Revenue Code (IRC) and classification as a public charity under 
 
on behalf of the project known as \projectname (the ``Project'') (each, a
 
``Party''; together, ``the Parties'').  Conservancy is a New York nonprofit
 
public benefit corporation located in Brooklyn, New York, which has received
 
recognition of exemption from federal income tax under Section 501(c)(3) of
 
the Internal Revenue Code (IRC) and classification as a public charity under
 
IRC Sections 509(a)(1) and 170(b)(1)(A)(vi).
 

	
 
\textsc{Whereas:}
 

	
 
\begin{enumerate}[label=\Alph*.,ref=\S \Alph*]
 
\item Conservancy's organizational mission and charitable goal is to promote,
 
improve, develop and defend Free, Libre, and Open Source Software
 
projects. 
 
projects.
 
\item The purpose of the Project is to produce, distribute, document, and
 
improve software and/or documentation that can be freely copied, modified and redistributed,
 
and for which modified versions can also be redistributed (``Free Software''),
 
and to facilitate and organize its production, improvement and ease
 
of use. 
 
of use.
 
\item Conservancy desires to act as the fiscal sponsor of the Project beginning
 
on the Effective Date (as defined below) to assist the Project in
 
accomplishing its purpose, which Conservancy has determined will further
 
Conservancy's charitable goals. The \signatories desire to manage
 
the Project under the sponsorship of Conservancy. 
 
the Project under the sponsorship of Conservancy.
 
\item Conservancy's Board of Directors has approved the establishment
 
of a fund to receive donations of cash and other property earmarked
 
for support of the Project and to make disbursements in furtherance
 
of the Project's mission (the ``Project Fund''). Currently, the
 
principal office of the Project is located at: [FIXME: MAILING ADDRESS]. 
 
principal office of the Project is located at: [FIXME: MAILING ADDRESS].
 
\end{enumerate}
 
\medskip{}
 

	
 

	
 
\textsc{Now, therefore, the Parties hereby agree as follows:}
 

	
 
\begin{enumerate}[label=\arabic*.,ref=\S~\arabic*]
 
\item \textbf{Term of Agreement}. As of the Effective Date, the Project
 
joins Conservancy, which relationship will continue unless and until
 
terminated as set forth in \ref{Termination}. 
 
terminated as set forth in \ref{Termination}.
 
\item \textbf{Project Management and Activities}.
 

	
 

	
 
\begin{enumerate}[label=\alph*.,ref=\theenumi(\alph*)]
 
\item \textbf{The \leadershipbody Will Manage the Project}. \label{ProjectManagement}
 
Authority to manage the technical, artistic and philanthropic direction
 
of the Project and the program activities of the Project is delegated
 
to the \leadershipbody as defined in \ref{Representation},
 
subject at all times to the direction and control of Conservancy's
 
Board of Directors. Conservancy will only intervene in the program
 
activities to the extent the Project is not in compliance with \ref{FreeSoftware}
 
or \ref{CharitablePurpose} of this Agreement. 
 
or \ref{CharitablePurpose} of this Agreement.
 
\item \textbf{The Project Will Be Free Software}. \label{FreeSoftware}
 
Conservancy and the \leadershipbody agree that any and all software
 
and/or documentation distributed by the Project will be distributed solely as Free Software.
 
Conservancy retains the sole right to determine whether the Project's
 
software and/or documentation constitutes Free Software (as defined herein).
 
\item \textbf{Ultimate Responsibility of Project}. Subject to \ref{ProjectManagement}
 
of this Agreement, all community programs, public information work,
 
fundraising events, processing and acknowledgment of cash and non-cash
 
revenue items, accounts payable and receivable, negotiation of leases
 
and contracts, disbursement of Project funds (including grants), and
 
other activities planned by the Project shall be the ultimate responsibility
 
of Conservancy and shall be conducted in the name of Conservancy,
 
beginning on the Effective Date. 
 
beginning on the Effective Date.
 
\item \textbf{Project Not An Agent Of Conservancy}. The \signatories
 
hereby acknowledge that the Project and the \leadershipbody
 
do not and shall not act as an agent for Conservancy unless specifically
 
authorized in writing by Conservancy to do so. 
 
authorized in writing by Conservancy to do so.
 
\end{enumerate}
 
\item \textbf{Fees}. The \signatories agree to donate ten percent
 
(10\%) of the Project's gross revenue (including, but not necessarily limited
 
to, all income and donations) to Conservancy for its general operations.
 

	
 

	
 
Notwithstanding the above, the \signatories agree that should Conservancy
 
be required to pay any taxes (including but not limited to sales taxes
 
and unrelated business taxable income) as the result of any activity
 
of the Project and/or activities undertaken by Conservancy on the
 
Project's behalf, such taxes shall be deducted from the Project Fund.
 

	
 

	
 
Conservancy will monitor any unrelated business taxable income and
 
may require the Project to cease activities generating such income
 
if the overall amounts exceed amounts permissible or prudent for Conservancy,
 
given Conservancy's tax exempt status.
 

	
 
\item \textbf{Project Fund/Variance Power}. Beginning on the Effective Date,
 
Conservancy shall place all gifts, grants, contributions and other
 
revenues received by Conservancy and identified with the Project into
 
a Project Fund to be used for the sole benefit of the Project's mission
 
as that mission may be defined by the \leadershipbody from
 
time to time with the approval of Conservancy. Conservancy retains
 
the unilateral right to spend such funds so as to accomplish the purposes
 
of the Project as nearly as possible within Conservancy's sole judgment.
 
Conservancy agrees to make a good faith effort to consider any expressed
 
donor intent in making determinations on the expenditure of that donor's
 
gift; however, the Parties acknowledge that expressions of donor intent
 
are not legally binding on Conservancy. The Parties agree that all
 
money, and the fair market value of all property, deposited in the
 
Project Fund be reported as the income of Conservancy, for both tax
 
purposes and for purposes of Conservancy's financial statements. It
 
is the intent of the Parties that this Agreement be interpreted to
 
provide Conservancy with variance powers necessary to enable Conservancy
 
to treat the Project Fund as Conservancy's asset in accordance with
 
Financial Accounting Statement No. 136 issued by the Financial Accounting
 
Standards Board, while this Agreement is in effect. 
 
Standards Board, while this Agreement is in effect.
 
\item \textbf{Project Fund Management / Performance of Charitable Purposes}.
 
\label{CharitablePurpose} All of the assets received by Conservancy
 
under the terms of this Agreement shall be devoted to the purposes
 
of the Project, within the tax-exempt purposes of Conservancy. The
 
\signatories agree not to use its funds or operate in any way which would
 
jeopardize the tax-exempt status of Conservancy. No item of revenue
 
shall be earmarked for use in any attempt to influence legislation
 
within the meaning of IRC Section 501(c)(3) and no agreement, oral
 
or written, to that effect shall be made between Conservancy and any
 
revenue source. Conservancy shall not use any portion of the assets
 
to participate or intervene in any political campaign on behalf or
 
in opposition to any candidate for public office, to induce or encourage
 
violations of law or public policy, to cause any private inurement
 
or improper private benefit to occur, nor to take any other action
 
inconsistent with IRC Section 501(c)(3). 
 
inconsistent with IRC Section 501(c)(3).
 

	
 
\item \textbf{Representation of the Project in Conservancy}. \label{Representation}The
 
\signatories, each a signatory hereto, hereby establish and comprise
 
the initial members of the \leadershipbody
 
to represent the Project in its official communication with Conservancy.
 
The \signatories hereby acknowledge that the \leadershipbody
 
will be subject to all terms of this Agreement.
 
On the Effective Date, the \signatories hereby transfer all
 
rights, obligations and privileges of this Agreement over to the
 
\leadershipbody.
 

	
 
[FIXME: Note: The rest of this section should describe the way in which the
 
Project wishes to interface with Conservancy; including who has
 
authority to communicate with Conservancy regarding the Project
 
and what is required in order for Conservancy to act on behalf
 
of the Project. For example, all of the Contributors confirm their
 
approval of a certain action, or can any one of the Contributors instruct
 
Conservancy to take a certain action. Also, the Contributors may
 
want to identify certain other individuals that have the power to
 
represent the Project. Here a few samples of how projects have handled
 
this clause in the other projects:
 

	
 
\begin{itemize}
 
\item \textbf{Simple Self-Perpetuating Committee}. The \signatories,
 
each a signatory hereto, shall initially [FIXME: form or comprise]
 
the \leadershipbody as a Project Committee (``Committee'')
 
to represent the Project in its official communication with Conservancy.
 
Existing Project Committee Members (``Members'') can be removed
 
from and new Members can be added to the Committee by simple majority
 
vote of the existing Committee; however, three (3) shall be the mandatory
 
minimum number of Members. All decisions of the Committee shall be
 
made by simple majority. The Committee shall appoint, by majority
 
vote, one Member as its ``Representative'' to communicate all Project
 
decisions to Conservancy.
 

	
 

	
 
The Representative shall promptly inform Conservancy of changes in
 
the Committee composition and of contact information for all Members.
 
If Conservancy is unable, after all reasonable efforts, to contact
 
a majority of the Members for a period of sixty (60) days, or if the
 
minimum number of Members is fewer than three for a period of at least
 
sixty days, Conservancy may unilaterally appoint new Members from
 
the Project community to replace any unreachable Members and/or to
 
increase the Committee composition to three Members.
 

	
 
\item \textbf{Self-Perpetuating Committee, w/ avoiding employees of same
 
company serving together}. The \signatories, each a signatory
 
hereto, shall initially [FIXME: form or comprise] the \leadershipbody
 
as a Project Committee (``Committee'') to represent the Project
 
in its official communication with Conservancy. Existing Project
 
Committee Members (``Members'') can be removed from and new Members
 
can be added to the Committee by simple majority vote of the existing
 
Committee; however, three (3) (the ``Minimum'') shall be the mandatory
 
minimum number of Members.
 

	
 

	
 
For purposes of this Agreement, a Member is ``Employed'' by an Entity
 
if the Member is compensated for more than thirty-two (32) hours of
 
work per week by such Entity for a continuous period of more than
 
sixty (60) days. No more than one Member may be Employed by the same
 
Entity.
 

	
 

	
 
Should two (2) or more Members be Employed by the same Entity at any
 
time (e.g., if an existing Member changes employers while a Member),
 
Members Employed by the same Entity must immediately resign in succession
 
until only one (1) of them remains on the Committee. Should voluntarily
 
resignations fail to yield the aforementioned result after sixty (60)
 
days, the Members Sharing an Employer shall be removed by Conservancy
 
from the Committee in order of decreasing seniority. Seniority shall
 
be determined by length of service by the Member on the Committee,
 
including all historical periods of non-contiguous service.
 

	
 

	
 
All decisions of the Committee shall be made by simple majority. The
 
Committee shall appoint, by majority vote, one Member as its Representative
 
to communicate all Project decisions to Conservancy. The Representative
 
shall promptly inform Conservancy of changes in the Committee composition
 
and of contact information for all Members. If Conservancy is unable,
 
after all reasonable efforts, to contact a majority of the Members
 
for a period of sixty (60) days, or if the number of Members is fewer
 
than the Minimum for a period of at least sixty days, Conservancy
 
may, after at least thirty days notice to Project, unilaterally appoint
 
new Members from the Project community to replace any unreachable
 
Members and/or to increase the Committee composition to the required
 
Minimum.
 

	
 
\item \textbf{An Elected Oversight Committee.} The \signatories, each
 
a signatory hereto, shall initially [FIXME: form or comprise] the 
 
\leadershipbody as a Project Committee (``Committee'') to 
 
a signatory hereto, shall initially [FIXME: form or comprise] the
 
\leadershipbody as a Project Committee (``Committee'') to
 
represent the Project in its official communication with Conservancy.  The
 
Committee shall hereafter be elected by community members of the Project as
 
designated by the Committee or a subcommittee of the Committee (the 
 
``Community Members'').  
 

	
 
The positions on the Committee will be on a two-year staggered basis 
 
([FIX-ME: some portion] of the initial board seats will be for one year).  
 
The members of the Committee may be removed from the position at any time 
 
by a majority vote of the Community Members.  Upon the resignation or 
 
removal of a member of the Oversight Board, the Community Members shall 
 
elect a replacement Community Member to serve on the Committee. 
 

	
 
The Committee will elect a single individual to communicate with 
 
Conservancy (the ``Representative'') and shall notify Conservancy promptly 
 
following the election of a new Representative.  The Representative will 
 
designated by the Committee or a subcommittee of the Committee (the
 
``Community Members'').
 

	
 
The positions on the Committee will be on a two-year staggered basis
 
([FIX-ME: some portion] of the initial board seats will be for one year).
 
The members of the Committee may be removed from the position at any time
 
by a majority vote of the Community Members.  Upon the resignation or
 
removal of a member of the Oversight Board, the Community Members shall
 
elect a replacement Community Member to serve on the Committee.
 

	
 
The Committee will elect a single individual to communicate with
 
Conservancy (the ``Representative'') and shall notify Conservancy promptly
 
following the election of a new Representative.  The Representative will
 
have the authority to instruct Conservancy on the Project's behalf on all
 
matters.  
 
matters.
 

	
 
This section may be modified by a vote of at least $\frac{3}{4}$ths of the 
 
Community Members, with the consent of Conservancy, such consent not to be 
 
This section may be modified by a vote of at least $\frac{3}{4}$ths of the
 
Community Members, with the consent of Conservancy, such consent not to be
 
unreasonably withheld.
 

	
 

	
 
\end{itemize}
 

	
 
Note again that the above are merely examples, not a list of options.
 
Conservancy's goal is to draft the Representation section to match
 
the existing and natural leadership structure of the Project, so each
 
project usually has a uniquely worded Representation section. ]
 

	
 
\item \textbf{Outstanding Liabilities}. The \signatories represent
 
that any liabilities that may be outstanding in connection with the
 
Project have been disclosed to Conservancy. 
 
Project have been disclosed to Conservancy.
 
\item \textbf{Termination}. \label{Termination} The \leadershipbody or Conservancy
 
may terminate this Agreement at any time subject to the following
 
understandings:
 

	
 

	
 
\begin{enumerate}[label=\alph*.,ref=\theenumi(\arabic*)]
 

	
 
\item \textbf{Notice and Successor Search}. Either Conservancy or the \leadershipbody
 
may terminate this Agreement on sixty (60) days' written notice (``the Notice Period'') to
 
the other Party, so long as a Successor can be found that meets the
 
following requirements (the ``Successor has Qualified''):
 

	
 

	
 
    \begin{enumerate}[label=\roman*.,ref=\theenumi(\alph{enumii})(\roman*)]
 
\item the Successor is another nonprofit corporation which is tax-exempt
 
under IRC Section 501(c)(3), 
 
under IRC Section 501(c)(3),
 
\item the Successor is not classified as a private foundation under Section
 
509(a), 
 
\item the Successor is willing and able to sponsor the Project, and, 
 
509(a),
 
\item the Successor is willing and able to sponsor the Project, and,
 
\item the Successor has (a) communicated its willingness to sponsor the
 
  Project in writing to Conservancy and (b) sent a copy of its 501(c)(3) determination letter to Conservancy, and, 
 
  Project in writing to Conservancy and (b) sent a copy of its 501(c)(3) determination letter to Conservancy, and,
 
\item the Successor is approved in writing by both Parties by the end of
 
the Notice Period, such approval not to be unreasonably withheld. 
 
the Notice Period, such approval not to be unreasonably withheld.
 
\end{enumerate}
 
\item \textbf{Additional Search Periods}. If the Parties cannot agree on
 
a Successor to sponsor the Project, the \leadershipbody
 
shall have an additional 60 days to find a Successor willing and able
 
to sponsor the Project. Any subsequent search periods of any length
 
shall only be granted at Conservancy's written permission. 
 
shall only be granted at Conservancy's written permission.
 
\item \textbf{Transfer to a Successor}. If a Successor has Qualified, the balance
 
of assets in the Project Fund, together with any other assets held
 
or liabilities incurred by Conservancy in connection with the
 
Project, shall be transferred to the Successor within thirty (30)
 
days of the approval of the Successor in writing by both Parties or
 
any extension thereof, subject to the approval of any third parties
 
that may be required.
 
\item \textbf{Termination Without a Successor}. If no Successor is found,
 
Conservancy may dispose of Project assets and liabilities
 
in any manner consistent with applicable tax and charitable trust
 
laws. 
 
\item \textbf{\signatories' Right to Terminate.} 
 
laws.
 
\item \textbf{\signatories' Right to Terminate.}
 
The \signatories hereby acknowledge that they will relinquish any
 
       rights to terminate separate from the \leadershipbody as
 
       of the Effective Date.
 
\end{enumerate}
 
\item \textbf{Miscellaneous}. Each provision of this Agreement shall be
 
separately enforceable, and the invalidity of one provision shall
 
not affect the validity or enforceability of any other provision.
 
This Agreement shall be interpreted and construed in accordance with
 
the laws of the State of New York. This Agreement constitutes the
 
only agreement, and supersedes all prior agreements and understandings,
 
both written and oral, among the Parties with respect to the subject
 
matter hereof. 
 
matter hereof.
 
\item \textbf{Amendments. }This Agreement may not be amended or modified,
 
except in writing and signed by both Conservancy and the entirety of \leadershipbody. 
 
except in writing and signed by both Conservancy and the entirety of \leadershipbody.
 
\item \textbf{Counterparts / Facsimile}. This Agreement may be executed
 
in two or more counterparts, each of which shall constitute an original,
 
but all of which, when together, shall constitute but one and the
 
same instrument, and shall become effective when one or more counterparts
 
have been signed by each Party hereto and delivered to the other Party.
 
In lieu of the original, a facsimile transmission or copy of the original
 
shall be as effective and enforceable as the original. 
 
shall be as effective and enforceable as the original.
 
\end{enumerate}
 
\vfill{}
 

	
 

	
 
\textsc{In witness whereof}, the Parties have executed this Fiscal
 
Sponsorship Agreement effective on the FIXME day of FIXME, FIXME (the
 
``Effective Date'').
 

	
 
\vspace{3em}
 

	
 
\signature{Software Freedom Conservancy, Inc.}{Bradley M. Kuhn}{Title: President}
 

	
 
\signature{}{FIXME-CONTRIBUTOR}{}
 
\signature{}{FIXME-CONTRIBUTOR}{}
 
\signature{}{FIXME-CONTRIBUTOR}{}
 
\end{document}
conservancy/content/projects/apply/index.html
Show inline comments
 
{% extends "base_projects.html" %}
 
{% block subtitle %}Project Services - {% endblock %}
 
{% block submenuselection %}Applying{% endblock %}
 
{% block content %}
 

	
 
<h1> Applying to Join Conservancy as a Member Project</h1>
 

	
 
<p>Part of Conservancy's activity is through its member projects.  These
 
  projects become formally part of Conservancy and have a close relationship
 
  with our activity.  Most of our projects are purely software projects, but
 
  we also occasionally accept initiatives designed to advance software
 
  freedom, such as Outreachy.</p>
 

	
 
<p>The situation for non-profit homes for FOSS activities has improved
 
  greatly since Conservancy was founded in 2006.  In the USA, options now
 
  exist for 501(c)(3), 501(c)(6) and even for-profit fiscal sponsorship, and
 
  there are other options around the globe as well.  Prospective member
 
  projects should carefully consider what type of structure is right for
 
  them.</p>
 

	
 
<p>For our part, Conservancy seeks projects that dedicate themselves to the
 
  advancement of software freedom and focus their projects on the rights of
 
  users to copy, share, modify and improve their software.  Being a FOSS
 
  project under an OSI-approved and DFSG-free license is mandatory, but not
 
  the only criteria.  Given the many options available for fiscal
 
  sponsorship, we are selective and often refer projects to other fiscal
 
  sponsors that are a better fit.  Nevertheless, we encourage projects to
 
  that need a non-profit home to apply to many fiscal sponsors.
 
  
 

 
<p>Conservancy's Evaluation Committee considers applications on a rolling
 
  basis.  Conservancy generally has dozens of projects in various stages of
 
  the application process.  We do not move rapidly to accept new projects, as
 
  we have found that consideration of joining or forming a non-profit
 
  organization for your project is best done with careful consideration over
 
  a period of many months rather than rapidly.</p>
 

	
 
<p>Conservancy's application process is somewhat informal.  New applicants
 
  should write an initial inquiry email
 
  to <a href="mailto:apply@sfconservancy.org">&lt;apply@sfconservancy.org&gt;</a>
 
  with a very brief description of their project and a URL to their project's
 
  website.  We'll send back initial questions, and after those questions are
 
  answered, we'll send the full application materials.  Applications should
 
  be submitted in plain ASCII text via email.  Your application will be
 
  assigned a ticket number in our ticketing system, and please be sure to
 
  include the proper ticket number details in the Subject line of your
 
  emails to ensure they are routed to the right place.</p>
 

	
 
<p>Projects are reviewed by Conservancy's Evaluation Committee, which is
 
  chartered by Conservancy's <a href="/about/board/">Board of
 
  Directors</a>.</p>
 

	
 
<h1>Project Membership Application FAQs</h1>
 

	
 
<p>The following are various questions that we typically get from project
 
  leaders that wish to apply to Conservancy.</p>
 

	
 

	
 
<h2>I sent in my inquiry letter and/or application a long time ago.  Why haven't you replied?</h2>
 

	
 
<p>Conservancy receives an overwhelming level of interest and we have very few
 
  <a href="/about/staff/">staff positions</a> to
 
  meet the interest and demand
 
  for <a href="/members/services/">Conservancy's
 
  services</a> to its member projects.  Meanwhile, Conservancy always
 
  prioritizes needs of
 
  its <a href="/members/current/">existing member
 
  projects</a> over new inquiries and applications.  Therefore, it
 
  sometimes can take quite a while to finish the application process and
 
  be offered membership, but please note that such delays mean that should
 
  your project ultimately become a member project, your project will then
 
  be a beneficiary of this policy.  Also, generally speaking, we encourage
 
  care and consideration when joining a non-profit and we do not believe
 
  a rapid membership process is in the interest of projects.</p>
 

	
 
<h2>What are the key criteria our project must meet to join?</h2>
 

	
 
<p>In order to join, projects need to meet certain criteria.  A rough
 
  outline of those criteria are as follows:</p>
 

	
 
<ul><li>The project must be exclusively devoted to the development and
 
    documentation of FOSS.  The project's goals must be consistent with
 
    Conservancy's tax-exempt purposes, and other requirements imposed on
 
    Conservancy by the IRS' 501(c)(3) rules.  Namely, the goal of the project
 
    must to develop and document the software in a not-for-profit way to
 
    advance the public good, and must develop the software in public, and
 
    strategically advance software freedom for all users.</li>
 

	
 
    <li>The project must be licensed in a way fitting with software freedom
 
      principles.  Specifically, all software of the project should be
 
      licensed under a license that is listed both as as
 
      an <a href="http://www.opensource.org/licenses/alphabetical">Open
 
      Source license by the Open Source Initiative</a> and
 
      as <a href="https://www.debian.org/legal/licenses/">DFSG-Free
 
      license</a>.  All software documentation for the project should be
 
      licensed under a license on the preceding lists, or under Creative
 
      Commons' <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-By-SA</a>
 
      or <a href="https://creativecommons.org/licenses/by/3.0/">CC-By</a> or
 
        <a href="https://creativecommons.org/choose/zero/">CC-0</a>.</li>
 

	
 
   <li>The project should have an existing, vibrant, diverse community
 
      that develops and documents the software.  For example, projects
 
      that have been under development for less than a year or only a
 
      &ldquo;proof of concept&rdquo; implementation are generally not
 
      eligible.</li>
 
</ul>
 

	
 
<p>While any project meeting the criteria above can apply, meeting these
 
  criteria doesn't guarantee acceptance of your project.  Conservancy
 
  favors projects that are well-established and have some track record of
 
  substantial contributions from a community of volunteer developers.
 
  Furthermore, Conservancy does give higher priority to projects that
 
  have an established userbase and interest, but also tries to accept some
 
  smaller projects with strong potential.</p>
 

	
 
<h2>Is our project required to accept membership if offered?</h2>
 

	
 
<p>Not at all.  Many projects apply and subsequently decide not to join a
 
  non-profit, or decide to join a different non-profit entity.  Don't
 
  worry about &ldquo;wasting our time&rdquo; if your project's developers
 
  aren't completely sure yet if they want to join Conservancy.  If
 
  membership in Conservancy is currently a legitimate consideration for
 
  your project, we encourage you to apply.  We'd rather that you apply and
 
  turn down an offer for membership than fail to apply and have to wait
 
  until the next application round when you're sure.</p>
 

	
 
<h2>What benefits does our project get from joining?</h2>
 

	
 
<p>We maintain a <a href="/members/services">detailed list of services
 
    that Conservancy provides to member projects</a>.  If you have
 
    detailed questions about any of the benefits, please
 
    ask <a href="mailto:apply@sfconservancy.org">&lt;apply@sfconservancy.org&gt;</a>
 
    in your application ticket.  We find however that projects will find
 
    Conservancy a better fit if you don't view Conservancy as a service
 
    provider; we are not a service provider in the sense of your hosting
 
    provider or other vendor.  Conservancy projects become a part of
 
    Conservancy, and as such membership with Conservancy is an equal
 
    partnership between you and your project and should be treated as such.
 
    If that's not the kind of relationship you want from your fiscal
 
    sponsor, then other options are likely a better fit for your project.</p>
 

	
 
<h2>Conservancy seems to be called a &ldquo;fiscal sponsor&rdquo; to its
 
  member projects.  Does that mean you give our project money if we join?</h2>
 

	
 
<p>It's true that we would love to fund our member projects if it were
 
  possible, because we believe they deserve to be funded.  However, that's
 
  not typically what a fiscal sponsor does.  The term &ldquo;fiscal
 
  sponsor&ldquo; is often used in non-profit settings and has a standard
 
  meaning there.  But, to those not familiar with non-profit operations,
 
  it comes across as a bit of a misnomer.</p>
 

	
 
<p>In this context, a fiscal sponsor is a non-profit organization that,
 
  rather than fund a project directly, provides the required
 
  infrastructure and facilitates the project's ability to raise its own
 
  funds.  Conservancy therefore assists your project in raising funds, and
 
  allows your project to hold those funds and spend them on activities
 
  that simultaneously advance Conservancy's non-profit mission
 
  and the FLOSS development and documentation goals of the project.</p>
 

	
 
<h2>What will the project leaders have to agree to if our project joins?</h2>
 

	
 
<p>Once you're offered membership, Conservancy will send you a draft
 
  fiscal sponsorship agreement (FSA).  A template
 
  of <a href="/docs/sponsorship-agreement-template.pdf">Conservancy's FSA
 
  is available in PDF</a> (and
 
  in <a href="/docs/sponsorship-agreement-template.odt">ODT</a>).
 
  Please note that the preceding documents are <strong>only
 
  templates</strong>.  Please do not try to fill one out and send it to
 
  Conservancy.  The final FSA between Conservancy and your project needs
 
  to be negotiated between us, and as can been seen in the template, the
 
  Representation section needs substantial work.  If your project is
 
  offered membership, Conservancy will work with you adapt the FSA
 
  template to suit the needs and specific circumstances of your project.
 
  This is painstaking work, and it's better to complete that work after
 
  both Conservancy and the project are quite sure that they both want the
 
  project to join Conservancy.</p>
 

	
 

	
 
<h2>If my project joins Conservancy, how will it change?</h2>
 

	
 
<p>Substantively, member projects continue to operate in the same way as
 
they did before joining Conservancy.  So long as the project remains
 
devoted to software freedom and operates consistently with the
 
Conservancy's tax-exempt status, Conservancy does not intervene in the
 
project's development other than to provide administrative assistance.
 
For example, Conservancy keeps and maintains books and records for the
 
project and assists with the logistics of receiving donations, but does
 
not involve itself with technical or artistic decision making.  Projects
 
are asked, however, to keep Conservancy up to date on their
 
activities.</p>
 

	
 
<p>Additionally, when Conservancy discovers or becomes aware of any legal,
 
  licensing or PR issues regarding your project, Conservancy will contact the
 
  project and ask you to work collectively with Conservancy.</p>
 

	
 
<h2>Once our project joins, who holds its assets (money, copyrights, trademarks, etc.)?</h2>
 

	
 
<p>Conservancy holds assets on behalf of its member projects and
 
manages and disburses those assets in accordance with the wishes of the
 
project's leadership, as long as those wishes are consistent with non-profit
 
rules, requirements, and Conservancy's mission.  Funds received by Conservancy on behalf of a
 
project are kept track of separately for each specific project and the
 
management of those funds is directed by the project.  For example, if a
 
donor wanted to contribute $100 to Project Foo, they would formally make
 
the donation to Conservancy and identify Project Foo as the desired
 
project to support.  Conservancy would then deposit the check and
 
earmark the funds for use by Project Foo.  Project Foo would then tell the
 
Conservancy how that money should be spent.  As long as that expense is a
 
legitimate non-profit expense fitting with Conservancy's non-profit
 
  mission, Conservancy pays the expense on the Project's behalf.</p>
 

	
 
<p>Similarly, any copyrights, trademarks, domain name or other assets
 
transferred to a project are typically held by Conservancy on behalf of
 
the project.  A significant service that Conservancy provides its
 
members is a vehicle through which copyright ownership in the project can
 
be unified.  There are several advantages to having a consolidated
 
copyright structure, including that it makes enforcement activity easier
 
and more effective.  However, copyright, trademark, and domain name
 
assignment is not a requirement in order to join Conservancy, rather,
 
it is an option for those projects that ask for it.</p>
 

	
 
<h2>If our project joins, must it be a member project of Conservancy forever?</h2>
 

	
 
<p>All agreements between member projects and Conservancy stipulate
 
clearly that the member project can leave Conservancy with a few
 
months' notice.  Federal tax exemption law, though, states that projects
 
must transfer their assets from Conservancy in a way that is
 
consistent with Conservancy's not-for-profit tax status &mdash;
 
meaning the assets cannot be transferred to an individual or a for-profit
 
entity.  Generally, a project would either find another fiscal sponsor or
 
form their own independent tax-exempt 501(c)(3) non-profit.</p>
 

	
 
<p>We fully expect that some Conservancy projects will ultimately wish to
 
  form their own non-profit 501(c)(3) organizations; that's why we design
 
  our agreements with projects to allow them to leave to another 501(c)(3)
 
  organization.  Typically, projects join Conservancy because the project
 
  leaders don't want the burdens of running a non-profit themselves.
 
  Often, as projects grow, leaders get interested in the non-profit
 
  management and organizational side of the activities and are then
 
  prepared to take on the additional work themselves.</p>
 

	
 
<h2>How are &ldquo;project leaders&rdquo; defined with respect to Conservancy?</h2>
 

	
 
<p>How leaders are chosen for projects varies greatly from project to
 
  project.  Our goal is to do our best to embody the &ldquo;natural&rdquo;
 
  leadership structure that evolved in your project into the formal
 
  agreement with Conservancy.  As part of the agreement drafting, we work
 
  carefully with you to understand your project's governance and write up
 
  formally with you the decision-making process you use. Most project
 
  contributors find this process of formalizing the leadership structure
 
  helps them clarify in their own minds the governance of their project,
 
  even though the process can be difficult.  Since it can be a complicated
 
  process, we suggest that you prepare your project community for this
 
  discussion once your project is accepted.</p>
 

	
 
<h2>How much does it cost us financially to join Conservancy?</h2>
 

	
 
<p>New Conservancy members are required to pay 10% of their revenue that
 
  Conservancy processes to Conservancy's general fund, which primarily is
 
  used to pay staff.  (Details on how Conservancy spends its funds,
 
  including salaries of key employees, can be found
 
  in <a href="/about/filings/">Conservancy's
 
  annual filings</a>.)</p>
 

	
 
<p>Historically, Conservancy allowed projects to give less or nothing at
 
  all to the general fund, but we unfortunately discovered that without
 
  this requirement, Conservancy was not able to offer the myriad of
 
  services to all its projects, particularly to larger projects that
 
  have more income and therefore need more attention from staff.  Even now,
 
  the 10% we receive from our project does not fully fund our fiscal
 
  sponsorship activities; we raise additional funds
 
  through <a href="/sustainer">support program</a> to subsidize our fiscal
 
  sponsorship work.</p>
 

	
 
<p>We do understand that, particularly for small projects that only receive a
 
  few small donations, that donating a percentage of your income back to
 
  Conservancy can be a high burden.  We encourage such small projects to
 
  consider <a href="https://www.spi-inc.org/">Software in the Public
 
  Interest</a>, which offers fewer services than Conservancy, but only
 
  requires 5% of gross revenue.  To our knowledge, SPI is the only fiscal
 
  sponsor operating in FOSS that requires less than 10%; most FOSS fiscal
 
  sponsors require at least 10%, or they operate on a fee-for-service model
 
  whereby projects pay the actual costs of any service they receive (and such
 
  charges are usually much higher than 10%).  We urge you to very explicitly
 
  ask about these issues with any fiscal sponsor you consider.</p>
 

	
 
{% endblock %}
conservancy/content/projects/policies/publish-policy.py
Show inline comments
 
#!/usr/bin/env python3
 

	
 
import argparse
 
import contextlib
 
import functools
 
import locale
 
import os
 
import pathlib
 
import shutil
 
import subprocess
 
import sys
 
import tempfile
 

	
 
try:
 
    import markdown
 
    from markdown.extensions import sane_lists as mdx_sane_lists
 
    from markdown.extensions import smarty as mdx_smarty
 
    from markdown.extensions import tables as mdx_tables
 
    from markdown.extensions import toc as mdx_toc
 
    markdown_import_success = True
 
except ImportError:
 
    if __name__ != '__main__':
 
        raise
 
    markdown_import_success = False
 

	
 
TEMPLATE_HEADER = """{% extends "base_projects.html" %}
 
{% block subtitle %}{% endblock %}
 
{% block submenuselection %}Policies{% endblock %}
 
{% block content %}
 

	
 
"""
 

	
 
TEMPLATE_FOOTER = """
 

	
 
{% endblock %}
 
"""
 

	
 
@contextlib.contextmanager
 
def run(cmd, encoding=None, ok_exitcodes=frozenset([0]), **kwargs):
 
    kwargs.setdefault('stdout', subprocess.PIPE)
 
    if encoding is None:
 
        mode = 'rb'
 
        no_data = b''
 
    else:
 
        mode = 'r'
 
        no_data = ''
 
    with contextlib.ExitStack() as exit_stack:
 
        proc = exit_stack.enter_context(subprocess.Popen(cmd, **kwargs))
 
        pipes = [
 
            exit_stack.enter_context(open(
 
                getattr(proc, name).fileno(), mode, encoding=encoding, closefd=False))
 
            for name in ['stdout', 'stderr']
 
            if kwargs.get(name) is subprocess.PIPE
 
        ]
 
        if pipes:
 
            yield (proc, *pipes)
 
        else:
 
            yield proc
 
        for pipe in pipes:
 
            for _ in iter(lambda: pipe.read(4096), no_data):
 
                pass
 
    if proc.returncode not in ok_exitcodes:
 
        raise subprocess.CalledProcessError(proc.returncode, cmd)
 

	
 
class GitPath:
 
    GIT_BIN = shutil.which('git')
 
    CLEAN_ENV = {k: v for k, v in os.environ.items() if not k.startswith('GIT_')}
 
    ANY_EXITCODE = range(-256, 257)
 
    IGNORE_ERRORS = {
 
        'ok_exitcodes': ANY_EXITCODE,
 
        'stderr': subprocess.DEVNULL,
 
    }
 
    STATUS_CLEAN_OR_UNMANAGED = frozenset(' ?')
 

	
 
    def __init__(self, path, encoding, env=None):
 
        self.path = path
 
        self.dir_path = path if path.is_dir() else path.parent
 
        self.encoding = encoding
 
        self.run_defaults = {
 
            'cwd': str(self.dir_path),
 
            'env': env,
 
        }
 

	
 
    @classmethod
 
    def can_run(cls):
 
        return cls.GIT_BIN is not None
 

	
 
    def _run(self, cmd, encoding=None, ok_exitcodes=frozenset([0]), **kwargs):
 
        return run(cmd, encoding, ok_exitcodes, **self.run_defaults, **kwargs)
 

	
 
    def _cache(orig_func):
 
        attr_name = '_cached_' + orig_func.__name__
 

	
 
        @functools.wraps(orig_func)
 
        def cache_wrapper(self):
 
            try:
 
                return getattr(self, attr_name)
 
            except AttributeError:
 
                setattr(self, attr_name, orig_func(self))
 
                return getattr(self, attr_name)
 
        return cache_wrapper
 

	
 
    @_cache
 
    def is_work_tree(self):
 
        with self._run([self.GIT_BIN, 'rev-parse', '--is-inside-work-tree'],
 
                       self.encoding, **self.IGNORE_ERRORS) as (_, stdout):
 
            return stdout.readline() == 'true\n'
 

	
 
    @_cache
 
    def status_lines(self):
 
        with self._run([self.GIT_BIN, 'status', '-z'],
 
                       self.encoding) as (_, stdout):
 
            return stdout.read().split('\0')
 

	
 
    @_cache
 
    def has_managed_modifications(self):
 
        return any(line and line[1] not in self.STATUS_CLEAN_OR_UNMANAGED
 
                   for line in self.status_lines())
 

	
 
    @_cache
 
    def has_staged_changes(self):
 
        return any(line and line[0] not in self.STATUS_CLEAN_OR_UNMANAGED
 
                   for line in self.status_lines())
 

	
 
    def commit_at(self, revision):
 
        with self._run([self.GIT_BIN, 'rev-parse', revision],
 
                       self.encoding) as (_, stdout):
 
            return stdout.readline().rstrip('\n') or None
 

	
 
    @_cache
 
    def upstream_commit(self):
 
        return self.commit_at('@{upstream}')
 

	
 
    @_cache
 
    def head_commit(self):
 
        return self.commit_at('HEAD')
 

	
 
    def in_sync_with_upstream(self):
 
        return self.upstream_commit() == self.head_commit()
 

	
 
    @_cache
 
    def last_commit(self):
 
        with self._run([self.GIT_BIN, 'log', '-n1', '--format=format:%H', self.path.name],
 
                       self.encoding, **self.IGNORE_ERRORS) as (_, stdout):
 
            return stdout.readline().rstrip('\n') or None
 

	
 
    def operate(self, subcmd, ok_exitcodes=frozenset([0])):
 
        with self._run([self.GIT_BIN, *subcmd], None, ok_exitcodes, stdout=None):
 
            pass
 

	
 

	
 
def add_parser_flag(argparser, dest, **kwargs):
 
    kwargs.update(dest=dest, default=None)
 
    switch_root = dest.replace('_', '-')
 
    switch = '--' + switch_root
 
    argparser.add_argument(switch, **kwargs, action='store_true')
 
    kwargs['help'] = "Do not do {}".format(switch)
 
    argparser.add_argument('--no-' + switch_root, **kwargs, action='store_false')
 

	
 
def parse_arguments(arglist):
 
    parser = argparse.ArgumentParser(
 
        epilog="""By default, the program will pull from Git if the output path
 
is a Git checkout with a tracking branch, and will commit and push if
 
that checkout is in sync with the tracking branch without any staged changes.
 
Setting any flag will always override the default behavior.
 
""",
 
    )
 

	
 
    parser.add_argument(
 
        '--encoding', '-E',
 
        default=locale.getpreferredencoding(),
 
        help="Encoding to use for all I/O. "
 
        "Default is your locale's encoding.",
 
    )
 
    parser.add_argument(
 
        '--revision', '-r',
 
        help="Revision string to version the published page. "
 
        "Default determined from the revision of the source file.",
 
    )
 
    add_parser_flag(
 
        parser, 'pull',
 
        help="Try to pull the remote tracking branch to make the checkout "
 
        "up-to-date before making changes"
 
    )
 
    add_parser_flag(
 
        parser, 'commit',
 
        help="Commit changes to the website repository",
 
    )
 
    parser.add_argument(
 
        '-m', dest='commit_message',
 
        default="Publish {filename} revision {revision}.",
 
        help="Message for any commit",
 
    )
 
    add_parser_flag(
 
        parser, 'push',
 
        help="Push to the remote tracking branch after committing changes",
 
    )
 
    parser.add_argument(
 
        'input_path', type=pathlib.Path,
 
        help="Path to the Conservancy policy Markdown source",
 
    )
 
    parser.add_argument(
 
        'output_path', type=pathlib.Path,
 
        nargs='?', default=pathlib.Path(__file__).parent,
 
        help="Path to the directory to write output files",
 
    )
 

	
 
    if not markdown_import_success:
 
        parser.error("""markdown module is not installed.
 
Try `apt install python3-markdown` or `python3 -m pip install --user Markdown`.""")
 

	
 
    args = parser.parse_args(arglist)
 
    args.git_output = GitPath(args.output_path, args.encoding)
 
    if args.pull or args.commit or args.push:
 
        if not args.git_output.can_run():
 
            parser.error("Git operation requested but `git` not found in PATH")
 
        elif not args.git_output.is_work_tree():
 
            parser.error("Git operation requested but {} is not a working path".format(
 
                args.output_path.as_posix()))
 
    if args.revision is None:
 
        try:
 
            args.revision = GitPath(args.input_path, args.encoding, GitPath.CLEAN_ENV).last_commit()
 
        except subprocess.CalledProcessError:
 
            pass
 
        if args.revision is None:
 
            parser.error("no --revision specified and not found from input path")
 
    args.output_link_path = args.git_output.dir_path / args.input_path.with_suffix('.html').name
 
    args.output_file_path = args.output_link_path.with_suffix('.{}.html'.format(args.revision))
 
    return args
 

	
 
class GitOperation:
 
    def __init__(self, args):
 
        self.args = args
 
        self.git_path = args.git_output
 
        self.exitcode = None
 
        self.on_work_tree = self.git_path.can_run() and self.git_path.is_work_tree()
 

	
 
    def run(self):
 
        arg_state = getattr(self.args, self.NAME)
 
        if arg_state is None:
 
            arg_state = self.should_run()
 
        if not arg_state:
 
            return
 
        try:
 
            self.exitcode = self.run_git() or 0
 
        except subprocess.CalledProcessError as error:
 
            self.exitcode = error.returncode
 

	
 

	
 
class GitPull(GitOperation):
 
    NAME = 'pull'
 

	
 
    def should_run(self):
 
        return self.on_work_tree and not self.git_path.has_staged_changes()
 

	
 
    def run_git(self):
 
        self.git_path.operate(['fetch', '--no-tags'])
 
        self.git_path.operate(['merge', '--ff-only'])
 

	
 

	
 
class GitCommit(GitOperation):
 
    NAME = 'commit'
 
    VERB = 'committed'
 

	
 
    def __init__(self, args):
 
        super().__init__(args)
 
        try:
 
            self._should_run = ((not self.git_path.has_staged_changes())
 
                                and self.git_path.in_sync_with_upstream())
 
        except subprocess.CalledProcessError:
 
            self._should_run = False
 

	
 
    def should_run(self):
 
        return self.on_work_tree and self._should_run
 

	
 
    def run_git(self):
 
        self.git_path.operate([
 
            'add', str(self.args.output_file_path), str(self.args.output_link_path),
 
        ])
 
        commit_message = self.args.commit_message.format(
 
            filename=self.args.output_link_path.name,
 
            revision=self.args.revision,
 
        )
 
        self.git_path.operate(['commit', '-m', commit_message])
 

	
 

	
 
class GitPush(GitCommit):
 
    NAME = 'push'
 
    VERB = 'pushed'
 

	
 
    def run_git(self):
 
        self.git_path.operate(['push'])
 

	
 

	
 
def write_output(args):
 
    converter = markdown.Markdown(
 
        extensions=[
 
            mdx_tables.TableExtension(),
 
            mdx_sane_lists.SaneListExtension(),
 
            mdx_smarty.SmartyExtension(),
 
            mdx_toc.TocExtension(),
 
        ],
 
        output_format='html5',
 
    )
 
    header = TEMPLATE_HEADER
 
    with args.input_path.open(encoding=args.encoding) as src_file:
 
        for line in src_file:
 
            if line.startswith('# '):
 
                subtitle = line[2:].replace('Software Freedom Conservancy', '').strip()
 
                header = header.replace(
 
                    '{% block subtitle %}',
 
                    '{{% block subtitle %}}{} - '.format(subtitle),
 
                )
 
                break
 
        src_file.seek(0)
 
        body = converter.convert(src_file.read())
 
    with tempfile.NamedTemporaryFile(
 
            'w',
 
            encoding=args.encoding,
 
            dir=args.git_output.dir_path.as_posix(),
 
            suffix='.html',
 
            delete=False,
 
    ) as tmp_out:
 
        try:
 
            tmp_out.write(header)
 
            tmp_out.write(body)
 
            tmp_out.write(TEMPLATE_FOOTER)
 
            tmp_out.flush()
 
            os.rename(tmp_out.name, str(args.output_file_path))
 
        except BaseException:
 
            os.unlink(tmp_out.name)
 
            raise
 
    if args.output_link_path.is_symlink():
 
        args.output_link_path.unlink()
 
    args.output_link_path.symlink_to(args.output_file_path.name)
 

	
 
def main(arglist=None, stdout=sys.stdout, stderr=sys.stderr):
 
    args = parse_arguments(arglist)
 
    pull = GitPull(args)
 
    pull.run()
 
    if pull.exitcode:
 
        return pull.exitcode
 
    write_output(args)
 
    ops = [GitCommit(args), GitPush(args)]
 
    for op in ops:
 
        op.run()
 
        if op.exitcode != 0:
 
            exitcode = op.exitcode or 0
 
            break
 
    else:
 
        exitcode = 0
 
    print(args.input_path.name, "converted,",
 
          ", ".join(op.VERB if op.exitcode == 0 else "not " + op.VERB for op in ops),
 
          file=stdout)
 
    return exitcode
 

	
 
if __name__ == '__main__':
 
    exit(main())
 

	
conservancy/content/projects/services/index.html
Show inline comments
 
{% extends "base_projects.html" %}
 
{% block subtitle %}Member Project Services - {% endblock %}
 
{% block submenuselection %}Services{% endblock %}
 
{% block content %}
 

	
 
<h1>Member Project Services</h1>
 

	
 
<p>Conservancy assists FLOSS project leaders by handling all matters other
 
  than software development and documentation, so the developers can focus
 
  on what they do best: improving the software for the public good.  The
 
  following are the services and options that are available to FLOSS
 
  projects that have joined Conservancy as a member project.</p>
 

	
 
<h2>Tax-Deductible, Earmarked Donations</h2>
 

	
 
<p>Member projects can receive earmarked donations through Conservancy.
 
   Since Conservancy is a 501(c)(3) charity incorporated in New York,
 
   donors can often deduct the donation on their USA taxes.  Additionally,
 
   the donors can indicate that their donation should be used to advance a
 
   specific member project, and those funds are kept in a separate account
 
   for the member project by Conservancy.  This structure prevents
 
   developers from having to commingle project funds with their own
 
   personal accounts or having to set up their own project specific
 
   account.</p>
 

	
 
   <p>Since Conservancy is a tax-exempt organization, there are some
 
   limits that the law places on what member projects can do with their
 
   assets, but those limits are the same as if the project was an
 
   independent non-profit entity.  Usually, the project leadership
 
   instructs Conservancy's leadership on how the project's funds are spent.
 
   Conservancy spends these funds on the project's behalf on any expenses
 
   that constitute appropriate activity under Conservancy's 501(c)(3)
 
   not-for-profit mission.  Some typical uses of earmarked donations by
 
   Conservancy's member projects are:</p>
 

	
 
<ul>
 
<li>funding travel expenses for project developers to attend relevant
 
  conferences.</li> 
 
  conferences.</li>
 

	
 
<li>domain name fees, bandwidth costs, and computer equipment
 
  purchases.</li>
 

	
 
<li>purchasing media for distribution of project software at conferences
 
  and events.</li>
 

	
 
<li>paying key developers on a contractual basis to improve the project's
 
  software and its documentation.</li>
 

	
 
<li>sponsoring and organizing conferences for the project.</li>
 
 
 

 
<li>trademark registration and enforcement.</li>
 

	
 
<li>FLOSS license enforcement and compliance activity.</li>
 
</ul>
 

	
 
<h2>Asset Stewardship</h2>
 

	
 
<p>Conservancy can hold any assets for the project on its behalf.  This
 
  includes copyrights, trademarks, domain names, physical computer
 
  equipment or anything that should be officially held in the name of the
 
  project.  Member projects are not required that Conservancy hold all
 
  assets of a project. (For example, member projects are
 
  not <em>required</em> to assign copyrights to Conservancy.)
 
  However, Conservancy can accommodate the needs of projects that want
 
  their assets under the control of a not-for-profit entity and exercised
 
  only for the public good.</p>
 

	
 
<h2>Contract Negotiation and Execution</h2>
 

	
 
<p>Projects sometimes need to negotiate and execute a contract with a
 
  company.  For example, when a project wants to organize and run a
 
  conference, the venue usually has a complicated contract for rental of
 
  the space and services.  Conservancy assists projects in the negotiation
 
  of such contracts, and can sign them on behalf of the project.</p>
 

	
 
<h2>Conference Logistical Support</h2>
 

	
 
<p>Many Conservancy projects have an annual conference.  Conservancy
 
  provides logistical support for these conferences, particularly in the
 
  area of financial responsibility and liability.  Conservancy provides a
 
  small amount of logistical support for conference in other ways,
 
  resource-permitting.</p>
 

	
 
<h2>Basic Legal Advice and Services</h2>
 

	
 
<p>Since projects, upon joining, become organizationally part of
 
  Conservancy, Conservancy can provide basic legal services to its member
 
  projects through Conservancy's own General Counsel, outside counsel, and
 
  pro-bono attorneys.  For example, Conservancy assists its projects in
 
  handling issues related to trademark registration, trademark policy
 
  development and licensing, trademark enforcement, copyright licensing
 
  and enforcement, and non-profit governance questions and issues.</p>
 

	
 
<h2>FLOSS Copyright License Enforcement</h2>
 

	
 
<p>Complying with FLOSS licenses is easy, as they permit and encourage
 
  both non-commercial and commercial distribution and improvements.
 
  Nevertheless, violations of FLOSS licenses (in particular of
 
  the <a href="http://www.gnu.org/licenses/gpl.html">GPL</a>
 
  and <a href="http://www.gnu.org/licenses/lgpl.html">LGPL</a>) are all
 
  too common.  At request of the project's leaders, Conservancy can carry
 
  out license enforcement activity on behalf of the project's copyright
 
  holders.</p>
 

	
 
<h2>Fundraising Assistance</h2>
 

	
 
<p>Conservancy provides various tools and advice to member projects on
 
  methods of raising funds for their projects' earmarked accounts.</p>
 

	
 
<h2>Avoid Non-Profit Administrivia</h2>
 

	
 
<p>Member projects can continue to operate in the same way they did before
 
joining Conservancy without having to select a board of directors or
 
any other layer of corporate management, without having to maintain
 
corporate records and without having to do any of the other things
 
required of incorporated entities.  Conservancy handles all of that
 
burden on behalf of its projects.</p>
 

	
 

	
 
<h2>Leadership Mentoring, Advice and Guidance</h2>
 

	
 
<p>Many of Conservancy's <a href="/about/board">directors</a> are
 
  experienced FLOSS project leaders.  They offer themselves as a resource
 
  to member project leaders who need assistance or face challenges in
 
  their work leading their projects.</p>
 

	
 
<h2>Some Personal Liability Protection</h2>
 

	
 
<p>When a project joins Conservancy, it formally becomes part of the
 
  Conservancy. (The project is thus somewhat analogous to a division of a
 
  company or a department in a large agency.)  As such, project leaders
 
  benefit from some amount of protection from personal liability for their
 
  work on the project.</p>
 

	
 
<h2>Officiating Community Elections and Ballot Initiatives</h2>
 

	
 
<p>Conservancy will organize and run community leadership committee elections
 
  and/or ballot initiatives for its member project communities,
 
  using <a href="https://gitorious.org/conservancy/voting/">online voting
 
  software</a>.</p>
 

	
 
<hr/>
 

	
 
<p>Those familiar with non-profit terminology will recognize most of these
 
  services
 
  as <a href="https://en.wikipedia.org/wiki/Fiscal_sponsorship">fiscal
 
  sponsorship services</a>.  This term is not particularly well
 
  known in the FLOSS community, and many are confused by that term.
 
  However, if you are familiar with what a fiscal sponsor typically does
 
  in the non-profit sector, the term does fit many of services that
 
  Conservancy offers its member projects.</p>
 

	
 
<p>Project
 
leaders that believe their project might benefit from these services can
 
<a href="/members/apply/">apply to become a member project</a>.</p>
 
{% endblock %}
conservancy/events/admin.py
Show inline comments
 
from django.contrib import admin
 

	
 
from .models import Event, EventMedia, EventTag
 

	
 
admin.site.register(EventTag)
 

	
 
@admin.register(Event)
 
class EventAdmin(admin.ModelAdmin):
 
    list_display = ("title", "date", "date_tentative", "location")
 
    list_filter = ['date']
 
    date_hierarchy = 'date'
 
    search_fields = ["title", "description", "earth_location"]
 
    prepopulated_fields = {'slug' : ("title",) }
 

	
 

	
 
@admin.register(EventMedia)
 
class EventMediaAdmin(admin.ModelAdmin):
 
    list_display = ("event", "format", "novel")
 

	
 

	
 

	
conservancy/events/models.py
Show inline comments
 
from datetime import datetime, timedelta
 

	
 
from django.db import models
 

	
 
from ..staff.models import Person
 
from ..worldmap.models import EarthLocation
 

	
 

	
 
class EventTag(models.Model):
 
    """Tagging for events
 

	
 
    (currently unused)
 
    """
 

	
 
    label = models.CharField(max_length=100)
 

	
 
    date_created = models.DateField(auto_now_add=True)
 

	
 
    def __str__(self):
 
        return self.label
 

	
 
class PastEventManager(models.Manager):
 
    """Returns all past events"""
 

	
 
    def get_queryset(self):
 
        return super().get_queryset().filter(date__lt=datetime.today())
 

	
 
class FutureEventManager(models.Manager):
 
    """Returns all future events"""
 

	
 
    def get_queryset(self):
 
        return super().get_queryset().filter(date__gte=datetime.today())
 

	
 
class Event(models.Model):
 
    """Model for Conservancy staff member events (presentations, etc)"""
 

	
 
    title = models.CharField(max_length=400)
 
    date = models.DateField()
 
    date_tentative = models.BooleanField(default=False)
 
    datetime = models.CharField("Date and Time", max_length=300, blank=True)
 
    slug = models.SlugField(unique_for_year='date')
 
    description = models.TextField(blank=True)
 
    people = models.ManyToManyField(Person, blank=True)
 
    location = models.CharField(max_length=1000)
 
    earth_location = models.ForeignKey(
 
        EarthLocation, null=True, blank=True, help_text="Label will not be displayed",
 
        on_delete=models.CASCADE
 
    )
 
    tags = models.ManyToManyField(EventTag, blank=True)
 

	
 
    date_created = models.DateTimeField(auto_now_add=True)
 
    date_last_modified = models.DateTimeField(auto_now=True)
 

	
 
    class Meta:
 
        ordering = ("-date",)
 

	
 
    def __str__(self):
 
        return "{} ({})".format(self.title, self.date)
 

	
 
    def get_absolute_url(self):
 
        return "/events/{}/{}/".format(self.date.strftime("%Y"), self.slug)
 

	
 
    def day_after(self):
 
        return self.date + timedelta(days=1)
 

	
 
    # for aggregate feed
 
    pub_date = property(lambda self: self.date_created)
 

	
 
    objects = models.Manager()
 
    past = PastEventManager()
 
    future = FutureEventManager()
 

	
 
class EventMedia(models.Model):
 
    """Media from an event
 

	
 
    includes transcripts, audio, and video pieces
 
    """
 

	
 
    event = models.ForeignKey(Event, on_delete=models.CASCADE)
 
    format = models.CharField(max_length=1,
 
                              choices=(('T', 'Transcript'),
 
                                       ('A', 'Audio'),
 
                                       ('V', 'Video')))
 
    local = models.CharField(max_length=300, blank=True,
 
                             help_text="Local filename of the resource.  File should be uploaded into the static directory that corresponds to the event.")
 
    # verify_exists removed https://docs.djangoproject.com/en/1.7/releases/1.4/
 
    remote = models.URLField(blank=True,
 
                             help_text="Remote URL of the resource.  Required if 'local' is not given.")
 
    novel = models.BooleanField(help_text="Is it a new piece of media or another form of an old one?  If it is new it will be included in the event-media RSS feed and shown on the front page for a bit.", default=False)
 

	
 
    date_created = models.DateTimeField(auto_now_add=True)
 
    date_last_modified = models.DateTimeField(auto_now=True)
 

	
 
    class Meta:
 
        verbose_name_plural = 'event media'
 

	
 
    def __str__(self):
 
        return "{} media: {}".format(self.event, self.format)
 

	
conservancy/feeds.py
Show inline comments
 
from datetime import datetime
 
from functools import reduce
 
import itertools
 
import operator
 

	
 
from django.conf import settings
 
from django.contrib.syndication.views import Feed
 
from django.shortcuts import render
 
from django.utils.feedgenerator import Rss201rev2Feed
 

	
 
from .blog.models import Entry as BlogEntry
 
from .news.models import PressRelease
 

	
 

	
 
class ConservancyFeedBase(Feed):
 
    def copyright_holder(self):
 
        return "Software Freedom Conservancy"
 

	
 
    def license_no_html(self):
 
        return "Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License."
 

	
 
    def item_copyright(self, item):
 
        year = 2008
 
        for attr in ('pub_date', 'date_created', 'date_last_modified'):
 
            if hasattr(item, attr):
 
                if hasattr(getattr(item, attr), 'year'):
 
                    year = getattr(getattr(item, attr), 'year')
 
                    break
 
        return 'Copyright (C) %d, %s.  %s' % (year, self.copyright_holder(), self.license_no_html())
 

	
 
    def item_extra_kwargs(self, item):
 
        year = 2008
 
        for attr in ('pub_date', 'date_created', 'date_last_modified'):
 
            if hasattr(item, attr):
 
                if hasattr(getattr(item, attr), 'year'):
 
                    year = getattr(getattr(item, attr), 'year')
 
                    break
 
        return { 'year' : year }
 

	
 
class PressReleaseFeed(Feed):
 
    get_absolute_url = '/feeds/news/'
 
    title = "Software Freedom Conservancy News"
 
    link = "/news/"
 
    description = ""
 

	
 
    def items(self):
 
        return PressRelease.objects.filter(pub_date__lte=datetime.now(),
 
                                           sites__id__exact=settings.SITE_ID).order_by('-pub_date')[:10]
 
    def item_title(self, item):
 
        return item.headline
 

	
 
    def item_description(self, item):
 
        return item.summary
 

	
 
    def item_pubdate(self, item):
 
        return item.pub_date
 

	
 
class OmnibusFeedType(Rss201rev2Feed):
 
    def root_attributes(self):
 
        attrs = super().root_attributes()
 
        attrs['xmlns:itunes'] = 'http://www.itunes.com/dtds/podcast-1.0.dtd'
 
        attrs['xmlns:atom'] = 'http://www.w3.org/2005/Atom'
 
        attrs['xmlns:media'] = 'http://search.yahoo.com/mrss/'
 
        attrs['xmlns:dc'] = "http://purl.org/dc/elements/1.1/"
 
        return attrs
 

	
 
    def add_root_elements(self, handler):
 
        super().add_root_elements(handler)
 

	
 
    def add_item_elements(self, handler, item):
 
        super().add_item_elements(handler, item)
 
        # Block things that don't have an enclosure from iTunes in
 
        # case someone uploads this feed there.
 
        handler.addQuickElement("itunes:block", 'Yes')
 

	
 
class OmnibusFeed(ConservancyFeedBase):
 
    get_absolute_url = '/feeds/omnibus/'
 
    feed_type = OmnibusFeedType
 
    link ="/news/"
 
    title = "The Software Freedom Conservancy"
 
    description = "An aggregated feed of all RSS content available from the Software Freedom Conservancy, including both news items and blogs."
 
    title_template = "feeds/omnibus_title.html"
 
    description_template = "feeds/omnibus_description.html"
 
    author_email = "info@sfconservancy.org"
 
    author_link = "https://sfconservancy.org/"
 
    author_name = "Software Freedom Conservancy"
 

	
 
    def item_title(self, item):
 
        return item.headline
 

	
 
    def item_description(self, item):
 
        return item.summary
 

	
 
    def item_enclosure_mime_type(self):
 
        return "audio/mpeg"
 

	
 
    def item_enclosure_url(self, item):
 
        if hasattr(item, 'mp3_path'):
 
            return "https://sfconservancy.org" + item.mp3_path
 
    def item_enclosure_length(self, item):
 
        if hasattr(item, 'mp3_path'):
 
            return item.mp3_length
 

	
 
    def item_author_name(self, item):
 
        if item.omnibus_type == "blog":
 
            return item.author.formal_name
 
        else:
 
            return "Software Freedom Conservancy"
 

	
 
    def item_author_link(self, obj):
 
        return "https://sfconservancy.org"
 

	
 
    def item_author_email(self, item):
 
        if item.omnibus_type == "news":
 
            return "info@sfconservancy.org"
 
        elif hasattr(item, 'author'):
 
            return "%s@sfconservancy.org" % item.author
 
        else:
 
            return "info@sfconservancy.org"
 

	
 
    def item_pubdate(self, item):
 
        if item.omnibus_type == "event":
 
            return item.date_created
 
        else:
 
            return item.pub_date
 

	
 
    def item_link(self, item):
 
        return item.get_absolute_url()
 

	
 
# http://groups.google.ca/group/django-users/browse_thread/thread/d22e8a8f378cf0e2
 

	
 
    def items(self):
 
        blogs = BlogEntry.objects.filter(pub_date__lte=datetime.now()).order_by('-pub_date')[:25]
 
        for bb in blogs:
 
            bb.omnibus_type = "blog"
 
            bb.omnibus_feed_description_template = "feeds/blog_description.html"
 
            bb.omnibus_feed_title_template = "feeds/blog_title.html"
 

	
 
        news = PressRelease.objects.filter(pub_date__lte=datetime.now(),
 
                                           sites__id__exact=settings.SITE_ID).order_by('-pub_date')[:25]
 
        for nn in news:
 
            nn.omnibus_type = "news"
 
            nn.omnibus_feed_description_template = "feeds/news_description.html"
 
            nn.omnibus_feed_title_template = "feeds/news_title.html"
 

	
 
        a  = [ ii for ii in itertools.chain(blogs, news)]
 
        a.sort(key=operator.attrgetter('pub_date'), reverse=True)
 
        return a
 

	
 

	
 
    def item_extra_kwargs(self, item):
 
        return super().item_extra_kwargs(item)
 

	
 
class BlogFeed(ConservancyFeedBase):
 
    link = "/blog/"
 
    get_absolute_url = '/feeds/blog/'
 

	
 
    def get_object(self, request):
 
        return request
 

	
 
    def title(self, obj):
 
        answer = "The Software Freedom Conservancy Blog"
 

	
 
        GET = obj.GET
 
        tags = []
 
        if 'author' in GET:
 
            tags = GET.getlist('author')
 
        if 'tag' in GET:
 
            tags += GET.getlist('tag')
 

	
 
        if len(tags) == 1:
 
            answer += " (" + tags[0] + ")"
 
        elif len(tags) > 1:
 
            firstTime = True
 
            done = {}
 
            for tag in tags:
 
                if tag in done:
 
                    continue
 
                if firstTime:
 
                    answer += " ("
 
                    firstTime = False
 
                else:
 
                    answer += ", "
 
                answer += tag
 
                done[tag] = tag
 
            answer += ")"
 
        else:
 
            answer += "."
 
        return answer
 
        
 

 
    def description(self, obj):
 
        answer = "Blogs at the Software Freedom Conservancy"
 

	
 
        GET = obj.GET
 
        tags = []
 
        if 'author' in GET:
 
            tags = GET.getlist('author')
 
        if 'tag' in GET:
 
            tags += GET.getlist('tag')
 

	
 
        done = {}
 
        if len(tags) == 1:
 
            answer += " tagged with " + tags[0]
 
        elif len(tags) > 1:
 
            firstTime = True
 
            for tag in tags:
 
                if tag in done:
 
                    continue
 
                if firstTime:
 
                    answer += " tagged with "
 
                    firstTime = False
 
                else:
 
                    answer += " or "
 
                answer += tag
 
                done[tag] = tag
 
        else:
 
            answer = "All blogs at the Software Freedom Conservancy"
 
        answer += "."
 

	
 
        return answer
 
        
 

 
    def item_title(self, item):
 
        return item.headline
 

	
 
    def item_description(self, item):
 
        return item.summary
 

	
 
    def item_author_name(self, item):
 
        return item.author.formal_name
 

	
 
    def item_author_email(self, item):
 
        return "%s@sfconservancy.org" % item.author
 

	
 
    def item_pubdate(self, item):
 
        return item.pub_date
 

	
 
    def items(self, obj):
 
        GET = obj.GET
 

	
 
        def OR_filter(field_name, subfield_name, objs):
 
            from django.db.models import Q
 
            return reduce(lambda x, y: x | y,
 
                          [Q(**{'{}__{}'.format(field_name, subfield_name): x})
 
                           for x in objs])
 

	
 
        queryset = BlogEntry.objects.filter(pub_date__lte=datetime.now())
 

	
 
        if 'author' in GET:
 
            authors = GET.getlist('author')
 
            queryset = queryset.filter(OR_filter('author', 'username', authors))
 

	
 
        if 'tag' in GET:
 
            tags = GET.getlist('tag')
 
            queryset = queryset.filter(OR_filter('tags', 'slug', tags))
 

	
 
        return queryset.order_by('-pub_date')[:10]
 

	
 

	
 
def view(request):
 
    """Listing of all available feeds
 
    """
 

	
 
    feeds = (PressReleaseFeed, BlogFeed, OmnibusFeed)
 
    return render(request, "feeds.html", {'feeds': feeds})
conservancy/news/admin.py
Show inline comments
 
from django.contrib import admin
 

	
 
from .models import ExternalArticle, ExternalArticleTag, PressRelease
 

	
 

	
 
@admin.register(PressRelease)
 
class PressReleaseAdmin(admin.ModelAdmin):
 
    list_display = ("headline", "pub_date")
 
    list_filter = ['pub_date']
 
    date_hierarchy = 'pub_date'
 
    search_fields = ['headline', 'summary', 'body']
 
    prepopulated_fields = { 'slug' : ("headline",), }
 

	
 
admin.site.register(ExternalArticleTag)
 

	
 
@admin.register(ExternalArticle)
 
class ExternalArticleAdmin(admin.ModelAdmin):
 
    list_display = ("title", "publication", "visible", "date")
 
    list_filter = ['date']
 
    date_hierarchy = 'date'
 
    search_fields = ["title", "info", "publication"]
 

	
 

	
 

	
 

	
conservancy/news/models.py
Show inline comments
 
from datetime import datetime, timedelta
 

	
 
from django.conf import settings
 
from django.contrib.sites.models import Site
 
from django.db import models
 

	
 
from .. import bsoup
 
from ..events.models import Event
 
from ..staff.models import Person
 

	
 

	
 
class PressRelease(models.Model, bsoup.SoupModelMixin):
 
    """News release model"""
 

	
 
    headline = models.CharField(max_length=300)
 
    subhead = models.CharField(max_length=300, blank=True)
 
    slug = models.SlugField(unique_for_date="pub_date",
 
                            help_text=("automatically built from headline"))
 
    summary = models.TextField(help_text="First paragraph (raw HTML)")
 
    body = models.TextField(help_text="Remainder of post (raw HTML)",
 
                            blank=True)
 
    pub_date = models.DateTimeField("date [to be] published")
 
    sites = models.ManyToManyField(Site)
 

	
 
    date_last_modified = models.DateTimeField(auto_now=True)
 

	
 
    class Meta:
 
        ordering = ("-pub_date",)
 
        get_latest_by = "pub_date"
 

	
 
    SOUP_ATTRS = ['summary', 'body']
 

	
 
    def __str__(self):
 
        return self.headline
 

	
 
    def get_absolute_url(self):
 
        return "/news/{}/{}/".format(
 
            self.pub_date.strftime("%Y/%b/%d").lower(),
 
            self.slug,
 
        )
 

	
 
    def is_recent(self):
 
        return self.pub_date > (datetime.now() - timedelta(days=5))
 
        # question: does datetime.now() do a syscall each time is it called?
 

	
 
    def is_in_past_month(self):
 
        # This function is deprecated.  Use the date_within template
 
        # filter instead (example in conservancy/templates/frontpage.html)
 
        return self.pub_date > (datetime.now() - timedelta(days=30))
 

	
 
    def save(self):
 
        if settings.DEBUG or True:
 
            super().save()
 
            return
 

	
 
        blog_name = 'Software Freedom Conservancy News'
 
        blog_url = 'https://www.sfconservancy.org/news/'
 
        post_url = ('https://www.sfconservancy.org'
 
                    + self.get_absolute_url())
 

	
 
        import xmlrpc.client
 

	
 
        # Ping Technorati
 
        j = xmlrpc.client.Server('http://rpc.technorati.com/rpc/ping')
 
        j.weblogUpdates.ping(blog_name, blog_url)
 

	
 
        # Ping Google Blog Search
 
        j = xmlrpc.client.Server('http://blogsearch.google.com/ping/RPC2')
 
        j.weblogUpdates.ping(blog_name, blog_url, post_url)
 

	
 
        # Call any superclass's method
 
        super().save()
 

	
 
class ExternalArticleTag(models.Model):
 
    """A way to tag external articles"""
 

	
 
    label = models.CharField(max_length=100)
 

	
 
    date_created = models.DateField(auto_now_add=True)
 

	
 
    def __str__(self):
 
        return self.label
 

	
 
class PublicExternalArticleManager(models.Manager):
 
    def get_queryset(self):
 
        return super().get_queryset().filter(visible=True)
 

	
 
class ExternalArticle(models.Model):
 
    """A system for displaying Conservancy news mentions on the site.
 

	
 
    (Currently unused)
 
    """
 

	
 
    title = models.CharField(max_length=400)
 
    info = models.CharField(help_text="subscribers only? audio? pdf warning?",
 
                            blank=True, max_length=300)
 
    publication = models.CharField("source of article", max_length=300)
 
    # verify_exists removed https://docs.djangoproject.com/en/1.7/releases/1.4/
 
    url = models.URLField(blank=True)
 
    date = models.DateField()
 
    visible = models.BooleanField(help_text="Whether to display on website", default=True)
 

	
 
    tags = models.ManyToManyField(ExternalArticleTag, blank=True)
 
    people = models.ManyToManyField(Person, blank=True)
 
    event = models.ForeignKey(Event, null=True, blank=True, on_delete=models.CASCADE)
 
    press_release = models.ForeignKey(PressRelease, null=True, blank=True, on_delete=models.CASCADE)
 

	
 
    date_created = models.DateField(auto_now_add=True)
 

	
 
    class Meta:
 
        ordering = ("-date_created",)
 
        get_latest_by = "date_created"
 

	
 
    def __str__(self):
 
        return "{} ({})".format(self.title, self.publication)
 

	
 
    objects = models.Manager()
 
    public = PublicExternalArticleManager()
 

	
conservancy/news/views.py
Show inline comments
 
from datetime import datetime
 

	
 
from django.core.paginator import EmptyPage, PageNotAnInteger, Paginator
 
from django.shortcuts import render
 
from django.views.generic import ListView
 
from django.views.generic.dates import (
 
    DateDetailView,
 
    DayArchiveView,
 
    MonthArchiveView,
 
    YearArchiveView,
 
)
 

	
 
from .models import PressRelease
 

	
 

	
 
class NewsListView(ListView):
 
    extra_context = {}
 
    def get_context_data(self, **kwargs):
 
        context = super().get_context_data(**kwargs)
 
        # context['key'] = 'value'
 
        context.update(self.extra_context)
 
        return context
 
                                    
 

 
def listing(request, *args, **kwargs):
 
    news_queryset = PressRelease.objects.all()
 

	
 
#    if (not kwargs.has_key('allow_future')) or not kwargs['allow_future']:
 
    news_queryset = news_queryset.filter(
 
        **{'%s__lte' % kwargs['date_field']: datetime.now()}
 
    )
 

	
 
    date_list = news_queryset.dates(kwargs['date_field'], 'year')
 

	
 
    paginate_by = kwargs.get('paginate_by', 6)  # Show 6 news items per page, by default
 
    paginator = Paginator(news_queryset, paginate_by)
 

	
 
    page = request.GET.get('page')
 
    try:
 
        news = paginator.page(page)
 
    except PageNotAnInteger:
 
        # If page is not an integer, deliver first page.
 
        news = paginator.page(1)
 
    except EmptyPage:
 
        # If page is out of range (e.g. 9999), deliver last page of results.
 
        news = paginator.page(paginator.num_pages)
 

	
 
    return render(request, 'news/pressrelease_list.html', {"news": news, "date_list" : date_list})
 

	
 
class NewsYearArchiveView(YearArchiveView):
 
    # queryset = Article.objects.all()
 
    # date_field = "pub_date"
 
    make_object_list = True
 
    allow_future = True
 

	
 
# def archive_year(request, **kwargs):
 
#     callable = NewsYearArchiveView.as_view(**kwargs)
 
#     return callable(request)
 

	
 
class NewsMonthArchiveView(MonthArchiveView):
 
    allow_future = True
 

	
 
# def archive_month(request, **kwargs):
 
#     # return HttpResponse("archive_month")
 
#     callable = NewsMonthArchiveView.as_view(**kwargs)
 
#     return callable(request)
 

	
 
class NewsDayArchiveView(DayArchiveView):
 
    allow_future = True
 

	
 
# def archive_day(request, **kwargs):
 
#     # return HttpResponse("archive_day")
 
#     callable = NewsDayArchiveView.as_view(**kwargs)
 
#     return callable(request)
 

	
 
class NewsDateDetailView(DateDetailView):
 
    # extra_context = {}
 
    allow_future = True
 
    # slug_url_kwarg = 'slug'
 

	
 
    # def get_context_data(self, **kwargs):
 
    #     context = super(NewsDateDetailView, self).get_context_data(**kwargs)
 
    #     context.update(self.extra_context)
 
    #     return context
 

	
 
# def object_detail(request, **kwargs):
 
#     # extra_context = {}
 
#     # extra_context['slug'] = kwargs['slug']
 
#     # del kwargs['slug']
 
#     # kwargs['extra_context'] = extra_context
 
#     # return HttpResponse("object_detail: " + str(kwargs))
 
#     # slug = kwargs['slug']
 
#     # del kwargs['slug']
 
#     callable = NewsDateDetailView.as_view(**kwargs)
 
#     return callable(request)
 

	
conservancy/podjango/admin.py
Show inline comments
 
#  Copyright (C) 2008       Bradley M. Kuhn <bkuhn@ebb.org>
 
#  Copyright (C) 2006, 2007 Software Freedom Law Center, Inc.
 
#
 
# This software's license gives you freedom; you can copy, convey,
 
# propogate, redistribute and/or modify this program under the terms of
 
# the GNU Affero General Public License (AGPL) as published by the Free
 
# Software Foundation (FSF), either version 3 of the License, or (at your
 
# option) any later version of the AGPL published by the FSF.
 
#
 
# 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 Affero
 
# General Public License for more details.
 
#
 
# You should have received a copy of the GNU Affero General Public License
 
# along with this program in a file in the toplevel directory called
 
# "AGPLv3".  If not, see <http://www.gnu.org/licenses/>.
 
#
 
from django.contrib import admin
 

	
 
from .models import Cast, CastTag, Podcast
 

	
 

	
 
@admin.register(Podcast)
 
class PodcastAdmin(admin.ModelAdmin):
 
    prepopulated_fields = {'slug': ('title',)}
 

	
 

	
 
@admin.register(CastTag)
 
class CastTagAdmin(admin.ModelAdmin):
 
    prepopulated_fields = {'slug': ('label',)}
 

	
 

	
 
@admin.register(Cast)
 
class CastAdmin(admin.ModelAdmin):
 
    list_display = ('pub_date', 'title')
 
    list_filter = ['pub_date', 'podcast']
 
    date_hierarchy = 'pub_date'
 
    search_fields = ['title', 'summary', 'body']
 
    prepopulated_fields = {'slug': ("title",)}
 
    filter_horizontal = ('tags',)
 

	
 

	
conservancy/staff/admin.py
Show inline comments
 
from django.contrib import admin
 

	
 
from .models import Person
 

	
 

	
 
@admin.register(Person)
 
class PersonAdmin(admin.ModelAdmin):
 
    list_display = ("username", "formal_name", "casual_name",
 
                    "currently_employed")
 
    list_filter = ["currently_employed"]
 

	
conservancy/static/css/tachyons.css
Show inline comments
 
/*! TACHYONS v4.12.0 | http://tachyons.io */
 
/*
 
 *
 
 *      ________            ______
 
 *      ___  __/_____ _________  /______  ______________________
 
 *      __  /  _  __ `/  ___/_  __ \_  / / /  __ \_  __ \_  ___/
 
 *      _  /   / /_/ // /__ _  / / /  /_/ // /_/ /  / / /(__  )
 
 *      /_/    \__,_/ \___/ /_/ /_/_\__, / \____//_/ /_//____/
 
 *                                 /____/
 
 *
 
 *    TABLE OF CONTENTS
 
 *
 
 *    1. External Library Includes
 
 *       - Normalize.css | http://normalize.css.github.io
 
 *    2. Tachyons Modules
 
 *    3. Variables
 
 *       - Media Queries
 
 *       - Colors
 
 *    4. Debugging
 
 *       - Debug all
 
 *       - Debug children
 
 *
 
 */
 
/* External Library Includes */
 
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
 
/* Document
 
   ========================================================================== */
 
/**
 
 * 1. Correct the line height in all browsers.
 
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 
 */
 
html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ }
 
/* Sections
 
   ========================================================================== */
 
/**
 
 * Remove the margin in all browsers.
 
 */
 
body { margin: 0; }
 
/**
 
 * Correct the font size and margin on `h1` elements within `section` and
 
 * `article` contexts in Chrome, Firefox, and Safari.
 
 */
 
h1 { font-size: 2em; margin: .67em 0; }
 
/* Grouping content
 
   ========================================================================== */
 
/**
 
 * 1. Add the correct box sizing in Firefox.
 
 * 2. Show the overflow in Edge and IE.
 
 */
 
hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ }
 
/**
 
 * 1. Correct the inheritance and scaling of font size in all browsers.
 
 * 2. Correct the odd `em` font sizing in all browsers.
 
 */
 
pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ }
 
/* Text-level semantics
 
   ========================================================================== */
 
/**
 
 * Remove the gray background on active links in IE 10.
 
 */
 
a { background-color: transparent; }
 
/**
 
 * 1. Remove the bottom border in Chrome 57-
 
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 
 */
 
abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ -webkit-text-decoration: underline dotted; text-decoration: underline dotted; /* 2 */ }
 
/**
 
 * Add the correct font weight in Chrome, Edge, and Safari.
 
 */
 
b, strong { font-weight: bolder; }
 
/**
 
 * 1. Correct the inheritance and scaling of font size in all browsers.
 
 * 2. Correct the odd `em` font sizing in all browsers.
 
 */
 
code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ }
 
/**
 
 * Add the correct font size in all browsers.
 
 */
 
small { font-size: 80%; }
 
/**
 
 * Prevent `sub` and `sup` elements from affecting the line height in
 
 * all browsers.
 
 */
 
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
 
sub { bottom: -0.25em; }
 
sup { top: -0.5em; }
 
/* Embedded content
 
   ========================================================================== */
 
/**
 
 * Remove the border on images inside links in IE 10.
 
 */
 
img { border-style: none; }
 
/* Forms
 
   ========================================================================== */
 
/**
 
 * 1. Change the font styles in all browsers.
 
 * 2. Remove the margin in Firefox and Safari.
 
 */
 
button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ }
 
/**
 
 * Show the overflow in IE.
 
 * 1. Show the overflow in Edge.
 
 */
 
button, input {/* 1 */ overflow: visible; }
 
/**
 
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 
 * 1. Remove the inheritance of text transform in Firefox.
 
 */
 
button, select {/* 1 */ text-transform: none; }
 
/**
 
 * Correct the inability to style clickable types in iOS and Safari.
 
 */
 
button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; }
 
/**
 
 * Remove the inner border and padding in Firefox.
 
 */
 
button::-moz-focus-inner, [type="button"]::-moz-focus-inner,
 
[type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; }
 
/**
 
 * Restore the focus styles unset by the previous rule.
 
 */
 
button:-moz-focusring, [type="button"]:-moz-focusring,
 
[type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; }
 
/**
 
 * Correct the padding in Firefox.
 
 */
 
fieldset { padding: .35em .75em .625em; }
 
/**
 
 * 1. Correct the text wrapping in Edge and IE.
 
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 
 * 3. Remove the padding so developers are not caught out when they zero out
 
 *    `fieldset` elements in all browsers.
 
 */
 
legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ }
 
/**
 
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 
 */
 
progress { vertical-align: baseline; }
 
/**
 
 * Remove the default vertical scrollbar in IE 10+.
 
 */
 
textarea { overflow: auto; }
 
/**
 
 * 1. Add the correct box sizing in IE 10.
 
 * 2. Remove the padding in IE 10.
 
 */
 
[type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
 
/**
 
 * Correct the cursor style of increment and decrement buttons in Chrome.
 
 */
 
[type="number"]::-webkit-inner-spin-button,
 
[type="number"]::-webkit-outer-spin-button { height: auto; }
 
/**
 
 * 1. Correct the odd appearance in Chrome and Safari.
 
 * 2. Correct the outline style in Safari.
 
 */
 
[type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ }
 
/**
 
 * Remove the inner padding in Chrome and Safari on macOS.
 
 */
 
[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
 
/**
 
 * 1. Correct the inability to style clickable types in iOS and Safari.
 
 * 2. Change font properties to `inherit` in Safari.
 
 */
 
::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ }
 
/* Interactive
 
   ========================================================================== */
 
/*
 
 * Add the correct display in Edge, IE 10+, and Firefox.
 
 */
 
details { display: block; }
 
/*
 
 * Add the correct display in all browsers.
 
 */
 
summary { display: list-item; }
 
/* Misc
 
   ========================================================================== */
 
/**
 
 * Add the correct display in IE 10+.
 
 */
 
template { display: none; }
 
/**
 
 * Add the correct display in IE 10.
 
 */
 
[hidden] { display: none; }
 
/* Modules */
 
/*
 
 
 

 
  BOX SIZING
 

	
 
*/
 
html, body, div, article, aside, section, main, nav, footer, header, form,
 
fieldset, legend, pre, code, a, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt,
 
dd, blockquote, figcaption, figure, textarea, table, td, th, tr,
 
input[type="email"], input[type="number"], input[type="password"],
 
input[type="tel"], input[type="text"], input[type="url"], .border-box { box-sizing: border-box; }
 
/*
 

	
 
   ASPECT RATIOS
 

	
 
*/
 
/* This is for fluid media that is embedded from third party sites like youtube, vimeo etc.
 
 * Wrap the outer element in aspect-ratio and then extend it with the desired ratio i.e
 
 * Make sure there are no height and width attributes on the embedded media.
 
 * Adapted from: https://github.com/suitcss/components-flex-embed
 
 *
 
 * Example:
 
 *
 
 * <div class="aspect-ratio aspect-ratio--16x9">
 
 *  <iframe class="aspect-ratio--object"></iframe>
 
 * </div>
 
 *
 
 * */
 
.aspect-ratio { height: 0; position: relative; }
 
.aspect-ratio--16x9 { padding-bottom: 56.25%; }
 
.aspect-ratio--9x16 { padding-bottom: 177.77%; }
 
.aspect-ratio--4x3 { padding-bottom: 75%; }
 
.aspect-ratio--3x4 { padding-bottom: 133.33%; }
 
.aspect-ratio--6x4 { padding-bottom: 66.6%; }
 
.aspect-ratio--4x6 { padding-bottom: 150%; }
 
.aspect-ratio--8x5 { padding-bottom: 62.5%; }
 
.aspect-ratio--5x8 { padding-bottom: 160%; }
 
.aspect-ratio--7x5 { padding-bottom: 71.42%; }
 
.aspect-ratio--5x7 { padding-bottom: 140%; }
 
.aspect-ratio--1x1 { padding-bottom: 100%; }
 
.aspect-ratio--object { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; z-index: 100; }
 
/*
 

	
 
   IMAGES
 
   Docs: http://tachyons.io/docs/elements/images/
 

	
 
*/
 
/* Responsive images! */
 
img { max-width: 100%; }
 
/*
 

	
 
   BACKGROUND SIZE
 
   Docs: http://tachyons.io/docs/themes/background-size/
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
/*
 
  Often used in combination with background image set as an inline style
 
  on an html element.
 
*/
 
.cover { background-size: cover !important; }
 
.contain { background-size: contain !important; }
 
/*
 

	
 
    BACKGROUND POSITION
 

	
 
    Base:
 
    bg = background
 

	
 
    Modifiers:
 
    -center = center center
 
    -top = top center
 
    -right = center right
 
    -bottom = bottom center
 
    -left = center left
 

	
 
    Media Query Extensions:
 
      -ns = not-small
 
      -m  = medium
 
      -l  = large
 

	
 
 */
 
.bg-center { background-repeat: no-repeat; background-position: center center; }
 
.bg-top { background-repeat: no-repeat; background-position: top center; }
 
.bg-right { background-repeat: no-repeat; background-position: center right; }
 
.bg-bottom { background-repeat: no-repeat; background-position: bottom center; }
 
.bg-left { background-repeat: no-repeat; background-position: center left; }
 
/*
 

	
 
   OUTLINES
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.outline { outline: 1px solid; }
 
.outline-transparent { outline: 1px solid transparent; }
 
.outline-0 { outline: 0; }
 
/*
 

	
 
    BORDERS
 
    Docs: http://tachyons.io/docs/themes/borders/
 

	
 
    Base:
 
      b = border
 

	
 
    Modifiers:
 
      a = all
 
      t = top
 
      r = right
 
      b = bottom
 
      l = left
 
      n = none
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.ba { border-style: solid; border-width: 1px; }
 
.bt { border-top-style: solid; border-top-width: 1px; }
 
.br { border-right-style: solid; border-right-width: 1px; }
 
.bb { border-bottom-style: solid; border-bottom-width: 1px; }
 
.bl { border-left-style: solid; border-left-width: 1px; }
 
.bn { border-style: none; border-width: 0; }
 
/*
 

	
 
   BORDER COLORS
 
   Docs: http://tachyons.io/docs/themes/borders/
 

	
 
   Border colors can be used to extend the base
 
   border classes ba,bt,bb,br,bl found in the _borders.css file.
 

	
 
   The base border class by default will set the color of the border
 
   to that of the current text color. These classes are for the cases
 
   where you desire for the text and border colors to be different.
 

	
 
   Base:
 
     b = border
 

	
 
   Modifiers:
 
   --color-name = each color variable name is also a border color name
 

	
 
*/
 
.b--black { border-color: #000; }
 
.b--near-black { border-color: #111; }
 
.b--dark-gray { border-color: #333; }
 
.b--mid-gray { border-color: #555; }
 
.b--gray { border-color: #777; }
 
.b--silver { border-color: #999; }
 
.b--light-silver { border-color: #aaa; }
 
.b--moon-gray { border-color: #ccc; }
 
.b--light-gray { border-color: #eee; }
 
.b--near-white { border-color: #f4f4f4; }
 
.b--white { border-color: #fff; }
 
.b--white-90 { border-color: rgba( 255, 255, 255, .9 ); }
 
.b--white-80 { border-color: rgba( 255, 255, 255, .8 ); }
 
.b--white-70 { border-color: rgba( 255, 255, 255, .7 ); }
 
.b--white-60 { border-color: rgba( 255, 255, 255, .6 ); }
 
.b--white-50 { border-color: rgba( 255, 255, 255, .5 ); }
 
.b--white-40 { border-color: rgba( 255, 255, 255, .4 ); }
 
.b--white-30 { border-color: rgba( 255, 255, 255, .3 ); }
 
.b--white-20 { border-color: rgba( 255, 255, 255, .2 ); }
 
.b--white-10 { border-color: rgba( 255, 255, 255, .1 ); }
 
.b--white-05 { border-color: rgba( 255, 255, 255, .05 ); }
 
.b--white-025 { border-color: rgba( 255, 255, 255, .025 ); }
 
.b--white-0125 { border-color: rgba( 255, 255, 255, .0125 ); }
 
.b--black-90 { border-color: rgba( 0, 0, 0, .9 ); }
 
.b--black-80 { border-color: rgba( 0, 0, 0, .8 ); }
 
.b--black-70 { border-color: rgba( 0, 0, 0, .7 ); }
 
.b--black-60 { border-color: rgba( 0, 0, 0, .6 ); }
 
.b--black-50 { border-color: rgba( 0, 0, 0, .5 ); }
 
.b--black-40 { border-color: rgba( 0, 0, 0, .4 ); }
 
.b--black-30 { border-color: rgba( 0, 0, 0, .3 ); }
 
.b--black-20 { border-color: rgba( 0, 0, 0, .2 ); }
 
.b--black-10 { border-color: rgba( 0, 0, 0, .1 ); }
 
.b--black-05 { border-color: rgba( 0, 0, 0, .05 ); }
 
.b--black-025 { border-color: rgba( 0, 0, 0, .025 ); }
 
.b--black-0125 { border-color: rgba( 0, 0, 0, .0125 ); }
 
.b--dark-red { border-color: #e7040f; }
 
.b--red { border-color: #ff4136; }
 
.b--light-red { border-color: #ff725c; }
 
.b--orange { border-color: #ff6300; }
 
.b--gold { border-color: #ffb700; }
 
.b--yellow { border-color: #ffd700; }
 
.b--light-yellow { border-color: #fbf1a9; }
 
.b--purple { border-color: #5e2ca5; }
 
.b--light-purple { border-color: #a463f2; }
 
.b--dark-pink { border-color: #d5008f; }
 
.b--hot-pink { border-color: #ff41b4; }
 
.b--pink { border-color: #ff80cc; }
 
.b--light-pink { border-color: #ffa3d7; }
 
.b--dark-green { border-color: #137752; }
 
.b--green { border-color: #19a974; }
 
.b--light-green { border-color: #9eebcf; }
 
.b--navy { border-color: #001b44; }
 
.b--dark-blue { border-color: #00449e; }
 
.b--blue { border-color: #357edd; }
 
.b--light-blue { border-color: #96ccff; }
 
.b--lightest-blue { border-color: #cdecff; }
 
.b--washed-blue { border-color: #f6fffe; }
 
.b--washed-green { border-color: #e8fdf5; }
 
.b--washed-yellow { border-color: #fffceb; }
 
.b--washed-red { border-color: #ffdfdf; }
 
.b--transparent { border-color: transparent; }
 
.b--inherit { border-color: inherit; }
 
.b--initial { border-color: initial; }
 
.b--unset { border-color: unset; }
 
/*
 

	
 
   BORDER RADIUS
 
   Docs: http://tachyons.io/docs/themes/border-radius/
 

	
 
   Base:
 
     br   = border-radius
 

	
 
   Modifiers:
 
     0    = 0/none
 
     1    = 1st step in scale
 
     2    = 2nd step in scale
 
     3    = 3rd step in scale
 
     4    = 4th step in scale
 

	
 
   Literal values:
 
     -100 = 100%
 
     -pill = 9999px
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.br0 { border-radius: 0; }
 
.br1 { border-radius: .125rem; }
 
.br2 { border-radius: .25rem; }
 
.br3 { border-radius: .5rem; }
 
.br4 { border-radius: 1rem; }
 
.br-100 { border-radius: 100%; }
 
.br-pill { border-radius: 9999px; }
 
.br--bottom { border-top-left-radius: 0; border-top-right-radius: 0; }
 
.br--top { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
 
.br--right { border-top-left-radius: 0; border-bottom-left-radius: 0; }
 
.br--left { border-top-right-radius: 0; border-bottom-right-radius: 0; }
 
.br-inherit { border-radius: inherit; }
 
.br-initial { border-radius: initial; }
 
.br-unset { border-radius: unset; }
 
/*
 

	
 
   BORDER STYLES
 
   Docs: http://tachyons.io/docs/themes/borders/
 

	
 
   Depends on base border module in _borders.css
 

	
 
   Base:
 
     b = border-style
 

	
 
   Modifiers:
 
     --none   = none
 
     --dotted = dotted
 
     --dashed = dashed
 
     --solid  = solid
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
 */
 
.b--dotted { border-style: dotted; }
 
.b--dashed { border-style: dashed; }
 
.b--solid { border-style: solid; }
 
.b--none { border-style: none; }
 
/*
 

	
 
   BORDER WIDTHS
 
   Docs: http://tachyons.io/docs/themes/borders/
 

	
 
   Base:
 
     bw = border-width
 

	
 
   Modifiers:
 
     0 = 0 width border
 
     1 = 1st step in border-width scale
 
     2 = 2nd step in border-width scale
 
     3 = 3rd step in border-width scale
 
     4 = 4th step in border-width scale
 
     5 = 5th step in border-width scale
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.bw0 { border-width: 0; }
 
.bw1 { border-width: .125rem; }
 
.bw2 { border-width: .25rem; }
 
.bw3 { border-width: .5rem; }
 
.bw4 { border-width: 1rem; }
 
.bw5 { border-width: 2rem; }
 
/* Resets */
 
.bt-0 { border-top-width: 0; }
 
.br-0 { border-right-width: 0; }
 
.bb-0 { border-bottom-width: 0; }
 
.bl-0 { border-left-width: 0; }
 
/*
 

	
 
  BOX-SHADOW
 
  Docs: http://tachyons.io/docs/themes/box-shadow/
 

	
 
  Media Query Extensions:
 
   -ns = not-small
 
   -m  = medium
 
   -l  = large
 

	
 
 */
 
.shadow-1 { box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); }
 
.shadow-2 { box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); }
 
.shadow-3 { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); }
 
.shadow-4 { box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); }
 
.shadow-5 { box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); }
 
/*
 

	
 
   CODE
 

	
 
*/
 
.pre { overflow-x: auto; overflow-y: hidden; overflow: scroll; }
 
/*
 

	
 
   COORDINATES
 
   Docs: http://tachyons.io/docs/layout/position/
 

	
 
   Use in combination with the position module.
 

	
 
   Base:
 
     top
 
     bottom
 
     right
 
     left
 

	
 
   Modifiers:
 
     -0  = literal value 0
 
     -1  = literal value 1
 
     -2  = literal value 2
 
     --1 = literal value -1
 
     --2 = literal value -2
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.top-0 { top: 0; }
 
.right-0 { right: 0; }
 
.bottom-0 { bottom: 0; }
 
.left-0 { left: 0; }
 
.top-1 { top: 1rem; }
 
.right-1 { right: 1rem; }
 
.bottom-1 { bottom: 1rem; }
 
.left-1 { left: 1rem; }
 
.top-2 { top: 2rem; }
 
.right-2 { right: 2rem; }
 
.bottom-2 { bottom: 2rem; }
 
.left-2 { left: 2rem; }
 
.top--1 { top: -1rem; }
 
.right--1 { right: -1rem; }
 
.bottom--1 { bottom: -1rem; }
 
.left--1 { left: -1rem; }
 
.top--2 { top: -2rem; }
 
.right--2 { right: -2rem; }
 
.bottom--2 { bottom: -2rem; }
 
.left--2 { left: -2rem; }
 
.absolute--fill { top: 0; right: 0; bottom: 0; left: 0; }
 
/*
 

	
 
   CLEARFIX
 
   http://tachyons.io/docs/layout/clearfix/
 

	
 
*/
 
/* Nicolas Gallaghers Clearfix solution
 
   Ref: http://nicolasgallagher.com/micro-clearfix-hack/ */
 
.cf:before, .cf:after { content: " "; display: table; }
 
.cf:after { clear: both; }
 
.cf { *zoom: 1; }
 
.cl { clear: left; }
 
.cr { clear: right; }
 
.cb { clear: both; }
 
.cn { clear: none; }
 
/*
 

	
 
   DISPLAY
 
   Docs: http://tachyons.io/docs/layout/display
 

	
 
   Base:
 
    d = display
 

	
 
   Modifiers:
 
    n     = none
 
    b     = block
 
    ib    = inline-block
 
    it    = inline-table
 
    t     = table
 
    tc    = table-cell
 
    t-row          = table-row
 
    t-columm       = table-column
 
    t-column-group = table-column-group
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.dn { display: none; }
 
.di { display: inline; }
 
.db { display: block; }
 
.dib { display: inline-block; }
 
.dit { display: inline-table; }
 
.dt { display: table; }
 
.dtc { display: table-cell; }
 
.dt-row { display: table-row; }
 
.dt-row-group { display: table-row-group; }
 
.dt-column { display: table-column; }
 
.dt-column-group { display: table-column-group; }
 
/*
 
  This will set table to full width and then
 
  all cells will be equal width
 
*/
 
.dt--fixed { table-layout: fixed; width: 100%; }
 
/*
 

	
 
  FLEXBOX
 

	
 
  Media Query Extensions:
 
   -ns = not-small
 
   -m  = medium
 
   -l  = large
 

	
 
*/
 
.flex { display: flex; }
 
.inline-flex { display: inline-flex; }
 
/* 1. Fix for Chrome 44 bug.
 
 * https://code.google.com/p/chromium/issues/detail?id=506893 */
 
.flex-auto { flex: 1 1 auto; min-width: 0; /* 1 */ min-height: 0; /* 1 */ }
 
.flex-none { flex: none; }
 
.flex-column { flex-direction: column; }
 
.flex-row { flex-direction: row; }
 
.flex-wrap { flex-wrap: wrap; }
 
.flex-nowrap { flex-wrap: nowrap; }
 
.flex-wrap-reverse { flex-wrap: wrap-reverse; }
 
.flex-column-reverse { flex-direction: column-reverse; }
 
.flex-row-reverse { flex-direction: row-reverse; }
 
.items-start { align-items: flex-start; }
 
.items-end { align-items: flex-end; }
 
.items-center { align-items: center; }
 
.items-baseline { align-items: baseline; }
 
.items-stretch { align-items: stretch; }
 
.self-start { align-self: flex-start; }
 
.self-end { align-self: flex-end; }
 
.self-center { align-self: center; }
 
.self-baseline { align-self: baseline; }
 
.self-stretch { align-self: stretch; }
 
.justify-start { justify-content: flex-start; }
 
.justify-end { justify-content: flex-end; }
 
.justify-center { justify-content: center; }
 
.justify-between { justify-content: space-between; }
 
.justify-around { justify-content: space-around; }
 
.content-start { align-content: flex-start; }
 
.content-end { align-content: flex-end; }
 
.content-center { align-content: center; }
 
.content-between { align-content: space-between; }
 
.content-around { align-content: space-around; }
 
.content-stretch { align-content: stretch; }
 
.order-0 { order: 0; }
 
.order-1 { order: 1; }
 
.order-2 { order: 2; }
 
.order-3 { order: 3; }
 
.order-4 { order: 4; }
 
.order-5 { order: 5; }
 
.order-6 { order: 6; }
 
.order-7 { order: 7; }
 
.order-8 { order: 8; }
 
.order-last { order: 99999; }
 
.flex-grow-0 { flex-grow: 0; }
 
.flex-grow-1 { flex-grow: 1; }
 
.flex-shrink-0 { flex-shrink: 0; }
 
.flex-shrink-1 { flex-shrink: 1; }
 
/*
 

	
 
   FLOATS
 
   http://tachyons.io/docs/layout/floats/
 

	
 
   1. Floated elements are automatically rendered as block level elements.
 
      Setting floats to display inline will fix the double margin bug in
 
      ie6. You know... just in case.
 

	
 
   2. Don't forget to clearfix your floats with .cf
 

	
 
   Base:
 
     f = float
 

	
 
   Modifiers:
 
     l = left
 
     r = right
 
     n = none
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.fl { float: left; _display: inline; }
 
.fr { float: right; _display: inline; }
 
.fn { float: none; }
 
/*
 

	
 
   FONT FAMILY GROUPS
 
   Docs: http://tachyons.io/docs/typography/font-family/
 

	
 
*/
 
.sans-serif { font-family: -apple-system, BlinkMacSystemFont, 'avenir next', avenir, 'helvetica neue', helvetica, ubuntu, roboto, noto, 'segoe ui', arial, sans-serif; }
 
.serif { font-family: georgia, times, serif; }
 
.system-sans-serif { font-family: sans-serif; }
 
.system-serif { font-family: serif; }
 
/* Monospaced Typefaces (for code) */
 
/* From http://cssfontstack.com */
 
code, .code { font-family: Consolas, monaco, monospace; }
 
.courier { font-family: 'Courier Next', courier, monospace; }
 
/* Sans-Serif Typefaces */
 
.helvetica { font-family: 'helvetica neue', helvetica, sans-serif; }
 
.avenir { font-family: 'avenir next', avenir, sans-serif; }
 
/* Serif Typefaces */
 
.athelas { font-family: athelas, georgia, serif; }
 
.georgia { font-family: georgia, serif; }
 
.times { font-family: times, serif; }
 
.bodoni { font-family: "Bodoni MT", serif; }
 
.calisto { font-family: "Calisto MT", serif; }
 
.garamond { font-family: garamond, serif; }
 
.baskerville { font-family: baskerville, serif; }
 
/*
 

	
 
   FONT STYLE
 
   Docs: http://tachyons.io/docs/typography/font-style/
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.i { font-style: italic; }
 
.fs-normal { font-style: normal; }
 
/*
 

	
 
   FONT WEIGHT
 
   Docs: http://tachyons.io/docs/typography/font-weight/
 

	
 
   Base
 
     fw = font-weight
 

	
 
   Modifiers:
 
     1 = literal value 100
 
     2 = literal value 200
 
     3 = literal value 300
 
     4 = literal value 400
 
     5 = literal value 500
 
     6 = literal value 600
 
     7 = literal value 700
 
     8 = literal value 800
 
     9 = literal value 900
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.normal { font-weight: normal; }
 
.b { font-weight: bold; }
 
.fw1 { font-weight: 100; }
 
.fw2 { font-weight: 200; }
 
.fw3 { font-weight: 300; }
 
.fw4 { font-weight: 400; }
 
.fw5 { font-weight: 500; }
 
.fw6 { font-weight: 600; }
 
.fw7 { font-weight: 700; }
 
.fw8 { font-weight: 800; }
 
.fw9 { font-weight: 900; }
 
/*
 

	
 
   FORMS
 
   
 

 
*/
 
.input-reset { -webkit-appearance: none; -moz-appearance: none; }
 
.button-reset::-moz-focus-inner, .input-reset::-moz-focus-inner { border: 0; padding: 0; }
 
/*
 

	
 
   HEIGHTS
 
   Docs: http://tachyons.io/docs/layout/heights/
 

	
 
   Base:
 
     h = height
 
     min-h = min-height
 
     min-vh = min-height vertical screen height
 
     vh = vertical screen height
 

	
 
   Modifiers
 
     1 = 1st step in height scale
 
     2 = 2nd step in height scale
 
     3 = 3rd step in height scale
 
     4 = 4th step in height scale
 
     5 = 5th step in height scale
 

	
 
     -25   = literal value 25%
 
     -50   = literal value 50%
 
     -75   = literal value 75%
 
     -100  = literal value 100%
 

	
 
     -auto = string value of auto
 
     -inherit = string value of inherit
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
/* Height Scale */
 
.h1 { height: 1rem; }
 
.h2 { height: 2rem; }
 
.h3 { height: 4rem; }
 
.h4 { height: 8rem; }
 
.h5 { height: 16rem; }
 
/* Height Percentages - Based off of height of parent */
 
.h-25 { height: 25%; }
 
.h-50 { height: 50%; }
 
.h-75 { height: 75%; }
 
.h-100 { height: 100%; }
 
.min-h-100 { min-height: 100%; }
 
/* Screen Height Percentage */
 
.vh-25 { height: 25vh; }
 
.vh-50 { height: 50vh; }
 
.vh-75 { height: 75vh; }
 
.vh-100 { height: 100vh; }
 
.min-vh-100 { min-height: 100vh; }
 
/* String Properties */
 
.h-auto { height: auto; }
 
.h-inherit { height: inherit; }
 
/*
 

	
 
   LETTER SPACING
 
   Docs: http://tachyons.io/docs/typography/tracking/
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.tracked { letter-spacing: .1em; }
 
.tracked-tight { letter-spacing: -.05em; }
 
.tracked-mega { letter-spacing: .25em; }
 
/*
 

	
 
   LINE HEIGHT / LEADING
 
   Docs: http://tachyons.io/docs/typography/line-height
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.lh-solid { line-height: 1; }
 
.lh-title { line-height: 1.25; }
 
.lh-copy { line-height: 1.5; }
 
/*
 

	
 
   LINKS
 
   Docs: http://tachyons.io/docs/elements/links/
 

	
 
*/
 
.link { text-decoration: none; transition: color .15s ease-in; }
 
.link:link, .link:visited { transition: color .15s ease-in; }
 
.link:hover { transition: color .15s ease-in; }
 
.link:active { transition: color .15s ease-in; }
 
.link:focus { transition: color .15s ease-in; outline: 1px dotted currentColor; }
 
/*
 

	
 
   LISTS
 
   http://tachyons.io/docs/elements/lists/
 

	
 
*/
 
.list { list-style-type: none; }
 
/*
 

	
 
   MAX WIDTHS
 
   Docs: http://tachyons.io/docs/layout/max-widths/
 

	
 
   Base:
 
     mw = max-width
 

	
 
   Modifiers
 
     1 = 1st step in width scale
 
     2 = 2nd step in width scale
 
     3 = 3rd step in width scale
 
     4 = 4th step in width scale
 
     5 = 5th step in width scale
 
     6 = 6st step in width scale
 
     7 = 7nd step in width scale
 
     8 = 8rd step in width scale
 
     9 = 9th step in width scale
 

	
 
     -100 = literal value 100%
 

	
 
     -none  = string value none
 

	
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
/* Max Width Percentages */
 
.mw-100 { max-width: 100%; }
 
/* Max Width Scale */
 
.mw1 { max-width: 1rem; }
 
.mw2 { max-width: 2rem; }
 
.mw3 { max-width: 4rem; }
 
.mw4 { max-width: 8rem; }
 
.mw5 { max-width: 16rem; }
 
.mw6 { max-width: 32rem; }
 
.mw7 { max-width: 48rem; }
 
.mw8 { max-width: 64rem; }
 
.mw9 { max-width: 96rem; }
 
/* Max Width String Properties */
 
.mw-none { max-width: none; }
 
/*
 

	
 
   WIDTHS
 
   Docs: http://tachyons.io/docs/layout/widths/
 

	
 
   Base:
 
     w = width
 

	
 
   Modifiers
 
     1 = 1st step in width scale
 
     2 = 2nd step in width scale
 
     3 = 3rd step in width scale
 
     4 = 4th step in width scale
 
     5 = 5th step in width scale
 

	
 
     -10  = literal value 10%
 
     -20  = literal value 20%
 
     -25  = literal value 25%
 
     -30  = literal value 30%
 
     -33  = literal value 33%
 
     -34  = literal value 34%
 
     -40  = literal value 40%
 
     -50  = literal value 50%
 
     -60  = literal value 60%
 
     -70  = literal value 70%
 
     -75  = literal value 75%
 
     -80  = literal value 80%
 
     -90  = literal value 90%
 
     -100 = literal value 100%
 

	
 
     -third      = 100% / 3 (Not supported in opera mini or IE8)
 
     -two-thirds = 100% / 1.5 (Not supported in opera mini or IE8)
 
     -auto       = string value auto
 

	
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
/* Width Scale */
 
.w1 { width: 1rem; }
 
.w2 { width: 2rem; }
 
.w3 { width: 4rem; }
 
.w4 { width: 8rem; }
 
.w5 { width: 16rem; }
 
.w-10 { width: 10%; }
 
.w-20 { width: 20%; }
 
.w-25 { width: 25%; }
 
.w-30 { width: 30%; }
 
.w-33 { width: 33%; }
 
.w-34 { width: 34%; }
 
.w-40 { width: 40%; }
 
.w-50 { width: 50%; }
 
.w-60 { width: 60%; }
 
.w-70 { width: 70%; }
 
.w-75 { width: 75%; }
 
.w-80 { width: 80%; }
 
.w-90 { width: 90%; }
 
.w-100 { width: 100%; }
 
.w-third { width: 33.33333%; }
 
.w-two-thirds { width: 66.66667%; }
 
.w-auto { width: auto; }
 
/*
 

	
 
    OVERFLOW
 

	
 
    Media Query Extensions:
 
      -ns = not-small
 
      -m  = medium
 
      -l  = large
 

	
 
 */
 
.overflow-visible { overflow: visible; }
 
.overflow-hidden { overflow: hidden; }
 
.overflow-scroll { overflow: scroll; }
 
.overflow-auto { overflow: auto; }
 
.overflow-x-visible { overflow-x: visible; }
 
.overflow-x-hidden { overflow-x: hidden; }
 
.overflow-x-scroll { overflow-x: scroll; }
 
.overflow-x-auto { overflow-x: auto; }
 
.overflow-y-visible { overflow-y: visible; }
 
.overflow-y-hidden { overflow-y: hidden; }
 
.overflow-y-scroll { overflow-y: scroll; }
 
.overflow-y-auto { overflow-y: auto; }
 
/*
 

	
 
   POSITIONING
 
   Docs: http://tachyons.io/docs/layout/position/
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.static { position: static; }
 
.relative { position: relative; }
 
.absolute { position: absolute; }
 
.fixed { position: fixed; }
 
/*
 

	
 
    OPACITY
 
    Docs: http://tachyons.io/docs/themes/opacity/
 

	
 
*/
 
.o-100 { opacity: 1; }
 
.o-90 { opacity: .9; }
 
.o-80 { opacity: .8; }
 
.o-70 { opacity: .7; }
 
.o-60 { opacity: .6; }
 
.o-50 { opacity: .5; }
 
.o-40 { opacity: .4; }
 
.o-30 { opacity: .3; }
 
.o-20 { opacity: .2; }
 
.o-10 { opacity: .1; }
 
.o-05 { opacity: .05; }
 
.o-025 { opacity: .025; }
 
.o-0 { opacity: 0; }
 
/*
 

	
 
   ROTATIONS
 

	
 
*/
 
.rotate-45 { -webkit-transform: rotate( 45deg ); transform: rotate( 45deg ); }
 
.rotate-90 { -webkit-transform: rotate( 90deg ); transform: rotate( 90deg ); }
 
.rotate-135 { -webkit-transform: rotate( 135deg ); transform: rotate( 135deg ); }
 
.rotate-180 { -webkit-transform: rotate( 180deg ); transform: rotate( 180deg ); }
 
.rotate-225 { -webkit-transform: rotate( 225deg ); transform: rotate( 225deg ); }
 
.rotate-270 { -webkit-transform: rotate( 270deg ); transform: rotate( 270deg ); }
 
.rotate-315 { -webkit-transform: rotate( 315deg ); transform: rotate( 315deg ); }
 
/*
 

	
 
   SKINS
 
   Docs: http://tachyons.io/docs/themes/skins/
 

	
 
   Classes for setting foreground and background colors on elements.
 
   If you haven't declared a border color, but set border on an element, it will 
 
   be set to the current text color. 
 
   If you haven't declared a border color, but set border on an element, it will
 
   be set to the current text color.
 

	
 
*/
 
/* Text colors */
 
.black-90 { color: rgba( 0, 0, 0, .9 ); }
 
.black-80 { color: rgba( 0, 0, 0, .8 ); }
 
.black-70 { color: rgba( 0, 0, 0, .7 ); }
 
.black-60 { color: rgba( 0, 0, 0, .6 ); }
 
.black-50 { color: rgba( 0, 0, 0, .5 ); }
 
.black-40 { color: rgba( 0, 0, 0, .4 ); }
 
.black-30 { color: rgba( 0, 0, 0, .3 ); }
 
.black-20 { color: rgba( 0, 0, 0, .2 ); }
 
.black-10 { color: rgba( 0, 0, 0, .1 ); }
 
.black-05 { color: rgba( 0, 0, 0, .05 ); }
 
.white-90 { color: rgba( 255, 255, 255, .9 ); }
 
.white-80 { color: rgba( 255, 255, 255, .8 ); }
 
.white-70 { color: rgba( 255, 255, 255, .7 ); }
 
.white-60 { color: rgba( 255, 255, 255, .6 ); }
 
.white-50 { color: rgba( 255, 255, 255, .5 ); }
 
.white-40 { color: rgba( 255, 255, 255, .4 ); }
 
.white-30 { color: rgba( 255, 255, 255, .3 ); }
 
.white-20 { color: rgba( 255, 255, 255, .2 ); }
 
.white-10 { color: rgba( 255, 255, 255, .1 ); }
 
.black { color: #000; }
 
.near-black { color: #111; }
 
.dark-gray { color: #333; }
 
.mid-gray { color: #555; }
 
.gray { color: #777; }
 
.silver { color: #999; }
 
.light-silver { color: #aaa; }
 
.moon-gray { color: #ccc; }
 
.light-gray { color: #eee; }
 
.near-white { color: #f4f4f4; }
 
.white { color: #fff; }
 
.dark-red { color: #e7040f; }
 
.red { color: #ff4136; }
 
.light-red { color: #ff725c; }
 
.orange { color: #ff6300; }
 
.gold { color: #ffb700; }
 
.yellow { color: #ffd700; }
 
.light-yellow { color: #fbf1a9; }
 
.purple { color: #5e2ca5; }
 
.light-purple { color: #a463f2; }
 
.dark-pink { color: #d5008f; }
 
.hot-pink { color: #ff41b4; }
 
.pink { color: #ff80cc; }
 
.light-pink { color: #ffa3d7; }
 
.dark-green { color: #137752; }
 
.green { color: #19a974; }
 
.light-green { color: #9eebcf; }
 
.navy { color: #001b44; }
 
.dark-blue { color: #00449e; }
 
.blue { color: #357edd; }
 
.light-blue { color: #96ccff; }
 
.lightest-blue { color: #cdecff; }
 
.washed-blue { color: #f6fffe; }
 
.washed-green { color: #e8fdf5; }
 
.washed-yellow { color: #fffceb; }
 
.washed-red { color: #ffdfdf; }
 
.color-inherit { color: inherit; }
 
/* Background colors */
 
.bg-black-90 { background-color: rgba( 0, 0, 0, .9 ); }
 
.bg-black-80 { background-color: rgba( 0, 0, 0, .8 ); }
 
.bg-black-70 { background-color: rgba( 0, 0, 0, .7 ); }
 
.bg-black-60 { background-color: rgba( 0, 0, 0, .6 ); }
 
.bg-black-50 { background-color: rgba( 0, 0, 0, .5 ); }
 
.bg-black-40 { background-color: rgba( 0, 0, 0, .4 ); }
 
.bg-black-30 { background-color: rgba( 0, 0, 0, .3 ); }
 
.bg-black-20 { background-color: rgba( 0, 0, 0, .2 ); }
 
.bg-black-10 { background-color: rgba( 0, 0, 0, .1 ); }
 
.bg-black-05 { background-color: rgba( 0, 0, 0, .05 ); }
 
.bg-white-90 { background-color: rgba( 255, 255, 255, .9 ); }
 
.bg-white-80 { background-color: rgba( 255, 255, 255, .8 ); }
 
.bg-white-70 { background-color: rgba( 255, 255, 255, .7 ); }
 
.bg-white-60 { background-color: rgba( 255, 255, 255, .6 ); }
 
.bg-white-50 { background-color: rgba( 255, 255, 255, .5 ); }
 
.bg-white-40 { background-color: rgba( 255, 255, 255, .4 ); }
 
.bg-white-30 { background-color: rgba( 255, 255, 255, .3 ); }
 
.bg-white-20 { background-color: rgba( 255, 255, 255, .2 ); }
 
.bg-white-10 { background-color: rgba( 255, 255, 255, .1 ); }
 
.bg-black { background-color: #000; }
 
.bg-near-black { background-color: #111; }
 
.bg-dark-gray { background-color: #333; }
 
.bg-mid-gray { background-color: #555; }
 
.bg-gray { background-color: #777; }
 
.bg-silver { background-color: #999; }
 
.bg-light-silver { background-color: #aaa; }
 
.bg-moon-gray { background-color: #ccc; }
 
.bg-light-gray { background-color: #eee; }
 
.bg-near-white { background-color: #f4f4f4; }
 
.bg-white { background-color: #fff; }
 
.bg-transparent { background-color: transparent; }
 
.bg-dark-red { background-color: #e7040f; }
 
.bg-red { background-color: #ff4136; }
 
.bg-light-red { background-color: #ff725c; }
 
.bg-orange { background-color: #ff6300; }
 
.bg-gold { background-color: #ffb700; }
 
.bg-yellow { background-color: #ffd700; }
 
.bg-light-yellow { background-color: #fbf1a9; }
 
.bg-purple { background-color: #5e2ca5; }
 
.bg-light-purple { background-color: #a463f2; }
 
.bg-dark-pink { background-color: #d5008f; }
 
.bg-hot-pink { background-color: #ff41b4; }
 
.bg-pink { background-color: #ff80cc; }
 
.bg-light-pink { background-color: #ffa3d7; }
 
.bg-dark-green { background-color: #137752; }
 
.bg-green { background-color: #19a974; }
 
.bg-light-green { background-color: #9eebcf; }
 
.bg-navy { background-color: #001b44; }
 
.bg-dark-blue { background-color: #00449e; }
 
.bg-blue { background-color: #357edd; }
 
.bg-light-blue { background-color: #96ccff; }
 
.bg-lightest-blue { background-color: #cdecff; }
 
.bg-washed-blue { background-color: #f6fffe; }
 
.bg-washed-green { background-color: #e8fdf5; }
 
.bg-washed-yellow { background-color: #fffceb; }
 
.bg-washed-red { background-color: #ffdfdf; }
 
.bg-inherit { background-color: inherit; }
 
/* 
 
  
 
/*
 

	
 
   SKINS:PSEUDO
 

	
 
   Customize the color of an element when
 
   it is focused or hovered over.
 
 
 

 
 */
 
.hover-black:hover { color: #000; }
 
.hover-black:focus { color: #000; }
 
.hover-near-black:hover { color: #111; }
 
.hover-near-black:focus { color: #111; }
 
.hover-dark-gray:hover { color: #333; }
 
.hover-dark-gray:focus { color: #333; }
 
.hover-mid-gray:hover { color: #555; }
 
.hover-mid-gray:focus { color: #555; }
 
.hover-gray:hover { color: #777; }
 
.hover-gray:focus { color: #777; }
 
.hover-silver:hover { color: #999; }
 
.hover-silver:focus { color: #999; }
 
.hover-light-silver:hover { color: #aaa; }
 
.hover-light-silver:focus { color: #aaa; }
 
.hover-moon-gray:hover { color: #ccc; }
 
.hover-moon-gray:focus { color: #ccc; }
 
.hover-light-gray:hover { color: #eee; }
 
.hover-light-gray:focus { color: #eee; }
 
.hover-near-white:hover { color: #f4f4f4; }
 
.hover-near-white:focus { color: #f4f4f4; }
 
.hover-white:hover { color: #fff; }
 
.hover-white:focus { color: #fff; }
 
.hover-black-90:hover { color: rgba( 0, 0, 0, .9 ); }
 
.hover-black-90:focus { color: rgba( 0, 0, 0, .9 ); }
 
.hover-black-80:hover { color: rgba( 0, 0, 0, .8 ); }
 
.hover-black-80:focus { color: rgba( 0, 0, 0, .8 ); }
 
.hover-black-70:hover { color: rgba( 0, 0, 0, .7 ); }
 
.hover-black-70:focus { color: rgba( 0, 0, 0, .7 ); }
 
.hover-black-60:hover { color: rgba( 0, 0, 0, .6 ); }
 
.hover-black-60:focus { color: rgba( 0, 0, 0, .6 ); }
 
.hover-black-50:hover { color: rgba( 0, 0, 0, .5 ); }
 
.hover-black-50:focus { color: rgba( 0, 0, 0, .5 ); }
 
.hover-black-40:hover { color: rgba( 0, 0, 0, .4 ); }
 
.hover-black-40:focus { color: rgba( 0, 0, 0, .4 ); }
 
.hover-black-30:hover { color: rgba( 0, 0, 0, .3 ); }
 
.hover-black-30:focus { color: rgba( 0, 0, 0, .3 ); }
 
.hover-black-20:hover { color: rgba( 0, 0, 0, .2 ); }
 
.hover-black-20:focus { color: rgba( 0, 0, 0, .2 ); }
 
.hover-black-10:hover { color: rgba( 0, 0, 0, .1 ); }
 
.hover-black-10:focus { color: rgba( 0, 0, 0, .1 ); }
 
.hover-white-90:hover { color: rgba( 255, 255, 255, .9 ); }
 
.hover-white-90:focus { color: rgba( 255, 255, 255, .9 ); }
 
.hover-white-80:hover { color: rgba( 255, 255, 255, .8 ); }
 
.hover-white-80:focus { color: rgba( 255, 255, 255, .8 ); }
 
.hover-white-70:hover { color: rgba( 255, 255, 255, .7 ); }
 
.hover-white-70:focus { color: rgba( 255, 255, 255, .7 ); }
 
.hover-white-60:hover { color: rgba( 255, 255, 255, .6 ); }
 
.hover-white-60:focus { color: rgba( 255, 255, 255, .6 ); }
 
.hover-white-50:hover { color: rgba( 255, 255, 255, .5 ); }
 
.hover-white-50:focus { color: rgba( 255, 255, 255, .5 ); }
 
.hover-white-40:hover { color: rgba( 255, 255, 255, .4 ); }
 
.hover-white-40:focus { color: rgba( 255, 255, 255, .4 ); }
 
.hover-white-30:hover { color: rgba( 255, 255, 255, .3 ); }
 
.hover-white-30:focus { color: rgba( 255, 255, 255, .3 ); }
 
.hover-white-20:hover { color: rgba( 255, 255, 255, .2 ); }
 
.hover-white-20:focus { color: rgba( 255, 255, 255, .2 ); }
 
.hover-white-10:hover { color: rgba( 255, 255, 255, .1 ); }
 
.hover-white-10:focus { color: rgba( 255, 255, 255, .1 ); }
 
.hover-inherit:hover, .hover-inherit:focus { color: inherit; }
 
.hover-bg-black:hover { background-color: #000; }
 
.hover-bg-black:focus { background-color: #000; }
 
.hover-bg-near-black:hover { background-color: #111; }
 
.hover-bg-near-black:focus { background-color: #111; }
 
.hover-bg-dark-gray:hover { background-color: #333; }
 
.hover-bg-dark-gray:focus { background-color: #333; }
 
.hover-bg-mid-gray:hover { background-color: #555; }
 
.hover-bg-mid-gray:focus { background-color: #555; }
 
.hover-bg-gray:hover { background-color: #777; }
 
.hover-bg-gray:focus { background-color: #777; }
 
.hover-bg-silver:hover { background-color: #999; }
 
.hover-bg-silver:focus { background-color: #999; }
 
.hover-bg-light-silver:hover { background-color: #aaa; }
 
.hover-bg-light-silver:focus { background-color: #aaa; }
 
.hover-bg-moon-gray:hover { background-color: #ccc; }
 
.hover-bg-moon-gray:focus { background-color: #ccc; }
 
.hover-bg-light-gray:hover { background-color: #eee; }
 
.hover-bg-light-gray:focus { background-color: #eee; }
 
.hover-bg-near-white:hover { background-color: #f4f4f4; }
 
.hover-bg-near-white:focus { background-color: #f4f4f4; }
 
.hover-bg-white:hover { background-color: #fff; }
 
.hover-bg-white:focus { background-color: #fff; }
 
.hover-bg-transparent:hover { background-color: transparent; }
 
.hover-bg-transparent:focus { background-color: transparent; }
 
.hover-bg-black-90:hover { background-color: rgba( 0, 0, 0, .9 ); }
 
.hover-bg-black-90:focus { background-color: rgba( 0, 0, 0, .9 ); }
 
.hover-bg-black-80:hover { background-color: rgba( 0, 0, 0, .8 ); }
 
.hover-bg-black-80:focus { background-color: rgba( 0, 0, 0, .8 ); }
 
.hover-bg-black-70:hover { background-color: rgba( 0, 0, 0, .7 ); }
 
.hover-bg-black-70:focus { background-color: rgba( 0, 0, 0, .7 ); }
 
.hover-bg-black-60:hover { background-color: rgba( 0, 0, 0, .6 ); }
 
.hover-bg-black-60:focus { background-color: rgba( 0, 0, 0, .6 ); }
 
.hover-bg-black-50:hover { background-color: rgba( 0, 0, 0, .5 ); }
 
.hover-bg-black-50:focus { background-color: rgba( 0, 0, 0, .5 ); }
 
.hover-bg-black-40:hover { background-color: rgba( 0, 0, 0, .4 ); }
 
.hover-bg-black-40:focus { background-color: rgba( 0, 0, 0, .4 ); }
 
.hover-bg-black-30:hover { background-color: rgba( 0, 0, 0, .3 ); }
 
.hover-bg-black-30:focus { background-color: rgba( 0, 0, 0, .3 ); }
 
.hover-bg-black-20:hover { background-color: rgba( 0, 0, 0, .2 ); }
 
.hover-bg-black-20:focus { background-color: rgba( 0, 0, 0, .2 ); }
 
.hover-bg-black-10:hover { background-color: rgba( 0, 0, 0, .1 ); }
 
.hover-bg-black-10:focus { background-color: rgba( 0, 0, 0, .1 ); }
 
.hover-bg-white-90:hover { background-color: rgba( 255, 255, 255, .9 ); }
 
.hover-bg-white-90:focus { background-color: rgba( 255, 255, 255, .9 ); }
 
.hover-bg-white-80:hover { background-color: rgba( 255, 255, 255, .8 ); }
 
.hover-bg-white-80:focus { background-color: rgba( 255, 255, 255, .8 ); }
 
.hover-bg-white-70:hover { background-color: rgba( 255, 255, 255, .7 ); }
 
.hover-bg-white-70:focus { background-color: rgba( 255, 255, 255, .7 ); }
 
.hover-bg-white-60:hover { background-color: rgba( 255, 255, 255, .6 ); }
 
.hover-bg-white-60:focus { background-color: rgba( 255, 255, 255, .6 ); }
 
.hover-bg-white-50:hover { background-color: rgba( 255, 255, 255, .5 ); }
 
.hover-bg-white-50:focus { background-color: rgba( 255, 255, 255, .5 ); }
 
.hover-bg-white-40:hover { background-color: rgba( 255, 255, 255, .4 ); }
 
.hover-bg-white-40:focus { background-color: rgba( 255, 255, 255, .4 ); }
 
.hover-bg-white-30:hover { background-color: rgba( 255, 255, 255, .3 ); }
 
.hover-bg-white-30:focus { background-color: rgba( 255, 255, 255, .3 ); }
 
.hover-bg-white-20:hover { background-color: rgba( 255, 255, 255, .2 ); }
 
.hover-bg-white-20:focus { background-color: rgba( 255, 255, 255, .2 ); }
 
.hover-bg-white-10:hover { background-color: rgba( 255, 255, 255, .1 ); }
 
.hover-bg-white-10:focus { background-color: rgba( 255, 255, 255, .1 ); }
 
.hover-dark-red:hover { color: #e7040f; }
 
.hover-dark-red:focus { color: #e7040f; }
 
.hover-red:hover { color: #ff4136; }
 
.hover-red:focus { color: #ff4136; }
 
.hover-light-red:hover { color: #ff725c; }
 
.hover-light-red:focus { color: #ff725c; }
 
.hover-orange:hover { color: #ff6300; }
 
.hover-orange:focus { color: #ff6300; }
 
.hover-gold:hover { color: #ffb700; }
 
.hover-gold:focus { color: #ffb700; }
 
.hover-yellow:hover { color: #ffd700; }
 
.hover-yellow:focus { color: #ffd700; }
 
.hover-light-yellow:hover { color: #fbf1a9; }
 
.hover-light-yellow:focus { color: #fbf1a9; }
 
.hover-purple:hover { color: #5e2ca5; }
 
.hover-purple:focus { color: #5e2ca5; }
 
.hover-light-purple:hover { color: #a463f2; }
 
.hover-light-purple:focus { color: #a463f2; }
 
.hover-dark-pink:hover { color: #d5008f; }
 
.hover-dark-pink:focus { color: #d5008f; }
 
.hover-hot-pink:hover { color: #ff41b4; }
 
.hover-hot-pink:focus { color: #ff41b4; }
 
.hover-pink:hover { color: #ff80cc; }
 
.hover-pink:focus { color: #ff80cc; }
 
.hover-light-pink:hover { color: #ffa3d7; }
 
.hover-light-pink:focus { color: #ffa3d7; }
 
.hover-dark-green:hover { color: #137752; }
 
.hover-dark-green:focus { color: #137752; }
 
.hover-green:hover { color: #19a974; }
 
.hover-green:focus { color: #19a974; }
 
.hover-light-green:hover { color: #9eebcf; }
 
.hover-light-green:focus { color: #9eebcf; }
 
.hover-navy:hover { color: #001b44; }
 
.hover-navy:focus { color: #001b44; }
 
.hover-dark-blue:hover { color: #00449e; }
 
.hover-dark-blue:focus { color: #00449e; }
 
.hover-blue:hover { color: #357edd; }
 
.hover-blue:focus { color: #357edd; }
 
.hover-light-blue:hover { color: #96ccff; }
 
.hover-light-blue:focus { color: #96ccff; }
 
.hover-lightest-blue:hover { color: #cdecff; }
 
.hover-lightest-blue:focus { color: #cdecff; }
 
.hover-washed-blue:hover { color: #f6fffe; }
 
.hover-washed-blue:focus { color: #f6fffe; }
 
.hover-washed-green:hover { color: #e8fdf5; }
 
.hover-washed-green:focus { color: #e8fdf5; }
 
.hover-washed-yellow:hover { color: #fffceb; }
 
.hover-washed-yellow:focus { color: #fffceb; }
 
.hover-washed-red:hover { color: #ffdfdf; }
 
.hover-washed-red:focus { color: #ffdfdf; }
 
.hover-bg-dark-red:hover { background-color: #e7040f; }
 
.hover-bg-dark-red:focus { background-color: #e7040f; }
 
.hover-bg-red:hover { background-color: #ff4136; }
 
.hover-bg-red:focus { background-color: #ff4136; }
 
.hover-bg-light-red:hover { background-color: #ff725c; }
 
.hover-bg-light-red:focus { background-color: #ff725c; }
 
.hover-bg-orange:hover { background-color: #ff6300; }
 
.hover-bg-orange:focus { background-color: #ff6300; }
 
.hover-bg-gold:hover { background-color: #ffb700; }
 
.hover-bg-gold:focus { background-color: #ffb700; }
 
.hover-bg-yellow:hover { background-color: #ffd700; }
 
.hover-bg-yellow:focus { background-color: #ffd700; }
 
.hover-bg-light-yellow:hover { background-color: #fbf1a9; }
 
.hover-bg-light-yellow:focus { background-color: #fbf1a9; }
 
.hover-bg-purple:hover { background-color: #5e2ca5; }
 
.hover-bg-purple:focus { background-color: #5e2ca5; }
 
.hover-bg-light-purple:hover { background-color: #a463f2; }
 
.hover-bg-light-purple:focus { background-color: #a463f2; }
 
.hover-bg-dark-pink:hover { background-color: #d5008f; }
 
.hover-bg-dark-pink:focus { background-color: #d5008f; }
 
.hover-bg-hot-pink:hover { background-color: #ff41b4; }
 
.hover-bg-hot-pink:focus { background-color: #ff41b4; }
 
.hover-bg-pink:hover { background-color: #ff80cc; }
 
.hover-bg-pink:focus { background-color: #ff80cc; }
 
.hover-bg-light-pink:hover { background-color: #ffa3d7; }
 
.hover-bg-light-pink:focus { background-color: #ffa3d7; }
 
.hover-bg-dark-green:hover { background-color: #137752; }
 
.hover-bg-dark-green:focus { background-color: #137752; }
 
.hover-bg-green:hover { background-color: #19a974; }
 
.hover-bg-green:focus { background-color: #19a974; }
 
.hover-bg-light-green:hover { background-color: #9eebcf; }
 
.hover-bg-light-green:focus { background-color: #9eebcf; }
 
.hover-bg-navy:hover { background-color: #001b44; }
 
.hover-bg-navy:focus { background-color: #001b44; }
 
.hover-bg-dark-blue:hover { background-color: #00449e; }
 
.hover-bg-dark-blue:focus { background-color: #00449e; }
 
.hover-bg-blue:hover { background-color: #357edd; }
 
.hover-bg-blue:focus { background-color: #357edd; }
 
.hover-bg-light-blue:hover { background-color: #96ccff; }
 
.hover-bg-light-blue:focus { background-color: #96ccff; }
 
.hover-bg-lightest-blue:hover { background-color: #cdecff; }
 
.hover-bg-lightest-blue:focus { background-color: #cdecff; }
 
.hover-bg-washed-blue:hover { background-color: #f6fffe; }
 
.hover-bg-washed-blue:focus { background-color: #f6fffe; }
 
.hover-bg-washed-green:hover { background-color: #e8fdf5; }
 
.hover-bg-washed-green:focus { background-color: #e8fdf5; }
 
.hover-bg-washed-yellow:hover { background-color: #fffceb; }
 
.hover-bg-washed-yellow:focus { background-color: #fffceb; }
 
.hover-bg-washed-red:hover { background-color: #ffdfdf; }
 
.hover-bg-washed-red:focus { background-color: #ffdfdf; }
 
.hover-bg-inherit:hover, .hover-bg-inherit:focus { background-color: inherit; }
 
/* Variables */
 
/*
 
   SPACING
 
   Docs: http://tachyons.io/docs/layout/spacing/
 

	
 
   An eight step powers of two scale ranging from 0 to 16rem.
 

	
 
   Base:
 
     p = padding
 
     m = margin
 

	
 
   Modifiers:
 
     a = all
 
     h = horizontal
 
     v = vertical
 
     t = top
 
     r = right
 
     b = bottom
 
     l = left
 

	
 
     0 = none
 
     1 = 1st step in spacing scale
 
     2 = 2nd step in spacing scale
 
     3 = 3rd step in spacing scale
 
     4 = 4th step in spacing scale
 
     5 = 5th step in spacing scale
 
     6 = 6th step in spacing scale
 
     7 = 7th step in spacing scale
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.pa0 { padding: 0; }
 
.pa1 { padding: .25rem; }
 
.pa2 { padding: .5rem; }
 
.pa3 { padding: 1rem; }
 
.pa4 { padding: 2rem; }
 
.pa5 { padding: 4rem; }
 
.pa6 { padding: 8rem; }
 
.pa7 { padding: 16rem; }
 
.pl0 { padding-left: 0; }
 
.pl1 { padding-left: .25rem; }
 
.pl2 { padding-left: .5rem; }
 
.pl3 { padding-left: 1rem; }
 
.pl4 { padding-left: 2rem; }
 
.pl5 { padding-left: 4rem; }
 
.pl6 { padding-left: 8rem; }
 
.pl7 { padding-left: 16rem; }
 
.pr0 { padding-right: 0; }
 
.pr1 { padding-right: .25rem; }
 
.pr2 { padding-right: .5rem; }
 
.pr3 { padding-right: 1rem; }
 
.pr4 { padding-right: 2rem; }
 
.pr5 { padding-right: 4rem; }
 
.pr6 { padding-right: 8rem; }
 
.pr7 { padding-right: 16rem; }
 
.pb0 { padding-bottom: 0; }
 
.pb1 { padding-bottom: .25rem; }
 
.pb2 { padding-bottom: .5rem; }
 
.pb3 { padding-bottom: 1rem; }
 
.pb4 { padding-bottom: 2rem; }
 
.pb5 { padding-bottom: 4rem; }
 
.pb6 { padding-bottom: 8rem; }
 
.pb7 { padding-bottom: 16rem; }
 
.pt0 { padding-top: 0; }
 
.pt1 { padding-top: .25rem; }
 
.pt2 { padding-top: .5rem; }
 
.pt3 { padding-top: 1rem; }
 
.pt4 { padding-top: 2rem; }
 
.pt5 { padding-top: 4rem; }
 
.pt6 { padding-top: 8rem; }
 
.pt7 { padding-top: 16rem; }
 
.pv0 { padding-top: 0; padding-bottom: 0; }
 
.pv1 { padding-top: .25rem; padding-bottom: .25rem; }
 
.pv2 { padding-top: .5rem; padding-bottom: .5rem; }
 
.pv3 { padding-top: 1rem; padding-bottom: 1rem; }
 
.pv4 { padding-top: 2rem; padding-bottom: 2rem; }
 
.pv5 { padding-top: 4rem; padding-bottom: 4rem; }
 
.pv6 { padding-top: 8rem; padding-bottom: 8rem; }
 
.pv7 { padding-top: 16rem; padding-bottom: 16rem; }
 
.ph0 { padding-left: 0; padding-right: 0; }
 
.ph1 { padding-left: .25rem; padding-right: .25rem; }
 
.ph2 { padding-left: .5rem; padding-right: .5rem; }
 
.ph3 { padding-left: 1rem; padding-right: 1rem; }
 
.ph4 { padding-left: 2rem; padding-right: 2rem; }
 
.ph5 { padding-left: 4rem; padding-right: 4rem; }
 
.ph6 { padding-left: 8rem; padding-right: 8rem; }
 
.ph7 { padding-left: 16rem; padding-right: 16rem; }
 
.ma0 { margin: 0; }
 
.ma1 { margin: .25rem; }
 
.ma2 { margin: .5rem; }
 
.ma3 { margin: 1rem; }
 
.ma4 { margin: 2rem; }
 
.ma5 { margin: 4rem; }
 
.ma6 { margin: 8rem; }
 
.ma7 { margin: 16rem; }
 
.ml0 { margin-left: 0; }
 
.ml1 { margin-left: .25rem; }
 
.ml2 { margin-left: .5rem; }
 
.ml3 { margin-left: 1rem; }
 
.ml4 { margin-left: 2rem; }
 
.ml5 { margin-left: 4rem; }
 
.ml6 { margin-left: 8rem; }
 
.ml7 { margin-left: 16rem; }
 
.mr0 { margin-right: 0; }
 
.mr1 { margin-right: .25rem; }
 
.mr2 { margin-right: .5rem; }
 
.mr3 { margin-right: 1rem; }
 
.mr4 { margin-right: 2rem; }
 
.mr5 { margin-right: 4rem; }
 
.mr6 { margin-right: 8rem; }
 
.mr7 { margin-right: 16rem; }
 
.mb0 { margin-bottom: 0; }
 
.mb1 { margin-bottom: .25rem; }
 
.mb2 { margin-bottom: .5rem; }
 
.mb3 { margin-bottom: 1rem; }
 
.mb4 { margin-bottom: 2rem; }
 
.mb5 { margin-bottom: 4rem; }
 
.mb6 { margin-bottom: 8rem; }
 
.mb7 { margin-bottom: 16rem; }
 
.mt0 { margin-top: 0; }
 
.mt1 { margin-top: .25rem; }
 
.mt2 { margin-top: .5rem; }
 
.mt3 { margin-top: 1rem; }
 
.mt4 { margin-top: 2rem; }
 
.mt5 { margin-top: 4rem; }
 
.mt6 { margin-top: 8rem; }
 
.mt7 { margin-top: 16rem; }
 
.mv0 { margin-top: 0; margin-bottom: 0; }
 
.mv1 { margin-top: .25rem; margin-bottom: .25rem; }
 
.mv2 { margin-top: .5rem; margin-bottom: .5rem; }
 
.mv3 { margin-top: 1rem; margin-bottom: 1rem; }
 
.mv4 { margin-top: 2rem; margin-bottom: 2rem; }
 
.mv5 { margin-top: 4rem; margin-bottom: 4rem; }
 
.mv6 { margin-top: 8rem; margin-bottom: 8rem; }
 
.mv7 { margin-top: 16rem; margin-bottom: 16rem; }
 
.mh0 { margin-left: 0; margin-right: 0; }
 
.mh1 { margin-left: .25rem; margin-right: .25rem; }
 
.mh2 { margin-left: .5rem; margin-right: .5rem; }
 
.mh3 { margin-left: 1rem; margin-right: 1rem; }
 
.mh4 { margin-left: 2rem; margin-right: 2rem; }
 
.mh5 { margin-left: 4rem; margin-right: 4rem; }
 
.mh6 { margin-left: 8rem; margin-right: 8rem; }
 
.mh7 { margin-left: 16rem; margin-right: 16rem; }
 
/*
 
   NEGATIVE MARGINS
 

	
 
   Base:
 
     n = negative
 

	
 
   Modifiers:
 
     a = all
 
     t = top
 
     r = right
 
     b = bottom
 
     l = left
 

	
 
     1 = 1st step in spacing scale
 
     2 = 2nd step in spacing scale
 
     3 = 3rd step in spacing scale
 
     4 = 4th step in spacing scale
 
     5 = 5th step in spacing scale
 
     6 = 6th step in spacing scale
 
     7 = 7th step in spacing scale
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.na1 { margin: -0.25rem; }
 
.na2 { margin: -0.5rem; }
 
.na3 { margin: -1rem; }
 
.na4 { margin: -2rem; }
 
.na5 { margin: -4rem; }
 
.na6 { margin: -8rem; }
 
.na7 { margin: -16rem; }
 
.nl1 { margin-left: -0.25rem; }
 
.nl2 { margin-left: -0.5rem; }
 
.nl3 { margin-left: -1rem; }
 
.nl4 { margin-left: -2rem; }
 
.nl5 { margin-left: -4rem; }
 
.nl6 { margin-left: -8rem; }
 
.nl7 { margin-left: -16rem; }
 
.nr1 { margin-right: -0.25rem; }
 
.nr2 { margin-right: -0.5rem; }
 
.nr3 { margin-right: -1rem; }
 
.nr4 { margin-right: -2rem; }
 
.nr5 { margin-right: -4rem; }
 
.nr6 { margin-right: -8rem; }
 
.nr7 { margin-right: -16rem; }
 
.nb1 { margin-bottom: -0.25rem; }
 
.nb2 { margin-bottom: -0.5rem; }
 
.nb3 { margin-bottom: -1rem; }
 
.nb4 { margin-bottom: -2rem; }
 
.nb5 { margin-bottom: -4rem; }
 
.nb6 { margin-bottom: -8rem; }
 
.nb7 { margin-bottom: -16rem; }
 
.nt1 { margin-top: -0.25rem; }
 
.nt2 { margin-top: -0.5rem; }
 
.nt3 { margin-top: -1rem; }
 
.nt4 { margin-top: -2rem; }
 
.nt5 { margin-top: -4rem; }
 
.nt6 { margin-top: -8rem; }
 
.nt7 { margin-top: -16rem; }
 
/*
 

	
 
  TABLES
 
  Docs: http://tachyons.io/docs/elements/tables/
 

	
 
*/
 
.collapse { border-collapse: collapse; border-spacing: 0; }
 
.striped--light-silver:nth-child(odd) { background-color: #aaa; }
 
.striped--moon-gray:nth-child(odd) { background-color: #ccc; }
 
.striped--light-gray:nth-child(odd) { background-color: #eee; }
 
.striped--near-white:nth-child(odd) { background-color: #f4f4f4; }
 
.stripe-light:nth-child(odd) { background-color: rgba( 255, 255, 255, .1 ); }
 
.stripe-dark:nth-child(odd) { background-color: rgba( 0, 0, 0, .1 ); }
 
/*
 

	
 
   TEXT DECORATION
 
   Docs: http://tachyons.io/docs/typography/text-decoration/
 

	
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.strike { text-decoration: line-through; }
 
.underline { text-decoration: underline; }
 
.no-underline { text-decoration: none; }
 
/*
 

	
 
  TEXT ALIGN
 
  Docs: http://tachyons.io/docs/typography/text-align/
 

	
 
  Base
 
    t = text-align
 

	
 
  Modifiers
 
    l = left
 
    r = right
 
    c = center
 
    j = justify
 

	
 
  Media Query Extensions:
 
    -ns = not-small
 
    -m  = medium
 
    -l  = large
 

	
 
*/
 
.tl { text-align: left; }
 
.tr { text-align: right; }
 
.tc { text-align: center; }
 
.tj { text-align: justify; }
 
/*
 

	
 
   TEXT TRANSFORM
 
   Docs: http://tachyons.io/docs/typography/text-transform/
 

	
 
   Base:
 
     tt = text-transform
 

	
 
   Modifiers
 
     c = capitalize
 
     l = lowercase
 
     u = uppercase
 
     n = none
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.ttc { text-transform: capitalize; }
 
.ttl { text-transform: lowercase; }
 
.ttu { text-transform: uppercase; }
 
.ttn { text-transform: none; }
 
/*
 

	
 
   TYPE SCALE
 
   Docs: http://tachyons.io/docs/typography/scale/
 

	
 
   Base:
 
    f = font-size
 

	
 
   Modifiers
 
     1 = 1st step in size scale
 
     2 = 2nd step in size scale
 
     3 = 3rd step in size scale
 
     4 = 4th step in size scale
 
     5 = 5th step in size scale
 
     6 = 6th step in size scale
 
     7 = 7th step in size scale
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 
*/
 
/*
 
 * For Hero/Marketing Titles
 
 *
 
 * These generally are too large for mobile
 
 * so be careful using them on smaller screens.
 
 * */
 
.f-6, .f-headline { font-size: 6rem; }
 
.f-5, .f-subheadline { font-size: 5rem; }
 
/* Type Scale */
 
.f1 { font-size: 3rem; }
 
.f2 { font-size: 2.25rem; }
 
.f3 { font-size: 1.5rem; }
 
.f4 { font-size: 1.25rem; }
 
.f5 { font-size: 1rem; }
 
.f6 { font-size: .875rem; }
 
.f7 { font-size: .75rem; }
 
/* Small and hard to read for many people so use with extreme caution */
 
/*
 

	
 
   TYPOGRAPHY
 
   http://tachyons.io/docs/typography/measure/
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
/* Measure is limited to ~66 characters */
 
.measure { max-width: 30em; }
 
/* Measure is limited to ~80 characters */
 
.measure-wide { max-width: 34em; }
 
/* Measure is limited to ~45 characters */
 
.measure-narrow { max-width: 20em; }
 
/* Book paragraph style - paragraphs are indented with no vertical spacing. */
 
.indent { text-indent: 1em; margin-top: 0; margin-bottom: 0; }
 
.small-caps { font-variant: small-caps; }
 
/* Combine this class with a width to truncate text (or just leave as is to truncate at width of containing element. */
 
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
 
/*
 

	
 
   UTILITIES
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
/* Equivalent to .overflow-y-scroll */
 
.overflow-container { overflow-y: scroll; }
 
.center { margin-right: auto; margin-left: auto; }
 
.mr-auto { margin-right: auto; }
 
.ml-auto { margin-left: auto; }
 
/*
 

	
 
   VISIBILITY
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
/*
 
    Text that is hidden but accessible
 
    Ref: http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 
*/
 
.clip { position: fixed !important; _position: absolute !important; clip: rect( 1px 1px 1px 1px ); /* IE6, IE7 */ clip: rect( 1px, 1px, 1px, 1px ); }
 
/*
 

	
 
   WHITE SPACE
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.ws-normal { white-space: normal; }
 
.nowrap { white-space: nowrap; }
 
.pre { white-space: pre; }
 
/*
 

	
 
   VERTICAL ALIGN
 

	
 
   Media Query Extensions:
 
     -ns = not-small
 
     -m  = medium
 
     -l  = large
 

	
 
*/
 
.v-base { vertical-align: baseline; }
 
.v-mid { vertical-align: middle; }
 
.v-top { vertical-align: top; }
 
.v-btm { vertical-align: bottom; }
 
/*
 

	
 
  HOVER EFFECTS
 
  Docs: http://tachyons.io/docs/themes/hovers/
 

	
 
    - Dim
 
    - Glow
 
    - Hide Child
 
    - Underline text
 
    - Grow
 
    - Pointer
 
    - Shadow
 

	
 
*/
 
/*
 

	
 
  Dim element on hover by adding the dim class.
 

	
 
*/
 
.dim { opacity: 1; transition: opacity .15s ease-in; }
 
.dim:hover, .dim:focus { opacity: .5; transition: opacity .15s ease-in; }
 
.dim:active { opacity: .8; transition: opacity .15s ease-out; }
 
/*
 

	
 
  Animate opacity to 100% on hover by adding the glow class.
 

	
 
*/
 
.glow { transition: opacity .15s ease-in; }
 
.glow:hover, .glow:focus { opacity: 1; transition: opacity .15s ease-in; }
 
/*
 

	
 
  Hide child & reveal on hover:
 

	
 
  Put the hide-child class on a parent element and any nested element with the
 
  child class will be hidden and displayed on hover or focus.
 

	
 
  <div class="hide-child">
 
    <div class="child"> Hidden until hover or focus </div>
 
    <div class="child"> Hidden until hover or focus </div>
 
    <div class="child"> Hidden until hover or focus </div>
 
    <div class="child"> Hidden until hover or focus </div>
 
  </div>
 
*/
 
.hide-child .child { opacity: 0; transition: opacity .15s ease-in; }
 
.hide-child:hover  .child, .hide-child:focus  .child, .hide-child:active .child { opacity: 1; transition: opacity .15s ease-in; }
 
.underline-hover:hover, .underline-hover:focus { text-decoration: underline; }
 
/* Can combine this with overflow-hidden to make background images grow on hover
 
 * even if you are using background-size: cover */
 
.grow { -moz-osx-font-smoothing: grayscale; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateZ( 0 ); transform: translateZ( 0 ); transition: -webkit-transform .25s ease-out; transition: transform .25s ease-out; transition: transform .25s ease-out, -webkit-transform .25s ease-out; }
 
.grow:hover, .grow:focus { -webkit-transform: scale( 1.05 ); transform: scale( 1.05 ); }
 
.grow:active { -webkit-transform: scale( .90 ); transform: scale( .90 ); }
 
.grow-large { -moz-osx-font-smoothing: grayscale; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateZ( 0 ); transform: translateZ( 0 ); transition: -webkit-transform .25s ease-in-out; transition: transform .25s ease-in-out; transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out; }
 
.grow-large:hover, .grow-large:focus { -webkit-transform: scale( 1.2 ); transform: scale( 1.2 ); }
 
.grow-large:active { -webkit-transform: scale( .95 ); transform: scale( .95 ); }
 
/* Add pointer on hover */
 
.pointer:hover { cursor: pointer; }
 
/* 
 
/*
 
   Add shadow on hover.
 

	
 
   Performant box-shadow animation pattern from 
 
   http://tobiasahlin.com/blog/how-to-animate-box-shadow/ 
 
   Performant box-shadow animation pattern from
 
   http://tobiasahlin.com/blog/how-to-animate-box-shadow/
 
*/
 
.shadow-hover { cursor: pointer; position: relative; transition: all .5s cubic-bezier( .165, .84, .44, 1 ); }
 
.shadow-hover::after { content: ''; box-shadow: 0 0 16px 2px rgba( 0, 0, 0, .2 ); border-radius: inherit; opacity: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; transition: opacity .5s cubic-bezier( .165, .84, .44, 1 ); }
 
.shadow-hover:hover::after, .shadow-hover:focus::after { opacity: 1; }
 
/* Combine with classes in skins and skins-pseudo for 
 
/* Combine with classes in skins and skins-pseudo for
 
 * many different transition possibilities. */
 
.bg-animate, .bg-animate:hover, .bg-animate:focus { transition: background-color .15s ease-in-out; }
 
/*
 

	
 
  Z-INDEX
 

	
 
  Base
 
    z = z-index
 

	
 
  Modifiers
 
    -0 = literal value 0
 
    -1 = literal value 1
 
    -2 = literal value 2
 
    -3 = literal value 3
 
    -4 = literal value 4
 
    -5 = literal value 5
 
    -999 = literal value 999
 
    -9999 = literal value 9999
 

	
 
    -max = largest accepted z-index value as integer
 

	
 
    -inherit = string value inherit
 
    -initial = string value initial
 
    -unset = string value unset
 

	
 
  MDN: https://developer.mozilla.org/en/docs/Web/CSS/z-index
 
  Spec: http://www.w3.org/TR/CSS2/zindex.html
 
  Articles:
 
    https://philipwalton.com/articles/what-no-one-told-you-about-z-index/
 

	
 
  Tips on extending:
 
  There might be a time worth using negative z-index values.
 
  Or if you are using tachyons with another project, you might need to
 
  adjust these values to suit your needs.
 

	
 
*/
 
.z-0 { z-index: 0; }
 
.z-1 { z-index: 1; }
 
.z-2 { z-index: 2; }
 
.z-3 { z-index: 3; }
 
.z-4 { z-index: 4; }
 
.z-5 { z-index: 5; }
 
.z-999 { z-index: 999; }
 
.z-9999 { z-index: 9999; }
 
.z-max { z-index: 2147483647; }
 
.z-inherit { z-index: inherit; }
 
.z-initial { z-index: initial; }
 
.z-unset { z-index: unset; }
 
/*
 

	
 
    NESTED
 
    Tachyons module for styling nested elements
 
    that are generated by a cms.
 

	
 
*/
 
.nested-copy-line-height p, .nested-copy-line-height ul,
 
.nested-copy-line-height ol { line-height: 1.5; }
 
.nested-headline-line-height h1, .nested-headline-line-height h2,
 
.nested-headline-line-height h3, .nested-headline-line-height h4,
 
.nested-headline-line-height h5, .nested-headline-line-height h6 { line-height: 1.25; }
 
.nested-list-reset ul, .nested-list-reset ol { padding-left: 0; margin-left: 0; list-style-type: none; }
 
.nested-copy-indent p+p { text-indent: 1em; margin-top: 0; margin-bottom: 0; }
 
.nested-copy-separator p+p { margin-top: 1.5em; }
 
.nested-img img { width: 100%; max-width: 100%; display: block; }
 
.nested-links a { color: #357edd; transition: color .15s ease-in; }
 
.nested-links a:hover { color: #96ccff; transition: color .15s ease-in; }
 
.nested-links a:focus { color: #96ccff; transition: color .15s ease-in; }
 
/*
 

	
 
  STYLES
 

	
 
  Add custom styles here.
 

	
 
*/
 
/* Variables */
 
/* Importing here will allow you to override any variables in the modules */
 
/*
 

	
 
   Tachyons
 
   COLOR VARIABLES
 

	
 
   Grayscale
 
   - Solids
 
   - Transparencies
 
   Colors
 

	
 
*/
 
/*
 

	
 
  CUSTOM MEDIA QUERIES
 

	
 
  Media query values can be changed to fit your own content.
 
  There are no magic bullets when it comes to media query width values.
 
  They should be declared in em units - and they should be set to meet
 
  the needs of your content. You can also add additional media queries,
 
  or remove some of the existing ones.
 

	
 
  These media queries can be referenced like so:
 

	
 
  @media (--breakpoint-not-small) {
 
    .medium-and-larger-specific-style {
 
      background-color: red;
 
    }
 
  }
 

	
 
  @media (--breakpoint-medium) {
 
    .medium-screen-specific-style {
 
      background-color: red;
 
    }
 
  }
 

	
 
  @media (--breakpoint-large) {
 
    .large-and-larger-screen-specific-style {
 
      background-color: red;
 
    }
 
  }
 

	
 
*/
 
/* Media Queries */
 
/* Debugging */
 
/*
 

	
 
  DEBUG CHILDREN
 
  Docs: http://tachyons.io/docs/debug/
 

	
 
  Just add the debug class to any element to see outlines on its
 
  children.
 

	
 
*/
 
.debug * { outline: 1px solid gold; }
 
.debug-white * { outline: 1px solid white; }
 
.debug-black * { outline: 1px solid black; }
 
/*
 

	
 
   DEBUG GRID
 
   http://tachyons.io/docs/debug-grid/
 

	
 
   Can be useful for debugging layout issues
 
   or helping to make sure things line up perfectly.
 
   Just tack one of these classes onto a parent element.
 

	
 
*/
 
.debug-grid { background: transparent url( data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAFElEQVR4AWPAC97/9x0eCsAEPgwAVLshdpENIxcAAAAASUVORK5CYII= ) repeat top left; }
 
.debug-grid-16 { background: transparent url( data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMklEQVR4AWOgCLz/b0epAa6UGuBOqQHOQHLUgFEDnAbcBZ4UGwDOkiCnkIhdgNgNxAYAiYlD+8sEuo8AAAAASUVORK5CYII= ) repeat top left; }
 
.debug-grid-8-solid { background: white url( data:image/gif;base64,R0lGODdhCAAIAPEAAADw/wDx/////wAAACwAAAAACAAIAAACDZQvgaeb/lxbAIKA8y0AOw== ) repeat top left; }
 
.debug-grid-16-solid { background: white url( data:image/gif;base64,R0lGODdhEAAQAPEAAADw/wDx/xXy/////ywAAAAAEAAQAAACIZyPKckYDQFsb6ZqD85jZ2+BkwiRFKehhqQCQgDHcgwEBQA7 ) repeat top left; }
 
/* Uncomment out the line below to help debug layout issues */
 
/* @XXimport './_debug'; */ /* XX prevents Django collectstatic manifest generation from failing. */
 
@media screen and (min-width: 30em) {
 
 .aspect-ratio-ns { height: 0; position: relative; }
 
 .aspect-ratio--16x9-ns { padding-bottom: 56.25%; }
 
 .aspect-ratio--9x16-ns { padding-bottom: 177.77%; }
 
 .aspect-ratio--4x3-ns { padding-bottom: 75%; }
 
 .aspect-ratio--3x4-ns { padding-bottom: 133.33%; }
 
 .aspect-ratio--6x4-ns { padding-bottom: 66.6%; }
 
 .aspect-ratio--4x6-ns { padding-bottom: 150%; }
 
 .aspect-ratio--8x5-ns { padding-bottom: 62.5%; }
 
 .aspect-ratio--5x8-ns { padding-bottom: 160%; }
 
 .aspect-ratio--7x5-ns { padding-bottom: 71.42%; }
 
 .aspect-ratio--5x7-ns { padding-bottom: 140%; }
 
 .aspect-ratio--1x1-ns { padding-bottom: 100%; }
 
 .aspect-ratio--object-ns { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; z-index: 100; }
 
 .cover-ns { background-size: cover !important; }
 
 .contain-ns { background-size: contain !important; }
 
 .bg-center-ns { background-repeat: no-repeat; background-position: center center; }
 
 .bg-top-ns { background-repeat: no-repeat; background-position: top center; }
 
 .bg-right-ns { background-repeat: no-repeat; background-position: center right; }
 
 .bg-bottom-ns { background-repeat: no-repeat; background-position: bottom center; }
 
 .bg-left-ns { background-repeat: no-repeat; background-position: center left; }
 
 .outline-ns { outline: 1px solid; }
 
 .outline-transparent-ns { outline: 1px solid transparent; }
 
 .outline-0-ns { outline: 0; }
 
 .ba-ns { border-style: solid; border-width: 1px; }
 
 .bt-ns { border-top-style: solid; border-top-width: 1px; }
 
 .br-ns { border-right-style: solid; border-right-width: 1px; }
 
 .bb-ns { border-bottom-style: solid; border-bottom-width: 1px; }
 
 .bl-ns { border-left-style: solid; border-left-width: 1px; }
 
 .bn-ns { border-style: none; border-width: 0; }
 
 .br0-ns { border-radius: 0; }
 
 .br1-ns { border-radius: .125rem; }
 
 .br2-ns { border-radius: .25rem; }
 
 .br3-ns { border-radius: .5rem; }
 
 .br4-ns { border-radius: 1rem; }
 
 .br-100-ns { border-radius: 100%; }
 
 .br-pill-ns { border-radius: 9999px; }
 
 .br--bottom-ns { border-top-left-radius: 0; border-top-right-radius: 0; }
 
 .br--top-ns { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
 
 .br--right-ns { border-top-left-radius: 0; border-bottom-left-radius: 0; }
 
 .br--left-ns { border-top-right-radius: 0; border-bottom-right-radius: 0; }
 
 .br-inherit-ns { border-radius: inherit; }
 
 .br-initial-ns { border-radius: initial; }
 
 .br-unset-ns { border-radius: unset; }
 
 .b--dotted-ns { border-style: dotted; }
 
 .b--dashed-ns { border-style: dashed; }
 
 .b--solid-ns { border-style: solid; }
 
 .b--none-ns { border-style: none; }
 
 .bw0-ns { border-width: 0; }
 
 .bw1-ns { border-width: .125rem; }
 
 .bw2-ns { border-width: .25rem; }
 
 .bw3-ns { border-width: .5rem; }
 
 .bw4-ns { border-width: 1rem; }
 
 .bw5-ns { border-width: 2rem; }
 
 .bt-0-ns { border-top-width: 0; }
 
 .br-0-ns { border-right-width: 0; }
 
 .bb-0-ns { border-bottom-width: 0; }
 
 .bl-0-ns { border-left-width: 0; }
 
 .shadow-1-ns { box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); }
 
 .shadow-2-ns { box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); }
 
 .shadow-3-ns { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); }
 
 .shadow-4-ns { box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); }
 
 .shadow-5-ns { box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); }
 
 .top-0-ns { top: 0; }
 
 .left-0-ns { left: 0; }
 
 .right-0-ns { right: 0; }
 
 .bottom-0-ns { bottom: 0; }
 
 .top-1-ns { top: 1rem; }
 
 .left-1-ns { left: 1rem; }
 
 .right-1-ns { right: 1rem; }
 
 .bottom-1-ns { bottom: 1rem; }
 
 .top-2-ns { top: 2rem; }
 
 .left-2-ns { left: 2rem; }
 
 .right-2-ns { right: 2rem; }
 
 .bottom-2-ns { bottom: 2rem; }
 
 .top--1-ns { top: -1rem; }
 
 .right--1-ns { right: -1rem; }
 
 .bottom--1-ns { bottom: -1rem; }
 
 .left--1-ns { left: -1rem; }
 
 .top--2-ns { top: -2rem; }
 
 .right--2-ns { right: -2rem; }
 
 .bottom--2-ns { bottom: -2rem; }
 
 .left--2-ns { left: -2rem; }
 
 .absolute--fill-ns { top: 0; right: 0; bottom: 0; left: 0; }
 
 .cl-ns { clear: left; }
 
 .cr-ns { clear: right; }
 
 .cb-ns { clear: both; }
 
 .cn-ns { clear: none; }
 
 .dn-ns { display: none; }
 
 .di-ns { display: inline; }
 
 .db-ns { display: block; }
 
 .dib-ns { display: inline-block; }
 
 .dit-ns { display: inline-table; }
 
 .dt-ns { display: table; }
 
 .dtc-ns { display: table-cell; }
 
 .dt-row-ns { display: table-row; }
 
 .dt-row-group-ns { display: table-row-group; }
 
 .dt-column-ns { display: table-column; }
 
 .dt-column-group-ns { display: table-column-group; }
 
 .dt--fixed-ns { table-layout: fixed; width: 100%; }
 
 .flex-ns { display: flex; }
 
 .inline-flex-ns { display: inline-flex; }
 
 .flex-auto-ns { flex: 1 1 auto; min-width: 0; /* 1 */ min-height: 0; /* 1 */ }
 
 .flex-none-ns { flex: none; }
 
 .flex-column-ns { flex-direction: column; }
 
 .flex-row-ns { flex-direction: row; }
 
 .flex-wrap-ns { flex-wrap: wrap; }
 
 .flex-nowrap-ns { flex-wrap: nowrap; }
 
 .flex-wrap-reverse-ns { flex-wrap: wrap-reverse; }
 
 .flex-column-reverse-ns { flex-direction: column-reverse; }
 
 .flex-row-reverse-ns { flex-direction: row-reverse; }
 
 .items-start-ns { align-items: flex-start; }
 
 .items-end-ns { align-items: flex-end; }
 
 .items-center-ns { align-items: center; }
 
 .items-baseline-ns { align-items: baseline; }
 
 .items-stretch-ns { align-items: stretch; }
 
 .self-start-ns { align-self: flex-start; }
 
 .self-end-ns { align-self: flex-end; }
 
 .self-center-ns { align-self: center; }
 
 .self-baseline-ns { align-self: baseline; }
 
 .self-stretch-ns { align-self: stretch; }
 
 .justify-start-ns { justify-content: flex-start; }
 
 .justify-end-ns { justify-content: flex-end; }
 
 .justify-center-ns { justify-content: center; }
 
 .justify-between-ns { justify-content: space-between; }
 
 .justify-around-ns { justify-content: space-around; }
 
 .content-start-ns { align-content: flex-start; }
 
 .content-end-ns { align-content: flex-end; }
 
 .content-center-ns { align-content: center; }
 
 .content-between-ns { align-content: space-between; }
 
 .content-around-ns { align-content: space-around; }
 
 .content-stretch-ns { align-content: stretch; }
 
 .order-0-ns { order: 0; }
 
 .order-1-ns { order: 1; }
 
 .order-2-ns { order: 2; }
 
 .order-3-ns { order: 3; }
 
 .order-4-ns { order: 4; }
 
 .order-5-ns { order: 5; }
 
 .order-6-ns { order: 6; }
 
 .order-7-ns { order: 7; }
 
 .order-8-ns { order: 8; }
 
 .order-last-ns { order: 99999; }
 
 .flex-grow-0-ns { flex-grow: 0; }
 
 .flex-grow-1-ns { flex-grow: 1; }
 
 .flex-shrink-0-ns { flex-shrink: 0; }
 
 .flex-shrink-1-ns { flex-shrink: 1; }
 
 .fl-ns { float: left; _display: inline; }
 
 .fr-ns { float: right; _display: inline; }
 
 .fn-ns { float: none; }
 
 .i-ns { font-style: italic; }
 
 .fs-normal-ns { font-style: normal; }
 
 .normal-ns { font-weight: normal; }
 
 .b-ns { font-weight: bold; }
 
 .fw1-ns { font-weight: 100; }
 
 .fw2-ns { font-weight: 200; }
 
 .fw3-ns { font-weight: 300; }
 
 .fw4-ns { font-weight: 400; }
 
 .fw5-ns { font-weight: 500; }
 
 .fw6-ns { font-weight: 600; }
 
 .fw7-ns { font-weight: 700; }
 
 .fw8-ns { font-weight: 800; }
 
 .fw9-ns { font-weight: 900; }
 
 .h1-ns { height: 1rem; }
 
 .h2-ns { height: 2rem; }
 
 .h3-ns { height: 4rem; }
 
 .h4-ns { height: 8rem; }
 
 .h5-ns { height: 16rem; }
 
 .h-25-ns { height: 25%; }
 
 .h-50-ns { height: 50%; }
 
 .h-75-ns { height: 75%; }
 
 .h-100-ns { height: 100%; }
 
 .min-h-100-ns { min-height: 100%; }
 
 .vh-25-ns { height: 25vh; }
 
 .vh-50-ns { height: 50vh; }
 
 .vh-75-ns { height: 75vh; }
 
 .vh-100-ns { height: 100vh; }
 
 .min-vh-100-ns { min-height: 100vh; }
 
 .h-auto-ns { height: auto; }
 
 .h-inherit-ns { height: inherit; }
 
 .tracked-ns { letter-spacing: .1em; }
 
 .tracked-tight-ns { letter-spacing: -.05em; }
 
 .tracked-mega-ns { letter-spacing: .25em; }
 
 .lh-solid-ns { line-height: 1; }
 
 .lh-title-ns { line-height: 1.25; }
 
 .lh-copy-ns { line-height: 1.5; }
 
 .mw-100-ns { max-width: 100%; }
 
 .mw1-ns { max-width: 1rem; }
 
 .mw2-ns { max-width: 2rem; }
 
 .mw3-ns { max-width: 4rem; }
 
 .mw4-ns { max-width: 8rem; }
 
 .mw5-ns { max-width: 16rem; }
 
 .mw6-ns { max-width: 32rem; }
 
 .mw7-ns { max-width: 48rem; }
 
 .mw8-ns { max-width: 64rem; }
 
 .mw9-ns { max-width: 96rem; }
 
 .mw-none-ns { max-width: none; }
 
 .w1-ns { width: 1rem; }
 
 .w2-ns { width: 2rem; }
 
 .w3-ns { width: 4rem; }
 
 .w4-ns { width: 8rem; }
 
 .w5-ns { width: 16rem; }
 
 .w-10-ns { width: 10%; }
 
 .w-20-ns { width: 20%; }
 
 .w-25-ns { width: 25%; }
 
 .w-30-ns { width: 30%; }
 
 .w-33-ns { width: 33%; }
 
 .w-34-ns { width: 34%; }
 
 .w-40-ns { width: 40%; }
 
 .w-50-ns { width: 50%; }
 
 .w-60-ns { width: 60%; }
 
 .w-70-ns { width: 70%; }
 
 .w-75-ns { width: 75%; }
 
 .w-80-ns { width: 80%; }
 
 .w-90-ns { width: 90%; }
 
 .w-100-ns { width: 100%; }
 
 .w-third-ns { width: 33.33333%; }
 
 .w-two-thirds-ns { width: 66.66667%; }
 
 .w-auto-ns { width: auto; }
 
 .overflow-visible-ns { overflow: visible; }
 
 .overflow-hidden-ns { overflow: hidden; }
 
 .overflow-scroll-ns { overflow: scroll; }
 
 .overflow-auto-ns { overflow: auto; }
 
 .overflow-x-visible-ns { overflow-x: visible; }
 
 .overflow-x-hidden-ns { overflow-x: hidden; }
 
 .overflow-x-scroll-ns { overflow-x: scroll; }
 
 .overflow-x-auto-ns { overflow-x: auto; }
 
 .overflow-y-visible-ns { overflow-y: visible; }
 
 .overflow-y-hidden-ns { overflow-y: hidden; }
 
 .overflow-y-scroll-ns { overflow-y: scroll; }
 
 .overflow-y-auto-ns { overflow-y: auto; }
 
 .static-ns { position: static; }
 
 .relative-ns { position: relative; }
 
 .absolute-ns { position: absolute; }
 
 .fixed-ns { position: fixed; }
 
 .rotate-45-ns { -webkit-transform: rotate( 45deg ); transform: rotate( 45deg ); }
 
 .rotate-90-ns { -webkit-transform: rotate( 90deg ); transform: rotate( 90deg ); }
conservancy/static/css/tachyons.min.css
Show inline comments
 
/*! TACHYONS v4.12.0 | http://tachyons.io */
 
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}.border-box,a,article,aside,blockquote,body,code,dd,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,html,input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],legend,li,main,nav,ol,p,pre,section,table,td,textarea,th,tr,ul{box-sizing:border-box}.aspect-ratio{height:0;position:relative}.aspect-ratio--16x9{padding-bottom:56.25%}.aspect-ratio--9x16{padding-bottom:177.77%}.aspect-ratio--4x3{padding-bottom:75%}.aspect-ratio--3x4{padding-bottom:133.33%}.aspect-ratio--6x4{padding-bottom:66.6%}.aspect-ratio--4x6{padding-bottom:150%}.aspect-ratio--8x5{padding-bottom:62.5%}.aspect-ratio--5x8{padding-bottom:160%}.aspect-ratio--7x5{padding-bottom:71.42%}.aspect-ratio--5x7{padding-bottom:140%}.aspect-ratio--1x1{padding-bottom:100%}.aspect-ratio--object{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:100}img{max-width:100%}.cover{background-size:cover!important}.contain{background-size:contain!important}.bg-center{background-position:50%}.bg-center,.bg-top{background-repeat:no-repeat}.bg-top{background-position:top}.bg-right{background-position:100%}.bg-bottom,.bg-right{background-repeat:no-repeat}.bg-bottom{background-position:bottom}.bg-left{background-repeat:no-repeat;background-position:0}.outline{outline:1px solid}.outline-transparent{outline:1px solid transparent}.outline-0{outline:0}.ba{border-style:solid;border-width:1px}.bt{border-top-style:solid;border-top-width:1px}.br{border-right-style:solid;border-right-width:1px}.bb{border-bottom-style:solid;border-bottom-width:1px}.bl{border-left-style:solid;border-left-width:1px}.bn{border-style:none;border-width:0}.b--black{border-color:#000}.b--near-black{border-color:#111}.b--dark-gray{border-color:#333}.b--mid-gray{border-color:#555}.b--gray{border-color:#777}.b--silver{border-color:#999}.b--light-silver{border-color:#aaa}.b--moon-gray{border-color:#ccc}.b--light-gray{border-color:#eee}.b--near-white{border-color:#f4f4f4}.b--white{border-color:#fff}.b--white-90{border-color:hsla(0,0%,100%,.9)}.b--white-80{border-color:hsla(0,0%,100%,.8)}.b--white-70{border-color:hsla(0,0%,100%,.7)}.b--white-60{border-color:hsla(0,0%,100%,.6)}.b--white-50{border-color:hsla(0,0%,100%,.5)}.b--white-40{border-color:hsla(0,0%,100%,.4)}.b--white-30{border-color:hsla(0,0%,100%,.3)}.b--white-20{border-color:hsla(0,0%,100%,.2)}.b--white-10{border-color:hsla(0,0%,100%,.1)}.b--white-05{border-color:hsla(0,0%,100%,.05)}.b--white-025{border-color:hsla(0,0%,100%,.025)}.b--white-0125{border-color:hsla(0,0%,100%,.0125)}.b--black-90{border-color:rgba(0,0,0,.9)}.b--black-80{border-color:rgba(0,0,0,.8)}.b--black-70{border-color:rgba(0,0,0,.7)}.b--black-60{border-color:rgba(0,0,0,.6)}.b--black-50{border-color:rgba(0,0,0,.5)}.b--black-40{border-color:rgba(0,0,0,.4)}.b--black-30{border-color:rgba(0,0,0,.3)}.b--black-20{border-color:rgba(0,0,0,.2)}.b--black-10{border-color:rgba(0,0,0,.1)}.b--black-05{border-color:rgba(0,0,0,.05)}.b--black-025{border-color:rgba(0,0,0,.025)}.b--black-0125{border-color:rgba(0,0,0,.0125)}.b--dark-red{border-color:#e7040f}.b--red{border-color:#ff4136}.b--light-red{border-color:#ff725c}.b--orange{border-color:#ff6300}.b--gold{border-color:#ffb700}.b--yellow{border-color:gold}.b--light-yellow{border-color:#fbf1a9}.b--purple{border-color:#5e2ca5}.b--light-purple{border-color:#a463f2}.b--dark-pink{border-color:#d5008f}.b--hot-pink{border-color:#ff41b4}.b--pink{border-color:#ff80cc}.b--light-pink{border-color:#ffa3d7}.b--dark-green{border-color:#137752}.b--green{border-color:#19a974}.b--light-green{border-color:#9eebcf}.b--navy{border-color:#001b44}.b--dark-blue{border-color:#00449e}.b--blue{border-color:#357edd}.b--light-blue{border-color:#96ccff}.b--lightest-blue{border-color:#cdecff}.b--washed-blue{border-color:#f6fffe}.b--washed-green{border-color:#e8fdf5}.b--washed-yellow{border-color:#fffceb}.b--washed-red{border-color:#ffdfdf}.b--transparent{border-color:transparent}.b--inherit{border-color:inherit}.b--initial{border-color:initial}.b--unset{border-color:unset}.br0{border-radius:0}.br1{border-radius:.125rem}.br2{border-radius:.25rem}.br3{border-radius:.5rem}.br4{border-radius:1rem}.br-100{border-radius:100%}.br-pill{border-radius:9999px}.br--bottom{border-top-left-radius:0;border-top-right-radius:0}.br--top{border-bottom-right-radius:0}.br--right,.br--top{border-bottom-left-radius:0}.br--right{border-top-left-radius:0}.br--left{border-top-right-radius:0;border-bottom-right-radius:0}.br-inherit{border-radius:inherit}.br-initial{border-radius:initial}.br-unset{border-radius:unset}.b--dotted{border-style:dotted}.b--dashed{border-style:dashed}.b--solid{border-style:solid}.b--none{border-style:none}.bw0{border-width:0}.bw1{border-width:.125rem}.bw2{border-width:.25rem}.bw3{border-width:.5rem}.bw4{border-width:1rem}.bw5{border-width:2rem}.bt-0{border-top-width:0}.br-0{border-right-width:0}.bb-0{border-bottom-width:0}.bl-0{border-left-width:0}.shadow-1{box-shadow:0 0 4px 2px rgba(0,0,0,.2)}.shadow-2{box-shadow:0 0 8px 2px rgba(0,0,0,.2)}.shadow-3{box-shadow:2px 2px 4px 2px rgba(0,0,0,.2)}.shadow-4{box-shadow:2px 2px 8px 0 rgba(0,0,0,.2)}.shadow-5{box-shadow:4px 4px 8px 0 rgba(0,0,0,.2)}.pre{overflow-x:auto;overflow-y:hidden;overflow:scroll}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.top-1{top:1rem}.right-1{right:1rem}.bottom-1{bottom:1rem}.left-1{left:1rem}.top-2{top:2rem}.right-2{right:2rem}.bottom-2{bottom:2rem}.left-2{left:2rem}.top--1{top:-1rem}.right--1{right:-1rem}.bottom--1{bottom:-1rem}.left--1{left:-1rem}.top--2{top:-2rem}.right--2{right:-2rem}.bottom--2{bottom:-2rem}.left--2{left:-2rem}.absolute--fill{top:0;right:0;bottom:0;left:0}.cf:after,.cf:before{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.cl{clear:left}.cr{clear:right}.cb{clear:both}.cn{clear:none}.dn{display:none}.di{display:inline}.db{display:block}.dib{display:inline-block}.dit{display:inline-table}.dt{display:table}.dtc{display:table-cell}.dt-row{display:table-row}.dt-row-group{display:table-row-group}.dt-column{display:table-column}.dt-column-group{display:table-column-group}.dt--fixed{table-layout:fixed;width:100%}.flex{display:flex}.inline-flex{display:inline-flex}.flex-auto{flex:1 1 auto;min-width:0;min-height:0}.flex-none{flex:none}.flex-column{flex-direction:column}.flex-row{flex-direction:row}.flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.flex-column-reverse{flex-direction:column-reverse}.flex-row-reverse{flex-direction:row-reverse}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.self-start{align-self:flex-start}.self-end{align-self:flex-end}.self-center{align-self:center}.self-baseline{align-self:baseline}.self-stretch{align-self:stretch}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.content-start{align-content:flex-start}.content-end{align-content:flex-end}.content-center{align-content:center}.content-between{align-content:space-between}.content-around{align-content:space-around}.content-stretch{align-content:stretch}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-last{order:99999}.flex-grow-0{flex-grow:0}.flex-grow-1{flex-grow:1}.flex-shrink-0{flex-shrink:0}.flex-shrink-1{flex-shrink:1}.fl{float:left}.fl,.fr{_display:inline}.fr{float:right}.fn{float:none}.sans-serif{font-family:-apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif}.serif{font-family:georgia,times,serif}.system-sans-serif{font-family:sans-serif}.system-serif{font-family:serif}.code,code{font-family:Consolas,monaco,monospace}.courier{font-family:Courier Next,courier,monospace}.helvetica{font-family:helvetica neue,helvetica,sans-serif}.avenir{font-family:avenir next,avenir,sans-serif}.athelas{font-family:athelas,georgia,serif}.georgia{font-family:georgia,serif}.times{font-family:times,serif}.bodoni{font-family:Bodoni MT,serif}.calisto{font-family:Calisto MT,serif}.garamond{font-family:garamond,serif}.baskerville{font-family:baskerville,serif}.i{font-style:italic}.fs-normal{font-style:normal}.normal{font-weight:400}.b{font-weight:700}.fw1{font-weight:100}.fw2{font-weight:200}.fw3{font-weight:300}.fw4{font-weight:400}.fw5{font-weight:500}.fw6{font-weight:600}.fw7{font-weight:700}.fw8{font-weight:800}.fw9{font-weight:900}.input-reset{-webkit-appearance:none;-moz-appearance:none}.button-reset::-moz-focus-inner,.input-reset::-moz-focus-inner{border:0;padding:0}.h1{height:1rem}.h2{height:2rem}.h3{height:4rem}.h4{height:8rem}.h5{height:16rem}.h-25{height:25%}.h-50{height:50%}.h-75{height:75%}.h-100{height:100%}.min-h-100{min-height:100%}.vh-25{height:25vh}.vh-50{height:50vh}.vh-75{height:75vh}.vh-100{height:100vh}.min-vh-100{min-height:100vh}.h-auto{height:auto}.h-inherit{height:inherit}.tracked{letter-spacing:.1em}.tracked-tight{letter-spacing:-.05em}.tracked-mega{letter-spacing:.25em}.lh-solid{line-height:1}.lh-title{line-height:1.25}.lh-copy{line-height:1.5}.link{text-decoration:none}.link,.link:active,.link:focus,.link:hover,.link:link,.link:visited{transition:color .15s ease-in}.link:focus{outline:1px dotted currentColor}.list{list-style-type:none}.mw-100{max-width:100%}.mw1{max-width:1rem}.mw2{max-width:2rem}.mw3{max-width:4rem}.mw4{max-width:8rem}.mw5{max-width:16rem}.mw6{max-width:32rem}.mw7{max-width:48rem}.mw8{max-width:64rem}.mw9{max-width:96rem}.mw-none{max-width:none}.w1{width:1rem}.w2{width:2rem}.w3{width:4rem}.w4{width:8rem}.w5{width:16rem}.w-10{width:10%}.w-20{width:20%}.w-25{width:25%}.w-30{width:30%}.w-33{width:33%}.w-34{width:34%}.w-40{width:40%}.w-50{width:50%}.w-60{width:60%}.w-70{width:70%}.w-75{width:75%}.w-80{width:80%}.w-90{width:90%}.w-100{width:100%}.w-third{width:33.33333%}.w-two-thirds{width:66.66667%}.w-auto{width:auto}.overflow-visible{overflow:visible}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-auto{overflow:auto}.overflow-x-visible{overflow-x:visible}.overflow-x-hidden{overflow-x:hidden}.overflow-x-scroll{overflow-x:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-visible{overflow-y:visible}.overflow-y-hidden{overflow-y:hidden}.overflow-y-scroll{overflow-y:scroll}.overflow-y-auto{overflow-y:auto}.static{position:static}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.o-100{opacity:1}.o-90{opacity:.9}.o-80{opacity:.8}.o-70{opacity:.7}.o-60{opacity:.6}.o-50{opacity:.5}.o-40{opacity:.4}.o-30{opacity:.3}.o-20{opacity:.2}.o-10{opacity:.1}.o-05{opacity:.05}.o-025{opacity:.025}.o-0{opacity:0}.rotate-45{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.rotate-135{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rotate-225{-webkit-transform:rotate(225deg);transform:rotate(225deg)}.rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.rotate-315{-webkit-transform:rotate(315deg);transform:rotate(315deg)}.black-90{color:rgba(0,0,0,.9)}.black-80{color:rgba(0,0,0,.8)}.black-70{color:rgba(0,0,0,.7)}.black-60{color:rgba(0,0,0,.6)}.black-50{color:rgba(0,0,0,.5)}.black-40{color:rgba(0,0,0,.4)}.black-30{color:rgba(0,0,0,.3)}.black-20{color:rgba(0,0,0,.2)}.black-10{color:rgba(0,0,0,.1)}.black-05{color:rgba(0,0,0,.05)}.white-90{color:hsla(0,0%,100%,.9)}.white-80{color:hsla(0,0%,100%,.8)}.white-70{color:hsla(0,0%,100%,.7)}.white-60{color:hsla(0,0%,100%,.6)}.white-50{color:hsla(0,0%,100%,.5)}.white-40{color:hsla(0,0%,100%,.4)}.white-30{color:hsla(0,0%,100%,.3)}.white-20{color:hsla(0,0%,100%,.2)}.white-10{color:hsla(0,0%,100%,.1)}.black{color:#000}.near-black{color:#111}.dark-gray{color:#333}.mid-gray{color:#555}.gray{color:#777}.silver{color:#999}.light-silver{color:#aaa}.moon-gray{color:#ccc}.light-gray{color:#eee}.near-white{color:#f4f4f4}.white{color:#fff}.dark-red{color:#e7040f}.red{color:#ff4136}.light-red{color:#ff725c}.orange{color:#ff6300}.gold{color:#ffb700}.yellow{color:gold}.light-yellow{color:#fbf1a9}.purple{color:#5e2ca5}.light-purple{color:#a463f2}.dark-pink{color:#d5008f}.hot-pink{color:#ff41b4}.pink{color:#ff80cc}.light-pink{color:#ffa3d7}.dark-green{color:#137752}.green{color:#19a974}.light-green{color:#9eebcf}.navy{color:#001b44}.dark-blue{color:#00449e}.blue{color:#357edd}.light-blue{color:#96ccff}.lightest-blue{color:#cdecff}.washed-blue{color:#f6fffe}.washed-green{color:#e8fdf5}.washed-yellow{color:#fffceb}.washed-red{color:#ffdfdf}.color-inherit{color:inherit}.bg-black-90{background-color:rgba(0,0,0,.9)}.bg-black-80{background-color:rgba(0,0,0,.8)}.bg-black-70{background-color:rgba(0,0,0,.7)}.bg-black-60{background-color:rgba(0,0,0,.6)}.bg-black-50{background-color:rgba(0,0,0,.5)}.bg-black-40{background-color:rgba(0,0,0,.4)}.bg-black-30{background-color:rgba(0,0,0,.3)}.bg-black-20{background-color:rgba(0,0,0,.2)}.bg-black-10{background-color:rgba(0,0,0,.1)}.bg-black-05{background-color:rgba(0,0,0,.05)}.bg-white-90{background-color:hsla(0,0%,100%,.9)}.bg-white-80{background-color:hsla(0,0%,100%,.8)}.bg-white-70{background-color:hsla(0,0%,100%,.7)}.bg-white-60{background-color:hsla(0,0%,100%,.6)}.bg-white-50{background-color:hsla(0,0%,100%,.5)}.bg-white-40{background-color:hsla(0,0%,100%,.4)}.bg-white-30{background-color:hsla(0,0%,100%,.3)}.bg-white-20{background-color:hsla(0,0%,100%,.2)}.bg-white-10{background-color:hsla(0,0%,100%,.1)}.bg-black{background-color:#000}.bg-near-black{background-color:#111}.bg-dark-gray{background-color:#333}.bg-mid-gray{background-color:#555}.bg-gray{background-color:#777}.bg-silver{background-color:#999}.bg-light-silver{background-color:#aaa}.bg-moon-gray{background-color:#ccc}.bg-light-gray{background-color:#eee}.bg-near-white{background-color:#f4f4f4}.bg-white{background-color:#fff}.bg-transparent{background-color:transparent}.bg-dark-red{background-color:#e7040f}.bg-red{background-color:#ff4136}.bg-light-red{background-color:#ff725c}.bg-orange{background-color:#ff6300}.bg-gold{background-color:#ffb700}.bg-yellow{background-color:gold}.bg-light-yellow{background-color:#fbf1a9}.bg-purple{background-color:#5e2ca5}.bg-light-purple{background-color:#a463f2}.bg-dark-pink{background-color:#d5008f}.bg-hot-pink{background-color:#ff41b4}.bg-pink{background-color:#ff80cc}.bg-light-pink{background-color:#ffa3d7}.bg-dark-green{background-color:#137752}.bg-green{background-color:#19a974}.bg-light-green{background-color:#9eebcf}.bg-navy{background-color:#001b44}.bg-dark-blue{background-color:#00449e}.bg-blue{background-color:#357edd}.bg-light-blue{background-color:#96ccff}.bg-lightest-blue{background-color:#cdecff}.bg-washed-blue{background-color:#f6fffe}.bg-washed-green{background-color:#e8fdf5}.bg-washed-yellow{background-color:#fffceb}.bg-washed-red{background-color:#ffdfdf}.bg-inherit{background-color:inherit}.hover-black:focus,.hover-black:hover{color:#000}.hover-near-black:focus,.hover-near-black:hover{color:#111}.hover-dark-gray:focus,.hover-dark-gray:hover{color:#333}.hover-mid-gray:focus,.hover-mid-gray:hover{color:#555}.hover-gray:focus,.hover-gray:hover{color:#777}.hover-silver:focus,.hover-silver:hover{color:#999}.hover-light-silver:focus,.hover-light-silver:hover{color:#aaa}.hover-moon-gray:focus,.hover-moon-gray:hover{color:#ccc}.hover-light-gray:focus,.hover-light-gray:hover{color:#eee}.hover-near-white:focus,.hover-near-white:hover{color:#f4f4f4}.hover-white:focus,.hover-white:hover{color:#fff}.hover-black-90:focus,.hover-black-90:hover{color:rgba(0,0,0,.9)}.hover-black-80:focus,.hover-black-80:hover{color:rgba(0,0,0,.8)}.hover-black-70:focus,.hover-black-70:hover{color:rgba(0,0,0,.7)}.hover-black-60:focus,.hover-black-60:hover{color:rgba(0,0,0,.6)}.hover-black-50:focus,.hover-black-50:hover{color:rgba(0,0,0,.5)}.hover-black-40:focus,.hover-black-40:hover{color:rgba(0,0,0,.4)}.hover-black-30:focus,.hover-black-30:hover{color:rgba(0,0,0,.3)}.hover-black-20:focus,.hover-black-20:hover{color:rgba(0,0,0,.2)}.hover-black-10:focus,.hover-black-10:hover{color:rgba(0,0,0,.1)}.hover-white-90:focus,.hover-white-90:hover{color:hsla(0,0%,100%,.9)}.hover-white-80:focus,.hover-white-80:hover{color:hsla(0,0%,100%,.8)}.hover-white-70:focus,.hover-white-70:hover{color:hsla(0,0%,100%,.7)}.hover-white-60:focus,.hover-white-60:hover{color:hsla(0,0%,100%,.6)}.hover-white-50:focus,.hover-white-50:hover{color:hsla(0,0%,100%,.5)}.hover-white-40:focus,.hover-white-40:hover{color:hsla(0,0%,100%,.4)}.hover-white-30:focus,.hover-white-30:hover{color:hsla(0,0%,100%,.3)}.hover-white-20:focus,.hover-white-20:hover{color:hsla(0,0%,100%,.2)}.hover-white-10:focus,.hover-white-10:hover{color:hsla(0,0%,100%,.1)}.hover-inherit:focus,.hover-inherit:hover{color:inherit}.hover-bg-black:focus,.hover-bg-black:hover{background-color:#000}.hover-bg-near-black:focus,.hover-bg-near-black:hover{background-color:#111}.hover-bg-dark-gray:focus,.hover-bg-dark-gray:hover{background-color:#333}.hover-bg-mid-gray:focus,.hover-bg-mid-gray:hover{background-color:#555}.hover-bg-gray:focus,.hover-bg-gray:hover{background-color:#777}.hover-bg-silver:focus,.hover-bg-silver:hover{background-color:#999}.hover-bg-light-silver:focus,.hover-bg-light-silver:hover{background-color:#aaa}.hover-bg-moon-gray:focus,.hover-bg-moon-gray:hover{background-color:#ccc}.hover-bg-light-gray:focus,.hover-bg-light-gray:hover{background-color:#eee}.hover-bg-near-white:focus,.hover-bg-near-white:hover{background-color:#f4f4f4}.hover-bg-white:focus,.hover-bg-white:hover{background-color:#fff}.hover-bg-transparent:focus,.hover-bg-transparent:hover{background-color:transparent}.hover-bg-black-90:focus,.hover-bg-black-90:hover{background-color:rgba(0,0,0,.9)}.hover-bg-black-80:focus,.hover-bg-black-80:hover{background-color:rgba(0,0,0,.8)}.hover-bg-black-70:focus,.hover-bg-black-70:hover{background-color:rgba(0,0,0,.7)}.hover-bg-black-60:focus,.hover-bg-black-60:hover{background-color:rgba(0,0,0,.6)}.hover-bg-black-50:focus,.hover-bg-black-50:hover{background-color:rgba(0,0,0,.5)}.hover-bg-black-40:focus,.hover-bg-black-40:hover{background-color:rgba(0,0,0,.4)}.hover-bg-black-30:focus,.hover-bg-black-30:hover{background-color:rgba(0,0,0,.3)}.hover-bg-black-20:focus,.hover-bg-black-20:hover{background-color:rgba(0,0,0,.2)}.hover-bg-black-10:focus,.hover-bg-black-10:hover{background-color:rgba(0,0,0,.1)}.hover-bg-white-90:focus,.hover-bg-white-90:hover{background-color:hsla(0,0%,100%,.9)}.hover-bg-white-80:focus,.hover-bg-white-80:hover{background-color:hsla(0,0%,100%,.8)}.hover-bg-white-70:focus,.hover-bg-white-70:hover{background-color:hsla(0,0%,100%,.7)}.hover-bg-white-60:focus,.hover-bg-white-60:hover{background-color:hsla(0,0%,100%,.6)}.hover-bg-white-50:focus,.hover-bg-white-50:hover{background-color:hsla(0,0%,100%,.5)}.hover-bg-white-40:focus,.hover-bg-white-40:hover{background-color:hsla(0,0%,100%,.4)}.hover-bg-white-30:focus,.hover-bg-white-30:hover{background-color:hsla(0,0%,100%,.3)}.hover-bg-white-20:focus,.hover-bg-white-20:hover{background-color:hsla(0,0%,100%,.2)}.hover-bg-white-10:focus,.hover-bg-white-10:hover{background-color:hsla(0,0%,100%,.1)}.hover-dark-red:focus,.hover-dark-red:hover{color:#e7040f}.hover-red:focus,.hover-red:hover{color:#ff4136}.hover-light-red:focus,.hover-light-red:hover{color:#ff725c}.hover-orange:focus,.hover-orange:hover{color:#ff6300}.hover-gold:focus,.hover-gold:hover{color:#ffb700}.hover-yellow:focus,.hover-yellow:hover{color:gold}.hover-light-yellow:focus,.hover-light-yellow:hover{color:#fbf1a9}.hover-purple:focus,.hover-purple:hover{color:#5e2ca5}.hover-light-purple:focus,.hover-light-purple:hover{color:#a463f2}.hover-dark-pink:focus,.hover-dark-pink:hover{color:#d5008f}.hover-hot-pink:focus,.hover-hot-pink:hover{color:#ff41b4}.hover-pink:focus,.hover-pink:hover{color:#ff80cc}.hover-light-pink:focus,.hover-light-pink:hover{color:#ffa3d7}.hover-dark-green:focus,.hover-dark-green:hover{color:#137752}.hover-green:focus,.hover-green:hover{color:#19a974}.hover-light-green:focus,.hover-light-green:hover{color:#9eebcf}.hover-navy:focus,.hover-navy:hover{color:#001b44}.hover-dark-blue:focus,.hover-dark-blue:hover{color:#00449e}.hover-blue:focus,.hover-blue:hover{color:#357edd}.hover-light-blue:focus,.hover-light-blue:hover{color:#96ccff}.hover-lightest-blue:focus,.hover-lightest-blue:hover{color:#cdecff}.hover-washed-blue:focus,.hover-washed-blue:hover{color:#f6fffe}.hover-washed-green:focus,.hover-washed-green:hover{color:#e8fdf5}.hover-washed-yellow:focus,.hover-washed-yellow:hover{color:#fffceb}.hover-washed-red:focus,.hover-washed-red:hover{color:#ffdfdf}.hover-bg-dark-red:focus,.hover-bg-dark-red:hover{background-color:#e7040f}.hover-bg-red:focus,.hover-bg-red:hover{background-color:#ff4136}.hover-bg-light-red:focus,.hover-bg-light-red:hover{background-color:#ff725c}.hover-bg-orange:focus,.hover-bg-orange:hover{background-color:#ff6300}.hover-bg-gold:focus,.hover-bg-gold:hover{background-color:#ffb700}.hover-bg-yellow:focus,.hover-bg-yellow:hover{background-color:gold}.hover-bg-light-yellow:focus,.hover-bg-light-yellow:hover{background-color:#fbf1a9}.hover-bg-purple:focus,.hover-bg-purple:hover{background-color:#5e2ca5}.hover-bg-light-purple:focus,.hover-bg-light-purple:hover{background-color:#a463f2}.hover-bg-dark-pink:focus,.hover-bg-dark-pink:hover{background-color:#d5008f}.hover-bg-hot-pink:focus,.hover-bg-hot-pink:hover{background-color:#ff41b4}.hover-bg-pink:focus,.hover-bg-pink:hover{background-color:#ff80cc}.hover-bg-light-pink:focus,.hover-bg-light-pink:hover{background-color:#ffa3d7}.hover-bg-dark-green:focus,.hover-bg-dark-green:hover{background-color:#137752}.hover-bg-green:focus,.hover-bg-green:hover{background-color:#19a974}.hover-bg-light-green:focus,.hover-bg-light-green:hover{background-color:#9eebcf}.hover-bg-navy:focus,.hover-bg-navy:hover{background-color:#001b44}.hover-bg-dark-blue:focus,.hover-bg-dark-blue:hover{background-color:#00449e}.hover-bg-blue:focus,.hover-bg-blue:hover{background-color:#357edd}.hover-bg-light-blue:focus,.hover-bg-light-blue:hover{background-color:#96ccff}.hover-bg-lightest-blue:focus,.hover-bg-lightest-blue:hover{background-color:#cdecff}.hover-bg-washed-blue:focus,.hover-bg-washed-blue:hover{background-color:#f6fffe}.hover-bg-washed-green:focus,.hover-bg-washed-green:hover{background-color:#e8fdf5}.hover-bg-washed-yellow:focus,.hover-bg-washed-yellow:hover{background-color:#fffceb}.hover-bg-washed-red:focus,.hover-bg-washed-red:hover{background-color:#ffdfdf}.hover-bg-inherit:focus,.hover-bg-inherit:hover{background-color:inherit}.pa0{padding:0}.pa1{padding:.25rem}.pa2{padding:.5rem}.pa3{padding:1rem}.pa4{padding:2rem}.pa5{padding:4rem}.pa6{padding:8rem}.pa7{padding:16rem}.pl0{padding-left:0}.pl1{padding-left:.25rem}.pl2{padding-left:.5rem}.pl3{padding-left:1rem}.pl4{padding-left:2rem}.pl5{padding-left:4rem}.pl6{padding-left:8rem}.pl7{padding-left:16rem}.pr0{padding-right:0}.pr1{padding-right:.25rem}.pr2{padding-right:.5rem}.pr3{padding-right:1rem}.pr4{padding-right:2rem}.pr5{padding-right:4rem}.pr6{padding-right:8rem}.pr7{padding-right:16rem}.pb0{padding-bottom:0}.pb1{padding-bottom:.25rem}.pb2{padding-bottom:.5rem}.pb3{padding-bottom:1rem}.pb4{padding-bottom:2rem}.pb5{padding-bottom:4rem}.pb6{padding-bottom:8rem}.pb7{padding-bottom:16rem}.pt0{padding-top:0}.pt1{padding-top:.25rem}.pt2{padding-top:.5rem}.pt3{padding-top:1rem}.pt4{padding-top:2rem}.pt5{padding-top:4rem}.pt6{padding-top:8rem}.pt7{padding-top:16rem}.pv0{padding-top:0;padding-bottom:0}.pv1{padding-top:.25rem;padding-bottom:.25rem}.pv2{padding-top:.5rem;padding-bottom:.5rem}.pv3{padding-top:1rem;padding-bottom:1rem}.pv4{padding-top:2rem;padding-bottom:2rem}.pv5{padding-top:4rem;padding-bottom:4rem}.pv6{padding-top:8rem;padding-bottom:8rem}.pv7{padding-top:16rem;padding-bottom:16rem}.ph0{padding-left:0;padding-right:0}.ph1{padding-left:.25rem;padding-right:.25rem}.ph2{padding-left:.5rem;padding-right:.5rem}.ph3{padding-left:1rem;padding-right:1rem}.ph4{padding-left:2rem;padding-right:2rem}.ph5{padding-left:4rem;padding-right:4rem}.ph6{padding-left:8rem;padding-right:8rem}.ph7{padding-left:16rem;padding-right:16rem}.ma0{margin:0}.ma1{margin:.25rem}.ma2{margin:.5rem}.ma3{margin:1rem}.ma4{margin:2rem}.ma5{margin:4rem}.ma6{margin:8rem}.ma7{margin:16rem}.ml0{margin-left:0}.ml1{margin-left:.25rem}.ml2{margin-left:.5rem}.ml3{margin-left:1rem}.ml4{margin-left:2rem}.ml5{margin-left:4rem}.ml6{margin-left:8rem}.ml7{margin-left:16rem}.mr0{margin-right:0}.mr1{margin-right:.25rem}.mr2{margin-right:.5rem}.mr3{margin-right:1rem}.mr4{margin-right:2rem}.mr5{margin-right:4rem}.mr6{margin-right:8rem}.mr7{margin-right:16rem}.mb0{margin-bottom:0}.mb1{margin-bottom:.25rem}.mb2{margin-bottom:.5rem}.mb3{margin-bottom:1rem}.mb4{margin-bottom:2rem}.mb5{margin-bottom:4rem}.mb6{margin-bottom:8rem}.mb7{margin-bottom:16rem}.mt0{margin-top:0}.mt1{margin-top:.25rem}.mt2{margin-top:.5rem}.mt3{margin-top:1rem}.mt4{margin-top:2rem}.mt5{margin-top:4rem}.mt6{margin-top:8rem}.mt7{margin-top:16rem}.mv0{margin-top:0;margin-bottom:0}.mv1{margin-top:.25rem;margin-bottom:.25rem}.mv2{margin-top:.5rem;margin-bottom:.5rem}.mv3{margin-top:1rem;margin-bottom:1rem}.mv4{margin-top:2rem;margin-bottom:2rem}.mv5{margin-top:4rem;margin-bottom:4rem}.mv6{margin-top:8rem;margin-bottom:8rem}.mv7{margin-top:16rem;margin-bottom:16rem}.mh0{margin-left:0;margin-right:0}.mh1{margin-left:.25rem;margin-right:.25rem}.mh2{margin-left:.5rem;margin-right:.5rem}.mh3{margin-left:1rem;margin-right:1rem}.mh4{margin-left:2rem;margin-right:2rem}.mh5{margin-left:4rem;margin-right:4rem}.mh6{margin-left:8rem;margin-right:8rem}.mh7{margin-left:16rem;margin-right:16rem}.na1{margin:-.25rem}.na2{margin:-.5rem}.na3{margin:-1rem}.na4{margin:-2rem}.na5{margin:-4rem}.na6{margin:-8rem}.na7{margin:-16rem}.nl1{margin-left:-.25rem}.nl2{margin-left:-.5rem}.nl3{margin-left:-1rem}.nl4{margin-left:-2rem}.nl5{margin-left:-4rem}.nl6{margin-left:-8rem}.nl7{margin-left:-16rem}.nr1{margin-right:-.25rem}.nr2{margin-right:-.5rem}.nr3{margin-right:-1rem}.nr4{margin-right:-2rem}.nr5{margin-right:-4rem}.nr6{margin-right:-8rem}.nr7{margin-right:-16rem}.nb1{margin-bottom:-.25rem}.nb2{margin-bottom:-.5rem}.nb3{margin-bottom:-1rem}.nb4{margin-bottom:-2rem}.nb5{margin-bottom:-4rem}.nb6{margin-bottom:-8rem}.nb7{margin-bottom:-16rem}.nt1{margin-top:-.25rem}.nt2{margin-top:-.5rem}.nt3{margin-top:-1rem}.nt4{margin-top:-2rem}.nt5{margin-top:-4rem}.nt6{margin-top:-8rem}.nt7{margin-top:-16rem}.collapse{border-collapse:collapse;border-spacing:0}.striped--light-silver:nth-child(odd){background-color:#aaa}.striped--moon-gray:nth-child(odd){background-color:#ccc}.striped--light-gray:nth-child(odd){background-color:#eee}.striped--near-white:nth-child(odd){background-color:#f4f4f4}.stripe-light:nth-child(odd){background-color:hsla(0,0%,100%,.1)}.stripe-dark:nth-child(odd){background-color:rgba(0,0,0,.1)}.strike{text-decoration:line-through}.underline{text-decoration:underline}.no-underline{text-decoration:none}.tl{text-align:left}.tr{text-align:right}.tc{text-align:center}.tj{text-align:justify}.ttc{text-transform:capitalize}.ttl{text-transform:lowercase}.ttu{text-transform:uppercase}.ttn{text-transform:none}.f-6,.f-headline{font-size:6rem}.f-5,.f-subheadline{font-size:5rem}.f1{font-size:3rem}.f2{font-size:2.25rem}.f3{font-size:1.5rem}.f4{font-size:1.25rem}.f5{font-size:1rem}.f6{font-size:.875rem}.f7{font-size:.75rem}.measure{max-width:30em}.measure-wide{max-width:34em}.measure-narrow{max-width:20em}.indent{text-indent:1em;margin-top:0;margin-bottom:0}.small-caps{font-variant:small-caps}.truncate{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.overflow-container{overflow-y:scroll}.center{margin-left:auto}.center,.mr-auto{margin-right:auto}.ml-auto{margin-left:auto}.clip{position:fixed!important;_position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.ws-normal{white-space:normal}.nowrap{white-space:nowrap}.pre{white-space:pre}.v-base{vertical-align:baseline}.v-mid{vertical-align:middle}.v-top{vertical-align:top}.v-btm{vertical-align:bottom}.dim{opacity:1}.dim,.dim:focus,.dim:hover{transition:opacity .15s ease-in}.dim:focus,.dim:hover{opacity:.5}.dim:active{opacity:.8;transition:opacity .15s ease-out}.glow,.glow:focus,.glow:hover{transition:opacity .15s ease-in}.glow:focus,.glow:hover{opacity:1}.hide-child .child{opacity:0;transition:opacity .15s ease-in}.hide-child:active .child,.hide-child:focus .child,.hide-child:hover .child{opacity:1;transition:opacity .15s ease-in}.underline-hover:focus,.underline-hover:hover{text-decoration:underline}.grow{-moz-osx-font-smoothing:grayscale;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);transition:-webkit-transform .25s ease-out;transition:transform .25s ease-out;transition:transform .25s ease-out,-webkit-transform .25s ease-out}.grow:focus,.grow:hover{-webkit-transform:scale(1.05);transform:scale(1.05)}.grow:active{-webkit-transform:scale(.9);transform:scale(.9)}.grow-large{-moz-osx-font-smoothing:grayscale;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);transition:-webkit-transform .25s ease-in-out;transition:transform .25s ease-in-out;transition:transform .25s ease-in-out,-webkit-transform .25s ease-in-out}.grow-large:focus,.grow-large:hover{-webkit-transform:scale(1.2);transform:scale(1.2)}.grow-large:active{-webkit-transform:scale(.95);transform:scale(.95)}.pointer:hover,.shadow-hover{cursor:pointer}.shadow-hover{position:relative;transition:all .5s cubic-bezier(.165,.84,.44,1)}.shadow-hover:after{content:"";box-shadow:0 0 16px 2px rgba(0,0,0,.2);border-radius:inherit;opacity:0;position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;transition:opacity .5s cubic-bezier(.165,.84,.44,1)}.shadow-hover:focus:after,.shadow-hover:hover:after{opacity:1}.bg-animate,.bg-animate:focus,.bg-animate:hover{transition:background-color .15s ease-in-out}.z-0{z-index:0}.z-1{z-index:1}.z-2{z-index:2}.z-3{z-index:3}.z-4{z-index:4}.z-5{z-index:5}.z-999{z-index:999}.z-9999{z-index:9999}.z-max{z-index:2147483647}.z-inherit{z-index:inherit}.z-initial{z-index:auto}.z-unset{z-index:unset}.nested-copy-line-height ol,.nested-copy-line-height p,.nested-copy-line-height ul{line-height:1.5}.nested-headline-line-height h1,.nested-headline-line-height h2,.nested-headline-line-height h3,.nested-headline-line-height h4,.nested-headline-line-height h5,.nested-headline-line-height h6{line-height:1.25}.nested-list-reset ol,.nested-list-reset ul{padding-left:0;margin-left:0;list-style-type:none}.nested-copy-indent p+p{text-indent:1em;margin-top:0;margin-bottom:0}.nested-copy-separator p+p{margin-top:1.5em}.nested-img img{width:100%;max-width:100%;display:block}.nested-links a{color:#357edd;transition:color .15s ease-in}.nested-links a:focus,.nested-links a:hover{color:#96ccff;transition:color .15s ease-in}.debug *{outline:1px solid gold}.debug-white *{outline:1px solid #fff}.debug-black *{outline:1px solid #000}.debug-grid{background:transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAFElEQVR4AWPAC97/9x0eCsAEPgwAVLshdpENIxcAAAAASUVORK5CYII=) repeat 0 0}.debug-grid-16{background:transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMklEQVR4AWOgCLz/b0epAa6UGuBOqQHOQHLUgFEDnAbcBZ4UGwDOkiCnkIhdgNgNxAYAiYlD+8sEuo8AAAAASUVORK5CYII=) repeat 0 0}.debug-grid-8-solid{background:#fff url(data:image/gif;base64,R0lGODdhCAAIAPEAAADw/wDx/////wAAACwAAAAACAAIAAACDZQvgaeb/lxbAIKA8y0AOw==) repeat 0 0}.debug-grid-16-solid{background:#fff url(data:image/gif;base64,R0lGODdhEAAQAPEAAADw/wDx/xXy/////ywAAAAAEAAQAAACIZyPKckYDQFsb6ZqD85jZ2+BkwiRFKehhqQCQgDHcgwEBQA7) repeat 0 0}@media screen and (min-width:30em){.aspect-ratio-ns{height:0;position:relative}.aspect-ratio--16x9-ns{padding-bottom:56.25%}.aspect-ratio--9x16-ns{padding-bottom:177.77%}.aspect-ratio--4x3-ns{padding-bottom:75%}.aspect-ratio--3x4-ns{padding-bottom:133.33%}.aspect-ratio--6x4-ns{padding-bottom:66.6%}.aspect-ratio--4x6-ns{padding-bottom:150%}.aspect-ratio--8x5-ns{padding-bottom:62.5%}.aspect-ratio--5x8-ns{padding-bottom:160%}.aspect-ratio--7x5-ns{padding-bottom:71.42%}.aspect-ratio--5x7-ns{padding-bottom:140%}.aspect-ratio--1x1-ns{padding-bottom:100%}.aspect-ratio--object-ns{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:100}.cover-ns{background-size:cover!important}.contain-ns{background-size:contain!important}.bg-center-ns{background-position:50%}.bg-center-ns,.bg-top-ns{background-repeat:no-repeat}.bg-top-ns{background-position:top}.bg-right-ns{background-position:100%}.bg-bottom-ns,.bg-right-ns{background-repeat:no-repeat}.bg-bottom-ns{background-position:bottom}.bg-left-ns{background-repeat:no-repeat;background-position:0}.outline-ns{outline:1px solid}.outline-transparent-ns{outline:1px solid transparent}.outline-0-ns{outline:0}.ba-ns{border-style:solid;border-width:1px}.bt-ns{border-top-style:solid;border-top-width:1px}.br-ns{border-right-style:solid;border-right-width:1px}.bb-ns{border-bottom-style:solid;border-bottom-width:1px}.bl-ns{border-left-style:solid;border-left-width:1px}.bn-ns{border-style:none;border-width:0}.br0-ns{border-radius:0}.br1-ns{border-radius:.125rem}.br2-ns{border-radius:.25rem}.br3-ns{border-radius:.5rem}.br4-ns{border-radius:1rem}.br-100-ns{border-radius:100%}.br-pill-ns{border-radius:9999px}.br--bottom-ns{border-top-left-radius:0;border-top-right-radius:0}.br--top-ns{border-bottom-right-radius:0}.br--right-ns,.br--top-ns{border-bottom-left-radius:0}.br--right-ns{border-top-left-radius:0}.br--left-ns{border-top-right-radius:0;border-bottom-right-radius:0}.br-inherit-ns{border-radius:inherit}.br-initial-ns{border-radius:initial}.br-unset-ns{border-radius:unset}.b--dotted-ns{border-style:dotted}.b--dashed-ns{border-style:dashed}.b--solid-ns{border-style:solid}.b--none-ns{border-style:none}.bw0-ns{border-width:0}.bw1-ns{border-width:.125rem}.bw2-ns{border-width:.25rem}.bw3-ns{border-width:.5rem}.bw4-ns{border-width:1rem}.bw5-ns{border-width:2rem}.bt-0-ns{border-top-width:0}.br-0-ns{border-right-width:0}.bb-0-ns{border-bottom-width:0}.bl-0-ns{border-left-width:0}.shadow-1-ns{box-shadow:0 0 4px 2px rgba(0,0,0,.2)}.shadow-2-ns{box-shadow:0 0 8px 2px rgba(0,0,0,.2)}.shadow-3-ns{box-shadow:2px 2px 4px 2px rgba(0,0,0,.2)}.shadow-4-ns{box-shadow:2px 2px 8px 0 rgba(0,0,0,.2)}.shadow-5-ns{box-shadow:4px 4px 8px 0 rgba(0,0,0,.2)}.top-0-ns{top:0}.left-0-ns{left:0}.right-0-ns{right:0}.bottom-0-ns{bottom:0}.top-1-ns{top:1rem}.left-1-ns{left:1rem}.right-1-ns{right:1rem}.bottom-1-ns{bottom:1rem}.top-2-ns{top:2rem}.left-2-ns{left:2rem}.right-2-ns{right:2rem}.bottom-2-ns{bottom:2rem}.top--1-ns{top:-1rem}.right--1-ns{right:-1rem}.bottom--1-ns{bottom:-1rem}.left--1-ns{left:-1rem}.top--2-ns{top:-2rem}.right--2-ns{right:-2rem}.bottom--2-ns{bottom:-2rem}.left--2-ns{left:-2rem}.absolute--fill-ns{top:0;right:0;bottom:0;left:0}.cl-ns{clear:left}.cr-ns{clear:right}.cb-ns{clear:both}.cn-ns{clear:none}.dn-ns{display:none}.di-ns{display:inline}.db-ns{display:block}.dib-ns{display:inline-block}.dit-ns{display:inline-table}.dt-ns{display:table}.dtc-ns{display:table-cell}.dt-row-ns{display:table-row}.dt-row-group-ns{display:table-row-group}.dt-column-ns{display:table-column}.dt-column-group-ns{display:table-column-group}.dt--fixed-ns{table-layout:fixed;width:100%}.flex-ns{display:flex}.inline-flex-ns{display:inline-flex}.flex-auto-ns{flex:1 1 auto;min-width:0;min-height:0}.flex-none-ns{flex:none}.flex-column-ns{flex-direction:column}.flex-row-ns{flex-direction:row}.flex-wrap-ns{flex-wrap:wrap}.flex-nowrap-ns{flex-wrap:nowrap}.flex-wrap-reverse-ns{flex-wrap:wrap-reverse}.flex-column-reverse-ns{flex-direction:column-reverse}.flex-row-reverse-ns{flex-direction:row-reverse}.items-start-ns{align-items:flex-start}.items-end-ns{align-items:flex-end}.items-center-ns{align-items:center}.items-baseline-ns{align-items:baseline}.items-stretch-ns{align-items:stretch}.self-start-ns{align-self:flex-start}.self-end-ns{align-self:flex-end}.self-center-ns{align-self:center}.self-baseline-ns{align-self:baseline}.self-stretch-ns{align-self:stretch}.justify-start-ns{justify-content:flex-start}.justify-end-ns{justify-content:flex-end}.justify-center-ns{justify-content:center}.justify-between-ns{justify-content:space-between}.justify-around-ns{justify-content:space-around}.content-start-ns{align-content:flex-start}.content-end-ns{align-content:flex-end}.content-center-ns{align-content:center}.content-between-ns{align-content:space-between}.content-around-ns{align-content:space-around}.content-stretch-ns{align-content:stretch}.order-0-ns{order:0}.order-1-ns{order:1}.order-2-ns{order:2}.order-3-ns{order:3}.order-4-ns{order:4}.order-5-ns{order:5}.order-6-ns{order:6}.order-7-ns{order:7}.order-8-ns{order:8}.order-last-ns{order:99999}.flex-grow-0-ns{flex-grow:0}.flex-grow-1-ns{flex-grow:1}.flex-shrink-0-ns{flex-shrink:0}.flex-shrink-1-ns{flex-shrink:1}.fl-ns{float:left}.fl-ns,.fr-ns{_display:inline}.fr-ns{float:right}.fn-ns{float:none}.i-ns{font-style:italic}.fs-normal-ns{font-style:normal}.normal-ns{font-weight:400}.b-ns{font-weight:700}.fw1-ns{font-weight:100}.fw2-ns{font-weight:200}.fw3-ns{font-weight:300}.fw4-ns{font-weight:400}.fw5-ns{font-weight:500}.fw6-ns{font-weight:600}.fw7-ns{font-weight:700}.fw8-ns{font-weight:800}.fw9-ns{font-weight:900}.h1-ns{height:1rem}.h2-ns{height:2rem}.h3-ns{height:4rem}.h4-ns{height:8rem}.h5-ns{height:16rem}.h-25-ns{height:25%}.h-50-ns{height:50%}.h-75-ns{height:75%}.h-100-ns{height:100%}.min-h-100-ns{min-height:100%}.vh-25-ns{height:25vh}.vh-50-ns{height:50vh}.vh-75-ns{height:75vh}.vh-100-ns{height:100vh}.min-vh-100-ns{min-height:100vh}.h-auto-ns{height:auto}.h-inherit-ns{height:inherit}.tracked-ns{letter-spacing:.1em}.tracked-tight-ns{letter-spacing:-.05em}.tracked-mega-ns{letter-spacing:.25em}.lh-solid-ns{line-height:1}.lh-title-ns{line-height:1.25}.lh-copy-ns{line-height:1.5}.mw-100-ns{max-width:100%}.mw1-ns{max-width:1rem}.mw2-ns{max-width:2rem}.mw3-ns{max-width:4rem}.mw4-ns{max-width:8rem}.mw5-ns{max-width:16rem}.mw6-ns{max-width:32rem}.mw7-ns{max-width:48rem}.mw8-ns{max-width:64rem}.mw9-ns{max-width:96rem}.mw-none-ns{max-width:none}.w1-ns{width:1rem}.w2-ns{width:2rem}.w3-ns{width:4rem}.w4-ns{width:8rem}.w5-ns{width:16rem}.w-10-ns{width:10%}.w-20-ns{width:20%}.w-25-ns{width:25%}.w-30-ns{width:30%}.w-33-ns{width:33%}.w-34-ns{width:34%}.w-40-ns{width:40%}.w-50-ns{width:50%}.w-60-ns{width:60%}.w-70-ns{width:70%}.w-75-ns{width:75%}.w-80-ns{width:80%}.w-90-ns{width:90%}.w-100-ns{width:100%}.w-third-ns{width:33.33333%}.w-two-thirds-ns{width:66.66667%}.w-auto-ns{width:auto}.overflow-visible-ns{overflow:visible}.overflow-hidden-ns{overflow:hidden}.overflow-scroll-ns{overflow:scroll}.overflow-auto-ns{overflow:auto}.overflow-x-visible-ns{overflow-x:visible}.overflow-x-hidden-ns{overflow-x:hidden}.overflow-x-scroll-ns{overflow-x:scroll}.overflow-x-auto-ns{overflow-x:auto}.overflow-y-visible-ns{overflow-y:visible}.overflow-y-hidden-ns{overflow-y:hidden}.overflow-y-scroll-ns{overflow-y:scroll}.overflow-y-auto-ns{overflow-y:auto}.static-ns{position:static}.relative-ns{position:relative}.absolute-ns{position:absolute}.fixed-ns{position:fixed}.rotate-45-ns{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.rotate-90-ns{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.rotate-135-ns{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.rotate-180-ns{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rotate-225-ns{-webkit-transform:rotate(225deg);transform:rotate(225deg)}.rotate-270-ns{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.rotate-315-ns{-webkit-transform:rotate(315deg);transform:rotate(315deg)}.pa0-ns{padding:0}.pa1-ns{padding:.25rem}.pa2-ns{padding:.5rem}.pa3-ns{padding:1rem}.pa4-ns{padding:2rem}.pa5-ns{padding:4rem}.pa6-ns{padding:8rem}.pa7-ns{padding:16rem}.pl0-ns{padding-left:0}.pl1-ns{padding-left:.25rem}.pl2-ns{padding-left:.5rem}.pl3-ns{padding-left:1rem}.pl4-ns{padding-left:2rem}.pl5-ns{padding-left:4rem}.pl6-ns{padding-left:8rem}.pl7-ns{padding-left:16rem}.pr0-ns{padding-right:0}.pr1-ns{padding-right:.25rem}.pr2-ns{padding-right:.5rem}.pr3-ns{padding-right:1rem}.pr4-ns{padding-right:2rem}.pr5-ns{padding-right:4rem}.pr6-ns{padding-right:8rem}.pr7-ns{padding-right:16rem}.pb0-ns{padding-bottom:0}.pb1-ns{padding-bottom:.25rem}.pb2-ns{padding-bottom:.5rem}.pb3-ns{padding-bottom:1rem}.pb4-ns{padding-bottom:2rem}.pb5-ns{padding-bottom:4rem}.pb6-ns{padding-bottom:8rem}.pb7-ns{padding-bottom:16rem}.pt0-ns{padding-top:0}.pt1-ns{padding-top:.25rem}.pt2-ns{padding-top:.5rem}.pt3-ns{padding-top:1rem}.pt4-ns{padding-top:2rem}.pt5-ns{padding-top:4rem}.pt6-ns{padding-top:8rem}.pt7-ns{padding-top:16rem}.pv0-ns{padding-top:0;padding-bottom:0}.pv1-ns{padding-top:.25rem;padding-bottom:.25rem}.pv2-ns{padding-top:.5rem;padding-bottom:.5rem}.pv3-ns{padding-top:1rem;padding-bottom:1rem}.pv4-ns{padding-top:2rem;padding-bottom:2rem}.pv5-ns{padding-top:4rem;padding-bottom:4rem}.pv6-ns{padding-top:8rem;padding-bottom:8rem}.pv7-ns{padding-top:16rem;padding-bottom:16rem}.ph0-ns{padding-left:0;padding-right:0}.ph1-ns{padding-left:.25rem;padding-right:.25rem}.ph2-ns{padding-left:.5rem;padding-right:.5rem}.ph3-ns{padding-left:1rem;padding-right:1rem}.ph4-ns{padding-left:2rem;padding-right:2rem}.ph5-ns{padding-left:4rem;padding-right:4rem}.ph6-ns{padding-left:8rem;padding-right:8rem}.ph7-ns{padding-left:16rem;padding-right:16rem}.ma0-ns{margin:0}.ma1-ns{margin:.25rem}.ma2-ns{margin:.5rem}.ma3-ns{margin:1rem}.ma4-ns{margin:2rem}.ma5-ns{margin:4rem}.ma6-ns{margin:8rem}.ma7-ns{margin:16rem}.ml0-ns{margin-left:0}.ml1-ns{margin-left:.25rem}.ml2-ns{margin-left:.5rem}.ml3-ns{margin-left:1rem}.ml4-ns{margin-left:2rem}.ml5-ns{margin-left:4rem}.ml6-ns{margin-left:8rem}.ml7-ns{margin-left:16rem}.mr0-ns{margin-right:0}.mr1-ns{margin-right:.25rem}.mr2-ns{margin-right:.5rem}.mr3-ns{margin-right:1rem}.mr4-ns{margin-right:2rem}.mr5-ns{margin-right:4rem}.mr6-ns{margin-right:8rem}.mr7-ns{margin-right:16rem}.mb0-ns{margin-bottom:0}.mb1-ns{margin-bottom:.25rem}.mb2-ns{margin-bottom:.5rem}.mb3-ns{margin-bottom:1rem}.mb4-ns{margin-bottom:2rem}.mb5-ns{margin-bottom:4rem}.mb6-ns{margin-bottom:8rem}.mb7-ns{margin-bottom:16rem}.mt0-ns{margin-top:0}.mt1-ns{margin-top:.25rem}.mt2-ns{margin-top:.5rem}.mt3-ns{margin-top:1rem}.mt4-ns{margin-top:2rem}.mt5-ns{margin-top:4rem}.mt6-ns{margin-top:8rem}.mt7-ns{margin-top:16rem}.mv0-ns{margin-top:0;margin-bottom:0}.mv1-ns{margin-top:.25rem;margin-bottom:.25rem}.mv2-ns{margin-top:.5rem;margin-bottom:.5rem}.mv3-ns{margin-top:1rem;margin-bottom:1rem}.mv4-ns{margin-top:2rem;margin-bottom:2rem}.mv5-ns{margin-top:4rem;margin-bottom:4rem}.mv6-ns{margin-top:8rem;margin-bottom:8rem}.mv7-ns{margin-top:16rem;margin-bottom:16rem}.mh0-ns{margin-left:0;margin-right:0}.mh1-ns{margin-left:.25rem;margin-right:.25rem}.mh2-ns{margin-left:.5rem;margin-right:.5rem}.mh3-ns{margin-left:1rem;margin-right:1rem}.mh4-ns{margin-left:2rem;margin-right:2rem}.mh5-ns{margin-left:4rem;margin-right:4rem}.mh6-ns{margin-left:8rem;margin-right:8rem}.mh7-ns{margin-left:16rem;margin-right:16rem}.na1-ns{margin:-.25rem}.na2-ns{margin:-.5rem}.na3-ns{margin:-1rem}.na4-ns{margin:-2rem}.na5-ns{margin:-4rem}.na6-ns{margin:-8rem}.na7-ns{margin:-16rem}.nl1-ns{margin-left:-.25rem}.nl2-ns{margin-left:-.5rem}.nl3-ns{margin-left:-1rem}.nl4-ns{margin-left:-2rem}.nl5-ns{margin-left:-4rem}.nl6-ns{margin-left:-8rem}.nl7-ns{margin-left:-16rem}.nr1-ns{margin-right:-.25rem}.nr2-ns{margin-right:-.5rem}.nr3-ns{margin-right:-1rem}.nr4-ns{margin-right:-2rem}.nr5-ns{margin-right:-4rem}.nr6-ns{margin-right:-8rem}.nr7-ns{margin-right:-16rem}.nb1-ns{margin-bottom:-.25rem}.nb2-ns{margin-bottom:-.5rem}.nb3-ns{margin-bottom:-1rem}.nb4-ns{margin-bottom:-2rem}.nb5-ns{margin-bottom:-4rem}.nb6-ns{margin-bottom:-8rem}.nb7-ns{margin-bottom:-16rem}.nt1-ns{margin-top:-.25rem}.nt2-ns{margin-top:-.5rem}.nt3-ns{margin-top:-1rem}.nt4-ns{margin-top:-2rem}.nt5-ns{margin-top:-4rem}.nt6-ns{margin-top:-8rem}.nt7-ns{margin-top:-16rem}.strike-ns{text-decoration:line-through}.underline-ns{text-decoration:underline}.no-underline-ns{text-decoration:none}.tl-ns{text-align:left}.tr-ns{text-align:right}.tc-ns{text-align:center}.tj-ns{text-align:justify}.ttc-ns{text-transform:capitalize}.ttl-ns{text-transform:lowercase}.ttu-ns{text-transform:uppercase}.ttn-ns{text-transform:none}.f-6-ns,.f-headline-ns{font-size:6rem}.f-5-ns,.f-subheadline-ns{font-size:5rem}.f1-ns{font-size:3rem}.f2-ns{font-size:2.25rem}.f3-ns{font-size:1.5rem}.f4-ns{font-size:1.25rem}.f5-ns{font-size:1rem}.f6-ns{font-size:.875rem}.f7-ns{font-size:.75rem}.measure-ns{max-width:30em}.measure-wide-ns{max-width:34em}.measure-narrow-ns{max-width:20em}.indent-ns{text-indent:1em;margin-top:0;margin-bottom:0}.small-caps-ns{font-variant:small-caps}.truncate-ns{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.center-ns{margin-left:auto}.center-ns,.mr-auto-ns{margin-right:auto}.ml-auto-ns{margin-left:auto}.clip-ns{position:fixed!important;_position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.ws-normal-ns{white-space:normal}.nowrap-ns{white-space:nowrap}.pre-ns{white-space:pre}.v-base-ns{vertical-align:baseline}.v-mid-ns{vertical-align:middle}.v-top-ns{vertical-align:top}.v-btm-ns{vertical-align:bottom}}@media screen and (min-width:30em) and (max-width:60em){.aspect-ratio-m{height:0;position:relative}.aspect-ratio--16x9-m{padding-bottom:56.25%}.aspect-ratio--9x16-m{padding-bottom:177.77%}.aspect-ratio--4x3-m{padding-bottom:75%}.aspect-ratio--3x4-m{padding-bottom:133.33%}.aspect-ratio--6x4-m{padding-bottom:66.6%}.aspect-ratio--4x6-m{padding-bottom:150%}.aspect-ratio--8x5-m{padding-bottom:62.5%}.aspect-ratio--5x8-m{padding-bottom:160%}.aspect-ratio--7x5-m{padding-bottom:71.42%}.aspect-ratio--5x7-m{padding-bottom:140%}.aspect-ratio--1x1-m{padding-bottom:100%}.aspect-ratio--object-m{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:100}.cover-m{background-size:cover!important}.contain-m{background-size:contain!important}.bg-center-m{background-position:50%}.bg-center-m,.bg-top-m{background-repeat:no-repeat}.bg-top-m{background-position:top}.bg-right-m{background-position:100%}.bg-bottom-m,.bg-right-m{background-repeat:no-repeat}.bg-bottom-m{background-position:bottom}.bg-left-m{background-repeat:no-repeat;background-position:0}.outline-m{outline:1px solid}.outline-transparent-m{outline:1px solid transparent}.outline-0-m{outline:0}.ba-m{border-style:solid;border-width:1px}.bt-m{border-top-style:solid;border-top-width:1px}.br-m{border-right-style:solid;border-right-width:1px}.bb-m{border-bottom-style:solid;border-bottom-width:1px}.bl-m{border-left-style:solid;border-left-width:1px}.bn-m{border-style:none;border-width:0}.br0-m{border-radius:0}.br1-m{border-radius:.125rem}.br2-m{border-radius:.25rem}.br3-m{border-radius:.5rem}.br4-m{border-radius:1rem}.br-100-m{border-radius:100%}.br-pill-m{border-radius:9999px}.br--bottom-m{border-top-left-radius:0;border-top-right-radius:0}.br--top-m{border-bottom-right-radius:0}.br--right-m,.br--top-m{border-bottom-left-radius:0}.br--right-m{border-top-left-radius:0}.br--left-m{border-top-right-radius:0;border-bottom-right-radius:0}.br-inherit-m{border-radius:inherit}.br-initial-m{border-radius:initial}.br-unset-m{border-radius:unset}.b--dotted-m{border-style:dotted}.b--dashed-m{border-style:dashed}.b--solid-m{border-style:solid}.b--none-m{border-style:none}.bw0-m{border-width:0}.bw1-m{border-width:.125rem}.bw2-m{border-width:.25rem}.bw3-m{border-width:.5rem}.bw4-m{border-width:1rem}.bw5-m{border-width:2rem}.bt-0-m{border-top-width:0}.br-0-m{border-right-width:0}.bb-0-m{border-bottom-width:0}.bl-0-m{border-left-width:0}.shadow-1-m{box-shadow:0 0 4px 2px rgba(0,0,0,.2)}.shadow-2-m{box-shadow:0 0 8px 2px rgba(0,0,0,.2)}.shadow-3-m{box-shadow:2px 2px 4px 2px rgba(0,0,0,.2)}.shadow-4-m{box-shadow:2px 2px 8px 0 rgba(0,0,0,.2)}.shadow-5-m{box-shadow:4px 4px 8px 0 rgba(0,0,0,.2)}.top-0-m{top:0}.left-0-m{left:0}.right-0-m{right:0}.bottom-0-m{bottom:0}.top-1-m{top:1rem}.left-1-m{left:1rem}.right-1-m{right:1rem}.bottom-1-m{bottom:1rem}.top-2-m{top:2rem}.left-2-m{left:2rem}.right-2-m{right:2rem}.bottom-2-m{bottom:2rem}.top--1-m{top:-1rem}.right--1-m{right:-1rem}.bottom--1-m{bottom:-1rem}.left--1-m{left:-1rem}.top--2-m{top:-2rem}.right--2-m{right:-2rem}.bottom--2-m{bottom:-2rem}.left--2-m{left:-2rem}.absolute--fill-m{top:0;right:0;bottom:0;left:0}.cl-m{clear:left}.cr-m{clear:right}.cb-m{clear:both}.cn-m{clear:none}.dn-m{display:none}.di-m{display:inline}.db-m{display:block}.dib-m{display:inline-block}.dit-m{display:inline-table}.dt-m{display:table}.dtc-m{display:table-cell}.dt-row-m{display:table-row}.dt-row-group-m{display:table-row-group}.dt-column-m{display:table-column}.dt-column-group-m{display:table-column-group}.dt--fixed-m{table-layout:fixed;width:100%}.flex-m{display:flex}.inline-flex-m{display:inline-flex}.flex-auto-m{flex:1 1 auto;min-width:0;min-height:0}.flex-none-m{flex:none}.flex-column-m{flex-direction:column}.flex-row-m{flex-direction:row}.flex-wrap-m{flex-wrap:wrap}.flex-nowrap-m{flex-wrap:nowrap}.flex-wrap-reverse-m{flex-wrap:wrap-reverse}.flex-column-reverse-m{flex-direction:column-reverse}.flex-row-reverse-m{flex-direction:row-reverse}.items-start-m{align-items:flex-start}.items-end-m{align-items:flex-end}.items-center-m{align-items:center}.items-baseline-m{align-items:baseline}.items-stretch-m{align-items:stretch}.self-start-m{align-self:flex-start}.self-end-m{align-self:flex-end}.self-center-m{align-self:center}.self-baseline-m{align-self:baseline}.self-stretch-m{align-self:stretch}.justify-start-m{justify-content:flex-start}.justify-end-m{justify-content:flex-end}.justify-center-m{justify-content:center}.justify-between-m{justify-content:space-between}.justify-around-m{justify-content:space-around}.content-start-m{align-content:flex-start}.content-end-m{align-content:flex-end}.content-center-m{align-content:center}.content-between-m{align-content:space-between}.content-around-m{align-content:space-around}.content-stretch-m{align-content:stretch}.order-0-m{order:0}.order-1-m{order:1}.order-2-m{order:2}.order-3-m{order:3}.order-4-m{order:4}.order-5-m{order:5}.order-6-m{order:6}.order-7-m{order:7}.order-8-m{order:8}.order-last-m{order:99999}.flex-grow-0-m{flex-grow:0}.flex-grow-1-m{flex-grow:1}.flex-shrink-0-m{flex-shrink:0}.flex-shrink-1-m{flex-shrink:1}.fl-m{float:left}.fl-m,.fr-m{_display:inline}.fr-m{float:right}.fn-m{float:none}.i-m{font-style:italic}.fs-normal-m{font-style:normal}.normal-m{font-weight:400}.b-m{font-weight:700}.fw1-m{font-weight:100}.fw2-m{font-weight:200}.fw3-m{font-weight:300}.fw4-m{font-weight:400}.fw5-m{font-weight:500}.fw6-m{font-weight:600}.fw7-m{font-weight:700}.fw8-m{font-weight:800}.fw9-m{font-weight:900}.h1-m{height:1rem}.h2-m{height:2rem}.h3-m{height:4rem}.h4-m{height:8rem}.h5-m{height:16rem}.h-25-m{height:25%}.h-50-m{height:50%}.h-75-m{height:75%}.h-100-m{height:100%}.min-h-100-m{min-height:100%}.vh-25-m{height:25vh}.vh-50-m{height:50vh}.vh-75-m{height:75vh}.vh-100-m{height:100vh}.min-vh-100-m{min-height:100vh}.h-auto-m{height:auto}.h-inherit-m{height:inherit}.tracked-m{letter-spacing:.1em}.tracked-tight-m{letter-spacing:-.05em}.tracked-mega-m{letter-spacing:.25em}.lh-solid-m{line-height:1}.lh-title-m{line-height:1.25}.lh-copy-m{line-height:1.5}.mw-100-m{max-width:100%}.mw1-m{max-width:1rem}.mw2-m{max-width:2rem}.mw3-m{max-width:4rem}.mw4-m{max-width:8rem}.mw5-m{max-width:16rem}.mw6-m{max-width:32rem}.mw7-m{max-width:48rem}.mw8-m{max-width:64rem}.mw9-m{max-width:96rem}.mw-none-m{max-width:none}.w1-m{width:1rem}.w2-m{width:2rem}.w3-m{width:4rem}.w4-m{width:8rem}.w5-m{width:16rem}.w-10-m{width:10%}.w-20-m{width:20%}.w-25-m{width:25%}.w-30-m{width:30%}.w-33-m{width:33%}.w-34-m{width:34%}.w-40-m{width:40%}.w-50-m{width:50%}.w-60-m{width:60%}.w-70-m{width:70%}.w-75-m{width:75%}.w-80-m{width:80%}.w-90-m{width:90%}.w-100-m{width:100%}.w-third-m{width:33.33333%}.w-two-thirds-m{width:66.66667%}.w-auto-m{width:auto}.overflow-visible-m{overflow:visible}.overflow-hidden-m{overflow:hidden}.overflow-scroll-m{overflow:scroll}.overflow-auto-m{overflow:auto}.overflow-x-visible-m{overflow-x:visible}.overflow-x-hidden-m{overflow-x:hidden}.overflow-x-scroll-m{overflow-x:scroll}.overflow-x-auto-m{overflow-x:auto}.overflow-y-visible-m{overflow-y:visible}.overflow-y-hidden-m{overflow-y:hidden}.overflow-y-scroll-m{overflow-y:scroll}.overflow-y-auto-m{overflow-y:auto}.static-m{position:static}.relative-m{position:relative}.absolute-m{position:absolute}.fixed-m{position:fixed}.rotate-45-m{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.rotate-90-m{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.rotate-135-m{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.rotate-180-m{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rotate-225-m{-webkit-transform:rotate(225deg);transform:rotate(225deg)}.rotate-270-m{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.rotate-315-m{-webkit-transform:rotate(315deg);transform:rotate(315deg)}.pa0-m{padding:0}.pa1-m{padding:.25rem}.pa2-m{padding:.5rem}.pa3-m{padding:1rem}.pa4-m{padding:2rem}.pa5-m{padding:4rem}.pa6-m{padding:8rem}.pa7-m{padding:16rem}.pl0-m{padding-left:0}.pl1-m{padding-left:.25rem}.pl2-m{padding-left:.5rem}.pl3-m{padding-left:1rem}.pl4-m{padding-left:2rem}.pl5-m{padding-left:4rem}.pl6-m{padding-left:8rem}.pl7-m{padding-left:16rem}.pr0-m{padding-right:0}.pr1-m{padding-right:.25rem}.pr2-m{padding-right:.5rem}.pr3-m{padding-right:1rem}.pr4-m{padding-right:2rem}.pr5-m{padding-right:4rem}.pr6-m{padding-right:8rem}.pr7-m{padding-right:16rem}.pb0-m{padding-bottom:0}.pb1-m{padding-bottom:.25rem}.pb2-m{padding-bottom:.5rem}.pb3-m{padding-bottom:1rem}.pb4-m{padding-bottom:2rem}.pb5-m{padding-bottom:4rem}.pb6-m{padding-bottom:8rem}.pb7-m{padding-bottom:16rem}.pt0-m{padding-top:0}.pt1-m{padding-top:.25rem}.pt2-m{padding-top:.5rem}.pt3-m{padding-top:1rem}.pt4-m{padding-top:2rem}.pt5-m{padding-top:4rem}.pt6-m{padding-top:8rem}.pt7-m{padding-top:16rem}.pv0-m{padding-top:0;padding-bottom:0}.pv1-m{padding-top:.25rem;padding-bottom:.25rem}.pv2-m{padding-top:.5rem;padding-bottom:.5rem}.pv3-m{padding-top:1rem;padding-bottom:1rem}.pv4-m{padding-top:2rem;padding-bottom:2rem}.pv5-m{padding-top:4rem;padding-bottom:4rem}.pv6-m{padding-top:8rem;padding-bottom:8rem}.pv7-m{padding-top:16rem;padding-bottom:16rem}.ph0-m{padding-left:0;padding-right:0}.ph1-m{padding-left:.25rem;padding-right:.25rem}.ph2-m{padding-left:.5rem;padding-right:.5rem}.ph3-m{padding-left:1rem;padding-right:1rem}.ph4-m{padding-left:2rem;padding-right:2rem}.ph5-m{padding-left:4rem;padding-right:4rem}.ph6-m{padding-left:8rem;padding-right:8rem}.ph7-m{padding-left:16rem;padding-right:16rem}.ma0-m{margin:0}.ma1-m{margin:.25rem}.ma2-m{margin:.5rem}.ma3-m{margin:1rem}.ma4-m{margin:2rem}.ma5-m{margin:4rem}.ma6-m{margin:8rem}.ma7-m{margin:16rem}.ml0-m{margin-left:0}.ml1-m{margin-left:.25rem}.ml2-m{margin-left:.5rem}.ml3-m{margin-left:1rem}.ml4-m{margin-left:2rem}.ml5-m{margin-left:4rem}.ml6-m{margin-left:8rem}.ml7-m{margin-left:16rem}.mr0-m{margin-right:0}.mr1-m{margin-right:.25rem}.mr2-m{margin-right:.5rem}.mr3-m{margin-right:1rem}.mr4-m{margin-right:2rem}.mr5-m{margin-right:4rem}.mr6-m{margin-right:8rem}.mr7-m{margin-right:16rem}.mb0-m{margin-bottom:0}.mb1-m{margin-bottom:.25rem}.mb2-m{margin-bottom:.5rem}.mb3-m{margin-bottom:1rem}.mb4-m{margin-bottom:2rem}.mb5-m{margin-bottom:4rem}.mb6-m{margin-bottom:8rem}.mb7-m{margin-bottom:16rem}.mt0-m{margin-top:0}.mt1-m{margin-top:.25rem}.mt2-m{margin-top:.5rem}.mt3-m{margin-top:1rem}.mt4-m{margin-top:2rem}.mt5-m{margin-top:4rem}.mt6-m{margin-top:8rem}.mt7-m{margin-top:16rem}.mv0-m{margin-top:0;margin-bottom:0}.mv1-m{margin-top:.25rem;margin-bottom:.25rem}.mv2-m{margin-top:.5rem;margin-bottom:.5rem}.mv3-m{margin-top:1rem;margin-bottom:1rem}.mv4-m{margin-top:2rem;margin-bottom:2rem}.mv5-m{margin-top:4rem;margin-bottom:4rem}.mv6-m{margin-top:8rem;margin-bottom:8rem}.mv7-m{margin-top:16rem;margin-bottom:16rem}.mh0-m{margin-left:0;margin-right:0}.mh1-m{margin-left:.25rem;margin-right:.25rem}.mh2-m{margin-left:.5rem;margin-right:.5rem}.mh3-m{margin-left:1rem;margin-right:1rem}.mh4-m{margin-left:2rem;margin-right:2rem}.mh5-m{margin-left:4rem;margin-right:4rem}.mh6-m{margin-left:8rem;margin-right:8rem}.mh7-m{margin-left:16rem;margin-right:16rem}.na1-m{margin:-.25rem}.na2-m{margin:-.5rem}.na3-m{margin:-1rem}.na4-m{margin:-2rem}.na5-m{margin:-4rem}.na6-m{margin:-8rem}.na7-m{margin:-16rem}.nl1-m{margin-left:-.25rem}.nl2-m{margin-left:-.5rem}.nl3-m{margin-left:-1rem}.nl4-m{margin-left:-2rem}.nl5-m{margin-left:-4rem}.nl6-m{margin-left:-8rem}.nl7-m{margin-left:-16rem}.nr1-m{margin-right:-.25rem}.nr2-m{margin-right:-.5rem}.nr3-m{margin-right:-1rem}.nr4-m{margin-right:-2rem}.nr5-m{margin-right:-4rem}.nr6-m{margin-right:-8rem}.nr7-m{margin-right:-16rem}.nb1-m{margin-bottom:-.25rem}.nb2-m{margin-bottom:-.5rem}.nb3-m{margin-bottom:-1rem}.nb4-m{margin-bottom:-2rem}.nb5-m{margin-bottom:-4rem}.nb6-m{margin-bottom:-8rem}.nb7-m{margin-bottom:-16rem}.nt1-m{margin-top:-.25rem}.nt2-m{margin-top:-.5rem}.nt3-m{margin-top:-1rem}.nt4-m{margin-top:-2rem}.nt5-m{margin-top:-4rem}.nt6-m{margin-top:-8rem}.nt7-m{margin-top:-16rem}.strike-m{text-decoration:line-through}.underline-m{text-decoration:underline}.no-underline-m{text-decoration:none}.tl-m{text-align:left}.tr-m{text-align:right}.tc-m{text-align:center}.tj-m{text-align:justify}.ttc-m{text-transform:capitalize}.ttl-m{text-transform:lowercase}.ttu-m{text-transform:uppercase}.ttn-m{text-transform:none}.f-6-m,.f-headline-m{font-size:6rem}.f-5-m,.f-subheadline-m{font-size:5rem}.f1-m{font-size:3rem}.f2-m{font-size:2.25rem}.f3-m{font-size:1.5rem}.f4-m{font-size:1.25rem}.f5-m{font-size:1rem}.f6-m{font-size:.875rem}.f7-m{font-size:.75rem}.measure-m{max-width:30em}.measure-wide-m{max-width:34em}.measure-narrow-m{max-width:20em}.indent-m{text-indent:1em;margin-top:0;margin-bottom:0}.small-caps-m{font-variant:small-caps}.truncate-m{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.center-m{margin-left:auto}.center-m,.mr-auto-m{margin-right:auto}.ml-auto-m{margin-left:auto}.clip-m{position:fixed!important;_position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.ws-normal-m{white-space:normal}.nowrap-m{white-space:nowrap}.pre-m{white-space:pre}.v-base-m{vertical-align:baseline}.v-mid-m{vertical-align:middle}.v-top-m{vertical-align:top}.v-btm-m{vertical-align:bottom}}@media screen and (min-width:60em){.aspect-ratio-l{height:0;position:relative}.aspect-ratio--16x9-l{padding-bottom:56.25%}.aspect-ratio--9x16-l{padding-bottom:177.77%}.aspect-ratio--4x3-l{padding-bottom:75%}.aspect-ratio--3x4-l{padding-bottom:133.33%}.aspect-ratio--6x4-l{padding-bottom:66.6%}.aspect-ratio--4x6-l{padding-bottom:150%}.aspect-ratio--8x5-l{padding-bottom:62.5%}.aspect-ratio--5x8-l{padding-bottom:160%}.aspect-ratio--7x5-l{padding-bottom:71.42%}.aspect-ratio--5x7-l{padding-bottom:140%}.aspect-ratio--1x1-l{padding-bottom:100%}.aspect-ratio--object-l{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:100}.cover-l{background-size:cover!important}.contain-l{background-size:contain!important}.bg-center-l{background-position:50%}.bg-center-l,.bg-top-l{background-repeat:no-repeat}.bg-top-l{background-position:top}.bg-right-l{background-position:100%}.bg-bottom-l,.bg-right-l{background-repeat:no-repeat}.bg-bottom-l{background-position:bottom}.bg-left-l{background-repeat:no-repeat;background-position:0}.outline-l{outline:1px solid}.outline-transparent-l{outline:1px solid transparent}.outline-0-l{outline:0}.ba-l{border-style:solid;border-width:1px}.bt-l{border-top-style:solid;border-top-width:1px}.br-l{border-right-style:solid;border-right-width:1px}.bb-l{border-bottom-style:solid;border-bottom-width:1px}.bl-l{border-left-style:solid;border-left-width:1px}.bn-l{border-style:none;border-width:0}.br0-l{border-radius:0}.br1-l{border-radius:.125rem}.br2-l{border-radius:.25rem}.br3-l{border-radius:.5rem}.br4-l{border-radius:1rem}.br-100-l{border-radius:100%}.br-pill-l{border-radius:9999px}.br--bottom-l{border-top-left-radius:0;border-top-right-radius:0}.br--top-l{border-bottom-right-radius:0}.br--right-l,.br--top-l{border-bottom-left-radius:0}.br--right-l{border-top-left-radius:0}.br--left-l{border-top-right-radius:0;border-bottom-right-radius:0}.br-inherit-l{border-radius:inherit}.br-initial-l{border-radius:initial}.br-unset-l{border-radius:unset}.b--dotted-l{border-style:dotted}.b--dashed-l{border-style:dashed}.b--solid-l{border-style:solid}.b--none-l{border-style:none}.bw0-l{border-width:0}.bw1-l{border-width:.125rem}.bw2-l{border-width:.25rem}.bw3-l{border-width:.5rem}.bw4-l{border-width:1rem}.bw5-l{border-width:2rem}.bt-0-l{border-top-width:0}.br-0-l{border-right-width:0}.bb-0-l{border-bottom-width:0}.bl-0-l{border-left-width:0}.shadow-1-l{box-shadow:0 0 4px 2px rgba(0,0,0,.2)}.shadow-2-l{box-shadow:0 0 8px 2px rgba(0,0,0,.2)}.shadow-3-l{box-shadow:2px 2px 4px 2px rgba(0,0,0,.2)}.shadow-4-l{box-shadow:2px 2px 8px 0 rgba(0,0,0,.2)}.shadow-5-l{box-shadow:4px 4px 8px 0 rgba(0,0,0,.2)}.top-0-l{top:0}.left-0-l{left:0}.right-0-l{right:0}.bottom-0-l{bottom:0}.top-1-l{top:1rem}.left-1-l{left:1rem}.right-1-l{right:1rem}.bottom-1-l{bottom:1rem}.top-2-l{top:2rem}.left-2-l{left:2rem}.right-2-l{right:2rem}.bottom-2-l{bottom:2rem}.top--1-l{top:-1rem}.right--1-l{right:-1rem}.bottom--1-l{bottom:-1rem}.left--1-l{left:-1rem}.top--2-l{top:-2rem}.right--2-l{right:-2rem}.bottom--2-l{bottom:-2rem}.left--2-l{left:-2rem}.absolute--fill-l{top:0;right:0;bottom:0;left:0}.cl-l{clear:left}.cr-l{clear:right}.cb-l{clear:both}.cn-l{clear:none}.dn-l{display:none}.di-l{display:inline}.db-l{display:block}.dib-l{display:inline-block}.dit-l{display:inline-table}.dt-l{display:table}.dtc-l{display:table-cell}.dt-row-l{display:table-row}.dt-row-group-l{display:table-row-group}.dt-column-l{display:table-column}.dt-column-group-l{display:table-column-group}.dt--fixed-l{table-layout:fixed;width:100%}.flex-l{display:flex}.inline-flex-l{display:inline-flex}.flex-auto-l{flex:1 1 auto;min-width:0;min-height:0}.flex-none-l{flex:none}.flex-column-l{flex-direction:column}.flex-row-l{flex-direction:row}.flex-wrap-l{flex-wrap:wrap}.flex-nowrap-l{flex-wrap:nowrap}.flex-wrap-reverse-l{flex-wrap:wrap-reverse}.flex-column-reverse-l{flex-direction:column-reverse}.flex-row-reverse-l{flex-direction:row-reverse}.items-start-l{align-items:flex-start}.items-end-l{align-items:flex-end}.items-center-l{align-items:center}.items-baseline-l{align-items:baseline}.items-stretch-l{align-items:stretch}.self-start-l{align-self:flex-start}.self-end-l{align-self:flex-end}.self-center-l{align-self:center}.self-baseline-l{align-self:baseline}.self-stretch-l{align-self:stretch}.justify-start-l{justify-content:flex-start}.justify-end-l{justify-content:flex-end}.justify-center-l{justify-content:center}.justify-between-l{justify-content:space-between}.justify-around-l{justify-content:space-around}.content-start-l{align-content:flex-start}.content-end-l{align-content:flex-end}.content-center-l{align-content:center}.content-between-l{align-content:space-between}.content-around-l{align-content:space-around}.content-stretch-l{align-content:stretch}.order-0-l{order:0}.order-1-l{order:1}.order-2-l{order:2}.order-3-l{order:3}.order-4-l{order:4}.order-5-l{order:5}.order-6-l{order:6}.order-7-l{order:7}.order-8-l{order:8}.order-last-l{order:99999}.flex-grow-0-l{flex-grow:0}.flex-grow-1-l{flex-grow:1}.flex-shrink-0-l{flex-shrink:0}.flex-shrink-1-l{flex-shrink:1}.fl-l{float:left}.fl-l,.fr-l{_display:inline}.fr-l{float:right}.fn-l{float:none}.i-l{font-style:italic}.fs-normal-l{font-style:normal}.normal-l{font-weight:400}.b-l{font-weight:700}.fw1-l{font-weight:100}.fw2-l{font-weight:200}.fw3-l{font-weight:300}.fw4-l{font-weight:400}.fw5-l{font-weight:500}.fw6-l{font-weight:600}.fw7-l{font-weight:700}.fw8-l{font-weight:800}.fw9-l{font-weight:900}.h1-l{height:1rem}.h2-l{height:2rem}.h3-l{height:4rem}.h4-l{height:8rem}.h5-l{height:16rem}.h-25-l{height:25%}.h-50-l{height:50%}.h-75-l{height:75%}.h-100-l{height:100%}.min-h-100-l{min-height:100%}.vh-25-l{height:25vh}.vh-50-l{height:50vh}.vh-75-l{height:75vh}.vh-100-l{height:100vh}.min-vh-100-l{min-height:100vh}.h-auto-l{height:auto}.h-inherit-l{height:inherit}.tracked-l{letter-spacing:.1em}.tracked-tight-l{letter-spacing:-.05em}.tracked-mega-l{letter-spacing:.25em}.lh-solid-l{line-height:1}.lh-title-l{line-height:1.25}.lh-copy-l{line-height:1.5}.mw-100-l{max-width:100%}.mw1-l{max-width:1rem}.mw2-l{max-width:2rem}.mw3-l{max-width:4rem}.mw4-l{max-width:8rem}.mw5-l{max-width:16rem}.mw6-l{max-width:32rem}.mw7-l{max-width:48rem}.mw8-l{max-width:64rem}.mw9-l{max-width:96rem}.mw-none-l{max-width:none}.w1-l{width:1rem}.w2-l{width:2rem}.w3-l{width:4rem}.w4-l{width:8rem}.w5-l{width:16rem}.w-10-l{width:10%}.w-20-l{width:20%}.w-25-l{width:25%}.w-30-l{width:30%}.w-33-l{width:33%}.w-34-l{width:34%}.w-40-l{width:40%}.w-50-l{width:50%}.w-60-l{width:60%}.w-70-l{width:70%}.w-75-l{width:75%}.w-80-l{width:80%}.w-90-l{width:90%}.w-100-l{width:100%}.w-third-l{width:33.33333%}.w-two-thirds-l{width:66.66667%}.w-auto-l{width:auto}.overflow-visible-l{overflow:visible}.overflow-hidden-l{overflow:hidden}.overflow-scroll-l{overflow:scroll}.overflow-auto-l{overflow:auto}.overflow-x-visible-l{overflow-x:visible}.overflow-x-hidden-l{overflow-x:hidden}.overflow-x-scroll-l{overflow-x:scroll}.overflow-x-auto-l{overflow-x:auto}.overflow-y-visible-l{overflow-y:visible}.overflow-y-hidden-l{overflow-y:hidden}.overflow-y-scroll-l{overflow-y:scroll}.overflow-y-auto-l{overflow-y:auto}.static-l{position:static}.relative-l{position:relative}.absolute-l{position:absolute}.fixed-l{position:fixed}.rotate-45-l{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.rotate-90-l{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.rotate-135-l{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.rotate-180-l{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rotate-225-l{-webkit-transform:rotate(225deg);transform:rotate(225deg)}.rotate-270-l{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.rotate-315-l{-webkit-transform:rotate(315deg);transform:rotate(315deg)}.pa0-l{padding:0}.pa1-l{padding:.25rem}.pa2-l{padding:.5rem}.pa3-l{padding:1rem}.pa4-l{padding:2rem}.pa5-l{padding:4rem}.pa6-l{padding:8rem}.pa7-l{padding:16rem}.pl0-l{padding-left:0}.pl1-l{padding-left:.25rem}.pl2-l{padding-left:.5rem}.pl3-l{padding-left:1rem}.pl4-l{padding-left:2rem}.pl5-l{padding-left:4rem}.pl6-l{padding-left:8rem}.pl7-l{padding-left:16rem}.pr0-l{padding-right:0}.pr1-l{padding-right:.25rem}.pr2-l{padding-right:.5rem}.pr3-l{padding-right:1rem}.pr4-l{padding-right:2rem}.pr5-l{padding-right:4rem}.pr6-l{padding-right:8rem}.pr7-l{padding-right:16rem}.pb0-l{padding-bottom:0}.pb1-l{padding-bottom:.25rem}.pb2-l{padding-bottom:.5rem}.pb3-l{padding-bottom:1rem}.pb4-l{padding-bottom:2rem}.pb5-l{padding-bottom:4rem}.pb6-l{padding-bottom:8rem}.pb7-l{padding-bottom:16rem}.pt0-l{padding-top:0}.pt1-l{padding-top:.25rem}.pt2-l{padding-top:.5rem}.pt3-l{padding-top:1rem}.pt4-l{padding-top:2rem}.pt5-l{padding-top:4rem}.pt6-l{padding-top:8rem}.pt7-l{padding-top:16rem}.pv0-l{padding-top:0;padding-bottom:0}.pv1-l{padding-top:.25rem;padding-bottom:.25rem}.pv2-l{padding-top:.5rem;padding-bottom:.5rem}.pv3-l{padding-top:1rem;padding-bottom:1rem}.pv4-l{padding-top:2rem;padding-bottom:2rem}.pv5-l{padding-top:4rem;padding-bottom:4rem}.pv6-l{padding-top:8rem;padding-bottom:8rem}.pv7-l{padding-top:16rem;padding-bottom:16rem}.ph0-l{padding-left:0;padding-right:0}.ph1-l{padding-left:.25rem;padding-right:.25rem}.ph2-l{padding-left:.5rem;padding-right:.5rem}.ph3-l{padding-left:1rem;padding-right:1rem}.ph4-l{padding-left:2rem;padding-right:2rem}.ph5-l{padding-left:4rem;padding-right:4rem}.ph6-l{padding-left:8rem;padding-right:8rem}.ph7-l{padding-left:16rem;padding-right:16rem}.ma0-l{margin:0}.ma1-l{margin:.25rem}.ma2-l{margin:.5rem}.ma3-l{margin:1rem}.ma4-l{margin:2rem}.ma5-l{margin:4rem}.ma6-l{margin:8rem}.ma7-l{margin:16rem}.ml0-l{margin-left:0}.ml1-l{margin-left:.25rem}.ml2-l{margin-left:.5rem}.ml3-l{margin-left:1rem}.ml4-l{margin-left:2rem}.ml5-l{margin-left:4rem}.ml6-l{margin-left:8rem}.ml7-l{margin-left:16rem}.mr0-l{margin-right:0}.mr1-l{margin-right:.25rem}.mr2-l{margin-right:.5rem}.mr3-l{margin-right:1rem}.mr4-l{margin-right:2rem}.mr5-l{margin-right:4rem}.mr6-l{margin-right:8rem}.mr7-l{margin-right:16rem}.mb0-l{margin-bottom:0}.mb1-l{margin-bottom:.25rem}.mb2-l{margin-bottom:.5rem}.mb3-l{margin-bottom:1rem}.mb4-l{margin-bottom:2rem}.mb5-l{margin-bottom:4rem}.mb6-l{margin-bottom:8rem}.mb7-l{margin-bottom:16rem}.mt0-l{margin-top:0}.mt1-l{margin-top:.25rem}.mt2-l{margin-top:.5rem}.mt3-l{margin-top:1rem}.mt4-l{margin-top:2rem}.mt5-l{margin-top:4rem}.mt6-l{margin-top:8rem}.mt7-l{margin-top:16rem}.mv0-l{margin-top:0;margin-bottom:0}.mv1-l{margin-top:.25rem;margin-bottom:.25rem}.mv2-l{margin-top:.5rem;margin-bottom:.5rem}.mv3-l{margin-top:1rem;margin-bottom:1rem}.mv4-l{margin-top:2rem;margin-bottom:2rem}.mv5-l{margin-top:4rem;margin-bottom:4rem}.mv6-l{margin-top:8rem;margin-bottom:8rem}.mv7-l{margin-top:16rem;margin-bottom:16rem}.mh0-l{margin-left:0;margin-right:0}.mh1-l{margin-left:.25rem;margin-right:.25rem}.mh2-l{margin-left:.5rem;margin-right:.5rem}.mh3-l{margin-left:1rem;margin-right:1rem}.mh4-l{margin-left:2rem;margin-right:2rem}.mh5-l{margin-left:4rem;margin-right:4rem}.mh6-l{margin-left:8rem;margin-right:8rem}.mh7-l{margin-left:16rem;margin-right:16rem}.na1-l{margin:-.25rem}.na2-l{margin:-.5rem}.na3-l{margin:-1rem}.na4-l{margin:-2rem}.na5-l{margin:-4rem}.na6-l{margin:-8rem}.na7-l{margin:-16rem}.nl1-l{margin-left:-.25rem}.nl2-l{margin-left:-.5rem}.nl3-l{margin-left:-1rem}.nl4-l{margin-left:-2rem}.nl5-l{margin-left:-4rem}.nl6-l{margin-left:-8rem}.nl7-l{margin-left:-16rem}.nr1-l{margin-right:-.25rem}.nr2-l{margin-right:-.5rem}.nr3-l{margin-right:-1rem}.nr4-l{margin-right:-2rem}.nr5-l{margin-right:-4rem}.nr6-l{margin-right:-8rem}.nr7-l{margin-right:-16rem}.nb1-l{margin-bottom:-.25rem}.nb2-l{margin-bottom:-.5rem}.nb3-l{margin-bottom:-1rem}.nb4-l{margin-bottom:-2rem}.nb5-l{margin-bottom:-4rem}.nb6-l{margin-bottom:-8rem}.nb7-l{margin-bottom:-16rem}.nt1-l{margin-top:-.25rem}.nt2-l{margin-top:-.5rem}.nt3-l{margin-top:-1rem}.nt4-l{margin-top:-2rem}.nt5-l{margin-top:-4rem}.nt6-l{margin-top:-8rem}.nt7-l{margin-top:-16rem}.strike-l{text-decoration:line-through}.underline-l{text-decoration:underline}.no-underline-l{text-decoration:none}.tl-l{text-align:left}.tr-l{text-align:right}.tc-l{text-align:center}.tj-l{text-align:justify}.ttc-l{text-transform:capitalize}.ttl-l{text-transform:lowercase}.ttu-l{text-transform:uppercase}.ttn-l{text-transform:none}.f-6-l,.f-headline-l{font-size:6rem}.f-5-l,.f-subheadline-l{font-size:5rem}.f1-l{font-size:3rem}.f2-l{font-size:2.25rem}.f3-l{font-size:1.5rem}.f4-l{font-size:1.25rem}.f5-l{font-size:1rem}.f6-l{font-size:.875rem}.f7-l{font-size:.75rem}.measure-l{max-width:30em}.measure-wide-l{max-width:34em}.measure-narrow-l{max-width:20em}.indent-l{text-indent:1em;margin-top:0;margin-bottom:0}.small-caps-l{font-variant:small-caps}.truncate-l{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.center-l{margin-left:auto}.center-l,.mr-auto-l{margin-right:auto}.ml-auto-l{margin-left:auto}.clip-l{position:fixed!important;_position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.ws-normal-l{white-space:normal}.nowrap-l{white-space:nowrap}.pre-l{white-space:pre}.v-base-l{vertical-align:baseline}.v-mid-l{vertical-align:middle}.v-top-l{vertical-align:top}.v-btm-l{vertical-align:bottom}}
 

	
conservancy/static/docs/2023-01-31_KU-Lueven_Sandler-Karen_Software-Rights-Accountability-and-Autonomy-in-Our-Technology.txt
Show inline comments
...
 
@@ -4053,385 +4053,384 @@ don't know why I did that I apologize uh
 

	
 
00:55:35.280 --> 00:55:37.319
 
but um but there are so many ways that
 

	
 
00:55:37.319 --> 00:55:40.440
 
you can that you can you can show a
 

	
 
00:55:40.440 --> 00:55:42.599
 
device be vulnerable and exploited and
 

	
 
00:55:42.599 --> 00:55:45.059
 
so having real Security on devices
 

	
 
00:55:45.059 --> 00:55:46.740
 
having
 

	
 
00:55:46.740 --> 00:55:48.900
 
um you know having encryption having
 

	
 
00:55:48.900 --> 00:55:51.660
 
real security not this not security
 

	
 
00:55:51.660 --> 00:55:53.760
 
theater I mean that's really where it's
 

	
 
00:55:53.760 --> 00:55:56.819
 
at I for example I want the software on
 

	
 
00:55:56.819 --> 00:55:58.680
 
my device to be published and available
 

	
 
00:55:58.680 --> 00:56:01.440
 
for review but I want there to be I
 

	
 
00:56:01.440 --> 00:56:03.660
 
don't want any I want there to be either
 

	
 
00:56:03.660 --> 00:56:06.000
 
a password or encryption or some way
 

	
 
00:56:06.000 --> 00:56:07.920
 
that only my device can tell and that
 

	
 
00:56:07.920 --> 00:56:09.540
 
and that's and that's real because
 

	
 
00:56:09.540 --> 00:56:12.420
 
previously these devices had no had none
 

	
 
00:56:12.420 --> 00:56:13.920
 
of that before but this device the
 

	
 
00:56:13.920 --> 00:56:15.660
 
software wasn't published and so
 

	
 
00:56:15.660 --> 00:56:17.579
 
researchers show that you could just
 

	
 
00:56:17.579 --> 00:56:19.859
 
cause them to shock people unnecessarily
 

	
 
00:56:19.859 --> 00:56:21.540
 
you could get information off of those
 

	
 
00:56:21.540 --> 00:56:23.819
 
devices so
 

	
 
00:56:23.819 --> 00:56:25.859
 
the question is like how do we manage
 

	
 
00:56:25.859 --> 00:56:28.380
 
our software liability and it's scary
 

	
 
00:56:28.380 --> 00:56:31.079
 
stuff but having the software public
 

	
 
00:56:31.079 --> 00:56:32.819
 
means that it can be reviewed and it can
 

	
 
00:56:32.819 --> 00:56:34.500
 
be tested and yes there might be times
 

	
 
00:56:34.500 --> 00:56:35.819
 
where
 

	
 
00:56:35.819 --> 00:56:37.920
 
um where folks who are malicious may be
 

	
 
00:56:37.920 --> 00:56:40.079
 
able to find an exploit by Examining The
 

	
 
00:56:40.079 --> 00:56:41.940
 
Source Code but because there are so
 

	
 
00:56:41.940 --> 00:56:43.619
 
many exploits available without access
 

	
 
00:56:43.619 --> 00:56:45.059
 
to the source code
 

	
 
00:56:45.059 --> 00:56:47.579
 
it's just one of the benefits vastly
 

	
 
00:56:47.579 --> 00:56:49.079
 
outweigh the
 

	
 
00:56:49.079 --> 00:56:52.020
 
um you know the risks in my in my view
 

	
 
00:56:52.020 --> 00:56:54.540
 
and as we develop more infrastructure
 

	
 
00:56:54.540 --> 00:56:56.040
 
around free and open source software
 

	
 
00:56:56.040 --> 00:56:57.180
 
projects we'll find that to be the case
 

	
 
00:56:57.180 --> 00:56:59.099
 
an example perfect example of this is
 

	
 
00:56:59.099 --> 00:57:00.660
 
the Linux kernel which is considered to
 

	
 
00:57:00.660 --> 00:57:04.740
 
be one of the most secure kernels and
 

	
 
00:57:04.740 --> 00:57:08.339
 
that has been free and open for
 

	
 
00:57:08.339 --> 00:57:12.059
 
about 30 years
 

	
 
00:57:12.059 --> 00:57:14.520
 
oh I said well I I did we said one more
 

	
 
00:57:14.520 --> 00:57:16.319
 
can I do more okay one more before but
 

	
 
00:57:16.319 --> 00:57:20.760
 
yeah okay
 

	
 
00:57:20.760 --> 00:57:22.859
 
how does right to repair ah how does
 

	
 
00:57:22.859 --> 00:57:24.180
 
right to repair fit into the goals of
 

	
 
00:57:24.180 --> 00:57:25.800
 
the software Freedom Conservancy if it
 

	
 
00:57:25.800 --> 00:57:28.859
 
were not abundant yet from my talk
 

	
 
00:57:28.859 --> 00:57:30.960
 
software freedom is the software right
 

	
 
00:57:30.960 --> 00:57:32.220
 
to repair
 

	
 
00:57:32.220 --> 00:57:33.599
 
so
 

	
 
00:57:33.599 --> 00:57:36.359
 
in order to be able to repair any modern
 

	
 
00:57:36.359 --> 00:57:40.260
 
equipment we need software Freedom you
 

	
 
00:57:40.260 --> 00:57:42.480
 
cannot effectively repair anything
 

	
 
00:57:42.480 --> 00:57:45.000
 
without being able to have the software
 

	
 
00:57:45.000 --> 00:57:47.400
 
right to repair and what's cool about
 

	
 
00:57:47.400 --> 00:57:49.319
 
copy left licensing and why I spent so
 

	
 
00:57:49.319 --> 00:57:52.200
 
much time on the Vizio suit is that we
 

	
 
00:57:52.200 --> 00:57:54.180
 
have a right to repair in all of these
 

	
 
00:57:54.180 --> 00:57:55.619
 
Linux devices
 

	
 
00:57:55.619 --> 00:57:58.619
 
I mean the Vizio TVs had I forget how
 

	
 
00:57:58.619 --> 00:57:59.400
 
many
 

	
 
00:57:59.400 --> 00:58:01.260
 
um different kinds of software on it I
 

	
 
00:58:01.260 --> 00:58:04.859
 
think 22 22 copy lifted projects on it
 

	
 
00:58:04.859 --> 00:58:06.960
 
it wasn't just the Linux kernel loads of
 

	
 
00:58:06.960 --> 00:58:09.359
 
software that give us these rights the
 

	
 
00:58:09.359 --> 00:58:11.280
 
rights to get complete and corresponding
 

	
 
00:58:11.280 --> 00:58:12.720
 
source code and the scripts to control
 

	
 
00:58:12.720 --> 00:58:15.420
 
installation so we should be able to do
 

	
 
00:58:15.420 --> 00:58:17.520
 
something about this but we haven't been
 

	
 
00:58:17.520 --> 00:58:19.079
 
able to yet in part because companies
 

	
 
00:58:19.079 --> 00:58:20.819
 
just don't do the right thing they don't
 

	
 
00:58:20.819 --> 00:58:22.980
 
they don't think about the fact that
 

	
 
00:58:22.980 --> 00:58:25.619
 
they have to publish their source code
 

	
 
00:58:25.619 --> 00:58:27.839
 
before they go to market then they go to
 

	
 
00:58:27.839 --> 00:58:30.540
 
market and they scramble in general we
 

	
 
00:58:30.540 --> 00:58:33.059
 
we've talked to loads and loads of
 

	
 
00:58:33.059 --> 00:58:35.099
 
companies about their non-compliance and
 

	
 
00:58:35.099 --> 00:58:37.020
 
what turns out is that often as I said
 

	
 
00:58:37.020 --> 00:58:38.220
 
they don't even have the software
 

	
 
00:58:38.220 --> 00:58:40.020
 
themselves because they never ask for it
 

	
 
00:58:40.020 --> 00:58:41.700
 
from their vendors to begin with and
 

	
 
00:58:41.700 --> 00:58:43.140
 
they didn't put if they developed it
 

	
 
00:58:43.140 --> 00:58:45.119
 
in-house they did put the process in
 

	
 
00:58:45.119 --> 00:58:46.920
 
place to begin with so they don't have
 

	
 
00:58:46.920 --> 00:58:50.339
 
the infrastructure in place they don't
 

	
 
00:58:50.339 --> 00:58:52.559
 
even employ the employees that worked on
 

	
 
00:58:52.559 --> 00:58:53.940
 
the developers that worked on that
 

	
 
00:58:53.940 --> 00:58:56.579
 
software back then those people have
 

	
 
00:58:56.579 --> 00:58:58.559
 
often left the company and moved on to
 

	
 
00:58:58.559 --> 00:59:00.839
 
other projects and so they just don't
 

	
 
00:59:00.839 --> 00:59:03.000
 
even have the resources to be able to
 

	
 
00:59:03.000 --> 00:59:04.859
 
find that software later which is
 

	
 
00:59:04.859 --> 00:59:06.240
 
terrifying because it means that if
 

	
 
00:59:06.240 --> 00:59:07.680
 
there's a problem with their products
 

	
 
00:59:07.680 --> 00:59:09.540
 
they basically have to recall them
 

	
 
00:59:09.540 --> 00:59:11.220
 
there's nothing left that that can be
 

	
 
00:59:11.220 --> 00:59:13.260
 
done so in order for us to make sure
 

	
 
00:59:13.260 --> 00:59:15.240
 
that that changes we have to be louder
 

	
 
00:59:15.240 --> 00:59:17.339
 
about it and we have to make these
 

	
 
00:59:17.339 --> 00:59:18.720
 
companies realize that there is
 

	
 
00:59:18.720 --> 00:59:20.119
 
liability
 

	
 
00:59:20.119 --> 00:59:22.740
 
for their you know for their
 

	
 
00:59:22.740 --> 00:59:24.359
 
non-compliance because that will
 

	
 
00:59:24.359 --> 00:59:27.240
 
incentivize them to comply
 

	
 
00:59:27.240 --> 00:59:35.960
 
foreign
 

	
 
00:59:35.960 --> 00:59:40.079
 
are evoking but I was told that yeah we
 

	
 
00:59:40.079 --> 00:59:41.819
 
should close the session after one hour
 

	
 
00:59:41.819 --> 00:59:43.619
 
maybe there are students that are still
 

	
 
00:59:43.619 --> 00:59:45.960
 
having to do some exams I don't know
 

	
 
00:59:45.960 --> 00:59:48.119
 
wishing them good luck in that case of
 

	
 
00:59:48.119 --> 00:59:51.480
 
course but uh most of all I would like
 

	
 
00:59:51.480 --> 00:59:54.540
 
you to invite you to share with me the
 

	
 
00:59:54.540 --> 01:00:02.339
 
Applause for Aaron once more
 

	
 
01:00:02.339 --> 01:00:04.980
 
and you know you still have to put four
 

	
 
01:00:04.980 --> 01:00:06.180
 
more
 

	
 
01:00:06.180 --> 01:00:08.460
 
uh in two days I think the second yeah
 

	
 
01:00:08.460 --> 01:00:11.579
 
two days from now when you will get this
 

	
 
01:00:11.579 --> 01:00:14.760
 
Armory uh award from our University
 

	
 
01:00:14.760 --> 01:00:16.980
 
someone else will give it to you I would
 

	
 
01:00:16.980 --> 01:00:18.900
 
love to do it but that's uh we
 

	
 
01:00:18.900 --> 01:00:23.880
 
definitely
 

	
 
01:00:23.880 --> 01:00:25.200
 
um
 

	
 
01:00:25.200 --> 01:00:28.380
 
being here with Ken thanks so much
 

	
 
01:00:28.380 --> 01:00:31.380
 
foreign
 

	
conservancy/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.en.txt
Show inline comments
 
WEBVTT
 
Kind: captions
 
Language: en
 

	
 

	
 

	
 
00:00:01.560 --> 00:00:03.720
 
Karen Sandler is a lawyer
 

	
 
00:00:03.720 --> 00:00:07.520
 
and Executive Director
 
of the Software Freedom Conservancy,
 

	
 
00:00:07.520 --> 00:00:11.720
 
a non-profit organisation
 
devoted to ethical technology
 

	
 
00:00:11.720 --> 00:00:14.840
 
and free and open source software.
 

	
 
00:00:14.840 --> 00:00:20.480
 
Karen Sandler is an adjunct lecturer
 
at Colombia Law School, where she studied,
 

	
 
00:00:20.480 --> 00:00:21.640
 
and is a visiting professor
 

	
 
00:00:21.640 --> 00:00:24.400
 
at the University of California,
 
Santa Cruz.
 

	
 
00:00:24.400 --> 00:00:29.280
 
In addition to her law degree, she holds
 
a Bachelor of Science in Engineering
 

	
 
00:00:29.280 --> 00:00:40.840
 
from the Cooper Union
 
for the Advancement of Science and Art.
 

	
 
00:00:40.840 --> 00:00:45.400
 
Karen Sandler is an American lawyer
 
and software expert
 

	
 
00:00:45.400 --> 00:00:49.800
 
who promotes
 
free and open source software.
 

	
 
00:00:49.800 --> 00:00:53.760
 
That's software whose source code
 
is freely available to consult,
 

	
 
00:00:53.760 --> 00:00:58.640
 
adapt and disseminate.
 

	
 
00:00:58.640 --> 00:01:02.160
 
If the coronavirus crisis
 
made one thing clear,
 

	
 
00:01:02.160 --> 00:01:06.440
 
it’s that software is fundamental
 
to our society.
 

	
 
00:01:06.440 --> 00:01:11.120
 
We really need it,
 
certainly in the past few years.
 

	
 
00:01:11.120 --> 00:01:14.720
 
That goes even more for medical software,
 

	
 
00:01:14.720 --> 00:01:18.240
 
which gives people the opportunity
 
to lead a normal life,
 

	
 
00:01:18.240 --> 00:01:21.640
 
even if they have a certain illness
 
or condition.
 

	
 
00:01:21.640 --> 00:01:24.240
 
For example, Karen Sandler's pacemaker.
 

	
 
00:01:24.240 --> 00:01:26.880
 
If she didn’t have one,
 
she’d be at greater risk,
 

	
 
00:01:26.880 --> 00:01:30.640
 
and she would never have been able
 
to do what she's doing now.
 

	
 
00:01:30.640 --> 00:01:32.600
 
And she's certainly not alone.
 

	
 
00:01:32.600 --> 00:01:37.040
 
There are others in similar situations.
 

	
 
00:01:37.040 --> 00:01:39.840
 
She had a pacemaker put in,
 

	
 
00:01:39.840 --> 00:01:44.200
 
and when she wanted to find out
 
if it was safe and secure,
 

	
 
00:01:44.200 --> 00:01:47.280
 
she also wanted to see its source code.
 

	
 
00:01:47.280 --> 00:01:49.320
 
Unfortunately, that wasn’t possible,
 

	
 
00:01:49.320 --> 00:01:58.400
 
which demonstrates the importance
 
of free and open source software.
 

	
 
00:01:58.400 --> 00:02:03.440
 
If the source code for software
 
is in the hands of one company,
 

	
 
00:02:03.440 --> 00:02:07.400
 
then we're all dependent
 
on that company's goodwill.
 

	
 
00:02:07.400 --> 00:02:10.800
 
They can say of their own accord: 
 
They can say of their own accord:
 
we'll solve this, not that.
 

	
 
00:02:10.800 --> 00:02:13.680
 
We have the means to do this,
 
but not that.
 

	
 
00:02:13.680 --> 00:02:17.480
 
A company can always go bankrupt,
 
the source code then disappears,
 

	
 
00:02:17.480 --> 00:02:19.920
 
and society can no longer use it.
 

	
 
00:02:19.920 --> 00:02:23.240
 
That’s what open and free software is all about.
 

	
 
00:02:23.240 --> 00:02:27.440
 
Anyone can access the source code,
 
and everyone can disseminate it.
 

	
 
00:02:27.440 --> 00:02:33.640
 
And that's what Karen Sandler stands for.
 

	
 
00:02:33.640 --> 00:02:40.560
 
Karen Sandler also fights discrimination
 
in the world of technology
 

	
 
00:02:40.560 --> 00:02:43.560
 
and pushes for more inclusivity
 

	
 
00:02:43.560 --> 00:02:46.800
 
through the programme Outreachy,
 
amongst other efforts.
 

	
 
00:02:46.800 --> 00:02:51.600
 
Outreachy organises internships
 
for minorities or women,
 

	
 
00:02:51.600 --> 00:02:57.120
 
to help them get more involved in the world
 
of technology and software.
 

	
 
00:02:57.120 --> 00:03:01.120
 
Karen Sandler inspires us, as students,
 
because she is ambitious
 

	
 
00:03:01.120 --> 00:03:03.640
 
and fights passionately for her cause.
 

	
 
00:03:03.640 --> 00:03:06.880
 
Her personal story about the pacemaker
 

	
 
00:03:06.880 --> 00:03:11.160
 
actually serves as a metaphor
 
for all the technology and software
 

	
 
00:03:11.160 --> 00:03:15.560
 
we rely on in modern society.
 

	
 
00:03:15.560 --> 00:03:19.280
 
Its safety is of major importance.
 

	
 
00:03:19.280 --> 00:03:23.920
 
It’s essential for software
 
to be free and open source,
 

	
 
00:03:23.920 --> 00:03:27.320
 
so we can check whether it's safe
 

	
 
00:03:27.320 --> 00:03:33.520
 
and see whether there is
 
any room for improvement.
 

	
 
00:03:33.520 --> 00:03:35.600
 
For all of these reasons, Rector,
 

	
 
00:03:35.600 --> 00:03:38.680
 
on behalf of the Academic Council,
 
we request
 

	
 
00:03:38.680 --> 00:03:44.200
 
that you grant Karen Sandler
 
the KU Leuven honorary doctorate.
 

	
conservancy/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.nl.txt
Show inline comments
 
WEBVTT
 
Kind: captions
 
Language: nl
 

	
 

	
 

	
 
00:00:01.560 --> 00:00:03.720
 
Karen Sandler is advocaat
 

	
 
00:00:03.720 --> 00:00:07.520
 
en executive director
 
van de Software Freedom Conservancy,
 

	
 
00:00:07.520 --> 00:00:11.720
 
een non-profitorganisatie
 
die ijvert voor ethische technologie
 

	
 
00:00:11.720 --> 00:00:14.840
 
en voor vrije en opensourcesoftware.
 

	
 
00:00:14.840 --> 00:00:18.640
 
Karen Sandler is adjunct-lector
 
aan Colombia Law School,
 

	
 
00:00:18.640 --> 00:00:20.480
 
waar ze ook zelf studeerde,
 

	
 
00:00:20.480 --> 00:00:24.400
 
en gastprofessor aan
 
de University of California, Santa Cruz.
 

	
 
00:00:24.400 --> 00:00:29.280
 
Ze behaalde naast haar rechtendiploma
 
ook een Bachelor of Science in Engineering
 

	
 
00:00:29.280 --> 00:00:40.840
 
aan de Cooper Union
 
for the Advancement of Science and Art.
 

	
 
00:00:40.840 --> 00:00:45.400
 
Karen Sandler is een Amerikaanse juriste
 
en software-experte
 

	
 
00:00:45.400 --> 00:00:49.800
 
die zich inzet
 
voor vrije en opensourcesoftware.
 

	
 
00:00:49.800 --> 00:00:53.760
 
Dat is software waarvan je de broncode
 
vrij kan raadplegen,
 

	
 
00:00:53.760 --> 00:00:58.640
 
aanpassen en verspreiden.
 

	
 
00:00:58.640 --> 00:01:02.160
 
Als er één iets duidelijk is geworden
 
door heel de coronacrisis,
 

	
 
00:01:02.160 --> 00:01:06.440
 
is het wel dat software heel
 
fundamenteel is voor onze maatschappij.
 

	
 
00:01:06.440 --> 00:01:11.120
 
We hebben dat echt nodig,
 
zeker de afgelopen paar jaren.
 

	
 
00:01:11.120 --> 00:01:14.720
 
Dat geldt des te meer
 
voor bijvoorbeeld medische software,
 

	
 
00:01:14.720 --> 00:01:18.240
 
die mensen de kans geeft
 
om een normaal leven te leiden,
 

	
 
00:01:18.240 --> 00:01:21.640
 
ook al lijden zij aan een bepaalde ziekte,
 
een bepaalde aandoening.
 

	
 
00:01:21.640 --> 00:01:24.240
 
Bijvoorbeeld de pacemaker
 
van Karen Sandler.
 

	
 
00:01:24.240 --> 00:01:26.880
 
Als zij die niet had,
 
dan was er veel meer risico voor haar
 

	
 
00:01:26.880 --> 00:01:30.640
 
en had ze ook nooit kunnen doen
 
wat ze nu allemaal aan het doen is.
 

	
 
00:01:30.640 --> 00:01:32.600
 
En zij is zeker geen geïsoleerd geval.
 

	
 
00:01:32.600 --> 00:01:37.040
 
Er zijn nog meer mensen
 
die in zulke situaties zitten.
 

	
 
00:01:37.040 --> 00:01:39.840
 
Zij heeft een pacemaker laten installeren
 

	
 
00:01:39.840 --> 00:01:44.200
 
en toen zij wou nagaan
 
of die wel veilig en goed was,
 

	
 
00:01:44.200 --> 00:01:47.280
 
wou zij ook de broncode daarvan bekijken.
 

	
 
00:01:47.280 --> 00:01:49.320
 
Helaas bleek dat niet mogelijk,
 

	
 
00:01:49.320 --> 00:01:58.400
 
wat wel wijst op het belang van
 
vrije en opensourcesoftware.
 

	
 
00:01:58.400 --> 00:02:03.440
 
Als die software dan, die broncode
 
bij één bepaald bedrijf zit,
 

	
 
00:02:03.440 --> 00:02:07.400
 
dan hangen wij allemaal een beetje af
 
van de goodwill van dat bedrijf.
 

	
 
00:02:07.400 --> 00:02:10.800
 
Die kunnen dan eigenlijk eigenhandig
 
gaan zeggen: dit lossen we op, dit niet.
 

	
 
00:02:10.800 --> 00:02:13.680
 
Hiervoor hebben we de middelen,
 
hiervoor niet.
 

	
 
00:02:13.680 --> 00:02:17.480
 
En een bedrijf kan ook altijd failliet
 
gaan en dan is die broncode weg
 

	
 
00:02:17.480 --> 00:02:19.920
 
en hebben we daar niks meer aan
 
als maatschappij.
 

	
 
00:02:19.920 --> 00:02:23.240
 
En dat is waar open en free software
 
voor staat.
 

	
 
00:02:23.240 --> 00:02:27.440
 
Iedereen kan aan die broncode,
 
iedereen kan die ook verspreiden.
 

	
 
00:02:27.440 --> 00:02:33.640
 
Dat is ook waar Karen Sandler
 
heel hard voor staat.
 

	
 
00:02:33.640 --> 00:02:36.800
 
Karen Sandler zet zich daarnaast ook in
 

	
 
00:02:36.800 --> 00:02:40.560
 
om discriminatie tegen te gaan
 
in de technologiewereld
 

	
 
00:02:40.560 --> 00:02:43.560
 
en voor meer inclusiviteit te zorgen.
 

	
 
00:02:43.560 --> 00:02:46.800
 
Dat doet zij onder andere
 
via het programma Outreachy
 

	
 
00:02:46.800 --> 00:02:51.600
 
dat stages organiseert
 
voor minderheden of voor vrouwen
 

	
 
00:02:51.600 --> 00:02:57.120
 
en hen op die manier meer betrekt in
 
de technologie- en in de softwarewereld.
 

	
 
00:02:57.120 --> 00:03:01.120
 
Karen Sandler inspireert ons als studenten
 
omdat zij gedreven is
 

	
 
00:03:01.120 --> 00:03:03.640
 
en vol passie strijdt voor haar zaak.
 

	
 
00:03:03.640 --> 00:03:06.880
 
Haar persoonlijke verhaal
 
over de pacemaker
 

	
 
00:03:06.880 --> 00:03:11.160
 
geldt eigenlijk als metafoor
 
voor alle technologie en software
 

	
 
00:03:11.160 --> 00:03:15.560
 
waar wij mee te maken krijgen
 
in onze hedendaagse maatschappij.
 

	
 
00:03:15.560 --> 00:03:19.280
 
De veiligheid daarvan is van groot belang.
 

	
 
00:03:19.280 --> 00:03:22.720
 
Daarom is
 
vrije en opensourcesoftware
 

	
 
00:03:22.720 --> 00:03:27.320
 
erg belangrijk: om te controleren
 
of die wel veilig is,
 

	
 
00:03:27.320 --> 00:03:33.520
 
en of er geen verbeterpunten
 
aangebracht kunnen worden.
 

	
 
00:03:33.520 --> 00:03:35.600
 
Om al deze redenen, mijnheer de rector,
 

	
 
00:03:35.600 --> 00:03:38.680
 
verzoeken wij u,
 
op voordracht van de Academische Raad,
 

	
 
00:03:38.680 --> 00:03:44.200
 
het eredoctoraat van de KU Leuven
 
te verlenen aan mevrouw Karen Sandler.
 

	
conservancy/static/docs/sponsorship-agreement-template.tex
Show inline comments
 
\documentclass[letterpaper,12pt]{article}
 
\usepackage{draftcopy}
 
\usepackage{enumitem}
 
\usepackage{parskip}
 
\usepackage{fancyhdr}
 
\usepackage{xspace}
 
\usepackage[verbose, twoside, dvips,
 
              paperwidth=8.5in, paperheight=11in,
 
              left=1in, right=1in, top=1.25in, bottom=.75in,
 
           ]{geometry}
 

	
 
\pagestyle{fancy}
 

	
 
\lhead{}
 
\rhead{}
 
\chead{}
 

	
 
\cfoot{\thepage}
 
\lfoot{}
 
\rfoot{Initials: \rule{0.15\textwidth}{0.2mm}}
 
\renewcommand{\headrulewidth}{0pt}
 
\renewcommand{\footrulewidth}{0pt}
 

	
 
\newcommand{\projectname}{FIXME-PROJECT-NAME\xspace}
 
\newcommand{\signatories}{FIXME-SIGNATORIES\xspace}
 
\newcommand{\leadershipbody}{FIXME-LEADERSHIP-BODY-NAME\xspace}
 
\newcommand{\signature}[3]{
 
\vspace{2ex}
 

	
 
By: \hspace{0.95em}\rule{0.50\textwidth}{0.2mm} \hfill{}Date: \rule{0.25\textwidth}{0.2mm}
 

	
 
\if\relax\detokenize{#1}\relax
 
\else
 
\hspace{2.5em} \textsc{#1}
 
\fi
 
\if\relax\detokenize{#2}\relax
 
\else
 

	
 
\hspace{2.5em} #2
 
\fi
 
\if\relax\detokenize{#3}\relax
 
\else
 

	
 
\hspace{2.5em} #3
 
\fi
 
\vspace{6ex}
 
}
 

	
 
\begin{document}
 

	
 
\begin{center}
 
\textsc{\Huge Fiscal Sponsorship Agreement}{\Huge {} } 
 
\textsc{\Huge Fiscal Sponsorship Agreement}{\Huge {} }
 
\par\end{center}
 

	
 
\bigskip{}
 

	
 

	
 
This Agreement is made by and between Software Freedom Conservancy
 
(``Conservancy'') and FIXME-CONTRIBUTOR-NAMES (the ``\signatories'')
 
on behalf of the project known as \projectname (the ``Project'') (each, a 
 
``Party''; together, ``the Parties'').  Conservancy is a New York nonprofit 
 
public benefit corporation located in Brooklyn, New York, which has received 
 
recognition of exemption from federal income tax under Section 501(c)(3) of 
 
the Internal Revenue Code (IRC) and classification as a public charity under 
 
on behalf of the project known as \projectname (the ``Project'') (each, a
 
``Party''; together, ``the Parties'').  Conservancy is a New York nonprofit
 
public benefit corporation located in Brooklyn, New York, which has received
 
recognition of exemption from federal income tax under Section 501(c)(3) of
 
the Internal Revenue Code (IRC) and classification as a public charity under
 
IRC Sections 509(a)(1) and 170(b)(1)(A)(vi).
 

	
 
\textsc{Whereas:}
 

	
 
\begin{enumerate}[label=\Alph*.,ref=\S \Alph*]
 
\item Conservancy's organizational mission and charitable goal is to promote,
 
improve, develop and defend Free, Libre, and Open Source Software
 
projects. 
 
projects.
 
\item The purpose of the Project is to produce, distribute, document, and
 
improve software and/or documentation that can be freely copied, modified and redistributed,
 
and for which modified versions can also be redistributed (``Free Software''),
 
and to facilitate and organize its production, improvement and ease
 
of use. 
 
of use.
 
\item Conservancy desires to act as the fiscal sponsor of the Project beginning
 
on the Effective Date (as defined below) to assist the Project in
 
accomplishing its purpose, which Conservancy has determined will further
 
Conservancy's charitable goals. The \signatories desire to manage
 
the Project under the sponsorship of Conservancy. 
 
the Project under the sponsorship of Conservancy.
 
\item Conservancy's Board of Directors has approved the establishment
 
of a fund to receive donations of cash and other property earmarked
 
for support of the Project and to make disbursements in furtherance
 
of the Project's mission (the ``Project Fund''). Currently, the
 
principal office of the Project is located at: [FIXME: MAILING ADDRESS]. 
 
principal office of the Project is located at: [FIXME: MAILING ADDRESS].
 
\end{enumerate}
 
\medskip{}
 

	
 

	
 
\textsc{Now, therefore, the Parties hereby agree as follows:}
 

	
 
\begin{enumerate}[label=\arabic*.,ref=\S~\arabic*]
 
\item \textbf{Term of Agreement}. As of the Effective Date, the Project
 
joins Conservancy, which relationship will continue unless and until
 
terminated as set forth in \ref{Termination}. 
 
terminated as set forth in \ref{Termination}.
 
\item \textbf{Project Management and Activities}.
 

	
 

	
 
\begin{enumerate}[label=\alph*.,ref=\theenumi(\alph*)]
 
\item \textbf{The \leadershipbody Will Manage the Project}. \label{ProjectManagement}
 
Authority to manage the technical, artistic and philanthropic direction
 
of the Project and the program activities of the Project is delegated
 
to the \leadershipbody as defined in \ref{Representation},
 
subject at all times to the direction and control of Conservancy's
 
Board of Directors. Conservancy will only intervene in the program
 
activities to the extent the Project is not in compliance with \ref{FreeSoftware}
 
or \ref{CharitablePurpose} of this Agreement. 
 
or \ref{CharitablePurpose} of this Agreement.
 
\item \textbf{The Project Will Be Free Software}. \label{FreeSoftware}
 
Conservancy and the \leadershipbody agree that any and all software
 
and/or documentation distributed by the Project will be distributed solely as Free Software.
 
Conservancy retains the sole right to determine whether the Project's
 
software and/or documentation constitutes Free Software (as defined herein).
 
\item \textbf{Ultimate Responsibility of Project}. Subject to \ref{ProjectManagement}
 
of this Agreement, all community programs, public information work,
 
fundraising events, processing and acknowledgment of cash and non-cash
 
revenue items, accounts payable and receivable, negotiation of leases
 
and contracts, disbursement of Project funds (including grants), and
 
other activities planned by the Project shall be the ultimate responsibility
 
of Conservancy and shall be conducted in the name of Conservancy,
 
beginning on the Effective Date. 
 
beginning on the Effective Date.
 
\item \textbf{Project Not An Agent Of Conservancy}. The \signatories
 
hereby acknowledge that the Project and the \leadershipbody
 
do not and shall not act as an agent for Conservancy unless specifically
 
authorized in writing by Conservancy to do so. 
 
authorized in writing by Conservancy to do so.
 
\end{enumerate}
 
\item \textbf{Fees}. The \signatories agree to donate ten percent
 
(10\%) of the Project's gross revenue (including, but not necessarily limited
 
to, all income and donations) to Conservancy for its general operations.
 

	
 

	
 
Notwithstanding the above, the \signatories agree that should Conservancy
 
be required to pay any taxes (including but not limited to sales taxes
 
and unrelated business taxable income) as the result of any activity
 
of the Project and/or activities undertaken by Conservancy on the
 
Project's behalf, such taxes shall be deducted from the Project Fund.
 

	
 

	
 
Conservancy will monitor any unrelated business taxable income and
 
may require the Project to cease activities generating such income
 
if the overall amounts exceed amounts permissible or prudent for Conservancy,
 
given Conservancy's tax exempt status.
 

	
 
\item \textbf{Project Fund/Variance Power}. Beginning on the Effective Date,
 
Conservancy shall place all gifts, grants, contributions and other
 
revenues received by Conservancy and identified with the Project into
 
a Project Fund to be used for the sole benefit of the Project's mission
 
as that mission may be defined by the \leadershipbody from
 
time to time with the approval of Conservancy. Conservancy retains
 
the unilateral right to spend such funds so as to accomplish the purposes
 
of the Project as nearly as possible within Conservancy's sole judgment.
 
Conservancy agrees to make a good faith effort to consider any expressed
 
donor intent in making determinations on the expenditure of that donor's
 
gift; however, the Parties acknowledge that expressions of donor intent
 
are not legally binding on Conservancy. The Parties agree that all
 
money, and the fair market value of all property, deposited in the
 
Project Fund be reported as the income of Conservancy, for both tax
 
purposes and for purposes of Conservancy's financial statements. It
 
is the intent of the Parties that this Agreement be interpreted to
 
provide Conservancy with variance powers necessary to enable Conservancy
 
to treat the Project Fund as Conservancy's asset in accordance with
 
Financial Accounting Statement No. 136 issued by the Financial Accounting
 
Standards Board, while this Agreement is in effect. 
 
Standards Board, while this Agreement is in effect.
 
\item \textbf{Project Fund Management / Performance of Charitable Purposes}.
 
\label{CharitablePurpose} All of the assets received by Conservancy
 
under the terms of this Agreement shall be devoted to the purposes
 
of the Project, within the tax-exempt purposes of Conservancy. The
 
\signatories agree not to use its funds or operate in any way which would
 
jeopardize the tax-exempt status of Conservancy. No item of revenue
 
shall be earmarked for use in any attempt to influence legislation
 
within the meaning of IRC Section 501(c)(3) and no agreement, oral
 
or written, to that effect shall be made between Conservancy and any
 
revenue source. Conservancy shall not use any portion of the assets
 
to participate or intervene in any political campaign on behalf or
 
in opposition to any candidate for public office, to induce or encourage
 
violations of law or public policy, to cause any private inurement
 
or improper private benefit to occur, nor to take any other action
 
inconsistent with IRC Section 501(c)(3). 
 
inconsistent with IRC Section 501(c)(3).
 

	
 
\item \textbf{Representation of the Project in Conservancy}. \label{Representation}The
 
\signatories, each a signatory hereto, hereby establish and comprise
 
the initial members of the \leadershipbody
 
to represent the Project in its official communication with Conservancy.
 
The \signatories hereby acknowledge that the \leadershipbody
 
will be subject to all terms of this Agreement.
 
On the Effective Date, the \signatories hereby transfer all
 
rights, obligations and privileges of this Agreement over to the
 
\leadershipbody.
 

	
 
[FIXME: Note: The rest of this section should describe the way in which the
 
Project wishes to interface with Conservancy; including who has
 
authority to communicate with Conservancy regarding the Project
 
and what is required in order for Conservancy to act on behalf
 
of the Project. For example, all of the Contributors confirm their
 
approval of a certain action, or can any one of the Contributors instruct
 
Conservancy to take a certain action. Also, the Contributors may
 
want to identify certain other individuals that have the power to
 
represent the Project. Here a few samples of how projects have handled
 
this clause in the other projects:
 

	
 
\begin{itemize}
 
\item \textbf{Simple Self-Perpetuating Committee}. The \signatories,
 
each a signatory hereto, shall initially [FIXME: form or comprise]
 
the \leadershipbody as a Project Committee (``Committee'')
 
to represent the Project in its official communication with Conservancy.
 
Existing Project Committee Members (``Members'') can be removed
 
from and new Members can be added to the Committee by simple majority
 
vote of the existing Committee; however, three (3) shall be the mandatory
 
minimum number of Members. All decisions of the Committee shall be
 
made by simple majority. The Committee shall appoint, by majority
 
vote, one Member as its ``Representative'' to communicate all Project
 
decisions to Conservancy.
 

	
 

	
 
The Representative shall promptly inform Conservancy of changes in
 
the Committee composition and of contact information for all Members.
 
If Conservancy is unable, after all reasonable efforts, to contact
 
a majority of the Members for a period of sixty (60) days, or if the
 
minimum number of Members is fewer than three for a period of at least
 
sixty days, Conservancy may unilaterally appoint new Members from
 
the Project community to replace any unreachable Members and/or to
 
increase the Committee composition to three Members.
 

	
 
\item \textbf{Self-Perpetuating Committee, w/ avoiding employees of same
 
company serving together}. The \signatories, each a signatory
 
hereto, shall initially [FIXME: form or comprise] the \leadershipbody
 
as a Project Committee (``Committee'') to represent the Project
 
in its official communication with Conservancy. Existing Project
 
Committee Members (``Members'') can be removed from and new Members
 
can be added to the Committee by simple majority vote of the existing
 
Committee; however, three (3) (the ``Minimum'') shall be the mandatory
 
minimum number of Members.
 

	
 

	
 
For purposes of this Agreement, a Member is ``Employed'' by an Entity
 
if the Member is compensated for more than thirty-two (32) hours of
 
work per week by such Entity for a continuous period of more than
 
sixty (60) days. No more than one Member may be Employed by the same
 
Entity.
 

	
 

	
 
Should two (2) or more Members be Employed by the same Entity at any
 
time (e.g., if an existing Member changes employers while a Member),
 
Members Employed by the same Entity must immediately resign in succession
 
until only one (1) of them remains on the Committee. Should voluntarily
 
resignations fail to yield the aforementioned result after sixty (60)
 
days, the Members Sharing an Employer shall be removed by Conservancy
 
from the Committee in order of decreasing seniority. Seniority shall
 
be determined by length of service by the Member on the Committee,
 
including all historical periods of non-contiguous service.
 

	
 

	
 
All decisions of the Committee shall be made by simple majority. The
 
Committee shall appoint, by majority vote, one Member as its Representative
 
to communicate all Project decisions to Conservancy. The Representative
 
shall promptly inform Conservancy of changes in the Committee composition
 
and of contact information for all Members. If Conservancy is unable,
 
after all reasonable efforts, to contact a majority of the Members
 
for a period of sixty (60) days, or if the number of Members is fewer
 
than the Minimum for a period of at least sixty days, Conservancy
 
may, after at least thirty days notice to Project, unilaterally appoint
 
new Members from the Project community to replace any unreachable
 
Members and/or to increase the Committee composition to the required
 
Minimum.
 

	
 
\item \textbf{An Elected Oversight Committee.} The \signatories, each
 
a signatory hereto, shall initially [FIXME: form or comprise] the 
 
\leadershipbody as a Project Committee (``Committee'') to 
 
a signatory hereto, shall initially [FIXME: form or comprise] the
 
\leadershipbody as a Project Committee (``Committee'') to
 
represent the Project in its official communication with Conservancy.  The
 
Committee shall hereafter be elected by community members of the Project as
 
designated by the Committee or a subcommittee of the Committee (the 
 
``Community Members'').  
 

	
 
The positions on the Committee will be on a two-year staggered basis 
 
([FIX-ME: some portion] of the initial board seats will be for one year).  
 
The members of the Committee may be removed from the position at any time 
 
by a majority vote of the Community Members.  Upon the resignation or 
 
removal of a member of the Oversight Board, the Community Members shall 
 
elect a replacement Community Member to serve on the Committee. 
 

	
 
The Committee will elect a single individual to communicate with 
 
Conservancy (the ``Representative'') and shall notify Conservancy promptly 
 
following the election of a new Representative.  The Representative will 
 
designated by the Committee or a subcommittee of the Committee (the
 
``Community Members'').
 

	
 
The positions on the Committee will be on a two-year staggered basis
 
([FIX-ME: some portion] of the initial board seats will be for one year).
 
The members of the Committee may be removed from the position at any time
 
by a majority vote of the Community Members.  Upon the resignation or
 
removal of a member of the Oversight Board, the Community Members shall
 
elect a replacement Community Member to serve on the Committee.
 

	
 
The Committee will elect a single individual to communicate with
 
Conservancy (the ``Representative'') and shall notify Conservancy promptly
 
following the election of a new Representative.  The Representative will
 
have the authority to instruct Conservancy on the Project's behalf on all
 
matters.  
 
matters.
 

	
 
This section may be modified by a vote of at least $\frac{3}{4}$ths of the 
 
Community Members, with the consent of Conservancy, such consent not to be 
 
This section may be modified by a vote of at least $\frac{3}{4}$ths of the
 
Community Members, with the consent of Conservancy, such consent not to be
 
unreasonably withheld.
 

	
 

	
 
\end{itemize}
 

	
 
Note again that the above are merely examples, not a list of options.
 
Conservancy's goal is to draft the Representation section to match
 
the existing and natural leadership structure of the Project, so each
 
project usually has a uniquely worded Representation section. ]
 

	
 
\item \textbf{Outstanding Liabilities}. The \signatories represent
 
that any liabilities that may be outstanding in connection with the
 
Project have been disclosed to Conservancy. 
 
Project have been disclosed to Conservancy.
 
\item \textbf{Termination}. \label{Termination} The \leadershipbody or Conservancy
 
may terminate this Agreement at any time subject to the following
 
understandings:
 

	
 

	
 
\begin{enumerate}[label=\alph*.,ref=\theenumi(\arabic*)]
 

	
 
\item \textbf{Notice and Successor Search}. Either Conservancy or the \leadershipbody
 
may terminate this Agreement on sixty (60) days' written notice (``the Notice Period'') to
 
the other Party, so long as a Successor can be found that meets the
 
following requirements (the ``Successor has Qualified''):
 

	
 

	
 
    \begin{enumerate}[label=\roman*.,ref=\theenumi(\alph{enumii})(\roman*)]
 
\item the Successor is another nonprofit corporation which is tax-exempt
 
under IRC Section 501(c)(3), 
 
under IRC Section 501(c)(3),
 
\item the Successor is not classified as a private foundation under Section
 
509(a), 
 
\item the Successor is willing and able to sponsor the Project, and, 
 
509(a),
 
\item the Successor is willing and able to sponsor the Project, and,
 
\item the Successor has (a) communicated its willingness to sponsor the
 
  Project in writing to Conservancy and (b) sent a copy of its 501(c)(3) determination letter to Conservancy, and, 
 
  Project in writing to Conservancy and (b) sent a copy of its 501(c)(3) determination letter to Conservancy, and,
 
\item the Successor is approved in writing by both Parties by the end of
 
the Notice Period, such approval not to be unreasonably withheld. 
 
the Notice Period, such approval not to be unreasonably withheld.
 
\end{enumerate}
 
\item \textbf{Additional Search Periods}. If the Parties cannot agree on
 
a Successor to sponsor the Project, the \leadershipbody
 
shall have an additional 60 days to find a Successor willing and able
 
to sponsor the Project. Any subsequent search periods of any length
 
shall only be granted at Conservancy's written permission. 
 
shall only be granted at Conservancy's written permission.
 
\item \textbf{Transfer to a Successor}. If a Successor has Qualified, the balance
 
of assets in the Project Fund, together with any other assets held
 
or liabilities incurred by Conservancy in connection with the
 
Project, shall be transferred to the Successor within thirty (30)
 
days of the approval of the Successor in writing by both Parties or
 
any extension thereof, subject to the approval of any third parties
 
that may be required.
 
\item \textbf{Termination Without a Successor}. If no Successor is found,
 
Conservancy may dispose of Project assets and liabilities
 
in any manner consistent with applicable tax and charitable trust
 
laws. 
 
\item \textbf{\signatories' Right to Terminate.} 
 
laws.
 
\item \textbf{\signatories' Right to Terminate.}
 
The \signatories hereby acknowledge that they will relinquish any
 
       rights to terminate separate from the \leadershipbody as
 
       of the Effective Date.
 
\end{enumerate}
 
\item \textbf{Miscellaneous}. Each provision of this Agreement shall be
 
separately enforceable, and the invalidity of one provision shall
 
not affect the validity or enforceability of any other provision.
 
This Agreement shall be interpreted and construed in accordance with
 
the laws of the State of New York. This Agreement constitutes the
 
only agreement, and supersedes all prior agreements and understandings,
 
both written and oral, among the Parties with respect to the subject
 
matter hereof. 
 
matter hereof.
 
\item \textbf{Amendments. }This Agreement may not be amended or modified,
 
except in writing and signed by both Conservancy and the entirety of \leadershipbody. 
 
except in writing and signed by both Conservancy and the entirety of \leadershipbody.
 
\item \textbf{Counterparts / Facsimile}. This Agreement may be executed
 
in two or more counterparts, each of which shall constitute an original,
 
but all of which, when together, shall constitute but one and the
 
same instrument, and shall become effective when one or more counterparts
 
have been signed by each Party hereto and delivered to the other Party.
 
In lieu of the original, a facsimile transmission or copy of the original
 
shall be as effective and enforceable as the original. 
 
shall be as effective and enforceable as the original.
 
\end{enumerate}
 
\vfill{}
 

	
 

	
 
\textsc{In witness whereof}, the Parties have executed this Fiscal
 
Sponsorship Agreement effective on the FIXME day of FIXME, FIXME (the
 
``Effective Date'').
 

	
 
\vspace{3em}
 

	
 
\signature{Software Freedom Conservancy, Inc.}{Bradley M. Kuhn}{Title: President}
 

	
 
\signature{}{FIXME-CONTRIBUTOR}{}
 
\signature{}{FIXME-CONTRIBUTOR}{}
 
\signature{}{FIXME-CONTRIBUTOR}{}
 
\end{document}
conservancy/static/google536264c707362f55.html
Show inline comments
 
google-site-verification: google536264c707362f55.html
...
 
\ No newline at end of file
 
google-site-verification: google536264c707362f55.html
conservancy/static/img/QEMU.svg
Show inline comments
 
<?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:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="351.84259" height="111.86757" id="svg2" version="1.1" inkscape:version="0.48.3.1 r9886" sodipodi:docname="qemu_logo.svg">
 
  <title id="title3182">Kew the Angry Emu</title>
 
  <defs id="defs4">
 
    <linearGradient id="linearGradient4686">
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4688"/>
 
      <stop id="stop3956" offset="0.75" style="stop-color:#000000;stop-opacity:0.87843138;"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0.43921569;" offset="0.75" id="stop3958"/>
 
      <stop id="stop3960" offset="0.88" style="stop-color:#181818;stop-opacity:1;"/>
 
      <stop style="stop-color:#242424;stop-opacity:1;" offset="0.88" id="stop3962"/>
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="1" id="stop4690"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4467">
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4469"/>
 
      <stop style="stop-color:#000000;stop-opacity:0.8974359;" offset="1" id="stop4471"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4431">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4433"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4435"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4466">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4468"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4470"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4321">
 
      <stop style="stop-color:#ff6702;stop-opacity:1;" offset="0" id="stop4323"/>
 
      <stop style="stop-color:#ff9a55;stop-opacity:1;" offset="1" id="stop4325"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4283">
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4285"/>
 
      <stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop4287"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4251">
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4253"/>
 
      <stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop4255"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4007">
 
      <stop style="stop-color:#ff6600;stop-opacity:1;" offset="0" id="stop4009"/>
 
      <stop style="stop-color:#ff9148;stop-opacity:1;" offset="1" id="stop4011"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3999">
 
      <stop style="stop-color:#fff7f2;stop-opacity:1;" offset="0" id="stop4001"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4003"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3890">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3892"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3894"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3880">
 
      <stop style="stop-color:#eb7400;stop-opacity:1;" offset="0" id="stop3882"/>
 
      <stop style="stop-color:#f7b06a;stop-opacity:1;" offset="1" id="stop3884"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4011">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3879">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.90598291;" offset="0" id="stop3881"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3869">
 
      <stop style="stop-color:#c95000;stop-opacity:1;" offset="0" id="stop3871"/>
 
      <stop style="stop-color:#ff9e5e;stop-opacity:1;" offset="1" id="stop3873"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3861">
 
      <stop style="stop-color:#f06000;stop-opacity:1;" offset="0" id="stop3863"/>
 
      <stop style="stop-color:#ffccaa;stop-opacity:1;" offset="1" id="stop3865"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3826">
 
      <stop style="stop-color:#ff6600;stop-opacity:1;" offset="0" id="stop3828"/>
 
      <stop style="stop-color:#ff893b;stop-opacity:1;" offset="1" id="stop3830"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3879-6">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.90598291;" offset="0" id="stop3881-4"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-7"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3869-5">
 
      <stop style="stop-color:#c95000;stop-opacity:1;" offset="0" id="stop3871-9"/>
 
      <stop style="stop-color:#ff9e5e;stop-opacity:1;" offset="1" id="stop3873-4"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4" id="linearGradient3885-6" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3869-2">
 
      <stop style="stop-color:#c95000;stop-opacity:1;" offset="0" id="stop3871-99"/>
 
      <stop style="stop-color:#ff9e5e;stop-opacity:1;" offset="1" id="stop3873-6"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011" id="radialGradient4017" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.23244854,1.600893,-1.0124495,0.14700695,145.40424,-26.300303)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4-7" id="linearGradient3885-6-2" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4-7">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011-5" id="radialGradient4017-7" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.99779178,6.8718773,-4.3459674,0.6310314,452.75975,-225.98471)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4011-5">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013-1"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-3"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4-75" id="linearGradient3885-6-8" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4-75">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-1"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-4"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011-0" id="radialGradient4017-5" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.23244854,1.600893,-1.0124495,0.14700695,146.34996,53.681728)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4011-0">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013-4"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-0"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4011-0" id="linearGradient4117" x1="107.03001" y1="189.72537" x2="107.18476" y2="173.47537" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4-7-2" id="linearGradient3885-6-2-8" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4-7-2">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7-9"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6-9"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011-5-1" id="radialGradient4017-7-9" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.99779178,6.8718773,-4.3459674,0.6310314,448.94742,-406.99277)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4011-5-1">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013-1-9"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-3-8"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4-7-2-7" id="linearGradient3885-6-2-8-0" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4-7-2-7">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7-9-3"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6-9-6"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011-5-1-5" id="radialGradient4017-7-9-5" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.55965334,3.8543806,-2.4376181,0.3539404,454.75182,-145.44353)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4011-5-1-5">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013-1-9-6"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-3-8-9"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4-7-2-4" id="linearGradient3885-6-2-8-4" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4-7-2-4">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7-9-9"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6-9-3"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011-5-1-7" id="radialGradient4017-7-9-7" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.26837158,1.8482981,-1.1689154,0.16972569,466.57614,26.180822)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4011-5-1-7">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013-1-9-1"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-3-8-5"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3879-4-7-2-0">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7-9-7"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6-9-8"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4011-5-1-55">
 
      <stop style="stop-color:#000a30;stop-opacity:1;" offset="0" id="stop4013-1-9-8"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-3-8-3"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3890-9">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3892-0"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3894-9"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3880-4">
 
      <stop style="stop-color:#eb7400;stop-opacity:1;" offset="0" id="stop3882-5"/>
 
      <stop style="stop-color:#f7b06a;stop-opacity:1;" offset="1" id="stop3884-1"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3999-7">
 
      <stop style="stop-color:#fff7f2;stop-opacity:1;" offset="0" id="stop4001-9"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4003-4"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4007-9">
 
      <stop style="stop-color:#ff6600;stop-opacity:1;" offset="0" id="stop4009-1"/>
 
      <stop style="stop-color:#ff9148;stop-opacity:1;" offset="1" id="stop4011-9"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4007-9-5">
 
      <stop style="stop-color:#ff6600;stop-opacity:1;" offset="0" id="stop4009-1-9"/>
 
      <stop style="stop-color:#ff9148;stop-opacity:1;" offset="1" id="stop4011-9-5"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3999-7-1">
 
      <stop style="stop-color:#fff7f2;stop-opacity:1;" offset="0" id="stop4001-9-1"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4003-4-4"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4007-9-5-3">
 
      <stop style="stop-color:#ff6600;stop-opacity:1;" offset="0" id="stop4009-1-9-3"/>
 
      <stop style="stop-color:#ff9148;stop-opacity:1;" offset="1" id="stop4011-9-5-9"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3999-7-1-4">
 
      <stop style="stop-color:#fff7f2;stop-opacity:1;" offset="0" id="stop4001-9-1-4"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4003-4-4-4"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3879-4-7-2-3">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7-9-1"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6-9-87"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4011-5-1-1">
 
      <stop style="stop-color:#fde8a1;stop-opacity:1;" offset="0" id="stop4013-1-9-63"/>
 
      <stop style="stop-color:#2947b9;stop-opacity:1;" offset="1" id="stop4015-3-8-8"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4466" id="linearGradient4472" x1="161.7561" y1="540.72662" x2="161.7561" y2="579.80206" gradientUnits="userSpaceOnUse"/>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4321" id="radialGradient4474" cx="130.8242" cy="575.27838" fx="130.8242" fy="575.27838" r="49.498173" gradientTransform="matrix(0.95670828,0.96684666,-0.72623533,0.71862001,423.45109,35.05138)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4466-5" id="linearGradient4472-9" x1="161.7561" y1="540.72662" x2="161.7561" y2="579.80206" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4466-5">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4468-2"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4470-3"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4321-0" id="radialGradient4474-6" cx="130.8242" cy="575.27838" fx="130.8242" fy="575.27838" r="49.498173" gradientTransform="matrix(0.95670828,0.96684666,-0.72623533,0.71862001,442.64399,170.9169)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4321-0">
 
      <stop style="stop-color:#ff6702;stop-opacity:1;" offset="0" id="stop4323-3"/>
 
      <stop style="stop-color:#ff9a55;stop-opacity:1;" offset="1" id="stop4325-1"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4466-5-5">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4468-2-9"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4470-3-4"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4321-0-0">
 
      <stop style="stop-color:#ff6702;stop-opacity:1;" offset="0" id="stop4323-3-9"/>
 
      <stop style="stop-color:#ff9a55;stop-opacity:1;" offset="1" id="stop4325-1-1"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4466-5-9">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4468-2-7"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4470-3-7"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4321-0-7">
 
      <stop style="stop-color:#ff6702;stop-opacity:1;" offset="0" id="stop4323-3-3"/>
 
      <stop style="stop-color:#ff9a55;stop-opacity:1;" offset="1" id="stop4325-1-6"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4431" id="linearGradient4437" x1="142.81854" y1="831.52283" x2="142.81854" y2="878.90735" gradientUnits="userSpaceOnUse"/>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4467" id="radialGradient4475" cx="116.51958" cy="98.282051" fx="116.51958" fy="98.282051" r="55.859375" gradientTransform="matrix(0.97442557,1.5088911,-0.83559154,0.53961599,79.641615,-130.28522)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4431-3" id="linearGradient4437-6" x1="142.81854" y1="831.52283" x2="142.81854" y2="878.90735" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4431-3">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4433-0"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4435-2"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4467-7" id="radialGradient4475-0" cx="116.51958" cy="98.282051" fx="116.51958" fy="98.282051" r="55.859375" gradientTransform="matrix(0.97442557,1.5088911,-0.83559154,0.53961599,225.10358,63.664066)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4467-7">
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4469-4"/>
 
      <stop style="stop-color:#000000;stop-opacity:0.8974359;" offset="1" id="stop4471-7"/>
 
    </linearGradient>
 
  </defs>
 
  <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.0170184" inkscape:cx="539.34448" inkscape:cy="-81.088823" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" showguides="false" inkscape:guide-bbox="true" inkscape:window-width="992" inkscape:window-height="547" inkscape:window-x="30" inkscape:window-y="24" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0">
 
    <sodipodi:guide orientation="0,1" position="52.563745,58.089579" id="guide2989"/>
 
    <sodipodi:guide orientation="0,1" position="54.584055,28.037549" id="guide2991"/>
 
    <sodipodi:guide orientation="1,0" position="51.048515,41.169529" id="guide2993"/>
 
    <sodipodi:guide orientation="1,0" position="77.817565,40.916989" id="guide2995"/>
 
    <sodipodi:guide orientation="1,0" position="51.048515,41.169529" id="guide3017"/>
 
    <inkscape:grid type="xygrid" id="grid3019" empspacing="5" visible="true" enabled="true" snapvisiblegridlinesonly="true" originx="-62.341105px" originy="-884.63528px"/>
 
    <sodipodi:guide orientation="1,0" position="85.658895,8.3647193" id="guide3021"/>
 
    <sodipodi:guide orientation="1,0" position="106.6589,4.3647193" id="guide3023"/>
 
    <sodipodi:guide orientation="0,1" position="90.658895,17.364719" id="guide3025"/>
 
    <sodipodi:guide orientation="0,1" position="90.658895,-6.6352807" id="guide3027"/>
 
    <sodipodi:guide orientation="0,1" position="-0.341105,-14.635281" id="guide3810"/>
 
    <sodipodi:guide orientation="0,1" position="1.658895,-49.635281" id="guide3814"/>
 
    <sodipodi:guide orientation="0,1" position="-17.698248,11.257579" id="guide3856"/>
 
    <sodipodi:guide orientation="0,1" position="6.601806,11.257579" id="guide3887"/>
 
    <sodipodi:guide orientation="0,1" position="24.658283,58.089579" id="guide4019"/>
 
    <sodipodi:guide orientation="0,1" position="106.6589,-6.6352807" id="guide4481"/>
 
    <sodipodi:guide orientation="0,1" position="139.08747,-193.20671" id="guide4483"/>
 
  </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>Kew the Angry Emu</dc:title>
 
        <dc:creator>
 
          <cc:Agent>
 
            <dc:title>Benoît Canet</dc:title>
 
          </cc:Agent>
 
        </dc:creator>
 
        <dc:rights>
 
          <cc:Agent>
 
            <dc:title>CC BY 3.0</dc:title>
 
          </cc:Agent>
 
        </dc:rights>
 
        <dc:publisher>
 
          <cc:Agent>
 
            <dc:title>QEMU Community</dc:title>
 
          </cc:Agent>
 
        </dc:publisher>
 
        <dc:date>2012-02-15</dc:date>
 
        <cc:license rdf:resource="http://creativecommons.org/licenses/by/3.0/"/>
 
        <dc:subject>
 
          <rdf:Bag>
 
            <rdf:li>QEMU logo</rdf:li>
 
            <rdf:li>QEMU mascot</rdf:li>
 
          </rdf:Bag>
 
        </dc:subject>
 
        <dc:source>http://lists.gnu.org/archive/html/qemu-devel/2012-02/msg01961.html</dc:source>
 
      </cc:Work>
 
      <cc:License rdf:about="http://creativecommons.org/licenses/by/3.0/">
 
        <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/>
 
        <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/>
 
        <cc:requires rdf:resource="http://creativecommons.org/ns#Notice"/>
 
        <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution"/>
 
        <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/>
 
      </cc:License>
 
    </rdf:RDF>
 
  </metadata>
 
  <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-62.341105,-55.859333)">
 
    <path inkscape:connector-curvature="0" style="fill:url(#radialGradient4475);fill-opacity:1;stroke:none" d="m 118.2161,55.859333 c -30.850815,0 -55.874995,24.87043 -55.874995,55.562497 0,30.69207 25.02418,55.56249 55.874995,55.56249 10.09496,0 19.54625,-2.6525 27.71875,-7.3125 l 2.90625,7.3125 2.40625,0 20,0 0.125,0 -8.8125,-21.78124 c 7.21537,-9.3622 11.5,-21.07236 11.5,-33.78125 0,-30.692067 -24.99293,-55.562497 -55.84375,-55.562497 z" id="path3834-7-7-2-5-5-0-5-4"/>
 
    <path sodipodi:type="arc" style="fill:url(#linearGradient4437);fill-opacity:1;stroke:none" id="path3661" sodipodi:cx="142.5" sodipodi:cy="856.29077" sodipodi:rx="35.357143" sodipodi:ry="24.642857" d="m 177.85714,856.29077 c 0,13.60988 -15.82993,24.64286 -35.35714,24.64286 -19.52721,0 -35.35714,-11.03298 -35.35714,-24.64286 0,-13.60987 15.82993,-24.64286 35.35714,-24.64286 19.52721,0 35.35714,11.03299 35.35714,24.64286 z" transform="matrix(1.0465082,0,0,1.2920463,-31.641235,-1016.8612)"/>
 
    <path sodipodi:type="arc" style="fill:#000000;fill-opacity:1;stroke:none" id="path4442" sodipodi:cx="115.66247" sodipodi:cy="856.39258" sodipodi:rx="6.5659914" sodipodi:ry="6.5659914" d="m 122.22846,856.39258 c 0,3.6263 -2.9397,6.56599 -6.56599,6.56599 -3.6263,0 -6.56599,-2.93969 -6.56599,-6.56599 0,-3.6263 2.93969,-6.56599 6.56599,-6.56599 3.62629,0 6.56599,2.93969 6.56599,6.56599 z" transform="translate(7.6700247,-777.60351)"/>
 
    <rect style="fill:#000000;fill-opacity:1;stroke:none" id="rect4444" width="37.643608" height="5.5005069" x="125.01157" y="65.255234" transform="matrix(0.98974903,0.14281759,-0.18972639,0.981837,0,0)"/>
 
    <rect style="fill:#000000;fill-opacity:1;stroke:none" id="rect4446" width="6.5659914" height="2.9041886" x="144.92451" y="89.016899"/>
 
    <path style="fill:#ff6600;fill-opacity:1" d="m 103.38797,65.010543 c -0.057,2.18531 -3.865755,0.28296 -4.031245,2.78125 -4.22387,-1.88052 0.32884,2.87188 -0.0937,3.3125 l -0.0312,0 -0.3125,-0.0312 c -0.20386,-0.0728 -0.49977,-0.19904 -0.9375,-0.46875 -2.9499,2.35025 -3.02157,7.23369 -6.0625,9.9375 -1.99467,4.30504 -2.47977,8.98337 -3.9375,13.46875 -0.71796,4.30292 -1.34881,8.597857 -0.28125,12.906247 0.32053,3.50159 -0.68919,8.25865 2.5,10.71875 4.72728,3.88304 8.65575,8.79543 12.624995,13.46875 6.21914,7.65333 11.72948,15.86251 16.59375,24.4375 0.32431,-2.11756 1.10954,4.26459 2.53125,4.6875 -0.49161,-3.19231 -1.13213,-8.26328 -1.4375,-12.1875 -1.5814,-10.2909 -6.65305,-19.64903 -8.5625,-29.84375 -0.0587,-0.43037 -0.12809,-0.87203 -0.1875,-1.3125 l 0,-1.28125 -0.15625,0 c -0.62551,-5.04297 -0.8504,-10.46546 2.8125,-14.40625 3.73968,-3.772097 9.30633,-4.722447 13.8125,-7.343747 1.00194,-0.59119 2.04921,-1.07174 3.125,-1.40625 0.009,-0.003 0.0228,0.003 0.0312,0 3.11701,-0.96341 6.44862,-0.93323 9.6875,-0.40625 0.0479,0.008 0.10841,0.0233 0.15625,0.0312 0.29455,0.0493 0.61389,0.099 0.90625,0.15625 2.37136,0.21133 7.14463,1.13687 8,-0.5 -3.27225,-2.78631 -7.98526,-2.59211 -11.96875,-3.6875 -0.63059,-0.11469 -1.41182,-0.24041 -2.1875,-0.3125 l -3.90625,-0.875 -0.96875,-0.25 0,0.0312 -13.96875,-2.71875 c -0.22212,-0.20226 -0.46434,-0.40933 -0.6875,-0.5625 l 13.625,1.6875 0,-0.0625 c 0.48011,0.10699 0.95576,0.19361 1.4375,0.25 l 0,0.0312 9.625,1.78125 c 1.66103,0.61952 3.4322,1.08374 5.09375,1.1875 2.74263,0.39907 6.22526,4.49092 7.125,4.6875 -0.44096,-4.307 -4.7422,-6.23586 -8.3125,-7.5 -4.1712,-2.02803 -10.4023,-1.95417 -11.0625,-7.5625 -0.1756,-0.39076 -0.34902,-0.78118 -0.5625,-1.15625 l -1.625,-2.15625 0.0625,-0.0312 c -2.21724,-2.61691 -5.34011,-4.52196 -8.65625,-5.25 -3.2914,-1.13611 -6.98773,-2.2671 -10.46875,-2.71875 -1.18132,3.47826 -2.5031,-2.75561 -5.34375,-0.90625 -2.48996,0.29488 -2.14614,0.95256 -4,-0.625 z m 17.90625,10.15625 c 0.90187,-0.0238 1.93277,0.14208 2.96875,0.5 2.76259,0.95447 4.56151,2.96523 4.03125,4.5 -0.53026,1.53477 -3.20616,1.98572 -5.96875,1.03125 -2.76259,-0.95447 -4.5615,-2.93398 -4.03125,-4.46875 0.33141,-0.95923 1.49689,-1.52281 3,-1.5625 z" id="path3499-9-7" inkscape:connector-curvature="0"/>
 
    <text xml:space="preserve" style="font-size:95.54121399px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold" x="184.89412" y="166.37402" id="text4477" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan4479" x="184.89412" y="166.37402" style="fill:#000000;fill-opacity:1">EMU</tspan></text>
 
  </g>
 
</svg>
...
 
\ No newline at end of file
 
</svg>
conservancy/static/img/conservancy-supporter-heart.svg
Show inline comments
...
 
@@ -84,385 +84,385 @@
 
       inkscape:collect="always" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 0.5 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1 : 0.5 : 1"
 
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
       id="perspective3123" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 0.5 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1 : 0.5 : 1"
 
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
       id="perspective3962" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 0.5 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1 : 0.5 : 1"
 
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
       id="perspective9298" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 372.04724 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1052.3622 : 372.04724 : 1"
 
       inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
 
       id="perspective8211" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 372.04724 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1052.3622 : 372.04724 : 1"
 
       inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
 
       id="perspective4759" /><inkscape:perspective
 
       id="perspective10"
 
       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
 
       inkscape:vp_z="744.09448 : 526.18109 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_x="0 : 526.18109 : 1"
 
       sodipodi:type="inkscape:persp3d" /><linearGradient
 
       id="linearGradient4751"
 
       inkscape:collect="always"><stop
 
         id="stop4753"
 
         offset="0"
 
         style="stop-color:#ffffff;stop-opacity:1;" /><stop
 
         id="stop4755"
 
         offset="1"
 
         style="stop-color:#ffffff;stop-opacity:0;" /></linearGradient><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 0.5 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1 : 0.5 : 1"
 
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
       id="perspective3080" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 0.5 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1 : 0.5 : 1"
 
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
       id="perspective3470" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 0.5 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1 : 0.5 : 1"
 
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
       id="perspective3452" /><inkscape:perspective
 
       id="perspective331"
 
       inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
 
       inkscape:vp_z="1052.3622 : 372.04724 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_x="0 : 372.04724 : 1"
 
       sodipodi:type="inkscape:persp3d" /><mask
 
       id="mask7035"
 
       maskUnits="userSpaceOnUse"><rect
 
         y="-1180.8607"
 
         x="269.50726"
 
         height="121.12428"
 
         width="380.24283"
 
         id="rect7037"
 
         style="fill:url(#linearGradient7039);fill-opacity:1;stroke:none"
 
         transform="scale(1,-1)" /></mask><linearGradient
 
       y2="1134.8"
 
       x2="879.90155"
 
       y1="1134.8"
 
       x1="629.57501"
 
       gradientTransform="translate(-230.1514,-2255.0986)"
 
       gradientUnits="userSpaceOnUse"
 
       id="linearGradient7039"
 
       xlink:href="#linearGradient4751-1"
 
       inkscape:collect="always" /><linearGradient
 
       y2="1134.8"
 
       x2="879.90155"
 
       y1="1134.8"
 
       x1="629.57501"
 
       gradientTransform="translate(-1411.1852,-143)"
 
       gradientUnits="userSpaceOnUse"
 
       id="linearGradient6939"
 
       xlink:href="#linearGradient4751-1"
 
       inkscape:collect="always" /><linearGradient
 
       y2="1134.8"
 
       x2="879.90155"
 
       y1="1134.8"
 
       x1="629.57501"
 
       gradientTransform="matrix(1,0,0,1.9016413,-1666.9395,-1697.1902)"
 
       gradientUnits="userSpaceOnUse"
 
       id="linearGradient5620"
 
       xlink:href="#linearGradient4751-1"
 
       inkscape:collect="always" /><linearGradient
 
       y2="1134.8"
 
       x2="879.90155"
 
       y1="1134.8"
 
       x1="629.57501"
 
       gradientTransform="translate(-1493.1852,-765.11948)"
 
       gradientUnits="userSpaceOnUse"
 
       id="linearGradient5187-2"
 
       xlink:href="#linearGradient4751-1"
 
       inkscape:collect="always" /><linearGradient
 
       y2="1134.8"
 
       x2="879.90155"
 
       y1="1134.8"
 
       x1="629.57501"
 
       gradientTransform="translate(-1379.5602,0)"
 
       gradientUnits="userSpaceOnUse"
 
       id="linearGradient4929"
 
       xlink:href="#linearGradient4751-1"
 
       inkscape:collect="always" /><linearGradient
 
       gradientTransform="translate(-1379.5602,0)"
 
       gradientUnits="userSpaceOnUse"
 
       y2="1134.8"
 
       x2="879.90155"
 
       y1="1134.8"
 
       x1="629.57501"
 
       id="linearGradient4759-0"
 
       xlink:href="#linearGradient4751-1"
 
       inkscape:collect="always" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 0.5 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1 : 0.5 : 1"
 
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
       id="perspective3123-7" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 0.5 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1 : 0.5 : 1"
 
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
       id="perspective3962-0" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 0.5 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1 : 0.5 : 1"
 
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
       id="perspective9298-1" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 372.04724 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1052.3622 : 372.04724 : 1"
 
       inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
 
       id="perspective8211-2" /><inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 372.04724 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="1052.3622 : 372.04724 : 1"
 
       inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
 
       id="perspective4759-1" /><inkscape:perspective
 
       id="perspective10-9"
 
       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
 
       inkscape:vp_z="744.09448 : 526.18109 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_x="0 : 526.18109 : 1"
 
       sodipodi:type="inkscape:persp3d" /><linearGradient
 
       id="linearGradient4751-1"
 
       inkscape:collect="always"><stop
 
         id="stop4753-9"
 
         offset="0"
 
         style="stop-color:#ffffff;stop-opacity:1;" /><stop
 
         id="stop4755-7"
 
         offset="1"
 
         style="stop-color:#ffffff;stop-opacity:0;" /></linearGradient></defs><sodipodi:namedview
 
     pagecolor="#ffffff"
 
     bordercolor="#666666"
 
     borderopacity="1"
 
     objecttolerance="10"
 
     gridtolerance="10"
 
     guidetolerance="10"
 
     inkscape:pageopacity="0"
 
     inkscape:pageshadow="2"
 
     inkscape:window-width="1400"
 
     inkscape:window-height="963"
 
     id="namedview4283"
 
     showgrid="false"
 
     inkscape:zoom="4.3416918"
 
     inkscape:cx="88.192448"
 
     inkscape:cy="52.780336"
 
     inkscape:window-x="0"
 
     inkscape:window-y="27"
 
     inkscape:window-maximized="1"
 
     inkscape:current-layer="g8020"
 
     showguides="true"
 
     inkscape:guide-bbox="true"
 
     fit-margin-top="0.1"
 
     fit-margin-left="0.1"
 
     fit-margin-right="0.1"
 
     fit-margin-bottom="0.1"
 
     units="in" /><g
 
     id="g4291"
 
     inkscape:groupmode="layer"
 
     inkscape:label="Conservancy business card-Kuhn"
 
     transform="matrix(1.25,0,0,-1.25,-171.56407,154.84972)"><text
 
   xml:space="preserve"
 
   style="font-size:5.98569536px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
 
   x="113.36552"
 
   y="-44.040192"
 
   id="text7147"
 
   transform="scale(1,-1)"
 
   sodipodi:linespacing="125%"><tspan
 
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;text-anchor:start;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans"
 
     sodipodi:role="line"
 
     id="tspan7149"
 
     x="113.36552"
 
     y="-44.040192" /></text>
 

	
 

	
 

	
 

	
 
<text
 
   xml:space="preserve"
 
   style="font-size:5.98569536px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
 
   x="113.6648"
 
   y="-37.62291"
 
   id="text7155"
 
   transform="scale(1,-1)"
 
   sodipodi:linespacing="125%"><tspan
 
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;text-anchor:start;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans"
 
     sodipodi:role="line"
 
     id="tspan7157"
 
     x="113.6648"
 
     y="-37.62291" /></text>
 

	
 

	
 

	
 

	
 
<text
 
   sodipodi:linespacing="125%"
 
   transform="scale(1,-1)"
 
   id="text7159"
 
   y="-87.822914"
 
   x="138.46829"
 
   style="font-size:5.98569536px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
 
   xml:space="preserve"><tspan
 
     y="-87.822914"
 
     x="138.46829"
 
     id="tspan7161"
 
     sodipodi:role="line"
 
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;text-anchor:start;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans" /></text>
 

	
 

	
 

	
 

	
 
<text
 
   sodipodi:linespacing="125%"
 
   transform="scale(1,-1)"
 
   id="text6535"
 
   y="-45.918201"
 
   x="146.6619"
 
   style="font-size:5.58918715px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#577632;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
 
   xml:space="preserve"><tspan
 
     y="-45.918201"
 
     x="146.6619"
 
     id="tspan6537"
 
     sodipodi:role="line" /></text>
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 
<text
 
   sodipodi:linespacing="125%"
 
   transform="scale(1,-1)"
 
   id="text7143"
 
   y="-45.850258"
 
   x="234.0332"
 
   style="font-size:5.39359856px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#4d4d4d;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
 
   xml:space="preserve"><tspan
 
     y="-45.850258"
 
     x="234.0332"
 
     sodipodi:role="line"
 
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;text-anchor:end;fill:#4d4d4d;font-family:Verana Sans;-inkscape-font-specification:Verana Sans"
 
     id="tspan7218" /></text>
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 
<text
 
   sodipodi:linespacing="125%"
 
   transform="scale(1,-1)"
 
   id="text7429"
 
   y="-23.965015"
 
   x="234.0332"
 
   style="font-size:5.39359856px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
 
   xml:space="preserve"><tspan
 
     id="tspan7431"
 
     y="-23.965015"
 
     x="234.0332"
 
     sodipodi:role="line"
 
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;text-anchor:end;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans" /></text>
 

	
 

	
 

	
 

	
 

	
 

	
 
<g
 
   id="g3200"
 
   transform="matrix(0.42457859,0,0,-0.71531053,7.4622436,224.60588)"><g
 
     id="g4480"
 
     transform="matrix(0.59207878,0,0,0.35143336,349.96837,-162.35997)" /><g
 
     style="fill:#577632"
 
     transform="matrix(0.68850366,0,0,0.40866716,0.18296913,-31.44899)"
 
     id="g5539" /><g
 
     id="g4480-1"
 
     transform="matrix(0.59207878,0,0,0.35143336,-197.92653,-253.68871)" /><text
 
     xml:space="preserve"
 
     style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
     x="74.557396"
 
     y="221.53632"
 
     id="text4852"
 
     sodipodi:linespacing="125%"
 
     transform="scale(1.2979808,0.77042743)"><tspan
 
       sodipodi:role="line"
 
       id="tspan4854"
 
       x="74.557396"
 
       y="221.53632" /></text>
 
<text
 
     transform="scale(1.2979808,0.77042743)"
 
     sodipodi:linespacing="125%"
 
     id="text4981"
 
     y="253.5148"
 
     x="139.75218"
 
     style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
     xml:space="preserve"><tspan
 
       style="fill:#999999"
 
       y="253.5148"
 
       x="139.75218"
 
       id="tspan4983"
 
       sodipodi:role="line" /></text>
 
<g
 
     id="g8020"
 
     transform="matrix(0.57700624,0,0,0.57700624,12.00414,75.354089)"><g
 
       id="layer1-2"
 
       transform="matrix(0.78553744,0,0,0.42392355,516.47703,91.535963)"><g
 
         id="g2221"
 
         transform="translate(129.28571,-64.285714)" /><g
 
         inkscape:label="Layer 1"
 
         id="layer1-6"
 
         transform="matrix(1.3450324,0,0,1.2346916,-143.35545,-177.53315)"><path
 
           style="fill:#9cd5d3;fill-opacity:1;stroke:none"
 
           d="m 201.6875,20.90625 c -25.5086,0.293967 -48.66333,20.454095 -49.71875,43.9375 -1.71036,19.674409 8.24322,39.03604 23.40625,52.53125 17.91992,17.10443 39.63786,30.81319 55.78125,49.34375 3.61556,3.86194 6.60676,8.31365 10.46875,11.90625 4.08656,1.68004 8.51072,-1.47175 9.84375,-4.96875 18.25265,-24.40405 45.87544,-40.81824 67.21875,-62.71875 11.61535,-12.600384 19.56603,-28.922724 18.09375,-45.75 -1.22621,-16.370932 -11.92524,-32.126862 -28.21875,-39.21875 -16.6295,-7.720794 -38.05542,-6.617469 -53.03125,3.8125 -4.26146,2.760141 -8.01431,6.165345 -11.1875,9.96875 C 234.54546,27.735144 218.12792,20.385781 201.6875,20.90625 z M 203.28125,26.5 c 18.1761,-3e-6 33.81415,9.857233 41.0625,24.03125 C 251.59213,36.357236 267.23019,26.5 285.40625,26.5 c 25.05799,-3e-6 45.40625,18.653946 45.40625,41.65625 0,45.30087 -53.34026,59.36575 -86.46875,105.34375 C 209.30298,127.23816 157.875,114.95105 157.875,68.15625 157.875,45.153942 178.2233,26.5 203.28125,26.5 z"
 
           transform="matrix(2.643472,0,0,2.8797115,-273.91879,158.85064)"
 
           id="path8323"
 
           inkscape:connector-curvature="0" /></g></g><g
 
       id="g4480-11"
 
       transform="matrix(0.92663552,0,0,0.55001234,568.34842,-72.996263)" /><g
 
       id="g5180"
 
       transform="matrix(0.92663552,0,0,0.55001234,308.05624,182.40298)" /><g
 
       id="g4361"
 
       transform="matrix(0.92663552,0,0,0.55001234,520.08973,-4.9786618)"><path
 
         id="path5152"
 
         d="m 294.8728,344.65416 c -17.99591,0.20347 -32.91812,12.38231 -34.16415,28.45216 -0.13622,1.75558 -0.0824,3.47227 0.1076,5.17312 -5.89428,-1.88791 -12.25439,-3.14371 -18.9681,-3.66429 -29.235,-2.26687 -54.66561,10.5136 -60.46085,29.31434 -19.33453,6.26155 -34.68239,18.44021 -42.24714,34.05638 -17.1699,-0.89371 -32.07025,12.14704 -33.40974,29.42212 -1.36074,17.54933 11.69211,32.91384 29.20658,34.27192 5.54251,0.42975 10.89952,-0.64981 15.62713,-2.80211 13.6788,14.40097 34.76181,24.52877 58.95201,26.40447 21.79146,1.68968 42.02271,-3.65691 57.33542,-13.57944 6.04955,10.00137 17.2846,17.40024 30.7154,19.3992 l 0,0.32315 c 0.40102,-0.0393 0.78811,-0.16657 1.18551,-0.21555 0.40533,0.05 0.77641,0.1752 1.1855,0.21555 l 0,-0.32315 c 13.45167,-1.98865 24.65882,-9.38618 30.7154,-19.3992 15.31272,9.92253 35.65177,15.26916 57.44319,13.57944 24.1902,-1.87567 45.16545,-12.0035 58.84425,-26.40447 4.72765,2.1523 10.08465,3.23189 15.62714,2.80211 17.51446,-1.35805 30.67508,-16.72263 29.31434,-34.27192 -1.33949,-17.27508 -16.23983,-30.31583 -33.40973,-29.42212 -7.56476,-15.61617 -23.02039,-27.79483 -42.35493,-34.05638 -5.79524,-18.80074 -31.11807,-31.58121 -60.35307,-29.31434 -6.71371,0.52058 -13.07382,1.77638 -18.96811,3.66429 0.19003,-1.70085 0.24418,-3.41754 0.1076,-5.17312 -1.24603,-16.06985 -16.27601,-28.24858 -34.27192,-28.45216 -1.19975,-0.0138 -2.44085,0.0138 -3.66429,0.1076 -0.0724,0.007 -0.14381,-0.007 -0.21555,0 -0.0717,-0.007 -0.14312,0.007 -0.21554,0 -1.22345,-0.0948 -2.46455,-0.12174 -3.6643,-0.1076 z m 3.44874,21.55467 0.53887,0 c 3.05373,0 5.82187,0.85901 7.86746,2.37101 2.04558,1.512 3.34097,3.66581 3.34097,6.03531 0,0.6994 -0.21658,1.38874 -0.43109,2.04769 l 9.05296,6.68195 c 1.88349,-1.05553 4.06897,-1.72438 6.57417,-1.72438 3.0528,0 5.82159,0.86702 7.86745,2.37102 2.04587,1.504 3.44875,3.66591 3.44875,6.0353 0,1.55932 -0.75038,2.95413 -1.72437,4.20316 l 12.71725,9.26851 c 1.61046,-0.67375 3.41978,-1.07773 5.38867,-1.07773 3.05372,0 5.92967,0.85898 7.97522,2.37101 2.04556,1.51203 3.34098,3.66581 3.34098,6.03531 0,1.33808 -0.56249,2.55383 -1.29328,3.66429 l 12.07061,8.72964 c 1.62936,-0.69337 3.49886,-1.18551 5.49644,-1.18551 3.05373,0 5.8219,0.85898 7.86746,2.37102 2.04555,1.51203 3.34097,3.66591 3.34097,6.03531 0,2.36949 -1.29542,4.5233 -3.34097,6.0353 -2.04556,1.512 -4.81373,2.37102 -7.86746,2.37102 -3.05372,0 -5.82186,-0.85902 -7.86745,-2.37102 -2.04559,-1.512 -3.44875,-3.66581 -3.44875,-6.0353 0,-1.82915 0.96593,-3.48283 2.26324,-4.84981 l -11.3162,-8.29854 c -1.96037,1.23744 -4.48534,2.04769 -7.22081,2.04769 -2.494,0 -4.69747,-0.67813 -6.57418,-1.72437 l -9.05296,6.57417 c 0.78087,0.95272 1.4531,1.98296 1.72438,3.12543 0.0904,0.38081 0.1076,0.78066 0.1076,1.1855 0,2.3694 -1.29542,4.52328 -3.34098,6.03531 -1.02276,0.756 -2.22706,1.4284 -3.55652,1.83215 -0.66471,0.20175 -1.3268,0.32694 -2.04769,0.43109 -0.72089,0.10415 -1.49983,0.1076 -2.26324,0.1076 -2.40153,0 -4.63011,-0.5329 -6.4664,-1.50882 l -12.71725,9.37628 c 1.31083,1.10508 2.28555,2.56007 2.69433,4.09538 0.13623,0.51176 0.21555,0.96755 0.21555,1.50883 0,2.36939 -1.29542,4.4155 -3.34098,5.92753 -0.51138,0.37802 -1.02172,0.77449 -1.6166,1.07774 -1.18978,0.60653 -2.54579,1.06476 -3.98761,1.29328 -0.72089,0.11415 -1.49983,0.1076 -2.26324,0.1076 -3.05373,0 -5.8219,-0.96675 -7.86745,-2.47879 -1.02276,-0.75603 -1.89923,-1.58987 -2.47879,-2.58656 -0.28969,-0.49834 -0.49324,-1.06794 -0.64664,-1.6166 -0.15347,-0.54866 -0.21555,-1.13202 -0.21555,-1.72437 0,-2.36939 1.29542,-4.52331 3.34098,-6.03531 2.04555,-1.512 4.81372,-2.47879 7.86745,-2.47879 1.52445,0 2.98303,0.33729 4.31093,0.75442 l 13.68722,-9.91515 c -0.48897,-0.62305 -0.87667,-1.24051 -1.18551,-1.93992 -0.30901,-0.69941 -0.53887,-1.48068 -0.53887,-2.26324 0,-2.3695 1.29511,-4.53134 3.34098,-6.03531 0.51145,-0.37598 1.02162,-0.67719 1.6166,-0.96996 1.78493,-0.87832 3.96126,-1.40105 6.25085,-1.40105 2.29569,0 4.35028,0.60977 6.14308,1.50883 l 9.26851,-6.68195 c -0.4521,-0.60405 -0.89437,-1.25462 -1.18551,-1.93992 -0.29107,-0.6853 -0.43109,-1.40533 -0.43109,-2.15547 0,-1.85332 1.04193,-3.47037 2.37101,-4.8498 l -12.50171,-9.16073 c -1.82535,0.95168 -3.99116,1.6166 -6.35862,1.6166 -2.6873,0 -5.06063,-0.74203 -7.00527,-1.93992 l -10.45401,7.65191 c 0.93402,1.00872 1.62556,2.1785 1.93992,3.44874 0.10484,0.42341 0.21554,0.84567 0.21554,1.29328 0,2.36946 -1.29542,4.52328 -3.34097,6.03531 -0.51138,0.37802 -1.11939,0.78459 -1.72437,1.07773 -1.21,0.58632 -2.52559,0.97721 -3.98762,1.18551 -0.73099,0.10415 -1.49982,0.1076 -2.26324,0.1076 -3.05372,0 -5.82189,-0.85898 -7.86745,-2.37101 -2.04555,-1.51204 -3.34097,-3.66585 -3.34097,-6.03531 0,-2.3695 1.29511,-4.53134 3.34097,-6.03531 2.04587,-1.50396 4.81466,-2.37101 7.86745,-2.37101 2.10463,0 4.12867,0.4214 5.81976,1.18551 l 10.88511,-7.97523 c -0.73538,-1.11546 -1.29328,-2.32311 -1.29328,-3.66429 0,-0.36526 0.0345,-0.72717 0.1076,-1.07774 0.22313,-1.05169 0.75704,-2.029 1.40105,-2.90988 l -8.19077,-6.0353 c -2.0807,1.86639 -5.07473,3.12542 -8.51409,3.12542 -2.86333,0 -5.43564,-1.02534 -7.43636,-2.37101 l -8.083,5.60421 c 0.7142,1.10319 1.18551,2.34581 1.18551,3.6643 0,2.36949 -1.29542,4.41553 -3.34098,5.92753 -2.04555,1.512 -4.81376,2.47879 -7.86745,2.47879 -2.03866,0 -3.94916,-0.46465 -5.60422,-1.18551 l -12.71725,8.62187 c 1.41637,1.40302 2.58656,3.03669 2.58656,4.95757 0,0.38629 -0.0207,0.81611 -0.1076,1.18551 -0.26038,1.10822 -0.89788,2.08576 -1.6166,3.01765 l 9.26851,6.68195 c 1.36953,-0.45024 2.83104,-0.75442 4.4187,-0.75442 3.0537,0 5.82187,0.96683 7.86746,2.47879 2.04559,1.51197 3.34097,3.55804 3.34097,5.92753 0,2.3695 -1.29538,4.52331 -3.34097,6.03531 -2.04559,1.512 -4.81373,2.47879 -7.86746,2.47879 -3.05369,0 -5.82955,-0.96634 -7.86745,-2.47879 -2.0379,-1.51245 -3.34097,-3.66705 -3.34097,-6.03531 0,-1.0858 0.24693,-2.09973 0.75441,-3.01765 0.25383,-0.45896 0.61467,-0.87836 0.96996,-1.29328 0.35529,-0.41492 0.74565,-0.81604 1.18551,-1.18551 l -8.5141,-6.25085 c -1.83083,0.96448 -3.97337,1.72437 -6.35862,1.72437 -2.95613,0 -5.63088,-1.05386 -7.65191,-2.47878 l -11.85507,8.19077 c 1.43175,1.12157 2.55573,2.5966 3.01766,4.20316 0.15381,0.53552 0.21554,1.04725 0.21554,1.6166 0,1.02966 -0.41388,1.90002 -0.86218,2.80211 l 10.45401,7.54413 c 1.40633,-0.47644 2.89084,-0.75441 4.52648,-0.75441 3.05369,0 5.92967,0.85901 7.97523,2.37101 2.04555,1.512 3.34097,3.66592 3.34097,6.03531 0,2.36949 -1.29511,4.53134 -3.34097,6.03531 -2.04587,1.50396 -4.92247,2.37101 -7.97523,2.37101 -1.52638,0 -2.98141,-0.13416 -4.31093,-0.53887 -0.66478,-0.20244 -1.34495,-0.46165 -1.93992,-0.75441 -0.59498,-0.2928 -1.10515,-0.70175 -1.6166,-1.07773 -2.04587,-1.50397 -3.34098,-3.66582 -3.34098,-6.03531 0,-2.11177 1.34074,-3.92095 3.01766,-5.38867 l -9.48406,-6.78972 c -2.04141,1.50652 -4.71109,2.58656 -7.75968,2.58656 -3.48785,0 -6.54434,-1.21427 -8.62187,-3.12543 l -11.20842,7.75968 c 0.54266,0.64482 1.05173,1.41916 1.40105,2.15547 0.17451,0.36816 0.33384,0.68654 0.43109,1.07774 0.0973,0.39119 0.1076,0.7712 0.1076,1.1855 0,2.36957 -1.2951,4.53131 -3.34097,6.03531 -0.51145,0.37598 -1.02162,0.78493 -1.6166,1.07773 -1.18995,0.58556 -2.54593,0.97593 -3.98761,1.18551 -0.72082,0.10484 -1.50007,0.1076 -2.26324,0.1076 -3.0528,0 -5.92936,-0.86702 -7.97523,-2.37101 -2.04586,-1.504 -3.34097,-3.66575 -3.34097,-6.03531 0,-2.36939 1.29542,-4.52331 3.34097,-6.03531 2.04556,-1.512 4.9215,-2.37101 7.97523,-2.37101 2.12794,0 4.00527,0.51238 5.71198,1.29328 l 12.60949,-8.62187 c -0.17899,-0.5718 -0.4311,-1.0906 -0.4311,-1.72437 0,-2.36939 1.29542,-4.52327 3.34098,-6.03531 2.04555,-1.51203 4.81376,-2.47879 7.86745,-2.47879 1.30211,0 2.60235,0.22969 3.77207,0.53887 l 1.72437,-1.29328 0.21555,-0.1076 11.42397,-7.75968 c -0.45327,-0.91357 -0.86219,-1.87557 -0.86219,-2.90988 0,-2.36939 1.29542,-4.52327 3.34098,-6.03531 2.04555,-1.51203 4.9215,-2.37101 7.97522,-2.37101 1.7331,0 3.26976,0.33073 4.74203,0.86219 l 1.50883,-0.96996 11.42397,-7.86746 c -1.10108,-1.29669 -2.04769,-2.74806 -2.04769,-4.4187 0,-2.3695 1.40288,-4.53135 3.44874,-6.03531 2.04587,-1.50396 4.81466,-2.37101 7.86746,-2.37101 2.61925,0 4.96937,0.68699 6.89749,1.83214 l 8.29855,-5.60421 c -0.54221,-0.98531 -0.96996,-2.09511 -0.96996,-3.2332 0,-2.36939 1.29542,-4.52327 3.34097,-6.03531 1.91102,-1.41257 4.61842,-2.1515 7.43636,-2.26324 l 0,-0.1076 z m 0.53887,3.55652 c -2.08904,0 -4.01627,0.6785 -5.28089,1.6166 -0.95272,0.70661 -1.58425,1.50965 -1.83215,2.37101 -0.0828,0.28728 -0.1076,0.5549 -0.1076,0.86219 0,0.92216 0.3535,1.80255 1.07774,2.58656 0.24141,0.26141 0.54462,0.51883 0.86218,0.75441 0.94847,0.70347 2.28945,1.274 3.77207,1.50883 0.4942,0.0783 0.98658,0.1076 1.50882,0.1076 2.08925,0 3.89857,-0.67599 5.17312,-1.6166 1.28032,-0.94499 1.93992,-2.12046 1.93992,-3.34098 0,-1.22013 -0.65967,-2.28841 -1.93992,-3.2332 -1.27455,-0.94075 -3.08387,-1.6166 -5.17312,-1.6166 z m -25.54228,15.41158 c -2.09014,0 -4.01537,0.5766 -5.28089,1.50883 -0.95365,0.70265 -1.5071,1.58587 -1.72437,2.47879 -0.0724,0.29762 -0.1076,0.55487 -0.1076,0.86218 0,0.92189 0.27589,1.80253 0.96996,2.58656 0.23141,0.26142 0.54462,0.51887 0.86218,0.75442 1.26462,0.93809 3.19182,1.50882 5.2809,1.50882 2.08918,0 3.89853,-0.56807 5.17312,-1.50882 1.28024,-0.94482 1.93992,-2.12071 1.93992,-3.34098 0,-1.22016 -0.6584,-2.40153 -1.93992,-3.34097 -1.27549,-0.93489 -3.08287,-1.50883 -5.17312,-1.50883 z m 51.94675,0 c -2.09008,0 -3.9076,0.5766 -5.17312,1.50883 -0.95365,0.70265 -1.58456,1.58587 -1.83215,2.47879 -0.0824,0.29762 -0.1076,0.55487 -0.1076,0.86218 0,0.92189 0.3535,1.80253 1.07773,2.58656 0.24142,0.26142 0.54463,0.51887 0.86219,0.75442 1.26462,0.93809 3.08408,1.50882 5.17312,1.50882 2.08925,0 4.00631,-0.56807 5.2809,-1.50882 1.28024,-0.94482 1.93992,-2.12071 1.93992,-3.34098 0,-1.22016 -0.6584,-2.40153 -1.93992,-3.34097 -1.27549,-0.93489 -3.19061,-1.50883 -5.2809,-1.50883 z m -26.62002,18.86034 c -2.09025,0 -3.8976,0.68161 -5.17311,1.6166 -0.9611,0.70444 -1.58691,1.51024 -1.83215,2.37101 -0.0817,0.28694 -0.1076,0.55715 -0.1076,0.86219 0,0.91536 0.35208,1.80011 1.07773,2.58656 0.24176,0.2621 0.54215,0.51821 0.86219,0.75441 0.95596,0.70558 2.2143,1.27466 3.66429,1.50883 0.48334,0.0779 0.98651,0.1076 1.50883,0.1076 2.08904,0 4.0163,-0.67847 5.28089,-1.6166 1.27028,-0.94213 1.93992,-2.11163 1.93992,-3.34097 0,-1.22903 -0.6684,-2.29653 -1.93992,-3.23321 -1.26552,-0.93236 -3.19078,-1.6166 -5.28089,-1.6166 z m -52.27006,1.93992 c -2.09011,0 -4.01545,0.68423 -5.28089,1.6166 -0.95365,0.70247 -1.58457,1.5858 -1.83215,2.47878 -0.0824,0.29763 -0.1076,0.55487 -0.1076,0.86219 0,0.92199 0.35349,1.83287 1.07773,2.58656 0.24141,0.25141 0.54463,0.41109 0.86219,0.64664 0.94847,0.70348 2.28945,1.274 3.77206,1.50883 0.49421,0.0783 0.98655,0.1076 1.50883,0.1076 2.08922,0 3.89853,-0.67589 5.17312,-1.6166 1.28031,-0.94499 1.93992,-2.01286 1.93992,-3.2332 0,-1.22017 -0.6584,-2.40154 -1.93992,-3.34097 -1.27552,-0.93489 -3.08287,-1.61661 -5.17312,-1.61661 z m 106.58783,0 c -2.09025,0 -3.8976,0.68171 -5.17312,1.6166 -0.96113,0.70458 -1.58691,1.58773 -1.83215,2.47878 -0.0817,0.29694 -0.1076,0.55715 -0.1076,0.86219 0,0.91523 0.35208,1.83035 1.07773,2.58656 0.24176,0.2521 0.54211,0.4104 0.86219,0.64664 0.95596,0.70555 2.2143,1.27462 3.66429,1.50883 0.48334,0.0779 0.98652,0.1076 1.50883,0.1076 2.08904,0 4.01624,-0.67865 5.28089,-1.6166 1.27028,-0.94216 1.93992,-2.00386 1.93992,-3.2332 0,-1.2292 -0.66843,-2.40433 -1.93992,-3.34097 -1.26548,-0.93241 -3.19078,-1.61661 -5.28089,-1.61661 z m -25.00342,17.67482 c -2.09014,0 -4.01541,0.68424 -5.28089,1.6166 -0.95365,0.70262 -1.5071,1.50838 -1.72437,2.37102 -0.0724,0.28762 -0.10761,0.5549 -0.10761,0.86218 0,0.92199 0.2759,1.80253 0.96996,2.58657 0.23142,0.26141 0.54463,0.51882 0.86219,0.75441 0.94848,0.70347 2.28945,1.274 3.77207,1.50883 0.4942,0.0783 0.98655,0.1076 1.50883,0.1076 2.08925,0 4.0063,-0.67603 5.28089,-1.6166 1.28031,-0.945 1.83215,-2.12064 1.83215,-3.34098 0,-1.22016 -0.55063,-2.29376 -1.83215,-3.2332 -1.27549,-0.93488 -3.19061,-1.6166 -5.28089,-1.6166 z m -58.41314,0.86219 c -2.08905,0 -3.90854,0.67865 -5.17312,1.6166 -0.95272,0.70679 -1.58429,1.58711 -1.83215,2.47879 -0.0828,0.29728 -0.1076,0.55483 -0.1076,0.86219 0,1.22916 0.66964,2.39881 1.93992,3.34097 0.94847,0.70358 2.21199,1.19658 3.66429,1.40105 0.4841,0.0683 0.98658,0.1076 1.50883,0.1076 2.08925,0 4.0063,-0.56807 5.28089,-1.50882 1.28025,-0.94482 1.93992,-2.12067 1.93992,-3.34098 0,-1.2203 -0.65964,-2.39601 -1.93992,-3.34097 -1.27459,-0.94075 -3.19164,-1.6166 -5.28089,-1.6166 z m 111.00653,1.07773 c -2.09011,0 -4.01541,0.68441 -5.28089,1.6166 -0.95365,0.70265 -1.5071,1.50842 -1.72438,2.37102 -0.0724,0.28762 -0.1076,0.55494 -0.1076,0.86219 0,0.92216 0.2759,1.80252 0.96996,2.58656 0.23141,0.26141 0.5446,0.51876 0.86219,0.75441 0.94844,0.70347 2.28942,1.274 3.77207,1.50883 0.4942,0.0783 0.98655,0.1076 1.50883,0.1076 2.08904,0 3.90849,-0.67861 5.17312,-1.6166 1.27041,-0.94258 1.93992,-2.11143 1.93992,-3.34098 0,-1.22896 -0.66841,-2.29635 -1.93992,-3.2332 -1.26552,-0.93223 -3.08301,-1.6166 -5.17312,-1.6166 z m -161.76778,0.32315 c -2.08904,0 -3.90849,0.67847 -5.17312,1.6166 -0.95271,0.70662 -1.58425,1.58712 -1.83214,2.47879 -0.0828,0.29728 -0.1076,0.55487 -0.1076,0.86219 0,0.92188 0.35332,1.83359 1.07773,2.58656 0.24141,0.25106 0.54432,0.41247 0.86219,0.64664 0.94909,0.6993 2.21202,1.27269 3.66429,1.50882 0.4841,0.0786 0.98631,0.1076 1.50883,0.1076 2.09014,0 4.01541,-0.68419 5.28089,-1.6166 1.27152,-0.93668 1.93992,-2.00403 1.93992,-3.2332 0,-1.2292 -0.66964,-2.39881 -1.93992,-3.34097 -1.26462,-0.93813 -3.19181,-1.6166 -5.28089,-1.6166 z m -29.0988,17.56706 c -2.08908,0 -4.01624,0.67861 -5.28089,1.6166 -0.95268,0.70658 -1.58425,1.58708 -1.83215,2.47878 -0.0828,0.29729 -0.1076,0.55487 -0.1076,0.86219 0,0.92161 0.35333,1.83349 1.07774,2.58656 0.24141,0.25107 0.54431,0.41244 0.86218,0.64664 0.94917,0.69916 2.28952,1.27266 3.77207,1.50883 0.49417,0.0786 0.98631,0.1076 1.50883,0.1076 2.09004,0 3.90756,-0.68437 5.17312,-1.6166 1.27151,-0.93685 1.93992,-2.00438 1.93992,-3.2332 0,-1.22934 -0.66968,-2.39885 -1.93992,-3.34098 -1.26466,-0.93799 -3.08408,-1.6166 -5.17312,-1.6166 z m 54.53331,0.53886 c -2.08908,0 -3.9085,0.67848 -5.17312,1.6166 -0.95271,0.70662 -1.58425,1.50966 -1.83215,2.37102 -0.0828,0.28728 -0.1076,0.55487 -0.1076,0.86218 0,0.61467 0.21279,1.26766 0.53887,1.83215 0.16313,0.28211 0.29728,0.49334 0.53887,0.75441 0.24141,0.26107 0.54431,0.52025 0.86218,0.75442 0.94913,0.69926 2.21203,1.27269 3.6643,1.50882 0.4841,0.0786 0.9863,0.1076 1.50882,0.1076 2.09022,0 4.00541,-0.68161 5.2809,-1.6166 1.28152,-0.9393 1.93992,-2.12066 1.93992,-3.34097 0,-1.22013 -0.65971,-2.28845 -1.93992,-3.2332 -1.27459,-0.94078 -3.19168,-1.6166 -5.2809,-1.6166 z m 56.25768,1.50883 c -2.09025,0 -3.8976,0.57394 -5.17312,1.50883 -0.9611,0.7044 -1.5869,1.5877 -1.83214,2.47878 -0.0817,0.29694 -0.1076,0.55718 -0.1076,0.86219 0,0.91537 0.35208,1.80007 1.07773,2.58656 0.24175,0.2621 0.54211,0.51817 0.86218,0.75441 1.27459,0.94072 3.08391,1.50883 5.17312,1.50883 2.08908,0 4.01631,-0.57087 5.2809,-1.50883 1.27027,-0.94216 1.83214,-2.11163 1.83214,-3.34097 0,-1.22882 -0.56059,-2.40416 -1.83214,-3.34097 -1.26549,-0.93227 -3.19082,-1.50883 -5.2809,-1.50883 z"
 
         style="fill:#afe478;fill-opacity:1;fill-rule:evenodd;stroke:none"
 
         inkscape:connector-curvature="0" /><path
 
         transform="translate(0,308.2677)"
 
         id="path4212-7-6-7-3-0-7-3-1"
 
         d="M 242.96875,155.625 272.625,178.84375 245.8125,179 230.9375,167.59375 216.28125,167.5 l 26.375,20.6875 0.3125,-0.21875 0,0.0625 41.09375,-0.21875 0.8125,0.625 -15.0625,82.59375 57.96875,0.4375 L 311.75,189.25 l 1.78125,-1.40625 41.125,0.21875 0,-0.0625 0.28125,0.21875 26.375,-20.6875 -14.65625,0.0937 -14.875,11.40625 -26.8125,-0.15625 29.6875,-23.21875 -15.90625,0.1875 -29.09375,22.6875 -2.09375,-10.8125 -18.875,-0.1875 -1.84375,10.09375 -27.96875,-21.8125 -15.90625,-0.1875 z"
 
         style="fill:#577632;fill-opacity:1;stroke:none"
 
         inkscape:connector-curvature="0" /></g></g><g
 
     id="g4480-0"
 
     transform="matrix(1.8842212,0,0,1.1183954,409.57002,-905.98818)" /><g
 
     style="fill:#577632"
 
     transform="matrix(2.1910821,0,0,1.3005353,-703.58095,-489.37937)"
 
     id="g5539-5" /><g
 
     id="g4480-1-0"
 
     transform="matrix(1.8842212,0,0,1.1183954,-1334.0412,-1196.6312)" /></g></g></svg>
...
 
\ No newline at end of file
 
     transform="matrix(1.8842212,0,0,1.1183954,-1334.0412,-1196.6312)" /></g></g></svg>
conservancy/static/img/projects/CWL-Logo-nofonts.svg
Show inline comments
...
 
@@ -108,385 +108,385 @@
 
       id="path4639" /><path
 
       d="m 240.79508,271.24668 3.245,0 0,-30.16375 c 0,-4.72 -0.295,-9.145 -0.4425,-13.79125 l 0.295,0 5.4575,9.66125 20.5025,34.29375 3.54,0 0,-48.60125 -3.245,0 0,29.795 c 0,4.72 0.295,9.44 0.4425,14.16 l -0.295,0 -5.4575,-9.66125 -20.5025,-34.29375 -3.54,0 0,48.60125 z"
 
       style="fill:#8c8c8c;fill-opacity:1"
 
       id="path4641" /><path
 
       d="m 305.52683,272.13168 c 6.3425,0 11.3575,-2.28625 14.38125,-5.53125 l 0,-19.24875 -14.8975,0 0,2.87625 11.6525,0 0,15.11875 c -2.36,2.36 -6.49,3.6875 -10.915,3.6875 -11.0625,0 -17.5525,-8.7025 -17.5525,-22.19875 0,-13.49625 6.85875,-21.9775 17.995,-21.9775 5.31,0 8.7025,2.28625 11.21,5.015 l 1.99125,-2.28625 c -2.58125,-2.72875 -6.71125,-5.82625 -13.275,-5.82625 -12.8325,0 -21.46125,9.66125 -21.46125,25.075 0,15.4875 8.33375,25.29625 20.87125,25.29625 z"
 
       style="fill:#8c8c8c;fill-opacity:1"
 
       id="path4643" /><path
 
       d="m 348.55766,272.13168 c 8.4075,0 16.44625,-4.35125 16.44625,-19.54375 l 0,-29.9425 -3.17125,0 0,29.57375 c 0,12.90625 -6.26875,16.815 -13.275,16.815 -6.85875,0 -12.90625,-3.90875 -12.90625,-16.815 l 0,-29.57375 -3.3925,0 0,29.9425 c 0,15.1925 7.965,19.54375 16.29875,19.54375 z"
 
       style="fill:#8c8c8c;fill-opacity:1"
 
       id="path4645" /><path
 
       d="m 384.49119,242.63168 c 1.99125,-5.7525 3.6875,-10.84125 5.38375,-16.815 l 0.295,0 c 1.69625,5.97375 3.3925,11.0625 5.38375,16.815 l 3.0975,9.07125 -17.2575,0 3.0975,-9.07125 z m -13.275,28.615 3.3925,0 5.7525,-16.6675 19.24875,0 5.67875,16.6675 3.54,0 -17.11,-48.60125 -3.3925,0 -17.11,48.60125 z"
 
       style="fill:#8c8c8c;fill-opacity:1"
 
       id="path4647" /><path
 
       d="m 433.58103,272.13168 c 6.3425,0 11.3575,-2.28625 14.38125,-5.53125 l 0,-19.24875 -14.8975,0 0,2.87625 11.6525,0 0,15.11875 c -2.36,2.36 -6.49,3.6875 -10.915,3.6875 -11.0625,0 -17.5525,-8.7025 -17.5525,-22.19875 0,-13.49625 6.85875,-21.9775 17.995,-21.9775 5.31,0 8.7025,2.28625 11.21,5.015 l 1.99125,-2.28625 c -2.58125,-2.72875 -6.71125,-5.82625 -13.275,-5.82625 -12.8325,0 -21.46125,9.66125 -21.46125,25.075 0,15.4875 8.33375,25.29625 20.87125,25.29625 z"
 
       style="fill:#8c8c8c;fill-opacity:1"
 
       id="path4649" /><path
 
       d="m 460.4606,271.24668 27.36125,0 0,-2.95 -23.96875,0 0,-21.3875 19.47,0 0,-2.95 -19.47,0 0,-18.36375 23.23125,0 0,-2.95 -26.62375,0 0,48.60125 z"
 
       style="fill:#8c8c8c;fill-opacity:1"
 
       id="path4651" /></g><text
 
     xml:space="preserve"
 
     style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:73.75px;line-height:100%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Light';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#8c8c8c;fill-opacity:0;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
 
     x="159.89133"
 
     y="123.74668"
 
     id="text4489-9"
 
     sodipodi:linespacing="100%"><tspan
 
       sodipodi:role="line"
 
       id="tspan4491-1"
 
       x="159.89133"
 
       y="123.74668">COMMON</tspan><tspan
 
       sodipodi:role="line"
 
       x="159.89133"
 
       y="197.49667"
 
       id="tspan4493-1">WORKFLOW</tspan><tspan
 
       sodipodi:role="line"
 
       x="159.89133"
 
       y="271.24667"
 
       id="tspan4495-9">LANGUAGE</tspan></text>
 
<g
 
     id="Alternative"
 
     display="none"
 
     style="display:none"
 
     transform="translate(-246,-102)"><g
 
       id="Tagline"
 
       display="inline"
 
       style="display:inline"><g
 
         id="g6"><path
 
           d="m 502.9,364.3 0,8.3 -8.4,0 0,-38.9 6.9,0 0.6,2.8 0.2,0 c 1.1,-1 2.4,-1.8 3.8,-2.5 1.4,-0.7 2.8,-1 4.3,-1 1.7,0 3.3,0.3 4.6,1 1.4,0.7 2.5,1.7 3.5,2.9 1,1.3 1.7,2.8 2.2,4.6 0.5,1.8 0.8,3.8 0.8,5.9 0,2.4 -0.3,4.6 -1,6.5 -0.7,1.9 -1.6,3.5 -2.7,4.8 -1.1,1.3 -2.4,2.3 -3.8,3 -1.4,0.7 -2.9,1 -4.4,1 -1.2,0 -2.4,-0.3 -3.6,-0.8 -1.1,-0.5 -2.2,-1.2 -3.2,-2.2 l 0.2,4.6 z m 0,-10.3 c 0.8,0.7 1.5,1.2 2.3,1.4 0.8,0.3 1.5,0.4 2.2,0.4 1.5,0 2.7,-0.7 3.7,-2 1,-1.3 1.5,-3.4 1.5,-6.4 0,-5.1 -1.6,-7.7 -4.9,-7.7 -1.6,0 -3.3,0.9 -4.9,2.6 l 0,11.7 z"
 
           id="path8"
 
           inkscape:connector-curvature="0"
 
           style="fill:#808080" /><path
 
           d="m 527.3,333.6 6.9,0 0.6,5 0.2,0 c 1,-1.9 2.3,-3.4 3.7,-4.3 1.5,-0.9 2.9,-1.4 4.4,-1.4 0.8,0 1.5,0 2,0.1 0.5,0.1 1,0.2 1.4,0.4 l -1.4,7.3 c -0.5,-0.2 -1,-0.3 -1.5,-0.3 -0.5,-0.1 -1,-0.1 -1.6,-0.1 -1.1,0 -2.2,0.4 -3.4,1.1 -1.2,0.8 -2.1,2.1 -2.9,4.1 l 0,16.5 -8.4,0 0,-28.4 z"
 
           id="path10"
 
           inkscape:connector-curvature="0"
 
           style="fill:#808080" /><path
 
           d="m 547.9,347.8 c 0,-2.4 0.4,-4.5 1.1,-6.3 0.7,-1.8 1.8,-3.4 3.1,-4.7 1.3,-1.3 2.8,-2.2 4.4,-2.9 1.7,-0.7 3.4,-1 5.2,-1 1.8,0 3.5,0.3 5.2,1 1.7,0.7 3.1,1.6 4.4,2.9 1.3,1.3 2.3,2.8 3.1,4.7 0.8,1.9 1.1,4 1.1,6.3 0,2.4 -0.4,4.5 -1.1,6.3 -0.8,1.9 -1.8,3.4 -3.1,4.7 -1.3,1.3 -2.8,2.2 -4.4,2.9 -1.7,0.7 -3.4,1 -5.2,1 -1.8,0 -3.5,-0.3 -5.2,-1 -1.7,-0.7 -3.2,-1.6 -4.4,-2.9 -1.2,-1.3 -2.3,-2.8 -3.1,-4.7 -0.7,-1.8 -1.1,-3.9 -1.1,-6.3 z m 8.6,0 c 0,2.5 0.4,4.4 1.3,5.9 0.9,1.5 2.2,2.2 3.9,2.2 1.7,0 3,-0.7 3.9,-2.2 0.9,-1.5 1.3,-3.4 1.3,-5.9 0,-2.5 -0.4,-4.4 -1.3,-5.9 -0.9,-1.5 -2.2,-2.2 -3.9,-2.2 -1.8,0 -3.1,0.7 -3.9,2.2 -0.8,1.5 -1.3,3.4 -1.3,5.9 z"
 
           id="path12"
 
           inkscape:connector-curvature="0"
 
           style="fill:#808080" /><path
 
           d="m 581.4,333.6 8.4,0 0,28.2 c 0,1.6 -0.2,3 -0.5,4.4 -0.3,1.4 -0.9,2.6 -1.7,3.6 -0.8,1 -1.8,1.9 -3.1,2.5 -1.3,0.6 -2.9,0.9 -4.9,0.9 -1.2,0 -2.2,-0.1 -3,-0.2 -0.8,-0.1 -1.5,-0.3 -2,-0.6 l 1.5,-6.2 c 0.4,0.1 0.7,0.2 1.1,0.3 0.3,0.1 0.7,0.1 1.1,0.1 1.1,0 1.9,-0.4 2.3,-1.1 0.4,-0.7 0.7,-1.9 0.7,-3.5 l 0,-28.4 z m 4.3,-4.1 c -1.4,0 -2.6,-0.4 -3.5,-1.2 -0.9,-0.8 -1.4,-1.9 -1.4,-3.2 0,-1.3 0.5,-2.3 1.4,-3.1 0.9,-0.8 2.1,-1.2 3.5,-1.2 1.4,0 2.6,0.4 3.5,1.2 0.9,0.8 1.4,1.9 1.4,3.1 0,1.3 -0.5,2.4 -1.4,3.2 -0.9,0.7 -2.1,1.2 -3.5,1.2 z"
 
           id="path14"
 
           inkscape:connector-curvature="0"
 
           style="fill:#808080" /><path
 
           d="m 595.7,347.8 c 0,-2.3 0.4,-4.4 1.1,-6.2 0.7,-1.8 1.8,-3.4 3,-4.7 1.2,-1.3 2.7,-2.3 4.3,-2.9 1.6,-0.7 3.3,-1 5,-1 2,0 3.8,0.3 5.3,1 1.5,0.7 2.8,1.6 3.8,2.9 1,1.2 1.8,2.7 2.3,4.3 0.5,1.7 0.7,3.5 0.7,5.4 0,0.8 0,1.5 -0.1,2.1 -0.1,0.6 -0.2,1.1 -0.2,1.5 l -17,0 c 0.4,2.2 1.2,3.8 2.6,4.7 1.4,0.9 2.9,1.5 4.8,1.5 2,0 4.1,-0.6 6.1,-1.9 l 2.8,5.1 c -1.5,1 -3.1,1.8 -4.8,2.3 -1.7,0.5 -3.5,0.9 -5.2,0.9 -2,0 -3.9,-0.3 -5.7,-1 -1.8,-0.7 -3.3,-1.6 -4.6,-2.9 -1.3,-1.3 -2.3,-2.8 -3,-4.7 -0.9,-1.9 -1.2,-4 -1.2,-6.4 z m 18.3,-2.9 c 0,-1.6 -0.4,-3 -1.1,-4 -0.7,-1 -2,-1.5 -3.7,-1.5 -1.3,0 -2.5,0.4 -3.5,1.3 -1,0.9 -1.7,2.3 -2,4.2 l 10.3,0 z"
 
           id="path16"
 
           inkscape:connector-curvature="0"
 
           style="fill:#808080" /><path
 
           d="m 625.4,347.8 c 0,-2.4 0.4,-4.5 1.2,-6.3 0.8,-1.9 1.9,-3.4 3.2,-4.7 1.3,-1.3 2.9,-2.2 4.7,-2.9 1.8,-0.7 3.7,-1 5.6,-1 1.8,0 3.3,0.3 4.8,0.9 1.4,0.6 2.6,1.4 3.6,2.4 l -3.8,5.2 c -1.3,-1.1 -2.7,-1.7 -4,-1.7 -2.1,0 -3.7,0.7 -4.9,2.2 -1.2,1.5 -1.8,3.4 -1.8,5.9 0,2.5 0.6,4.4 1.8,5.9 1.2,1.5 2.7,2.2 4.6,2.2 1,0 2,-0.2 2.8,-0.6 0.8,-0.4 1.6,-0.9 2.3,-1.4 l 3.4,5.3 c -1.4,1.2 -2.9,2.1 -4.6,2.7 -1.7,0.6 -3.3,0.9 -4.9,0.9 -2,0 -3.8,-0.3 -5.5,-1 -1.7,-0.7 -3.2,-1.6 -4.4,-2.9 -1.3,-1.3 -2.3,-2.8 -3,-4.7 -0.8,-1.9 -1.1,-4 -1.1,-6.4 z"
 
           id="path18"
 
           inkscape:connector-curvature="0"
 
           style="fill:#808080" /><path
 
           d="m 655,340.2 -3.9,0 0,-6.2 4.4,-0.3 1,-7.6 7,0 0,7.6 6.8,0 0,6.6 -6.8,0 0,11.4 c 0,1.6 0.3,2.8 1,3.5 0.7,0.7 1.6,1.1 2.7,1.1 0.5,0 0.9,-0.1 1.4,-0.2 0.5,-0.1 0.9,-0.2 1.3,-0.4 l 1.3,6.1 c -0.8,0.2 -1.7,0.5 -2.7,0.7 -1,0.2 -2.2,0.3 -3.6,0.3 -1.8,0 -3.3,-0.3 -4.5,-0.8 -1.2,-0.5 -2.3,-1.3 -3,-2.2 -0.8,-1 -1.4,-2.1 -1.7,-3.5 -0.4,-1.4 -0.5,-2.9 -0.5,-4.5 l 0,-11.6 z"
 
           id="path20"
 
           inkscape:connector-curvature="0"
 
           style="fill:#808080" /></g></g><g
 
       id="Type_1_"
 
       display="inline"
 
       style="display:inline"><g
 
         id="g23"><path
 
           d="m 487.8,247.5 c 0,-6.9 0.9,-13.2 2.7,-18.8 1.8,-5.6 4.3,-10.4 7.5,-14.3 3.2,-3.9 7.1,-6.9 11.7,-9.1 4.6,-2.1 9.7,-3.2 15.3,-3.2 5.1,0 9.5,1.1 13.3,3.2 3.8,2.1 6.8,4.5 9.2,7.2 l -2.7,2.9 c -2.4,-2.8 -5.3,-5.1 -8.6,-6.8 -3.3,-1.7 -7,-2.5 -11.2,-2.5 -5.1,0 -9.7,1 -13.7,2.9 -4.1,1.9 -7.5,4.7 -10.3,8.3 -2.8,3.6 -5,8 -6.4,13.1 -1.5,5.1 -2.2,10.8 -2.2,17.2 0,6.3 0.7,12.1 2.2,17.2 1.5,5.2 3.6,9.6 6.4,13.2 2.8,3.7 6.2,6.5 10.1,8.5 3.9,2 8.4,3 13.4,3 4.7,0 8.9,-0.9 12.5,-2.8 3.6,-1.9 7.1,-4.7 10.5,-8.4 l 2.7,2.7 c -3.4,3.9 -7.1,7 -11.2,9.2 -4.1,2.2 -9,3.3 -14.8,3.3 -5.4,0 -10.4,-1.1 -14.9,-3.3 -4.5,-2.2 -8.3,-5.3 -11.5,-9.3 -3.2,-4 -5.7,-8.8 -7.4,-14.5 -1.7,-5.6 -2.6,-11.9 -2.6,-18.9 z"
 
           id="path25"
 
           inkscape:connector-curvature="0"
 
           style="fill:#808080" /><path
 
           d="m 559.6,203.7 4.6,0 11.8,53.4 6.4,28.9 0.5,0 c 1.1,-4.8 2.2,-9.6 3.3,-14.4 1.2,-4.8 2.4,-9.6 3.6,-14.4 l 14.5,-53.4 4.8,0 14.5,53.4 7.2,28.9 0.5,0 c 1.1,-4.8 2.1,-9.6 3.1,-14.4 1,-4.8 2,-9.6 3.1,-14.4 l 11.8,-53.4 4.3,0 -20.3,88.2 -4.3,0 -17.1,-63.3 c -0.8,-3.5 -1.6,-6.8 -2.4,-9.9 -0.8,-3.1 -1.6,-6.4 -2.4,-9.9 l -0.5,0 c -0.8,3.5 -1.7,6.8 -2.5,9.9 -0.9,3.1 -1.7,6.4 -2.5,9.9 l -16.9,63.3 -4.3,0 -20.8,-88.4 z"
 
           id="path27"
 
           inkscape:connector-curvature="0"
 
           style="fill:#808080" /><path
 
           d="m 671.2,203.7 4.3,0 0,84.4 41.5,0 0,3.7 -45.8,0 0,-88.1 z"
 
           id="path29"
 
           inkscape:connector-curvature="0"
 
           style="fill:#808080" /></g></g><g
 
       id="Logo_1_"
 
       display="inline"
 
       style="display:inline"><g
 
         id="w_1_"
 
         enable-background="new    "><g
 
           id="w"><g
 
             id="g34"><linearGradient
 
               id="SVGID_1_"
 
               gradientUnits="userSpaceOnUse"
 
               x1="316.74921"
 
               y1="280.4678"
 
               x2="395.62491"
 
               y2="280.4678"><stop
 
                 offset="0"
 
                 style="stop-color:#A2B552"
 
                 id="stop37" /><stop
 
                 offset="1"
 
                 style="stop-color:#6F7A1B"
 
                 id="stop39" /></linearGradient><polygon
 
               points="374.1,337.1 395.6,315.6 359.8,279.8 395.6,243.9 372.7,223.8 316.7,279.8 "
 
               id="polygon41"
 
               style="fill:url(#SVGID_1_)" /></g></g></g><g
 
         id="l_1_"
 
         enable-background="new    "><g
 
           id="l"><g
 
             id="g45"><linearGradient
 
               id="SVGID_2_"
 
               gradientUnits="userSpaceOnUse"
 
               x1="316.74921"
 
               y1="373.29541"
 
               x2="412.625"
 
               y2="373.29541"><stop
 
                 offset="0"
 
                 style="stop-color:#C0D470"
 
                 id="stop48" /><stop
 
                 offset="1"
 
                 style="stop-color:#AB9B2A"
 
                 id="stop50" /></linearGradient><polygon
 
               points="318.3,387.4 318.2,387.5 366.2,436 387.9,414.1 359.9,385.6 412.6,332.5 391,310.6 316.7,385.8 "
 
               id="polygon52"
 
               style="fill:url(#SVGID_2_)" /></g></g></g><g
 
         id="c_1_"
 
         enable-background="new    "><g
 
           id="c"><g
 
             id="g56"><linearGradient
 
               id="SVGID_3_"
 
               gradientUnits="userSpaceOnUse"
 
               x1="366.23239"
 
               y1="246.7811"
 
               x2="366.23239"
 
               y2="101.9866"><stop
 
                 offset="0"
 
                 style="stop-color:#AB9B2A"
 
                 id="stop59" /><stop
 
                 offset="1"
 
                 style="stop-color:#C0D470"
 
                 id="stop61" /></linearGradient><polygon
 
               points="319.7,177.9 319.6,178 392.8,246.8 414.3,225.3 363,176 414.3,124.2 392.4,102 318.2,176.5 "
 
               id="polygon63"
 
               style="fill:url(#SVGID_3_)" /></g></g></g></g></g><g
 
     id="Logo"
 
     transform="translate(-246,-102)"><g
 
       enable-background="new    "
 
       id="w_copy_1_"><g
 
         id="w_copy"><g
 
           id="g69"><linearGradient
 
             y2="280.4678"
 
             x2="324.8757"
 
             y1="280.4678"
 
             x1="246"
 
             gradientUnits="userSpaceOnUse"
 
             id="SVGID_4_"><stop
 
               id="stop72"
 
               style="stop-color:#AD2B2F"
 
               offset="0" /><stop
 
               id="stop74"
 
               style="stop-color:#5B172C"
 
               offset="1" /></linearGradient><polygon
 
             style="fill:url(#SVGID_4_)"
 
             id="polygon76"
 
             points="289,279.8 324.9,243.9 301.9,223.8 246,279.8 303.4,337.1 324.9,315.6 " /></g></g></g><g
 
       enable-background="new    "
 
       id="l_copy_1_"><g
 
         id="l_copy"><g
 
           id="g80"><linearGradient
 
             y2="310.59079"
 
             x2="293.9379"
 
             y1="436"
 
             x1="293.9379"
 
             gradientUnits="userSpaceOnUse"
 
             id="SVGID_5_"><stop
 
               id="stop83"
 
               style="stop-color:#C03B70"
 
               offset="0" /><stop
 
               id="stop85"
 
               style="stop-color:#AB292A"
 
               offset="1" /></linearGradient><polygon
 
             style="fill:url(#SVGID_5_)"
 
             id="polygon87"
 
             points="295.5,436 317.1,414.1 289.2,385.6 341.9,332.5 320.2,310.6 246,385.8 247.6,387.4 247.4,387.5 " /></g></g></g><g
 
       enable-background="new    "
 
       id="c_copy_1_"><g
 
         id="c_copy"><g
 
           id="g91"><linearGradient
 
             y2="101.9866"
 
             x2="295.48318"
 
             y1="246.7811"
 
             x1="295.48318"
 
             gradientUnits="userSpaceOnUse"
 
             id="SVGID_6_"><stop
 
               id="stop94"
 
               style="stop-color:#AB292A"
 
               offset="0" /><stop
 
               id="stop96"
 
               style="stop-color:#C03B70"
 
               offset="1" /></linearGradient><polygon
 
             style="fill:url(#SVGID_6_)"
 
             id="polygon98"
 
             points="322,246.8 343.5,225.3 292.2,176 343.5,124.2 321.7,102 247.4,176.5 248.9,177.9 248.9,178 " /></g></g></g></g><g
 
     style="display:none"
 
     display="none"
 
     id="Type"
 
     transform="translate(-246,-102)"><text
 
       style="display:inline"
 
       id="text101"
 
       display="inline"
 
       transform="matrix(1.0019,0,0,1,409.3033,223.8533)"><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;letter-spacing:-1;fill:#818181"
 
         id="tspan103"
 
         letter-spacing="-1"
 
         font-size="75.4489"
 
         y="0"
 
         x="0">C</tspan><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;fill:#818181"
 
         id="tspan105"
 
         font-size="75.4489"
 
         y="0"
 
         x="40.700001">ommon</tspan><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;fill:#818181"
 
         id="tspan107"
 
         font-size="75.4489"
 
         y="76.300003"
 
         x="0">W</tspan><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;fill:#818181"
 
         id="tspan109"
 
         font-size="75.4489"
 
         y="76.300003"
 
         x="57.400002">orkf</tspan><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;letter-spacing:-1;fill:#818181"
 
         id="tspan111"
 
         letter-spacing="-1"
 
         font-size="75.4489"
 
         y="76.300003"
 
         x="226.89999">l</tspan><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;fill:#818181"
 
         id="tspan113"
 
         font-size="75.4489"
 
         y="76.300003"
 
         x="260.70001">o</tspan><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;fill:#818181"
 
         id="tspan115"
 
         font-size="75.4489"
 
         y="76.300003"
 
         x="309.20001">w</tspan><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;fill:#818181"
 
         id="tspan117"
 
         font-size="75.4489"
 
         y="152.7"
 
         x="0">L</tspan><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;fill:#818181"
 
         id="tspan119"
 
         font-size="75.4489"
 
         y="152.7"
 
         x="35.799999">ang</tspan><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;letter-spacing:-1;fill:#818181"
 
         id="tspan121"
 
         letter-spacing="-1"
 
         font-size="75.4489"
 
         y="152.7"
 
         x="169.2">u</tspan><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;fill:#818181"
 
         id="tspan123"
 
         font-size="75.4489"
 
         y="152.7"
 
         x="215.39999">a</tspan><tspan
 
         style="font-size:75.44889832px;font-family:SourceSansPro-Light;fill:#818181"
 
         id="tspan125"
 
         font-size="75.4489"
 
         y="152.7"
 
         x="254.3">ge</tspan></text>
 
</g><g
 
     style="display:none"
 
     display="none"
 
     id="Type_copy"
 
     transform="translate(-246,-102)"><text
 
       style="font-size:200px;font-family:SourceSansPro-ExtraLight;display:inline;fill:#808080"
 
       id="text155"
 
       font-size="200"
 
       display="inline"
 
       transform="matrix(1.0019,0,0,1,409.3036,344.3976)">CWL</text>
 
<g
 
       style="display:inline"
 
       id="g157"
 
       display="inline"><path
 
         style="fill:#808080"
 
         inkscape:connector-curvature="0"
 
         id="path159"
 
         d="m 420.5,278 c 0,-10.4 1.3,-19.8 4,-28.2 2.7,-8.4 6.4,-15.5 11.2,-21.4 4.8,-5.9 10.7,-10.4 17.5,-13.6 6.9,-3.2 14.5,-4.8 22.9,-4.8 7.6,0 14.3,1.6 19.9,4.8 5.7,3.2 10.2,6.8 13.7,10.8 l -4,4.4 c -3.6,-4.3 -7.9,-7.7 -12.8,-10.2 -4.9,-2.5 -10.6,-3.8 -16.8,-3.8 -7.6,0 -14.5,1.4 -20.5,4.3 -6.1,2.9 -11.2,7 -15.4,12.4 -4.2,5.4 -7.4,11.9 -9.6,19.6 -2.2,7.7 -3.3,16.2 -3.3,25.7 0,9.5 1.1,18.1 3.3,25.8 2.2,7.7 5.4,14.3 9.6,19.8 4.2,5.5 9.2,9.7 15.1,12.7 5.9,3 12.6,4.5 20,4.5 7.1,0 13.3,-1.4 18.7,-4.2 5.4,-2.8 10.7,-7 15.7,-12.6 l 4,4 c -5.1,5.9 -10.7,10.5 -16.7,13.8 -6.1,3.3 -13.5,5 -22.1,5 -8.1,0 -15.6,-1.6 -22.2,-4.9 -6.7,-3.3 -12.4,-7.9 -17.2,-13.9 -4.8,-6 -8.5,-13.2 -11.1,-21.7 -2.6,-8.5 -3.9,-17.9 -3.9,-28.3 z" /><path
 
         style="fill:#808080"
 
         inkscape:connector-curvature="0"
 
         id="path161"
 
         d="m 527.9,212.4 6.8,0 17.6,80 9.6,43.2 0.8,0 c 1.6,-7.2 3.3,-14.4 5,-21.6 1.7,-7.2 3.5,-14.4 5.4,-21.6 l 21.6,-80 7.2,0 21.6,80 10.8,43.2 0.8,0 c 1.6,-7.2 3.1,-14.4 4.6,-21.6 1.5,-7.2 3,-14.4 4.6,-21.6 l 17.6,-80 6.4,0 -30.5,132 -6.4,0 -25.6,-94.8 c -1.2,-5.2 -2.4,-10.1 -3.6,-14.8 -1.2,-4.7 -2.4,-9.6 -3.6,-14.8 l -0.8,0 c -1.2,5.2 -2.5,10.1 -3.8,14.8 -1.3,4.7 -2.6,9.6 -3.8,14.8 l -25.2,94.8 -6.4,0 -30.7,-132 z" /><path
 
         style="fill:#808080"
 
         inkscape:connector-curvature="0"
 
         id="path163"
 
         d="m 695,212.4 6.4,0 0,126.4 62.1,0 0,5.6 -68.5,0 0,-132 z" /></g></g><g
 
     id="Black_x2F_white_Logo"
 
     display="none"
 
     style="display:none"
 
     transform="translate(-246,-102)"><g
 
       id="Rectangle_1_1_"
 
       display="inline"
 
       enable-background="new    "
 
       style="display:inline"><g
 
         id="Rectangle_1"><g
 
           id="g168"><rect
 
             x="158.89999"
 
             y="101"
 
             width="323"
 
             height="321"
 
             id="rect170"
 
             style="clip-rule:evenodd;fill-rule:evenodd" /></g></g></g><g
 
       id="Rectangle_1_copy_1_"
 
       display="inline"
 
       enable-background="new    "
 
       style="display:inline"><g
 
         id="Rectangle_1_copy_2_"><g
 
           id="g174"><rect
 
             x="472.89999"
 
             y="101"
 
             width="333"
 
             height="321"
 
             id="rect176"
 
             style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd" /></g></g></g><g
 
       id="w_copy_2_1_"
 
       display="inline"
 
       enable-background="new    "
 
       style="display:inline"><g
 
         id="w_copy_2"><g
 
           id="g180"><polygon
 
             points="295.7,258.8 281.4,273.2 295.7,287.6 295.8,287.6 330.4,322 344.4,308 310.1,273.3 346.4,237 331.4,223 295.8,258.8 "
 
             id="polygon182"
 
             style="fill:#ffffff" /></g></g></g><g
 
       id="l_copy_2_1_"
 
       display="inline"
 
       enable-background="new    "
 
       style="display:inline"><g
 
         id="l_copy_2_2_"><g
 
           id="g186"><polygon
 
             points="282.4,345.4 282.4,345.5 314.4,378 328.8,363.3 310.2,344.2 345.4,309 331.4,295 281.4,344.3 "
 
             id="polygon188"
 
             style="fill:#ffffff" /></g></g></g><g
 
       id="c_copy_2_1_"
 
       display="inline"
 
       enable-background="new    "
 
       style="display:inline"><g
 
         id="c_copy_2"><g
 
           id="g192"><polygon
 
             points="283.3,204.9 283.3,204.9 332.1,251.1 346.4,236.7 312.2,203.6 346.4,168.9 331.8,154 282.4,204 "
 
             id="polygon194"
 
             style="fill:#ffffff" /></g></g></g><g
 
       id="w_copy_3_1_"
 
       display="inline"
 
       enable-background="new    "
 
       style="display:inline"><g
 
         id="w_copy_3_2_"><g
 
           id="g198"><polygon
 
             points="626.7,258.8 612.4,273.2 650.6,311.7 665,297.2 641.1,273.3 677.4,237 662.4,223 626.8,258.8 "
 
             id="polygon200" /></g></g></g><g
 
       id="l_copy_3_1_"
 
       display="inline"
 
       enable-background="new    "
 
       style="display:inline"><g
 
         id="l_copy_3"><g
 
           id="g204"><polygon
 
             points="613.4,345.4 613.4,345.5 645.4,378 659.8,363.3 641.2,344.2 676.3,308.6 661.9,293.9 612.4,344.3 "
 
             id="polygon206" /></g></g></g><g
 
       id="c_copy_3_1_"
 
       display="inline"
 
       enable-background="new    "
 
       style="display:inline"><g
 
         id="c_copy_3_2_"><g
 
           id="g210"><polygon
 
             points="614.3,204.9 614.3,204.9 663.1,251.1 677.4,236.7 643.2,203.6 677.4,168.9 662.8,154 613.4,204 "
 
             id="polygon212" /></g></g></g></g></svg>
...
 
\ No newline at end of file
 
             id="polygon212" /></g></g></g></g></svg>
conservancy/static/img/projects/evergreen.svg
Show inline comments
 
<?xml version="1.0" encoding="UTF-8"?>
 
<svg width="713pt" version="1.1" xmlns="http://www.w3.org/2000/svg" height="124pt" viewBox="0 0 713 124" xmlns:xlink="http://www.w3.org/1999/xlink">
 
 <defs>
 
  <clipPath id="Clip0">
 
   <path d="M0 0 L0 123.977 L712.281 123.977 L712.281 0 L0 0 Z" transform="translate(0, 0.0234375)"/>
 
  </clipPath>
 
 </defs>
 
 <g id="Background">
 
  <g id="Group1" clip-path="url(#Clip0)">
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M51.0942 2.4737 C50.9642 2.7539 48.2602 8.0528 42.9812 18.3721 C37.6992 28.6924 32.6563 38.6397 27.8477 48.2155 L22.7852 48.2155 C17.4912 37.4678 12.4277 27.3106 7.5947 17.7471 C2.7617 8.1846 0.2295 3.17 0 2.7041 L5.9815 0 C6.1602 0.4649 8.4648 5.3096 12.8994 14.5323 C17.3311 23.7549 21.6055 32.4366 25.7188 40.5772 L25.7969 40.5772 C29.9717 32.2413 34.3047 23.4639 38.7982 14.2452 C43.2902 5.0274 45.6132 0.2784 45.7662 0 L51.0942 2.4737 " transform="translate(61.9248, 53.3525)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M39.83 43.8233 L34.81 47.4108 C34.247 46.8798 32.254 44.8741 28.83 41.3955 C25.407 37.917 20.129 32.4873 13 25.1123 L13.038 24.7998 C14.009 24.5694 15.302 24.0655 16.912 23.2901 C18.524 22.5176 19.881 21.6797 20.982 20.7764 C21.927 19.9912 22.751 19.0205 23.456 17.8643 C24.158 16.708 24.511 15.1582 24.511 13.2158 C24.511 11.4366 23.993 9.9043 22.961 8.6211 C21.927 7.336 20.505 6.3946 18.693 5.794 C17.211 5.2871 15.656 4.9795 14.023 4.875 C12.39 4.7715 10.884 4.7188 9.506 4.7188 C8.588 4.7188 7.886 4.7188 7.401 4.7188 C6.915 4.7188 6.559 4.7188 6.329 4.7188 C6.277 9.127 6.244 13.0127 6.232 16.378 C6.22 19.7412 6.214 22.1182 6.214 23.5108 C6.214 26.6885 6.228 31.0049 6.257 36.4561 C6.286 41.9073 6.309 45.3291 6.329 46.7218 L0 46.7218 C0.031 45.3291 0.077 42.6319 0.138 38.6299 C0.199 34.628 0.23 29.6436 0.23 23.6787 C0.23 22.5196 0.23 20.3721 0.23 17.2403 C0.23 14.1084 0.153 8.4004 0 0.1153 C0.255 0.1153 1.533 0.0977 3.835 0.0586 C6.137 0.0205 8.259 0 10.204 0 C12.428 0 14.59 0.1172 16.686 0.3477 C18.783 0.5801 20.827 1.0782 22.823 1.8418 C25.354 2.8145 27.361 4.2442 28.845 6.1319 C30.328 8.0196 31.071 10.2373 31.071 12.7823 C31.071 16.0733 29.95 18.8116 27.714 21 C25.475 23.1885 23.359 24.8135 21.363 25.878 L21.363 26.0528 C24.905 29.7471 28.792 33.5576 33.021 37.4854 C37.25 41.4112 39.519 43.5244 39.83 43.8233 " transform="translate(209.343, 54.1572)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M41.541 23.1309 C41.49 24.7988 41.437 26.752 41.387 28.9863 C41.336 31.2227 41.31 33.0703 41.31 34.5293 C41.31 36.8711 41.33 39.4844 41.369 42.3672 C41.406 45.252 41.426 46.8575 41.426 47.1815 C41.195 47.2095 40.428 47.2755 39.125 47.3755 C37.82 47.4765 36.553 47.5255 35.328 47.5255 C29.24 47.5255 23.865 46.9355 19.197 45.75 C14.529 44.5645 10.484 42.498 7.057 39.5469 C4.936 37.7363 3.227 35.4883 1.936 32.8047 C0.644 30.123 0 27.0605 0 23.623 C0 19.3975 1.232 15.6162 3.699 12.2832 C6.166 8.9482 9.562 6.2607 13.887 4.2158 C16.826 2.8232 20.168 1.7705 23.916 1.0625 C27.662 0.3545 31.568 0 35.635 0 C36.273 0 36.867 0 37.416 0 C37.967 0 38.459 0 38.894 0 L39.355 5.0635 C39.252 5.0635 38.842 5.0635 38.127 5.0635 C37.412 5.0635 36.836 5.0635 36.4 5.0635 C32.488 5.0635 28.908 5.3652 25.66 5.9697 C22.414 6.5732 19.574 7.4541 17.144 8.6143 C13.846 10.1934 11.258 12.3418 9.379 15.0566 C7.498 17.7734 6.559 20.6631 6.559 23.7266 C6.559 27.6035 7.539 30.8135 9.5 33.3555 C11.463 35.8984 13.994 37.8867 17.098 39.3262 C19.865 40.6035 22.795 41.5039 25.885 42.0254 C28.973 42.5469 32.16 42.8086 35.443 42.8086 C35.443 42.4375 35.426 40.6289 35.396 37.3828 C35.365 34.1406 35.305 29.3877 35.213 23.1309 L41.541 23.1309 " transform="translate(358.044, 53.8125)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M39.832 43.8233 L34.811 47.4108 C34.248 46.8798 32.254 44.8741 28.83 41.3955 C25.409 37.917 20.131 32.4873 13 25.1123 L13.039 24.7998 C14.01 24.5694 15.303 24.0655 16.914 23.2901 C18.524 22.5176 19.883 21.6797 20.983 20.7764 C21.928 19.9912 22.752 19.0205 23.457 17.8643 C24.161 16.708 24.512 15.1582 24.512 13.2158 C24.512 11.4366 23.996 9.9043 22.963 8.6211 C21.928 7.336 20.506 6.3946 18.694 5.794 C17.211 5.2871 15.657 4.9795 14.024 4.875 C12.391 4.7715 10.885 4.7188 9.508 4.7188 C8.588 4.7188 7.887 4.7188 7.403 4.7188 C6.916 4.7188 6.561 4.7188 6.33 4.7188 C6.278 9.127 6.247 13.0127 6.233 16.378 C6.221 19.7412 6.215 22.1182 6.215 23.5108 C6.215 26.6885 6.229 31.0049 6.258 36.4561 C6.287 41.9073 6.311 45.3291 6.33 46.7218 L0 46.7218 C0.032 45.3291 0.079 42.6319 0.139 38.6299 C0.202 34.628 0.231 29.6436 0.231 23.6787 C0.231 22.5196 0.231 20.3721 0.231 17.2403 C0.231 14.1084 0.155 8.4004 0 0.1153 C0.256 0.1153 1.536 0.0977 3.836 0.0586 C6.137 0.0205 8.26 0 10.205 0 C12.43 0 14.59 0.1172 16.688 0.3477 C18.784 0.5801 20.829 1.0782 22.825 1.8418 C25.356 2.8145 27.362 4.2442 28.846 6.1319 C30.329 8.0196 31.071 10.2373 31.071 12.7823 C31.071 16.0733 29.952 18.8116 27.715 21 C25.477 23.1885 23.36 24.8135 21.364 25.878 L21.364 26.0528 C24.907 29.7471 28.793 33.5576 33.022 37.4854 C37.252 41.4112 39.52 43.5244 39.832 43.8233 " transform="translate(435.317, 54.1572)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M44.189 0.3448 C44.127 3.9912 44.074 8.1573 44.027 12.8477 C43.98 17.5362 43.959 20.9151 43.959 22.9786 C43.959 29.5723 43.996 34.8145 44.074 38.7012 C44.15 42.5899 44.189 44.6621 44.189 44.918 L39.049 47.1813 C31.316 37.7071 24.09 29.1553 17.369 21.5264 C10.648 13.8985 6.764 9.4912 5.717 8.3077 L5.639 8.3409 C5.639 14.5625 5.689 22.2041 5.789 31.2657 C5.891 40.3301 5.955 45.5586 5.984 46.9513 L0 46.9513 C0.031 46.3713 0.078 44.3047 0.139 40.752 C0.199 37.1973 0.23 32.2539 0.23 25.9141 C0.23 23.3838 0.215 20.0235 0.185 15.8321 C0.152 11.6407 0.092 7.1993 0 2.5088 L5.832 0 C6.291 0.5362 10.215 5.0537 17.602 13.5586 C24.988 22.0645 31.943 29.9649 38.473 37.2618 L38.551 37.2266 C38.551 33.6524 38.492 27.6328 38.377 19.169 C38.262 10.7071 38.205 4.4327 38.205 0.3448 L44.189 0.3448 " transform="translate(638.878, 53.9277)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M6.21387 24.8564 C6.21387 29.2724 6.22657 32.7763 6.25196 35.3701 C6.27637 37.9619 6.30371 40.1357 6.32911 41.8877 C7.83591 41.9267 9.66111 41.956 11.8057 41.9736 C13.9512 41.9931 16.2617 42.0029 18.7393 42.0029 C22.5439 42.0029 25.7412 41.9853 28.334 41.9463 C30.9248 41.9072 32.374 41.8877 32.6816 41.8877 L32.6816 46.6065 C32.4512 46.6065 30.748 46.5885 27.5732 46.5475 C24.3975 46.5105 20.4687 46.4915 15.7832 46.4915 C12.5322 46.4915 9.55471 46.5105 6.85351 46.5475 C4.15332 46.5885 1.86817 46.6065 0 46.6065 C0.06055 45.2548 0.11329 42.333 0.16016 37.8369 C0.20606 33.3408 0.2295 28.6963 0.2295 23.8964 C0.2295 21.2666 0.21387 17.7851 0.1836 13.4521 C0.15235 9.1201 0.0918 4.6357 0 0 C1.81934 0 4.09375 0.0195 6.82321 0.0586 C9.55271 0.0976 12.3672 0.1152 15.2656 0.1152 C20.1592 0.1152 24.1455 0.0976 27.2227 0.0586 C30.2969 0.0195 31.9639 0 32.2207 0 L32.2207 4.8339 C31.9639 4.8339 30.3564 4.8154 27.3984 4.7754 C24.4404 4.7382 20.7598 4.7187 16.3545 4.7187 C14.4346 4.7187 12.5518 4.7187 10.707 4.7187 C8.86231 4.7187 7.40431 4.7187 6.32911 4.7187 C6.32911 7.373 6.30957 10.0185 6.27149 12.6591 C6.23145 15.2978 6.21387 17.792 6.21387 20.1386 L6.21387 24.8564 " transform="translate(3.55859, 54.2725)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M0 0.1152 C1.0732 0.1152 1.4209 0.1152 2.8877 0.1152 C4.3525 0.1152 5.6582 0.1152 6.8027 0.1152 C10.998 0.1152 14.7451 0.0967 18.0478 0.0576 C21.3486 0.0205 23.1074 0 23.3213 0 L23.3213 4.9482 C23.1308 4.9482 21.1631 4.9307 17.4219 4.8906 C13.6797 4.8525 10.2588 4.833 7.1601 4.833 C6.0146 4.833 4.6514 4.833 3.0654 4.833 C1.4805 4.833 1.0732 4.833 0 4.833 L0 0.1152 " transform="translate(12.3047, 74.2959)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M6.214 24.8564 C6.214 29.2724 6.227 32.7763 6.252 35.3701 C6.277 37.9619 6.304 40.1357 6.329 41.8877 C7.836 41.9267 9.661 41.956 11.806 41.9736 C13.951 41.9931 16.261 42.0029 18.739 42.0029 C22.544 42.0029 25.741 41.9853 28.334 41.9463 C30.925 41.9072 32.374 41.8877 32.681 41.8877 L32.681 46.6065 C32.451 46.6065 30.748 46.5885 27.573 46.5475 C24.398 46.5105 20.469 46.4915 15.783 46.4915 C12.532 46.4915 9.555 46.5105 6.854 46.5475 C4.154 46.5885 1.868 46.6065 0 46.6065 C0.061 45.2548 0.113 42.333 0.16 37.8369 C0.207 33.3408 0.23 28.6963 0.23 23.8964 C0.23 21.2666 0.214 17.7851 0.183 13.4521 C0.153 9.1201 0.091 4.6357 0 0 C1.82 0 4.094 0.0195 6.823 0.0586 C9.553 0.0976 12.367 0.1152 15.265 0.1152 C20.16 0.1152 24.146 0.0976 27.222 0.0586 C30.297 0.0195 31.964 0 32.221 0 L32.221 4.8339 C31.964 4.8339 30.357 4.8154 27.399 4.7754 C24.441 4.7382 20.76 4.7187 16.355 4.7187 C14.435 4.7187 12.552 4.7187 10.707 4.7187 C8.863 4.7187 7.405 4.7187 6.329 4.7187 C6.329 7.373 6.309 10.0185 6.272 12.6591 C6.232 15.2978 6.214 17.792 6.214 20.1386 L6.214 24.8564 " transform="translate(142.263, 54.2725)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M0 0.1152 C1.073 0.1152 1.421 0.1152 2.887 0.1152 C4.352 0.1152 5.657 0.1152 6.802 0.1152 C10.997 0.1152 14.744 0.0967 18.047 0.0576 C21.348 0.0205 23.106 0 23.321 0 L23.321 4.9482 C23.13 4.9482 21.162 4.9307 17.421 4.8906 C13.678 4.8525 10.258 4.833 7.159 4.833 C6.014 4.833 4.65 4.833 3.064 4.833 C1.479 4.833 1.073 4.833 0 4.833 L0 0.1152 " transform="translate(151.01, 74.2959)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M6.213 24.8564 C6.213 29.2724 6.227 32.7763 6.252 35.3701 C6.275 37.9619 6.303 40.1357 6.328 41.8877 C7.836 41.9267 9.66 41.956 11.805 41.9736 C13.951 41.9931 16.262 42.0029 18.738 42.0029 C22.543 42.0029 25.74 41.9853 28.332 41.9463 C30.924 41.9072 32.373 41.8877 32.68 41.8877 L32.68 46.6065 C32.451 46.6065 30.748 46.5885 27.572 46.5475 C24.397 46.5105 20.469 46.4915 15.783 46.4915 C12.531 46.4915 9.555 46.5105 6.853 46.5475 C4.152 46.5885 1.867 46.6065 0 46.6065 C0.062 45.2548 0.113 42.333 0.16 37.8369 C0.205 33.3408 0.229 28.6963 0.229 23.8964 C0.229 21.2666 0.213 17.7851 0.182 13.4521 C0.152 9.1201 0.092 4.6357 0 0 C1.818 0 4.094 0.0195 6.822 0.0586 C9.553 0.0976 12.365 0.1152 15.266 0.1152 C20.158 0.1152 24.145 0.0976 27.223 0.0586 C30.297 0.0195 31.963 0 32.221 0 L32.221 4.8339 C31.963 4.8339 30.355 4.8154 27.398 4.7754 C24.439 4.7382 20.76 4.7187 16.353 4.7187 C14.434 4.7187 12.551 4.7187 10.707 4.7187 C8.861 4.7187 7.404 4.7187 6.328 4.7187 C6.328 7.373 6.309 10.0185 6.271 12.6591 C6.23 15.2978 6.213 17.792 6.213 20.1386 L6.213 24.8564 " transform="translate(504.751, 54.2725)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M0 0.1152 C1.072 0.1152 1.422 0.1152 2.887 0.1152 C4.352 0.1152 5.658 0.1152 6.803 0.1152 C10.998 0.1152 14.744 0.0967 18.047 0.0576 C21.35 0.0205 23.107 0 23.322 0 L23.322 4.9482 C23.131 4.9482 21.162 4.9307 17.422 4.8906 C13.68 4.8525 10.258 4.833 7.16 4.833 C6.016 4.833 4.65 4.833 3.066 4.833 C1.482 4.833 1.072 4.833 0 4.833 L0 0.1152 " transform="translate(513.497, 74.2959)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M6.215 24.8564 C6.215 29.2724 6.226 32.7763 6.252 35.3681 C6.277 37.9619 6.305 40.1357 6.33 41.8877 C7.836 41.9267 9.662 41.956 11.807 41.9736 C13.951 41.9931 16.262 42.0029 18.74 42.0029 C22.545 42.0029 25.742 41.9834 28.334 41.9443 C30.926 41.9072 32.375 41.8877 32.682 41.8877 L32.682 46.6045 C32.453 46.6045 30.75 46.5865 27.574 46.5475 C24.398 46.5105 20.471 46.4895 15.785 46.4895 C12.533 46.4895 9.557 46.5105 6.855 46.5475 C4.154 46.5865 1.869 46.6045 0 46.6045 C0.062 45.2548 0.113 42.331 0.16 37.8369 C0.207 33.3408 0.23 28.6943 0.23 23.8955 C0.23 21.2646 0.215 17.7841 0.185 13.4502 C0.154 9.1191 0.092 4.6347 0 0 C1.82 0 4.096 0.0195 6.824 0.0566 C9.555 0.0966 12.367 0.1152 15.266 0.1152 C20.16 0.1152 24.146 0.0966 27.223 0.0566 C30.299 0.0195 31.965 0 32.223 0 L32.223 4.832 C31.965 4.832 30.357 4.8144 27.4 4.7754 C24.441 4.7373 20.762 4.7177 16.355 4.7177 C14.436 4.7177 12.553 4.7177 10.709 4.7177 C8.863 4.7177 7.404 4.7177 6.33 4.7177 C6.33 7.3711 6.31 10.0185 6.273 12.6572 C6.232 15.2978 6.215 17.792 6.215 20.1377 L6.215 24.8564 " transform="translate(571.878, 54.2725)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M0 0.1153 C1.072 0.1153 1.42 0.1153 2.887 0.1153 C4.353 0.1153 5.656 0.1153 6.803 0.1153 C10.998 0.1153 14.744 0.0977 18.047 0.0576 C21.35 0.0196 23.107 0 23.32 0 L23.32 4.9483 C23.131 4.9483 21.162 4.9307 17.422 4.8906 C13.68 4.8535 10.258 4.834 7.16 4.834 C6.016 4.834 4.65 4.834 3.064 4.834 C1.48 4.834 1.072 4.834 0 4.834 L0 0.1153 " transform="translate(580.626, 74.2949)"/>
 
   <path style="fill:#008460; fill-rule:nonzero;stroke:none;" d="M17.281 7.5 L16 7.7187 L14.884 2.0468 L14.797 2.0468 C14.563 2.5048 14.264 3.1191 13.899 3.8886 C13.535 4.6582 13.061 5.6865 12.477 6.9726 L11.589 6.9726 C11.034 5.7529 10.572 4.75 10.203 3.9648 C9.833 3.1787 9.527 2.5371 9.284 2.039 L9.196 2.039 C9.069 2.5283 8.909 3.2187 8.715 4.1084 C8.52 4.999 8.282 6.2021 8 7.7187 L6.781 7.5 C7.198 5.7607 7.585 4.1289 7.938 2.6045 C8.294 1.08 8.48 0.2636 8.5 0.1562 L9.625 0 C9.674 0.1084 9.901 0.5957 10.306 1.4619 C10.712 2.3281 11.305 3.5888 12.087 5.2431 L12.161 5.2431 C12.757 3.9316 13.296 2.7588 13.78 1.7256 C14.263 0.6933 14.535 0.1181 14.595 0 L15.687 0.0937 C15.707 0.1816 15.812 0.6894 16.005 1.6162 C16.196 2.5429 16.622 4.5048 17.281 7.5 Z M7.125 1.1875 C7.056 1.1875 6.784 1.1875 6.307 1.1875 C5.831 1.1875 5.156 1.1875 4.281 1.1875 C4.27 1.8798 4.263 2.4629 4.258 2.9355 C4.253 3.4082 4.25 3.8349 4.25 4.2158 C4.25 5.1611 4.255 5.9384 4.265 6.5478 C4.276 7.1572 4.281 7.5058 4.281 7.5937 L3 7.5937 C3 7.5058 3.005 7.1621 3.015 6.5625 C3.026 5.9629 3.031 5.166 3.031 4.1718 C3.031 3.8203 3.031 3.3886 3.031 2.8769 C3.031 2.3652 3.02 1.8017 3 1.1875 C2.137 1.1875 1.436 1.1875 0.903 1.1875 C0.368 1.1875 0.067 1.1875 0 1.1875 L0 0.0937 L7.125 0.0937 L7.125 1.1875 Z" transform="translate(691.301, 53.4473)"/>
 
   <path style="fill:#008460; fill-rule:evenodd;stroke:none;" d="M4.356 0.02246 C5.984 0 6.506 0.6748 7.033 1.72559 C7.152 1.96582 7.526 2.49902 7.411 2.88769 C7.23 3.18555 7.05 3.48242 6.87 3.78027 C6.476 4.53418 6.159 5.36328 5.842 6.18555 C4.748 9.02926 4.289 13.7745 5.005 17.4307 C5.895 21.9766 7.191 26.2286 9.195 29.6748 C9.837 30.7813 10.502 31.9053 11.114 33 C11.998 34.5821 12.644 36.2325 13.547 37.7842 C14.501 39.5235 15.456 41.2627 16.412 43.001 C16.615 43.3526 17.304 44.5303 17.087 45.1104 C17.042 45.1641 16.997 45.2178 16.952 45.2725 C16.007 45.2793 15.425 44.5625 14.871 44.1368 C13.325 42.9473 12.024 41.5821 10.816 40.0547 C9.572 38.4815 8.049 37.0205 6.978 35.2979 C4.423 31.1875 2.351 26.5411 1.004 21.2686 C0.648 19.8741 0.484 18.4151 0.221 16.917 C0.05 15.9532 0.043 14.9981 0.058 13.9434 C0.068 13.2246 0 12.2227 0.112 11.5381 C0.27 10.5674 0.202 9.68166 0.382 8.78026 C0.786 6.76656 1.262 4.93066 1.977 3.2666 C2.244 2.64746 3.093 0.55273 3.518 0.2666 C3.797 0.18457 4.077 0.10351 4.356 0.02246 " transform="translate(277.127, 3.35254)"/>
 
   <path style="fill:#008460; fill-rule:evenodd;stroke:none;" d="M7.488 0.03418 C9.022 0 9.573 0.9541 9.894 2.14258 C9.954 2.36914 10.11 2.81347 10.001 3.08891 C9.741 3.53031 9.479 3.97171 9.218 4.41311 C8.758 5.38571 8.299 6.35941 7.839 7.33201 C6.596 10.251 5.846 13.4131 5.137 16.9277 C4.902 18.0889 4.959 19.2549 4.758 20.4961 C4.606 21.4336 4.65 22.5058 4.65 23.5508 C4.659 24.0996 4.668 24.6494 4.677 25.1992 C4.713 25.9023 4.749 26.6045 4.785 27.3076 C5.251 30.0664 5.463 32.6562 6.19 35.0918 C7.75 40.3135 9.647 44.9766 11.705 49.6894 C12.646 51.8447 13.743 53.8818 14.786 55.9336 C15.101 56.5517 15.9 57.8496 15.732 58.7441 C15.687 58.7891 15.642 58.834 15.597 58.8799 C14.715 58.8359 13.732 57.6367 13.218 57.123 C11.282 55.1846 9.608 53.0146 8.109 50.6348 C6.867 48.6621 5.458 46.6299 4.488 44.418 C3.003 41.0332 1.978 37.3848 1.001 33.4433 C0.695 32.209 0.62 30.9736 0.379 29.6592 C0.262 28.5508 0.145 27.4424 0.028 26.3349 C0.018 25.9385 0.01 25.542 0 25.1455 C0 24.2441 0 23.3437 0 22.4424 C0.028 21.7666 0.055 21.0908 0.082 20.415 C0.172 19.3965 0.262 18.3789 0.352 17.3603 C0.869 14.5869 1.316 11.9746 2.082 9.54881 C2.843 7.13871 3.721 4.92971 4.785 2.84471 C5.055 2.3164 5.679 0.84863 6.056 0.52051 C6.431 0.19433 6.971 0.23828 7.488 0.03418 " transform="translate(293.484, 7.17969)"/>
 
   <path style="fill:#008460; fill-rule:evenodd;stroke:none;" d="M15.922 0.0341 C17.64 0 18.382 0.7216 18.382 2.3857 C18.382 2.8379 18.382 3.373 18.193 3.6562 C17.94 3.917 17.688 4.1787 17.436 4.4404 C16.958 5.0078 16.481 5.5752 16.003 6.1435 C14.679 7.8418 13.404 9.6113 12.245 11.4687 C9.343 16.1172 7.271 21.3154 5.758 27.3886 C5.349 29.0332 5.25 30.7841 4.947 32.5517 C4.893 33.2275 4.84 33.9033 4.785 34.5791 C4.767 35.2734 4.749 35.9668 4.731 36.6611 C4.731 37.2099 4.731 37.7597 4.731 38.3095 C4.74 38.8134 4.749 39.3183 4.758 39.8232 C4.866 40.9404 4.975 42.0576 5.082 43.1748 C5.209 44.0937 5.335 45.0127 5.461 45.9316 C6.412 50.2851 7.151 54.6142 8.407 58.6103 C9.051 60.6582 9.82 62.5166 10.516 64.5029 C10.78 65.2578 11.325 66.3418 11.083 67.3408 C11.056 67.3486 11.029 67.3584 11.002 67.3672 C10.569 67.5205 10.155 66.8779 9.948 66.665 C9.03 65.7197 8.287 64.5615 7.57 63.4209 C4.595 58.6972 2.325 53.3838 0.947 47.04 C0.559 45.2558 0.505 43.3017 0.19 41.3642 C0 40.1963 0.244 38.9443 0.055 37.7148 C0.073 36.8408 0.091 35.9668 0.109 35.0927 C0.127 34.6338 0.145 34.1728 0.163 33.7138 C0.356 32.5166 0.352 31.25 0.568 30.1191 C0.971 28.0205 1.164 26.0459 1.731 24.1455 C2.225 22.4853 2.636 20.7881 3.244 19.2256 C4.752 15.3535 6.536 11.8603 8.596 8.5752 C9.892 6.5097 11.309 4.624 12.759 2.7373 C13.315 2.0136 14.091 0.8808 14.814 0.3584 C15.108 0.1455 15.559 0.1875 15.922 0.0341 " transform="translate(307.702, 10.9639)"/>
 
   <path style="fill:#008460; fill-rule:evenodd;stroke:none;" d="M1.739 0.1367 C12.506 0 20.154 3.9199 26.715 8.0576 C29.698 9.9375 32.843 12.0293 35.014 14.7343 C35.662 15.4726 36.311 16.2119 36.96 16.9502 C38 18.2861 38.945 19.6552 39.879 21.1132 C40.138 21.5166 41.252 23.0966 40.987 23.7617 C40.942 23.8066 40.897 23.8515 40.852 23.8964 C40.108 24.1064 38.683 22.8769 38.23 22.5459 C35.996 20.789 33.761 19.0312 31.527 17.2744 C25.704 12.9814 20.267 8.8222 12.524 6.3808 C10.323 5.6865 8.045 5.3535 5.496 4.9218 C4.595 4.7685 3.628 4.8134 2.631 4.8134 C2.297 4.8134 1.964 4.8134 1.631 4.8134 C1.39 4.7002 1.221 4.4209 1.063 4.2187 C0.27 3.1982 0 2.0771 0.82 0.8398 C0.962 0.625 1.087 0.3515 1.307 0.2187 C1.451 0.1914 1.595 0.164 1.739 0.1367 " transform="translate(240.874, 16.6182)"/>
 
   <path style="fill:#008460; fill-rule:evenodd;stroke:none;" d="M15.164 0.0332 C17.094 0 17.635 0.7334 17.894 2.3848 C17.947 2.7227 17.936 3.3662 17.786 3.6279 C17.129 4.2861 16.471 4.9443 15.813 5.6016 C14.652 7.04 13.432 8.4219 12.353 9.9531 C9.382 14.1719 7.185 19.123 5.731 24.8477 C5.291 26.5771 5.183 28.4199 4.865 30.3076 C4.811 31.3076 4.757 32.3076 4.704 33.3076 C4.694 34.0019 4.685 34.6963 4.676 35.3896 C4.74 37.4111 4.758 39.3057 5.055 41.0654 C5.109 41.8584 5.163 42.6514 5.217 43.4443 C5.607 45.7803 5.643 48.1484 6.109 50.3916 C6.461 52.0947 6.812 53.7978 7.163 55.5 C7.296 56.1348 7.445 57.2978 7.136 57.8252 C7.118 57.835 7.1 57.8428 7.082 57.8525 C6.486 57.8076 6.218 57.1846 5.947 56.7978 C5.223 55.7666 4.705 54.6025 4.082 53.4463 C2.3 50.1396 1.249 45.542 0.378 41.3643 C0.316 40.7236 0.253 40.084 0.19 39.4443 C0.034 38.4775 0.191 37.415 0.027 36.3623 C0.018 35.4795 0.009 34.5967 0 33.7139 C0.045 32.7852 0.09 31.8574 0.135 30.9297 C0.497 28.7012 0.523 26.5264 1.027 24.4961 C1.795 21.4053 2.609 18.5215 3.757 15.8193 C5.234 12.3418 7.156 9.2715 9.218 6.3857 C10.071 5.1904 10.988 4.0879 11.893 2.9531 C12.29 2.5293 12.687 2.1055 13.083 1.6826 C13.587 1.1777 14.092 0.6728 14.597 0.1689 C14.786 0.123 14.975 0.0781 15.164 0.0332 " transform="translate(319.623, 31.0752)"/>
 
   <path style="fill:#008460; fill-rule:evenodd;stroke:none;" d="M29.354 0 C30.515 0.0147 31.553 0.5157 31.895 1.3516 C32.287 2.3038 31.589 4.0215 31.058 4.3789 C30.138 4.794 29.22 5.209 28.301 5.6231 C26.428 6.5801 24.575 7.6329 22.895 8.8125 C15.796 13.7979 10.443 20.0391 7.055 28.7618 C4.841 34.461 4.136 41.9707 4.135 49.7637 C4.135 52.4043 4.178 54.8106 4.541 57.17 C4.682 58.0889 4.675 59.7344 4.217 60.1973 C3.695 60.1329 3.48 59.4512 3.298 59.0352 C2.832 57.9786 2.454 56.8623 2.054 55.6836 C1.136 52.9786 0.822 49.8868 0.27 46.6827 C0.198 45.5293 0.126 44.375 0.054 43.2227 C0.036 42.5645 0.018 41.9073 0 41.25 C0 39.4092 0.088 37.7618 0.406 36.168 C0.923 33.5645 1.373 31.0889 2.108 28.7618 C5.324 18.5821 11.753 10.9366 19.624 5.3799 C21.471 4.0752 23.465 2.9766 25.462 1.8116 C26.391 1.3614 27.319 0.9102 28.246 0.46 C28.616 0.3067 28.985 0.1534 29.354 0 " transform="translate(330.76, 37.2441)"/>
 
   <path style="fill:#008460; fill-rule:evenodd;stroke:none;" d="M9.579 0.0947 C18.486 0 24.447 2.0527 30.474 4.7168 C34.615 6.5478 38.14 8.9502 41.124 11.9336 C42.842 13.6513 44.446 15.414 45.827 17.4756 C46.07 17.8369 47.142 19.1767 46.909 19.7724 C46.863 19.8183 46.818 19.8633 46.773 19.9082 C46.194 20.0703 45.488 19.5068 45.125 19.2861 C43.781 18.4687 42.563 17.5586 41.313 16.664 C39.112 15.0898 36.815 13.7353 34.448 12.2861 C31.88 10.7129 29.245 9.1806 26.311 7.9336 C19.771 5.1533 10.716 3.7334 2.281 5.7715 C1.957 5.8496 1.618 5.4619 1.443 5.3388 C0.821 4.8965 0 4.1806 0.227 2.9326 C0.329 2.3672 0.579 1.5332 0.984 1.2568 C1.304 1.039 1.831 1.0312 2.254 0.9326 C3.883 0.5517 5.694 0.498 7.498 0.2031 C8.192 0.167 8.886 0.1308 9.579 0.0947 " transform="translate(251.82, 38.7178)"/>
 
   <path style="fill:#008460; fill-rule:evenodd;stroke:none;" d="M22.926 0.0644 C30.669 0 37.425 0.9219 43.01 3.0918 C44.905 3.8281 46.874 4.3545 48.551 5.3359 C51.041 6.792 53.296 8.4717 55.498 10.2012 C57.362 11.665 59.082 13.4287 60.525 15.3096 C60.904 15.8047 61.95 16.8516 61.796 17.6894 C61.769 17.6973 61.742 17.707 61.715 17.7158 C61.204 17.9336 59.929 17 59.606 16.7969 C57.643 15.5537 55.678 14.3105 53.713 13.0664 C48.652 9.9082 42.478 7.5781 35.928 5.9297 C33.693 5.3682 31.339 5.2568 28.873 4.8486 C27.623 4.6426 26.236 4.7402 24.872 4.7402 C23.713 4.7402 22.469 4.6504 21.412 4.8223 C19.842 5.0771 18.346 4.9521 16.871 5.2275 C13.068 5.9385 9.492 6.5527 6.141 7.6064 C5.312 7.8672 4.482 8.1289 3.653 8.3896 C3.329 8.5254 3.004 8.6601 2.68 8.7949 C2.473 8.7422 2.266 8.6875 2.059 8.6338 C1.149 8.3193 0.361 7.9238 0.166 6.9033 C0 6.0303 0.657 4.6299 1.085 4.3623 C1.392 4.2539 1.698 4.1465 2.004 4.0381 C2.955 3.6689 3.953 3.3848 4.978 3.0644 C8.652 1.916 12.411 1.3144 16.574 0.5508 C18.007 0.416 19.439 0.2803 20.872 0.1455 C21.557 0.1182 22.241 0.0918 22.926 0.0644 " transform="translate(249.772, 55.5879)"/>
 
   <path style="fill:#008460; fill-rule:evenodd;stroke:none;" d="M21.928 0.0703 C28.247 0 33.336 0.9844 37.958 2.6113 C39.902 3.2969 41.595 3.9434 43.634 4.8555 C45.951 5.8926 47.909 7.5234 49.905 8.9902 C51.698 10.3066 53.294 11.793 54.825 13.3691 C55.13 13.6836 56.23 14.7305 55.879 15.2617 C54.689 15.3994 53.522 14.6055 52.689 14.1807 C50.563 13.1084 48.436 12.0361 46.31 10.9639 C41.595 8.5264 37.491 7.1436 32.444 5.8545 C30.538 5.3691 28.543 5.207 26.443 4.8555 C25.281 4.6602 22.972 4.5781 21.766 4.7734 C21.28 4.791 20.793 4.8096 20.307 4.8281 C19.004 5.041 17.718 5.0703 16.495 5.3418 C13.237 6.0615 10.48 7.0469 7.791 8.2344 C6.845 8.7656 5.899 9.2969 4.953 9.8281 C4.611 10.0713 4.268 10.3154 3.926 10.5586 C3.718 10.541 3.511 10.5215 3.304 10.5039 C2.241 10.293 1.453 10.04 1.088 9.1523 C0 6.5117 3.082 5.5273 4.467 4.7197 C7.647 2.8652 11.362 1.6875 15.495 0.7734 C16.892 0.4648 18.358 0.4238 19.847 0.1787 C20.54 0.1426 21.234 0.1074 21.928 0.0703 " transform="translate(264.366, 67.9082)"/>
 
   <path style="fill:#008460; fill-rule:evenodd;stroke:none;" d="M32.914 0.1269 C42.921 0 50.323 2.8906 56.431 6.7207 C57.873 7.6269 59.192 8.6269 60.512 9.6406 C61.1 10.0918 61.851 10.5703 62.107 11.3437 C62.053 11.3984 61.999 11.4521 61.945 11.5059 C61.24 11.7158 59.98 11.1777 59.458 10.9922 C57.521 10.2715 55.583 9.5508 53.646 8.8301 C50.018 7.4121 45.903 6.5527 41.78 5.6406 C40.735 5.4873 39.689 5.334 38.645 5.1816 C37.569 4.9883 36.351 5.043 35.212 4.8574 C34.662 4.8477 34.113 4.8379 33.562 4.8291 C32.797 4.8291 32.032 4.8291 31.265 4.8291 C30.463 4.8838 29.661 4.9375 28.86 4.9922 C27.053 5.2969 25.292 5.4062 23.669 5.8838 C22.145 6.332 20.584 6.7051 19.157 7.2617 C16.049 8.4756 13.227 9.8975 10.586 11.5605 C8.992 12.5644 7.576 13.7949 6.127 14.9385 C5.505 15.4883 4.883 16.0391 4.262 16.5879 C4.036 16.8223 3.811 17.0566 3.586 17.291 C3.306 17.3262 3.028 17.3623 2.748 17.3984 C1.561 17.5918 0.663 17.0644 0.343 16.291 C0.122 15.7578 0 14.6152 0.261 14.0195 C0.445 13.6006 1.374 12.8613 1.748 12.5605 C3.056 11.5068 4.258 10.3535 5.64 9.3437 C10.684 5.6562 16.28 2.9512 23.318 1.1797 C25.312 0.6787 27.439 0.623 29.643 0.2617 C30.734 0.2168 31.824 0.1709 32.914 0.1269 " transform="translate(268.031, 81.7461)"/>
 
   <path style="fill:#008460; fill-rule:evenodd;stroke:none;" d="M41.582 0.1152 C48.924 0 54.615 1.8555 59.746 4.0615 C61.051 4.623 62.302 5.1904 63.422 5.9258 C63.719 6.1211 64.511 6.5039 64.287 7.0077 C63.18 7.3007 61.767 6.8975 60.8 6.6836 C58.458 6.2598 56.114 5.8359 53.772 5.4121 C52.295 5.2422 50.817 5.0703 49.339 4.8984 C48.654 4.8721 47.97 4.8457 47.285 4.8184 C46.527 4.6973 45.475 4.7578 44.697 4.6973 C43.509 4.6025 41.851 4.6133 40.581 4.8184 C39.797 4.8809 39.013 4.9434 38.229 5.0078 C36.123 5.3711 34.082 5.5273 32.202 6.0889 C29.688 6.8389 27.356 7.6437 25.12 8.6287 C18.163 11.6957 12.229 17.0357 7.901 22.7657 C6.998 23.9627 6.037 25.1547 5.225 26.4427 C4.987 26.8197 4.495 27.9377 4.171 28.1457 C3.275 28.7187 1.545 29.0257 0.846 28.0647 C0.574 27.6897 0 26.2407 0.306 25.5237 C0.593 25.0647 0.882 24.6037 1.171 24.1447 C2.787 21.5817 4.681 19.3907 6.523 17.0897 C7.744 15.5647 9.191 14.0177 10.713 12.7927 C11.19 12.3497 11.668 11.9097 12.146 11.4667 C13.321 10.5317 14.476 9.5567 15.713 8.6837 C19.904 5.7246 24.629 3.5 30.12 1.8174 C32.522 1.082 35.081 0.832 37.824 0.3584 C39.076 0.2773 40.329 0.1953 41.582 0.1152 " transform="translate(272.014, 93.0293)"/>
 
  </g>
 
 </g>
 
</svg>
...
 
\ No newline at end of file
 
</svg>
conservancy/static/img/projects/godot/godot-logo.svg
Show inline comments
 
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
<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"
 
   viewBox="0 0 236.27499 84.6875"
 
   height="84.6875"
 
   width="236.27499"
 
   xml:space="preserve"
 
   version="1.1"
 
   id="svg3336"
 
   inkscape:version="0.91 r13725"
 
   sodipodi:docname="godot_logo+name.svg"><sodipodi:namedview
 
     pagecolor="#ffffff"
 
     bordercolor="#666666"
 
     borderopacity="1"
 
     objecttolerance="10"
 
     gridtolerance="10"
 
     guidetolerance="10"
 
     inkscape:pageopacity="0"
 
     inkscape:pageshadow="2"
 
     inkscape:window-width="980"
 
     inkscape:window-height="710"
 
     id="namedview74"
 
     showgrid="false"
 
     inkscape:zoom="1.7818221"
 
     inkscape:cx="116.49142"
 
     inkscape:cy="43.105572"
 
     inkscape:window-x="630"
 
     inkscape:window-y="72"
 
     inkscape:window-maximized="0"
 
     inkscape:current-layer="g3346" /><metadata
 
     id="metadata3342"><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><defs
 
     id="defs3340"><clipPath
 
       id="clipPath3350"
 
       clipPathUnits="userSpaceOnUse"><path
 
         id="path3352"
 
         d="m 0,67.75 189.02,0 L 189.02,0 0,0 0,67.75 Z" /></clipPath></defs><g
 
     transform="matrix(1.25,0,0,-1.25,0,84.6875)"
 
     id="g3344"><g
 
       id="g3346"><g
 
         id="g3445"
 
         transform="translate(0,-4.8)"><g
 
           transform="translate(112.7847,43.5176)"
 
           id="g3354"><path
 
             id="path3356"
 
             style="fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
             d="m 0,0 c -1.082,0 -1.989,-0.497 -2.724,-1.488 -0.732,-0.992 -1.099,-2.385 -1.099,-4.177 0,-1.796 0.349,-3.171 1.05,-4.129 0.699,-0.961 1.617,-1.439 2.756,-1.439 1.139,0 2.064,0.484 2.775,1.457 0.71,0.968 1.066,2.355 1.066,4.161 0,1.803 -0.367,3.192 -1.1,4.162 C 1.992,-0.484 1.083,0 0,0 m -0.017,-17.828 c -3.168,0 -5.752,1.037 -7.749,3.11 -1.994,2.075 -2.991,5.104 -2.991,9.084 0,3.984 1.008,6.999 3.027,9.053 2.018,2.051 4.624,3.077 7.815,3.077 3.191,0 5.769,-1.008 7.73,-3.029 1.964,-2.018 2.945,-5.076 2.945,-9.167 0,-4.094 -1.004,-7.139 -3.012,-9.137 -2.008,-1.994 -4.595,-2.991 -7.765,-2.991"
 
             inkscape:connector-curvature="0" /></g><g
 
           transform="translate(133.0269,43.2832)"
 
           id="g3358"><path
 
             id="path3360"
 
             style="fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
             d="m 0,0 0,-10.119 c 0,-0.473 0.035,-0.771 0.103,-0.896 0.066,-0.124 0.27,-0.186 0.607,-0.186 1.242,0 2.183,0.464 2.826,1.388 0.645,0.924 0.964,2.462 0.964,4.617 0,2.155 -0.334,3.559 -0.997,4.212 C 2.837,-0.33 1.782,0 0.338,0 L 0,0 Z m -6.495,-15.7 0,20.298 c 0,0.564 0.14,1.009 0.423,1.34 0.281,0.325 0.648,0.49 1.1,0.49 l 5.65,0 c 3.586,0 6.309,-0.905 8.168,-2.709 1.862,-1.804 2.794,-4.645 2.794,-8.525 0,-8.3 -3.543,-12.45 -10.625,-12.45 l -5.785,0 c -1.149,0 -1.725,0.518 -1.725,1.556"
 
             inkscape:connector-curvature="0" /></g><g
 
           transform="translate(157.6558,43.5176)"
 
           id="g3362"><path
 
             id="path3364"
 
             style="fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
             d="m 0,0 c -1.083,0 -1.991,-0.497 -2.726,-1.488 -0.731,-0.992 -1.097,-2.385 -1.097,-4.177 0,-1.796 0.35,-3.171 1.049,-4.129 0.698,-0.961 1.617,-1.439 2.756,-1.439 1.14,0 2.065,0.484 2.775,1.457 0.711,0.968 1.067,2.355 1.067,4.161 0,1.803 -0.367,3.192 -1.1,4.162 C 1.99,-0.484 1.083,0 0,0 m -0.018,-17.828 c -3.169,0 -5.751,1.037 -7.746,3.11 -1.997,2.075 -2.995,5.104 -2.995,9.084 0,3.984 1.009,6.999 3.027,9.053 2.02,2.051 4.624,3.077 7.817,3.077 3.192,0 5.768,-1.008 7.73,-3.029 1.963,-2.018 2.944,-5.076 2.944,-9.167 0,-4.094 -1.004,-7.139 -3.012,-9.137 -2.007,-1.994 -4.596,-2.991 -7.765,-2.991"
 
             inkscape:connector-curvature="0" /></g><g
 
           transform="translate(181.0239,26.5664)"
 
           id="g3366"><path
 
             id="path3368"
 
             style="fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
             d="m 0,0 c 0,-0.448 -1.115,-0.676 -3.349,-0.676 -2.232,0 -3.35,0.228 -3.35,0.676 l 0,16.985 -4.059,0 c -0.384,0 -0.655,0.518 -0.812,1.558 -0.068,0.495 -0.1,1.002 -0.1,1.521 0,0.517 0.032,1.026 0.1,1.522 0.157,1.037 0.428,1.559 0.812,1.559 l 14.717,0 c 0.383,0 0.653,-0.522 0.812,-1.559 0.067,-0.496 0.101,-1.005 0.101,-1.522 0,-0.519 -0.034,-1.026 -0.101,-1.521 C 4.612,17.503 4.342,16.985 3.959,16.985 L 0,16.985 0,0 Z"
 
             inkscape:connector-curvature="0" /></g><g
 
           transform="translate(96.0444,38.5889)"
 
           id="g3370"><path
 
             id="path3372"
 
             style="fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
             d="m 0,0 c -1.821,0.028 -3.906,-0.352 -3.906,-0.352 l 0,-3.554 2.096,0 -0.023,-1.585 c 0,-0.587 -0.582,-0.882 -1.743,-0.882 -1.162,0 -2.188,0.492 -3.078,1.474 -0.893,0.982 -1.337,2.419 -1.337,4.311 0,1.897 0.434,3.295 1.303,4.197 0.866,0.902 2.002,1.354 3.399,1.354 0.587,0 1.195,-0.095 1.827,-0.288 0.632,-0.192 1.055,-0.371 1.27,-0.539 0.214,-0.173 0.417,-0.255 0.609,-0.255 0.191,0 0.501,0.223 0.929,0.676 0.429,0.451 0.813,1.134 1.152,2.046 0.337,0.916 0.506,1.618 0.506,2.116 0,0.494 -0.01,0.835 -0.032,1.014 -0.474,0.519 -1.348,0.93 -2.624,1.236 -1.273,0.304 -2.7,0.456 -4.279,0.456 -3.474,0 -6.191,-1.094 -8.153,-3.281 -1.963,-2.189 -2.943,-5.03 -2.943,-8.527 0,-4.105 1.003,-7.218 3.008,-9.338 2.01,-2.12 4.648,-3.178 7.919,-3.178 1.759,0 3.321,0.151 4.684,0.456 1.366,0.303 2.274,0.615 2.726,0.93 L 3.445,-0.926 C 3.445,-0.311 1.821,-0.031 0,0"
 
             inkscape:connector-curvature="0" /></g></g><g
 
         id="g3412"
 
         transform="translate(64.312,21.7949)"><path
 
           inkscape:connector-curvature="0"
 
           d="m 0,0 0,-3.942 c 0,-0.39 -0.25,-0.734 -0.621,-0.852 L -6.835,-6.8 c -0.273,-0.091 -0.57,-0.042 -0.8,0.128 -0.232,0.168 -0.37,0.437 -0.37,0.721 l 0,4.305 -5.818,-1.108 0,-4.381 c 0,-0.447 -0.332,-0.824 -0.775,-0.885 l -8.41,-1.152 c -0.039,-0.003 -0.081,-0.008 -0.121,-0.008 -0.214,0 -0.424,0.078 -0.588,0.22 -0.195,0.172 -0.306,0.416 -0.306,0.676 l 0,4.638 -4.341,-0.018 0,-10e-4 -0.318,10e-4 -0.319,-10e-4 0,10e-4 -4.34,0.018 0,-4.638 c 0,-0.26 -0.112,-0.504 -0.307,-0.676 -0.164,-0.142 -0.374,-0.22 -0.587,-0.22 -0.041,0 -0.082,0.005 -0.123,0.008 l -8.41,1.152 c -0.442,0.061 -0.774,0.438 -0.774,0.885 l 0,4.381 -5.819,1.108 0,-4.305 c 0,-0.284 -0.137,-0.553 -0.368,-0.721 -0.232,-0.17 -0.529,-0.219 -0.802,-0.128 l -6.215,2.006 c -0.369,0.118 -0.619,0.462 -0.619,0.852 l 0,3.942 -3.837,1.29 c -0.19,-0.811 -0.295,-1.642 -0.295,-2.481 0,-10.301 14.512,-18.252 32.448,-18.309 l 0.022,0 0.023,0 c 17.936,0.057 32.448,8.008 32.448,18.309 0,0.766 -0.088,1.521 -0.247,2.266 L 0,0 Z"
 
           style="fill:#478cbf;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
           id="path3414" /></g><g
 
         id="g3416"
 
         transform="translate(5.9634,40.0615)"><path
 
           inkscape:connector-curvature="0"
 
           d="m 0,0 0,-16.047 2.163,-0.729 c 0.364,-0.122 0.61,-0.462 0.61,-0.847 l 0,-3.936 4.426,-1.428 0,4.154 c 0,0.27 0.118,0.52 0.323,0.689 0.206,0.172 0.474,0.241 0.739,0.192 l 7.608,-1.452 c 0.422,-0.079 0.728,-0.448 0.728,-0.877 l 0,-4.338 6.62,-0.904 0,4.509 c 0,0.241 0.096,0.467 0.264,0.635 0.167,0.166 0.394,0.259 0.633,0.259 l 0.002,0 5.551,-0.022 5.549,0.022 c 0.245,-10e-4 0.468,-0.093 0.635,-0.259 0.169,-0.168 0.264,-0.394 0.264,-0.635 l 0,-4.509 6.621,0.904 0,4.338 c 0,0.429 0.304,0.798 0.726,0.877 l 7.609,1.452 c 0.262,0.049 0.533,-0.02 0.738,-0.192 0.205,-0.169 0.325,-0.419 0.325,-0.689 l 0,-4.154 4.425,1.428 0,3.936 c 0,0.385 0.245,0.725 0.609,0.847 l 1.475,0.497 0,16.279 0.04,0 c 1.437,1.834 2.767,3.767 4.042,5.828 -1.694,2.883 -3.768,5.459 -5.986,7.846 -2.057,-1.035 -4.055,-2.208 -5.942,-3.456 -0.944,0.938 -2.008,1.706 -3.052,2.509 -1.027,0.824 -2.183,1.428 -3.281,2.132 0.327,2.433 0.489,4.828 0.554,7.327 -2.831,1.424 -5.85,2.369 -8.903,3.047 -1.219,-2.048 -2.334,-4.267 -3.304,-6.436 -1.152,0.192 -2.309,0.264 -3.467,0.277 l 0,0.002 c -0.008,0 -0.015,-0.002 -0.022,-0.002 -0.008,0 -0.015,0.002 -0.022,0.002 l 0,-0.002 c -1.16,-0.013 -2.316,-0.085 -3.468,-0.277 -0.97,2.169 -2.084,4.388 -3.305,6.436 C 19.475,24.555 16.456,23.61 13.626,22.186 13.69,19.687 13.852,17.292 14.18,14.859 13.081,14.155 11.925,13.551 10.898,12.727 9.855,11.924 8.79,11.156 7.846,10.218 5.958,11.466 3.961,12.639 1.904,13.674 -0.314,11.287 -2.388,8.711 -4.082,5.828 -2.807,3.767 -1.477,1.834 -0.04,0 L 0,0 Z"
 
           style="fill:#478cbf;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
           id="path3418" /></g><g
 
         id="g3420"
 
         transform="translate(26.8428,32.3604)"><path
 
           inkscape:connector-curvature="0"
 
           d="m 0,0 c 0,-3.611 -2.926,-6.537 -6.537,-6.537 -3.608,0 -6.535,2.926 -6.535,6.537 0,3.609 2.927,6.533 6.535,6.533 C -2.926,6.533 0,3.609 0,0"
 
           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
           id="path3422" /></g><g
 
         id="g3424"
 
         transform="translate(25.27,31.9727)"><path
 
           inkscape:connector-curvature="0"
 
           d="m 0,0 c 0,-2.396 -1.941,-4.337 -4.339,-4.337 -2.396,0 -4.339,1.941 -4.339,4.337 0,2.396 1.943,4.339 4.339,4.339 C -1.941,4.339 0,2.396 0,0"
 
           style="fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
           id="path3426" /></g><g
 
         id="g3428"
 
         transform="translate(35.6816,25.2285)"><path
 
           inkscape:connector-curvature="0"
 
           d="m 0,0 c -1.162,0 -2.104,0.856 -2.104,1.912 l 0,6.018 c 0,1.054 0.942,1.912 2.104,1.912 1.162,0 2.106,-0.858 2.106,-1.912 l 0,-6.018 C 2.106,0.856 1.162,0 0,0"
 
           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
           id="path3430" /></g><g
 
         id="g3432"
 
         transform="translate(44.5215,32.3604)"><path
 
           inkscape:connector-curvature="0"
 
           d="m 0,0 c 0,-3.611 2.926,-6.537 6.537,-6.537 3.609,0 6.535,2.926 6.535,6.537 0,3.609 -2.926,6.533 -6.535,6.533 C 2.926,6.533 0,3.609 0,0"
 
           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
           id="path3434" /></g><g
 
         id="g3436"
 
         transform="translate(46.0947,31.9727)"><path
 
           inkscape:connector-curvature="0"
 
           d="m 0,0 c 0,-2.396 1.941,-4.337 4.336,-4.337 2.398,0 4.339,1.941 4.339,4.337 0,2.396 -1.941,4.339 -4.339,4.339 C 1.941,4.339 0,2.396 0,0"
 
           style="fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
           id="path3438" /></g></g></g></svg>
...
 
\ No newline at end of file
 
           id="path3438" /></g></g></g></svg>
conservancy/static/img/projects/harvey.svg
Show inline comments
 
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1240.7 1180.1" height="333" width="350"><style>.s0{fill:#000;}.s1{fill:#fff;}</style><style>.s0{fill:#000;}.s1{fill:#fff;}.s2{fill:none;stroke-width:0.1;stroke:#1a1a1a;}</style><g transform="matrix(4.1909988,0,0,4.1909988,-593.33743,-448.91615)"><path d="m318.3 107.1 0 0c-0.6 0-1.2 0.1-2 0.2-1 0.1-2.1 0.4-3.2 0.9-1.1 0.4-2.2 1-3.2 1.8-1 0.7-1.9 1.6-2.6 2.6-0.4 0.5-0.7 1.1-0.9 1.6-0.3 0.6-0.5 1.2-0.6 1.8-0.2 1.1-0.3 2.2 0 3.4 0.2 1.3 0.7 2.7 1.5 4.5 0.8 1.8 1.9 4 3.5 6.7 1.6 2.7 3.5 5.9 6 9.9 2.8 4.4 5.6 8.6 7.6 11.6 1 1.5 1.8 2.8 2.4 3.7 0.5 0.9 0.8 1.4 0.7 1.5-0.6 0.4-1.4 1-1.9 1.4-0.6 0.4-1 0.8-1.1 0.6-2-1.8-6.9-5.4-13.5-10.8-4.5-3.8-8.4-6.9-11.9-9.4-1.7-1.3-3.4-2.4-4.9-3.4-1.5-1-3-1.8-4.4-2.5-1.4-0.7-2.7-1.3-3.9-1.7-1.2-0.4-2.4-0.7-3.5-0.9-1.1-0.2-2.2-0.2-3.2-0.1-1 0.1-2.1 0.3-3.1 0.6-1.2 0.4-2.3 0.9-3.3 1.5-1 0.6-1.9 1.3-2.7 2.1-0.8 0.8-1.5 1.6-2 2.5-0.5 0.9-1 1.9-1.3 2.9-0.3 1-0.5 2.1-0.5 3.3 0 1.1 0.1 2.3 0.3 3.5 0.3 1.2 0.7 2.4 1.2 3.7 0.6 1.2 1.3 2.5 2.2 3.8 1.4 2 2.8 4 4.1 5.8 1.4 1.8 2.7 3.6 4.1 5.2 1.4 1.6 2.8 3.2 4.4 4.6 1.5 1.4 3.2 2.8 4.9 4.1 1.9 1.4 3.5 2.5 5 3.4 1.5 0.9 2.7 1.6 4 2.3l3.6 2.1c1.2 0.7 2.5 1.6 3.9 2.6-0.6 1.9-1.2 3.7-1.6 5.5-0.9 3.5-1.4 7-1.6 10.4-0.1 3.3 0 6.5 0.4 9.6 0.2 1.5 0.5 3.1 0.9 4.6 0.8 3.1 1.8 6.2 3 8.9 2.4 5.6 4.2 10.3 5.6 14.5 1.4 4.2 2.4 7.8 3 11 0.6 3 1 6 1.2 8.8 0.1 2.7 0 5.2-0.2 7.9-0.6 5.7-1.3 11.5-1.6 16.8-0.3 5.8-0.4 9.3-0.7 11.6-0.2 4.2-3.7 5.8-6.4 7.5-5.2 5.7-6.2 13.1-4.5 19.5 0.1 0.2 0.2 0.3 0.3 0.4-0.2 0-0.4 0-0.6 0.1l-133.6 41.1 47.1 21.5 179.9-40c2.4 0.2 5 0.3 7.2-0.5 5.2-0.8 8.6-6.3 12.2-7.1 1.1-0.2 2.3-0.6 3.4-1.2 1.1-0.6 2.1-1.3 3-2.2 0.9-0.8 1.6-1.8 2.1-2.7 0.3-0.5 0.5-0.9 0.6-1.4 0.1-0.5 0.2-0.9 0.2-1.4 0-0.7-0.2-1.8-0.4-3-0.5-2-1.3-3.8-1.7-5.7-0.3-1.7 0.3-3.3 0.9-4.7 1.4-2.5 3.2-4.8 4.4-7.3 1.5-2.8 2.5-5.9 3.4-8.7 1.5-5.6 2.1-11.9 2.3-17 0.2-4.6 0.3-9.8 0.3-15.8 0.1-4.4 0-8.8 0.7-12.8 0.4-2.9 1.6-5.5 2-8.2 0.7-5.5 1.5-11.1 1.9-16.8 0.2-2.9 0.4-5.8 0.5-8.7 0.1-6.1-0.2-12-1.4-17.7-1.5-7.1-4.9-14-8.8-19.5-6.3-9.2-14.1-17.3-23-22.7-9.8-5.9-20.8-8.8-31.4-9.9-5.1-0.4-9.7-0.4-14.8-0.3-0.9-0.7-1.8-1.8-2.8-3.1-1-1.4-2.1-3-3.3-4.7-1.2-1.7-2.4-3.6-3.7-5.4-1.3-1.8-2.7-3.6-4.1-5.1-2-2.6-4-5.1-6-7.4-2-2.3-3.9-4.4-5.7-6.3-1.8-1.9-3.5-3.5-4.9-4.8-1.5-1.3-2.8-2.3-3.8-3-1.4-0.9-2.4-1.4-3.4-1.7-0.5-0.1-1-0.2-1.6-0.2z" fill="#666"/><path d="m190.3 154.5c-3.8 0.1-5.9 0-7.4-0.5-2-0.7-2.9-1.8-3.9-4.8-0.7-2.2-1.1-2.8-1.8-3.3-0.8-0.5-1.3-0.7-3.4-0.8-2.3-0.1-7.8-0.6-11-1-3-0.4-3.8-0.4-4.9-0.3-0.9 0-0.9 0.1-1.1 0.3-0.3 0.4-0.2 0.7 0.5 3.3 0.7 2.8 0.9 3.6 0.9 4.7 0 1.1 0 1.2-0.3 1.4-0.4 0.2-0.7 0.1-1.1-0.3-0.6-0.9-0.9-2-0.7-2.5 0.1-0.2 0.1-0.3-0.3-2.1-1-4.3-1-5.7-0.1-6.7 1.4-1.7 9.2-4 16.6-4.9 1.4-0.2 2.9-0.4 3.3-0.5 0.4-0.1 2.9-0.8 5.6-1.6 8.2-2.4 9.8-2.7 15.5-3.3 4.5-0.5 6.3-0.5 10.3-0.2 2.5 0.2 3.7 0.2 5.1-0.1 1.2-0.2 2.1-0.5 5.1-1.8 4.3-1.8 8.1-3 11.1-3.3 0.9-0.1 1.9-0.2 2.3-0.2 0.7 0 4.6 0.5 5 0.6 0.1 0 0.2 0.2 0.3 0.4 0.2 0.5 0.9 7.5 0.9 7.9 0 0.2-0.1 0.7-0.2 1.2-0.1 0.4-0.2 1.3-0.2 1.9-0.5 5-1.3 7.1-3.5 8.4-1.2 0.7-2.3 1.2-4.1 1.5-1.3 0.3-4.8 0.3-6.4 0.1-2.5-0.3-5.6-3.1-7.2-6.5-0.4-0.7-0.4-1-0.5-1.8-0.1-0.9-0.1-1 0.1-1.5 0.2-0.6 0.2-1.1-0.1-1.6-0.2-0.3-0.3-0.3-0.6-0.4-0.8-0.1-2 0.4-2.4 1-0.2 0.3-0.4 1-0.9 3-1.8 8-3.4 10.2-8.4 12-3.1 1.1-8.4 2-12 2.2z" fill="#000"/><g transform="matrix(1.0082352,0,0,1.0082352,140.864,-681.53456)"><g transform="translate(-1.6610183,-56.474619)"><g transform="translate(-29.898328,-80.282547)"><path d="m84.7 1153.3c0 1.9-0.2 2.8-0.4 3.6 0 0-0.9 0-1.3 1.3-0.4 1.3-1.5 14.6-1.4 14.7 0.1 0.2 0.2 1.4 0.4 2.6 0.3 1.1 4.7 4.6 11.2 4.6 2.5 0 8 1.3 8.8 2.1-0.7 0.8 9.2 6.6 15.8 6.3 2.8 0.8 14.4-1.8 16.5-3.3 3.3-1.2 7.1-4.2 7.5-5.5 0.2-1.1 0.5-3.8-0.8-5.9-1.2-1.7-3.2-2.9-4.8-3-6-1.4-8.3-2.8-11.8-4.8l-1.6-1 0.2-0.5-0.7-0.5-0.5 0.4-1.2-1 0-0.5-1.5-1-0.4 0.2-0.9-1 0.4-0.6-2.1-1.5-0.5 0.4-0.8-0.9 0-0.9-2.1-1.8-0.5 0.3-1-1.2-1.1-2.1-1.9-1.3-2.2-0.1-1.5 0.4-2.6-0.4-2.5 1.7c-1 1.8-2.2 2.4-2.9 2.3-2.4-1.7-4.8-3.8-6.3-4.6l-3.7 1c-0.6 0.6-1.2 1.1-1.8 1.7z" fill="#1a1a1a"/><path d="m116.7 1161.5c-0.8 0.6-2.1 0.4-3.3 0.6-0.2 0.7-0.6 1.6-1 2.1-0.1 0.4-0.8-0.2-0.6-0.7 0.1-0.4 0.3-1 0.3-1-1.7 0.7-3.7 1.9-4.2 2.5-0.6 0.5-1-0.9-0.9-1.5 0.4-0.1 0.6-1.3 0.2-1.2l-10.5 12.8 3.5 1.6c0.9-5.8 10-12.9 10.2-12.7 1.2-0.1 1.2 0.4 3.4 0.6 0.4 0.1 0.9-0.2 1.4-0.5 0.4-1 1.6-1.8 2.5-2.8l1 1c-0.2 0.1-0.3 0.2-0.4 0.6 0 0.6 0.6 0.6 1.4 0.6 0 0.2 0.3 0.3 0 0.7-2.9 1.1-4.7 1-6.9 2.3l-0.7 2.2 2.4 1.3c0 0 1.3-0.3 1.3-0.8 0-0.5 0.4-0.9 0.4-0.9l1.3 0.3 1.6-2.1-2.6 1.1-1.9 1.3c-0.7-0.2-0.5-0.8-0.5-1.4l1-0.5c0.3-0.8 1.7-1.3 3.1-1.6l1.9-0.7 0.6-0.9 3.5 2.3c0 0.3-2.6 2.1-3.6 2.8l-0.4 0.6 1.9 0.1 1.5-1.4c0.2-0.3 0.5-0.6 0.8-1 0-0.3 0-0.7-0.2-0.8-0.1-0.1 0-0.1 0-0.2l2.6 1.5c3.5 1.9 7 3.1 11.9 4.2 1.6 1.4 3.5 2.8 1.6 4.3-3.1 2.6-5.6 2.6-8.4 3.7l-6.9 2c-2.8 0.2-5.4 0.7-8.2 0.5-0.1-0.4 0.4-1 0.8-1.6l2.6-3.1c0.2-0.6-0.2-0.1-0.7 0.2-0.7 0.9-1.2 1.2-1.6 1.4l-1.5 1.5c-0.3 0.6-1.5 0.9-1.7 0.7 0.7 0.4 0.9 1.8 0.6 2.9-0.2 0.7-0.5 0.6-1.5 0.5-45.9-13.2-13.8-39.2 2.9-23.4z" fill="#fff"/></g><g transform="translate(-29.898328,-80.282547)"><path d="m55.9 1163.1c-0.3 0.9-0.3 0.9-0.6 3.6 0 0-0.6 0.1-1.3 1.2-0.7 1.1-1.5 14.6-1.4 14.7 0.1 0.2 0.2 1.4 0.4 2.6 0.3 1.1 4.7 4.7 11.2 4.6 2.2-0.1 7.4 1.2 8.8 2.1 0.9 1.6 9.2 7 15.8 6.3 2.8 0.8 14.4-1.8 16.5-3.3 3.3-1.2 7.1-4.2 7.5-5.5 0.2-1.1 0.5-3.8-0.8-5.9-1.2-1.7-3.2-2.9-4.8-3-6-1.4-8.3-2.8-11.8-4.8l-1.6-1 0.2-0.5-0.7-0.5-0.5 0.4-1.2-1 0-0.5-1.5-1-0.4 0.2-0.9-1 0.4-0.6-2.1-1.5-0.5 0.4-0.8-0.9 0-0.9-2.1-1.8-0.5 0.3-1-1.2c-0.2-1.2-0.8-1.9-1.7-2.2-1.1-1.1-1.6-1.2-2.9-1.2-1.2-0.3-1.2 0.2-1.5 0.5-1.6-0.4-3.6-0.6-4.3 0.3-2 1.1-3.1 4.3-4.7 2.7-2.4-1.8-3.2-3.3-6.5-4.3-2.3 0.3-3.7 1.3-4.7 2.7z" fill="#000"/><path d="m54 1167.7c-0.3 0.9 3.7 7.1 5.6 6.8 1 0.5 5.8-3 5.8-3 7.4-9.5 15.6-2 20.7-1.5 0.1 0.5 0.9 0.8 1.5 0.8 0.3 0 0.1 0.6 0.1 0.6-0.8 0.6-2.1 0.4-3.3 0.6-0.2 0.7-0.6 1.6-1 2.1-0.1 0.4-0.8-0.2-0.6-0.7 0.1-0.4 0.3-1 0.3-1-1.7 0.7-3.7 1.9-4.2 2.5-0.6 0.5-1-0.9-0.9-1.5l3.1-1.9c-0.4 0.2-1.3 0.2-1.4-0.3 0-2.4-2.1-0.6-3.6-0.1 0.8-0.1 1.3 0 1.6 0.2l0.5 0.9-6.2 6.8-4.4 5.9 3.5 1.6c0.9-5.8 10-12.9 10.2-12.7 1.2-0.1 1.2 0.4 3.4 0.6 0.4 0.1 0.9-0.2 1.4-0.5 0.4-1 1.6-1.8 2.5-2.8l1 1c-0.2 0.1-0.3 0.2-0.4 0.6 0 0.6 0.6 0.6 1.4 0.6 0 0.2 0.3 0.3 0 0.7-2.9 1.1-4.7 1-6.9 2.3l-0.7 2.2 2.4 1.3c0 0 1.3-0.3 1.3-0.8 0-0.5 0.4-0.9 0.4-0.9l1.3 0.3 1.6-2.1-2.6 1.1-1.9 1.3c-0.7-0.2-0.5-0.8-0.5-1.4l1-0.5c0.3-0.8 1.7-1.3 3.1-1.6l1.9-0.7 0.6-0.9 3.5 2.3c0 0.3-2.6 2.1-3.6 2.8l-0.4 0.6 1.9 0.1 1.5-1.4c0.2-0.3 0.5-0.6 0.8-1 0-0.3 0-0.7-0.2-0.8-0.1-0.1 0-0.1 0-0.2l2.6 1.5c3.5 1.9 7 3.1 11.9 4.2 1.6 1.4 3.5 2.8 1.6 4.3-3.1 2.6-5.6 2.6-8.4 3.7l-6.9 2c-2.8 0.2-5.4 0.7-8.2 0.5-0.1-0.4 0.4-1 0.8-1.6l2.6-3.1c0.2-0.6-0.2-0.1-0.7 0.2-0.7 0.9-1.2 1.2-1.6 1.4l-1.5 1.5c-0.3 0.6-1.5 0.9-1.7 0.7 0.7 0.4 0.9 1.8 0.6 2.9-0.2 0.7-0.5 0.6-1.5 0.5-2.6-1-4.7-2.7-7.9-2.9-1.8-0.3-2.1-0.7-2.7-1.1-2.7-1.5-5.4-3-9.1-4.3-1-0.2-2.4-0.7-3-0.5-0.8 0.8 0.6 1.1 1.3 1.9-0.5 0.5-1.8-0.2-2.7-0.3-3.9 0.3-6.6-1.6-6.3-2.1-1.2-1.2-1-2.1-1.4-3.2 0.7-7.4 0.6-9.2 1.1-14.5z" fill="#fff"/><path d="m71.6 1186.1c-0.3-1.3 4-8.3 9.6-12 0.9-0.4 0.1-0.3 2.2 0.4" style="fill:none;stroke-dasharray:0.4;stroke-width:0.1;stroke:#333"/><path d="m60.9 1176.2c1.2 0.1 8.1-5.3 9.7-5.4 4 1.3 2.9 2.7 3.2 2.7-1.5 1.3-6.9 6.2-7.2 10.5" style="fill:none;stroke-dasharray:0.3;stroke-width:0.2;stroke:#000"/><path d="m60.7 1174.9c3-2.2 6.5-2.7 5.6-5.8" style="fill:none;stroke-dasharray:0.4;stroke-width:0.1;stroke:#000"/><path class="s2" d="m80.7 1181.8c0 0-3.4 3-3.2 3.9 0.1 0.7 2.2-1.4 2.2-1.4 0.7-1.1 1.2-1.6 1.6-2.1m1.8 0.9 0 0c-0.2-0.1-3.4 5-2.5 5.5 1.2 0.1 1.3-3.1 2.7-4.4 0.1-0.3 0.2-0.5 0.4-0.7m1.8 0.3c0 0-1.6 6.3-1.1 6.5 0.5 0.7 1.4-4.6 1.5-4.7l0.3-1.3" style="fill:none;stroke-width:0.1;stroke:#1a1a1a"/><path d="m82.7 1177.5c-0.2 1.3-0.5 2 0.4 2.2 3.3 2.7 5.4-1.7 5.3-1.1" style="fill:none;stroke-dasharray:0.3;stroke-width:0.1;stroke:#333"/><path d="m60.6 1181.8c-0.9-0.6-5.2-8-6.1-9.8 1.1 1.6 3.6 5 4.8 6.6 0.3 0.5 1.1 2.4 1.2 3.2zm29.3-1.5 0 0c-0.2 1.7 0.6 5.8 6.8 5.5 1.9 0.2 10.6-0.9 12.2-3.8-5.7 4.3-17.5 5.2-18.7 0z" fill="#000"/></g></g><path d="m24.2 853.8c32.7 6.7 47.2 14.4 67.9-2.3 2.3 0.6 4.6 1.2 7 1.8 19.3 5-3.3 87.8-1.9 86.8-2.6 37.4 1.9 86.8 1.9 86.8-7.6-4-37.8-1.5-38.4 5-4.3 1.6-27.9 6-46.4-1.3 3.1-2 7.1-31.2 2-85.7 0 0-32.4-30.4-3.8-87.9 2.9-1.5 9.3-3.1 11.7-3.2z" fill="#000"/></g><path d="m212.9 201.3c-3.9 0.4-8 1.5-9.9 3.7-2 2.3-3.6 7.8-4.6 16.1-1 8.6-0.6 16.6 3 21 3.5 4.2 8.8 3.8 12 2.9 3.1-0.9 4.9-2.4 6.6-5 1.9-2.8 4.5-8.1 5.5-15.4 1-7.3 0.1-14.6-2.3-18.8-2.5-4.3-6.1-4.9-10.3-4.4zm-4.1 4.6c0.6 0 0.9 0.4 1.1 1 0.1 0.4 0.1 1.9 0 4.9-0.1 3.1-0.1 4.8 0.3 4.8 0.1 0 0.3 0 0.5-0.1 0.1 0 0.2-0.1 0.3-0.1 0.3-0.2 0.6-0.3 0.8-0.4 0.2-0.1 0.8-0.1 1.6-0.1 1.6 0 2.7 1.4 3 4.5 0.5 4-0.1 6.6-0.2 14.4 0 0.7 0 1.3-0.1 1.6-0.1 0.4-0.3 0.5-0.7 0.5-0.3 0-0.7-0.6-0.8-2-0.1-0.8-0.2-2.7-0.1-6.2 0.1-3.6 0.2-5.6 0.1-6.7-0.5-1.6-1.1-2.6-1.8-2.9 0 0 0 0 0 0-1.2 0-2.1 1-2.8 3-0.3 0.9-0.7 3.4-0.9 6.9-0.2 3.5-0.3 5.8-0.4 6.5-0.1 1.6-0.4 2.4-0.9 2.5-0.4 0.1-0.6 0-0.8-0.3-0.2-0.3-0.3-1-0.3-2.3 0-0.2 0-0.5 0-0.7 0-0.5 0-1 0-1.5 0-0.8 0.1-2 0.1-2.3 0-0.5 0.1-1 0.1-1.5 0-0.5 0.1-1 0.1-1.5 0.1-1 0.1-2.1 0.2-3.1 0-0.3 0-0.5 0.1-0.8 0-0.5 0.1-1 0.1-1.6 0-0.3 0-0.5 0.1-0.8 0-0.5 0.1-1 0.1-1.5 0-0.3 0-0.5 0.1-0.8 0-0.5 0.1-1 0.1-1.5 0-0.2 0-0.5 0.1-0.7 0-0.5 0.1-1 0.1-1.4 0-0.7 0.1-1.4 0.1-2.1 0.2-3.8 0.2-5.7 0.4-6.6 0.1-0.8 0.4-1.1 0.8-1.1 0 0 0 0 0 0z" fill="#800000"/></g></svg>
...
 
\ No newline at end of file
 
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1240.7 1180.1" height="333" width="350"><style>.s0{fill:#000;}.s1{fill:#fff;}</style><style>.s0{fill:#000;}.s1{fill:#fff;}.s2{fill:none;stroke-width:0.1;stroke:#1a1a1a;}</style><g transform="matrix(4.1909988,0,0,4.1909988,-593.33743,-448.91615)"><path d="m318.3 107.1 0 0c-0.6 0-1.2 0.1-2 0.2-1 0.1-2.1 0.4-3.2 0.9-1.1 0.4-2.2 1-3.2 1.8-1 0.7-1.9 1.6-2.6 2.6-0.4 0.5-0.7 1.1-0.9 1.6-0.3 0.6-0.5 1.2-0.6 1.8-0.2 1.1-0.3 2.2 0 3.4 0.2 1.3 0.7 2.7 1.5 4.5 0.8 1.8 1.9 4 3.5 6.7 1.6 2.7 3.5 5.9 6 9.9 2.8 4.4 5.6 8.6 7.6 11.6 1 1.5 1.8 2.8 2.4 3.7 0.5 0.9 0.8 1.4 0.7 1.5-0.6 0.4-1.4 1-1.9 1.4-0.6 0.4-1 0.8-1.1 0.6-2-1.8-6.9-5.4-13.5-10.8-4.5-3.8-8.4-6.9-11.9-9.4-1.7-1.3-3.4-2.4-4.9-3.4-1.5-1-3-1.8-4.4-2.5-1.4-0.7-2.7-1.3-3.9-1.7-1.2-0.4-2.4-0.7-3.5-0.9-1.1-0.2-2.2-0.2-3.2-0.1-1 0.1-2.1 0.3-3.1 0.6-1.2 0.4-2.3 0.9-3.3 1.5-1 0.6-1.9 1.3-2.7 2.1-0.8 0.8-1.5 1.6-2 2.5-0.5 0.9-1 1.9-1.3 2.9-0.3 1-0.5 2.1-0.5 3.3 0 1.1 0.1 2.3 0.3 3.5 0.3 1.2 0.7 2.4 1.2 3.7 0.6 1.2 1.3 2.5 2.2 3.8 1.4 2 2.8 4 4.1 5.8 1.4 1.8 2.7 3.6 4.1 5.2 1.4 1.6 2.8 3.2 4.4 4.6 1.5 1.4 3.2 2.8 4.9 4.1 1.9 1.4 3.5 2.5 5 3.4 1.5 0.9 2.7 1.6 4 2.3l3.6 2.1c1.2 0.7 2.5 1.6 3.9 2.6-0.6 1.9-1.2 3.7-1.6 5.5-0.9 3.5-1.4 7-1.6 10.4-0.1 3.3 0 6.5 0.4 9.6 0.2 1.5 0.5 3.1 0.9 4.6 0.8 3.1 1.8 6.2 3 8.9 2.4 5.6 4.2 10.3 5.6 14.5 1.4 4.2 2.4 7.8 3 11 0.6 3 1 6 1.2 8.8 0.1 2.7 0 5.2-0.2 7.9-0.6 5.7-1.3 11.5-1.6 16.8-0.3 5.8-0.4 9.3-0.7 11.6-0.2 4.2-3.7 5.8-6.4 7.5-5.2 5.7-6.2 13.1-4.5 19.5 0.1 0.2 0.2 0.3 0.3 0.4-0.2 0-0.4 0-0.6 0.1l-133.6 41.1 47.1 21.5 179.9-40c2.4 0.2 5 0.3 7.2-0.5 5.2-0.8 8.6-6.3 12.2-7.1 1.1-0.2 2.3-0.6 3.4-1.2 1.1-0.6 2.1-1.3 3-2.2 0.9-0.8 1.6-1.8 2.1-2.7 0.3-0.5 0.5-0.9 0.6-1.4 0.1-0.5 0.2-0.9 0.2-1.4 0-0.7-0.2-1.8-0.4-3-0.5-2-1.3-3.8-1.7-5.7-0.3-1.7 0.3-3.3 0.9-4.7 1.4-2.5 3.2-4.8 4.4-7.3 1.5-2.8 2.5-5.9 3.4-8.7 1.5-5.6 2.1-11.9 2.3-17 0.2-4.6 0.3-9.8 0.3-15.8 0.1-4.4 0-8.8 0.7-12.8 0.4-2.9 1.6-5.5 2-8.2 0.7-5.5 1.5-11.1 1.9-16.8 0.2-2.9 0.4-5.8 0.5-8.7 0.1-6.1-0.2-12-1.4-17.7-1.5-7.1-4.9-14-8.8-19.5-6.3-9.2-14.1-17.3-23-22.7-9.8-5.9-20.8-8.8-31.4-9.9-5.1-0.4-9.7-0.4-14.8-0.3-0.9-0.7-1.8-1.8-2.8-3.1-1-1.4-2.1-3-3.3-4.7-1.2-1.7-2.4-3.6-3.7-5.4-1.3-1.8-2.7-3.6-4.1-5.1-2-2.6-4-5.1-6-7.4-2-2.3-3.9-4.4-5.7-6.3-1.8-1.9-3.5-3.5-4.9-4.8-1.5-1.3-2.8-2.3-3.8-3-1.4-0.9-2.4-1.4-3.4-1.7-0.5-0.1-1-0.2-1.6-0.2z" fill="#666"/><path d="m190.3 154.5c-3.8 0.1-5.9 0-7.4-0.5-2-0.7-2.9-1.8-3.9-4.8-0.7-2.2-1.1-2.8-1.8-3.3-0.8-0.5-1.3-0.7-3.4-0.8-2.3-0.1-7.8-0.6-11-1-3-0.4-3.8-0.4-4.9-0.3-0.9 0-0.9 0.1-1.1 0.3-0.3 0.4-0.2 0.7 0.5 3.3 0.7 2.8 0.9 3.6 0.9 4.7 0 1.1 0 1.2-0.3 1.4-0.4 0.2-0.7 0.1-1.1-0.3-0.6-0.9-0.9-2-0.7-2.5 0.1-0.2 0.1-0.3-0.3-2.1-1-4.3-1-5.7-0.1-6.7 1.4-1.7 9.2-4 16.6-4.9 1.4-0.2 2.9-0.4 3.3-0.5 0.4-0.1 2.9-0.8 5.6-1.6 8.2-2.4 9.8-2.7 15.5-3.3 4.5-0.5 6.3-0.5 10.3-0.2 2.5 0.2 3.7 0.2 5.1-0.1 1.2-0.2 2.1-0.5 5.1-1.8 4.3-1.8 8.1-3 11.1-3.3 0.9-0.1 1.9-0.2 2.3-0.2 0.7 0 4.6 0.5 5 0.6 0.1 0 0.2 0.2 0.3 0.4 0.2 0.5 0.9 7.5 0.9 7.9 0 0.2-0.1 0.7-0.2 1.2-0.1 0.4-0.2 1.3-0.2 1.9-0.5 5-1.3 7.1-3.5 8.4-1.2 0.7-2.3 1.2-4.1 1.5-1.3 0.3-4.8 0.3-6.4 0.1-2.5-0.3-5.6-3.1-7.2-6.5-0.4-0.7-0.4-1-0.5-1.8-0.1-0.9-0.1-1 0.1-1.5 0.2-0.6 0.2-1.1-0.1-1.6-0.2-0.3-0.3-0.3-0.6-0.4-0.8-0.1-2 0.4-2.4 1-0.2 0.3-0.4 1-0.9 3-1.8 8-3.4 10.2-8.4 12-3.1 1.1-8.4 2-12 2.2z" fill="#000"/><g transform="matrix(1.0082352,0,0,1.0082352,140.864,-681.53456)"><g transform="translate(-1.6610183,-56.474619)"><g transform="translate(-29.898328,-80.282547)"><path d="m84.7 1153.3c0 1.9-0.2 2.8-0.4 3.6 0 0-0.9 0-1.3 1.3-0.4 1.3-1.5 14.6-1.4 14.7 0.1 0.2 0.2 1.4 0.4 2.6 0.3 1.1 4.7 4.6 11.2 4.6 2.5 0 8 1.3 8.8 2.1-0.7 0.8 9.2 6.6 15.8 6.3 2.8 0.8 14.4-1.8 16.5-3.3 3.3-1.2 7.1-4.2 7.5-5.5 0.2-1.1 0.5-3.8-0.8-5.9-1.2-1.7-3.2-2.9-4.8-3-6-1.4-8.3-2.8-11.8-4.8l-1.6-1 0.2-0.5-0.7-0.5-0.5 0.4-1.2-1 0-0.5-1.5-1-0.4 0.2-0.9-1 0.4-0.6-2.1-1.5-0.5 0.4-0.8-0.9 0-0.9-2.1-1.8-0.5 0.3-1-1.2-1.1-2.1-1.9-1.3-2.2-0.1-1.5 0.4-2.6-0.4-2.5 1.7c-1 1.8-2.2 2.4-2.9 2.3-2.4-1.7-4.8-3.8-6.3-4.6l-3.7 1c-0.6 0.6-1.2 1.1-1.8 1.7z" fill="#1a1a1a"/><path d="m116.7 1161.5c-0.8 0.6-2.1 0.4-3.3 0.6-0.2 0.7-0.6 1.6-1 2.1-0.1 0.4-0.8-0.2-0.6-0.7 0.1-0.4 0.3-1 0.3-1-1.7 0.7-3.7 1.9-4.2 2.5-0.6 0.5-1-0.9-0.9-1.5 0.4-0.1 0.6-1.3 0.2-1.2l-10.5 12.8 3.5 1.6c0.9-5.8 10-12.9 10.2-12.7 1.2-0.1 1.2 0.4 3.4 0.6 0.4 0.1 0.9-0.2 1.4-0.5 0.4-1 1.6-1.8 2.5-2.8l1 1c-0.2 0.1-0.3 0.2-0.4 0.6 0 0.6 0.6 0.6 1.4 0.6 0 0.2 0.3 0.3 0 0.7-2.9 1.1-4.7 1-6.9 2.3l-0.7 2.2 2.4 1.3c0 0 1.3-0.3 1.3-0.8 0-0.5 0.4-0.9 0.4-0.9l1.3 0.3 1.6-2.1-2.6 1.1-1.9 1.3c-0.7-0.2-0.5-0.8-0.5-1.4l1-0.5c0.3-0.8 1.7-1.3 3.1-1.6l1.9-0.7 0.6-0.9 3.5 2.3c0 0.3-2.6 2.1-3.6 2.8l-0.4 0.6 1.9 0.1 1.5-1.4c0.2-0.3 0.5-0.6 0.8-1 0-0.3 0-0.7-0.2-0.8-0.1-0.1 0-0.1 0-0.2l2.6 1.5c3.5 1.9 7 3.1 11.9 4.2 1.6 1.4 3.5 2.8 1.6 4.3-3.1 2.6-5.6 2.6-8.4 3.7l-6.9 2c-2.8 0.2-5.4 0.7-8.2 0.5-0.1-0.4 0.4-1 0.8-1.6l2.6-3.1c0.2-0.6-0.2-0.1-0.7 0.2-0.7 0.9-1.2 1.2-1.6 1.4l-1.5 1.5c-0.3 0.6-1.5 0.9-1.7 0.7 0.7 0.4 0.9 1.8 0.6 2.9-0.2 0.7-0.5 0.6-1.5 0.5-45.9-13.2-13.8-39.2 2.9-23.4z" fill="#fff"/></g><g transform="translate(-29.898328,-80.282547)"><path d="m55.9 1163.1c-0.3 0.9-0.3 0.9-0.6 3.6 0 0-0.6 0.1-1.3 1.2-0.7 1.1-1.5 14.6-1.4 14.7 0.1 0.2 0.2 1.4 0.4 2.6 0.3 1.1 4.7 4.7 11.2 4.6 2.2-0.1 7.4 1.2 8.8 2.1 0.9 1.6 9.2 7 15.8 6.3 2.8 0.8 14.4-1.8 16.5-3.3 3.3-1.2 7.1-4.2 7.5-5.5 0.2-1.1 0.5-3.8-0.8-5.9-1.2-1.7-3.2-2.9-4.8-3-6-1.4-8.3-2.8-11.8-4.8l-1.6-1 0.2-0.5-0.7-0.5-0.5 0.4-1.2-1 0-0.5-1.5-1-0.4 0.2-0.9-1 0.4-0.6-2.1-1.5-0.5 0.4-0.8-0.9 0-0.9-2.1-1.8-0.5 0.3-1-1.2c-0.2-1.2-0.8-1.9-1.7-2.2-1.1-1.1-1.6-1.2-2.9-1.2-1.2-0.3-1.2 0.2-1.5 0.5-1.6-0.4-3.6-0.6-4.3 0.3-2 1.1-3.1 4.3-4.7 2.7-2.4-1.8-3.2-3.3-6.5-4.3-2.3 0.3-3.7 1.3-4.7 2.7z" fill="#000"/><path d="m54 1167.7c-0.3 0.9 3.7 7.1 5.6 6.8 1 0.5 5.8-3 5.8-3 7.4-9.5 15.6-2 20.7-1.5 0.1 0.5 0.9 0.8 1.5 0.8 0.3 0 0.1 0.6 0.1 0.6-0.8 0.6-2.1 0.4-3.3 0.6-0.2 0.7-0.6 1.6-1 2.1-0.1 0.4-0.8-0.2-0.6-0.7 0.1-0.4 0.3-1 0.3-1-1.7 0.7-3.7 1.9-4.2 2.5-0.6 0.5-1-0.9-0.9-1.5l3.1-1.9c-0.4 0.2-1.3 0.2-1.4-0.3 0-2.4-2.1-0.6-3.6-0.1 0.8-0.1 1.3 0 1.6 0.2l0.5 0.9-6.2 6.8-4.4 5.9 3.5 1.6c0.9-5.8 10-12.9 10.2-12.7 1.2-0.1 1.2 0.4 3.4 0.6 0.4 0.1 0.9-0.2 1.4-0.5 0.4-1 1.6-1.8 2.5-2.8l1 1c-0.2 0.1-0.3 0.2-0.4 0.6 0 0.6 0.6 0.6 1.4 0.6 0 0.2 0.3 0.3 0 0.7-2.9 1.1-4.7 1-6.9 2.3l-0.7 2.2 2.4 1.3c0 0 1.3-0.3 1.3-0.8 0-0.5 0.4-0.9 0.4-0.9l1.3 0.3 1.6-2.1-2.6 1.1-1.9 1.3c-0.7-0.2-0.5-0.8-0.5-1.4l1-0.5c0.3-0.8 1.7-1.3 3.1-1.6l1.9-0.7 0.6-0.9 3.5 2.3c0 0.3-2.6 2.1-3.6 2.8l-0.4 0.6 1.9 0.1 1.5-1.4c0.2-0.3 0.5-0.6 0.8-1 0-0.3 0-0.7-0.2-0.8-0.1-0.1 0-0.1 0-0.2l2.6 1.5c3.5 1.9 7 3.1 11.9 4.2 1.6 1.4 3.5 2.8 1.6 4.3-3.1 2.6-5.6 2.6-8.4 3.7l-6.9 2c-2.8 0.2-5.4 0.7-8.2 0.5-0.1-0.4 0.4-1 0.8-1.6l2.6-3.1c0.2-0.6-0.2-0.1-0.7 0.2-0.7 0.9-1.2 1.2-1.6 1.4l-1.5 1.5c-0.3 0.6-1.5 0.9-1.7 0.7 0.7 0.4 0.9 1.8 0.6 2.9-0.2 0.7-0.5 0.6-1.5 0.5-2.6-1-4.7-2.7-7.9-2.9-1.8-0.3-2.1-0.7-2.7-1.1-2.7-1.5-5.4-3-9.1-4.3-1-0.2-2.4-0.7-3-0.5-0.8 0.8 0.6 1.1 1.3 1.9-0.5 0.5-1.8-0.2-2.7-0.3-3.9 0.3-6.6-1.6-6.3-2.1-1.2-1.2-1-2.1-1.4-3.2 0.7-7.4 0.6-9.2 1.1-14.5z" fill="#fff"/><path d="m71.6 1186.1c-0.3-1.3 4-8.3 9.6-12 0.9-0.4 0.1-0.3 2.2 0.4" style="fill:none;stroke-dasharray:0.4;stroke-width:0.1;stroke:#333"/><path d="m60.9 1176.2c1.2 0.1 8.1-5.3 9.7-5.4 4 1.3 2.9 2.7 3.2 2.7-1.5 1.3-6.9 6.2-7.2 10.5" style="fill:none;stroke-dasharray:0.3;stroke-width:0.2;stroke:#000"/><path d="m60.7 1174.9c3-2.2 6.5-2.7 5.6-5.8" style="fill:none;stroke-dasharray:0.4;stroke-width:0.1;stroke:#000"/><path class="s2" d="m80.7 1181.8c0 0-3.4 3-3.2 3.9 0.1 0.7 2.2-1.4 2.2-1.4 0.7-1.1 1.2-1.6 1.6-2.1m1.8 0.9 0 0c-0.2-0.1-3.4 5-2.5 5.5 1.2 0.1 1.3-3.1 2.7-4.4 0.1-0.3 0.2-0.5 0.4-0.7m1.8 0.3c0 0-1.6 6.3-1.1 6.5 0.5 0.7 1.4-4.6 1.5-4.7l0.3-1.3" style="fill:none;stroke-width:0.1;stroke:#1a1a1a"/><path d="m82.7 1177.5c-0.2 1.3-0.5 2 0.4 2.2 3.3 2.7 5.4-1.7 5.3-1.1" style="fill:none;stroke-dasharray:0.3;stroke-width:0.1;stroke:#333"/><path d="m60.6 1181.8c-0.9-0.6-5.2-8-6.1-9.8 1.1 1.6 3.6 5 4.8 6.6 0.3 0.5 1.1 2.4 1.2 3.2zm29.3-1.5 0 0c-0.2 1.7 0.6 5.8 6.8 5.5 1.9 0.2 10.6-0.9 12.2-3.8-5.7 4.3-17.5 5.2-18.7 0z" fill="#000"/></g></g><path d="m24.2 853.8c32.7 6.7 47.2 14.4 67.9-2.3 2.3 0.6 4.6 1.2 7 1.8 19.3 5-3.3 87.8-1.9 86.8-2.6 37.4 1.9 86.8 1.9 86.8-7.6-4-37.8-1.5-38.4 5-4.3 1.6-27.9 6-46.4-1.3 3.1-2 7.1-31.2 2-85.7 0 0-32.4-30.4-3.8-87.9 2.9-1.5 9.3-3.1 11.7-3.2z" fill="#000"/></g><path d="m212.9 201.3c-3.9 0.4-8 1.5-9.9 3.7-2 2.3-3.6 7.8-4.6 16.1-1 8.6-0.6 16.6 3 21 3.5 4.2 8.8 3.8 12 2.9 3.1-0.9 4.9-2.4 6.6-5 1.9-2.8 4.5-8.1 5.5-15.4 1-7.3 0.1-14.6-2.3-18.8-2.5-4.3-6.1-4.9-10.3-4.4zm-4.1 4.6c0.6 0 0.9 0.4 1.1 1 0.1 0.4 0.1 1.9 0 4.9-0.1 3.1-0.1 4.8 0.3 4.8 0.1 0 0.3 0 0.5-0.1 0.1 0 0.2-0.1 0.3-0.1 0.3-0.2 0.6-0.3 0.8-0.4 0.2-0.1 0.8-0.1 1.6-0.1 1.6 0 2.7 1.4 3 4.5 0.5 4-0.1 6.6-0.2 14.4 0 0.7 0 1.3-0.1 1.6-0.1 0.4-0.3 0.5-0.7 0.5-0.3 0-0.7-0.6-0.8-2-0.1-0.8-0.2-2.7-0.1-6.2 0.1-3.6 0.2-5.6 0.1-6.7-0.5-1.6-1.1-2.6-1.8-2.9 0 0 0 0 0 0-1.2 0-2.1 1-2.8 3-0.3 0.9-0.7 3.4-0.9 6.9-0.2 3.5-0.3 5.8-0.4 6.5-0.1 1.6-0.4 2.4-0.9 2.5-0.4 0.1-0.6 0-0.8-0.3-0.2-0.3-0.3-1-0.3-2.3 0-0.2 0-0.5 0-0.7 0-0.5 0-1 0-1.5 0-0.8 0.1-2 0.1-2.3 0-0.5 0.1-1 0.1-1.5 0-0.5 0.1-1 0.1-1.5 0.1-1 0.1-2.1 0.2-3.1 0-0.3 0-0.5 0.1-0.8 0-0.5 0.1-1 0.1-1.6 0-0.3 0-0.5 0.1-0.8 0-0.5 0.1-1 0.1-1.5 0-0.3 0-0.5 0.1-0.8 0-0.5 0.1-1 0.1-1.5 0-0.2 0-0.5 0.1-0.7 0-0.5 0.1-1 0.1-1.4 0-0.7 0.1-1.4 0.1-2.1 0.2-3.8 0.2-5.7 0.4-6.6 0.1-0.8 0.4-1.1 0.8-1.1 0 0 0 0 0 0z" fill="#800000"/></g></svg>
conservancy/static/img/projects/mercurial.svg
Show inline comments
 
<?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://web.resource.org/cc/" 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" version="1.0" width="100" height="120" viewBox="0 0 124.766 152.099" id="Layer_1" xml:space="preserve" sodipodi:version="0.32" inkscape:version="0.45.1" sodipodi:docname="logo-droplets.svg" sodipodi:docbase="/home/oxymoron/waste/selenic/public_html/hg-logo" inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata id="metadata6845"><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>Mercurial "droplets" logo</dc:title><dc:creator><cc:Agent><dc:title>Cali Mastny and Matt Mackall</dc:title></cc:Agent></dc:creator><cc:license rdf:resource="http://creativecommons.org/licenses/GPL/2.0/"/><dc:date>Feb 12 2008</dc:date></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/GPL/2.0/"><cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/><cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/><cc:requires rdf:resource="http://web.resource.org/cc/Notice"/><cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/><cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/><cc:requires rdf:resource="http://web.resource.org/cc/SourceCode"/></cc:License></rdf:RDF></metadata><sodipodi:namedview inkscape:window-height="576" inkscape:window-width="746" inkscape:pageshadow="2" inkscape:pageopacity="0.0" guidetolerance="10.0" gridtolerance="10.0" objecttolerance="10.0" borderopacity="1.0" bordercolor="#666666" pagecolor="#ffffff" id="base" inkscape:zoom="2.3216673" inkscape:cx="4.1210694" inkscape:cy="65.759396" inkscape:window-x="377" inkscape:window-y="398" inkscape:current-layer="Layer_1" width="100px" height="120px" units="px"/><defs id="defs261"/>
 
<pattern overflow="visible" viewBox="2.125 -70.896 69 69" id="Polka_Dot_Pattern" patternUnits="userSpaceOnUse" height="69" width="69" y="736.415" x="-316">
 
	<g id="g4">
 
		<polygon id="polygon6" points="71.125,-1.896 2.125,-1.896 2.125,-70.896 71.125,-70.896   " fill="none"/>
 
		<polygon id="polygon8" points="71.125,-1.896 2.125,-1.896 2.125,-70.896 71.125,-70.896   " fill="#F7BC60"/>
 
		<g id="g10">
 
			<path id="path12" d="M61.772-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path14" d="M54.105-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path16" d="M46.439-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path18" d="M38.772-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path20" d="M31.105-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path22" d="M23.439-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path24" d="M15.772-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path26" d="M8.105-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path28" d="M0.439-71.653c0.018,0.072,0.008,0.127-0.026,0.19C0.361-71.362,0.3-71.4,0.248-71.335     c-0.051,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224c0.002,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
		</g>
 
		<g id="g30">
 
			<path id="path32" d="M69.439-71.653c0.018,0.072,0.008,0.127-0.026,0.19c-0.052,0.101-0.113,0.062-0.165,0.128     c-0.051,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224c0.002,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
		</g>
 
		<path id="path34" d="M0.495-71.653c0.018,0.072,0.008,0.127-0.026,0.19c-0.052,0.101-0.113,0.062-0.165,0.128    c-0.051,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161    c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631    c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45    c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221    c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337    c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207    c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224C0.5-71.68,0.503-71.744,0.51-71.626    c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
		<g id="g36">
 
			<g id="g38">
 
				<path id="path40" d="M69.439-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path42" d="M61.778-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path44" d="M54.118-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path46" d="M46.458-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path48" d="M38.797-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path50" d="M31.137-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path52" d="M23.477-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path54" d="M15.816-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path56" d="M8.156-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path58" d="M0.495-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143C2-61.45,2.217-61.397,2.391-61.46c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			</g>
 
			<g id="g60">
 
				<path id="path62" d="M69.439-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path64" d="M61.778-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path66" d="M54.118-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path68" d="M46.458-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path70" d="M38.797-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path72" d="M31.137-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path74" d="M23.477-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path76" d="M15.816-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path78" d="M8.156-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path80" d="M0.495-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224C0.5-56.374,0.503-56.438,0.51-56.32      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			</g>
 
			<g id="g82">
 
				<path id="path84" d="M69.439-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path86" d="M61.778-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path88" d="M54.118-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path90" d="M46.458-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path92" d="M38.797-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path94" d="M31.137-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path96" d="M23.477-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path98" d="M15.816-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path100" d="M8.156-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path102" d="M0.495-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			</g>
 
			<g id="g104">
 
				<path id="path106" d="M69.439-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path108" d="M61.778-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path110" d="M54.118-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path112" d="M46.458-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path114" d="M38.797-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path116" d="M31.137-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path118" d="M23.477-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path120" d="M15.816-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path122" d="M8.156-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      C8.15-41.004,8.149-41.02,8.14-41.04" fill="#FFFFFF"/>
 
				<path id="path124" d="M0.495-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			</g>
 
			<g id="g126">
 
				<path id="path128" d="M69.439-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path130" d="M61.778-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path132" d="M54.118-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path134" d="M46.458-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path136" d="M38.797-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path138" d="M31.137-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path140" d="M23.477-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path142" d="M15.816-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path144" d="M8.156-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path146" d="M0.495-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224C0.5-33.416,0.503-33.48,0.51-33.362      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			</g>
 
			<g id="g148">
 
				<path id="path150" d="M69.439-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path152" d="M61.778-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path154" d="M54.118-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path156" d="M46.458-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path158" d="M38.797-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path160" d="M31.137-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path162" d="M23.477-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path164" d="M15.816-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path166" d="M8.156-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path168" d="M0.495-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			</g>
 
			<g id="g170">
 
				<path id="path172" d="M69.439-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path174" d="M61.778-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path176" d="M54.118-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path178" d="M46.458-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path180" d="M38.797-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path182" d="M31.137-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path184" d="M23.477-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path186" d="M15.816-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path188" d="M8.156-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path190" d="M0.495-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224C0.5-18.11,0.503-18.175,0.51-18.057      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			</g>
 
			<g id="g192">
 
				<path id="path194" d="M69.439-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362C69-9.692,69.159-9.523,69.154-9.4c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path196" d="M61.778-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path198" d="M54.118-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path200" d="M46.458-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path202" d="M38.797-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path204" d="M31.137-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path206" d="M23.477-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path208" d="M15.816-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053C17.933-7.969,17.839-8.227,18-8.34      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path210" d="M8.156-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      C7.915-10.05,7.866-9.836,7.886-9.75C7.717-9.692,7.876-9.523,7.871-9.4C7.868-9.351,7.83-9.295,7.826-9.239      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      C9.114-7.652,9.321-7.799,9.48-7.837c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
				<path id="path212" d="M0.495-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128      C0.254-10.05,0.205-9.836,0.225-9.75C0.056-9.692,0.215-9.523,0.21-9.4c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37C0.33-8.671,0.501-8.456,0.668-8.325c0.19,0.148,0.365,0.572,0.608,0.631      C1.454-7.652,1.66-7.799,1.819-7.837C2-7.88,2.217-7.827,2.391-7.89c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46C3.477-8.933,3.471-8.995,3.5-9.071      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			</g>
 
		</g>
 
		<g id="g214">
 
			<path id="path216" d="M69.439-2.778c0.018,0.072,0.008,0.127-0.026,0.19C69.361-2.487,69.3-2.525,69.248-2.46     c-0.051,0.062-0.099,0.276-0.079,0.362C69-2.04,69.159-1.871,69.154-1.748c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C70.397,0,70.604-0.146,70.763-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224c0.002,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path218" d="M61.778-2.778c0.018,0.072,0.007,0.127-0.026,0.19C61.7-2.487,61.64-2.525,61.587-2.46     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C62.737,0,62.943-0.146,63.103-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224C61.915-3.117,61.78-3.02,61.781-2.92c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path220" d="M54.118-2.778c0.018,0.072,0.007,0.127-0.026,0.19C54.04-2.487,53.98-2.525,53.927-2.46     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C55.077,0,55.283-0.146,55.442-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224C54.255-3.117,54.12-3.02,54.121-2.92c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path222" d="M46.458-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C47.416,0,47.623-0.146,47.782-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224C46.594-3.117,46.459-3.02,46.46-2.92c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path224" d="M38.797-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C39.756,0,39.962-0.146,40.122-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224C38.934-3.117,38.799-3.02,38.8-2.92c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path226" d="M31.137-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C32.095,0,32.302-0.146,32.461-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224C31.273-3.117,31.139-3.02,31.14-2.92c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path228" d="M23.477-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C24.435,0,24.642-0.146,24.801-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025" fill="#FFFFFF"/>
 
			<path id="path230" d="M15.816-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.062-0.165,0.128     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C16.774,0,16.981-0.146,17.14-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     C15.81-2.74,15.809-2.756,15.8-2.776" fill="#FFFFFF"/>
 
			<path id="path232" d="M8.156-2.778c0.018,0.072,0.007,0.127-0.026,0.19C8.077-2.487,8.018-2.525,7.965-2.46     c-0.05,0.062-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35C7.868-1.698,7.83-1.643,7.826-1.587     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C9.114,0,9.321-0.146,9.48-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789C8.954-3.54,8.847-3.448,8.692-3.367     c-0.17,0.088-0.139,0.166-0.318,0.224C8.292-3.117,8.158-3.02,8.159-2.92C8.16-2.805,8.164-2.869,8.17-2.751     C8.15-2.74,8.149-2.756,8.14-2.776" fill="#FFFFFF"/>
 
			<path id="path234" d="M0.495-2.778c0.018,0.072,0.008,0.127-0.026,0.19C0.417-2.487,0.356-2.525,0.304-2.46     C0.253-2.397,0.205-2.184,0.225-2.098C0.056-2.04,0.215-1.871,0.21-1.748c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37C0.33-1.019,0.501-0.804,0.668-0.673c0.19,0.148,0.365,0.572,0.608,0.631     C1.454,0,1.66-0.146,1.819-0.185C2-0.228,2.217-0.175,2.391-0.237c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46C3.477-1.28,3.471-1.343,3.5-1.419     c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789C1.293-3.54,1.187-3.448,1.031-3.367     c-0.17,0.088-0.139,0.166-0.318,0.224C0.632-3.117,0.498-3.02,0.498-2.92C0.5-2.805,0.503-2.869,0.51-2.751     C0.489-2.74,0.488-2.756,0.479-2.776" fill="#FFFFFF"/>
 
		</g>
 
	</g>
 
</pattern>
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 

	
 
<rect style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.97552931;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect6847" width="124.77364" height="150.12347" x="0.31690097" y="0.98776293"/><path d="M 9.8480335,124.60683 C 11.62496,123.82337 13.513211,123.43203 15.327243,123.43203 C 17.067063,123.43203 18.177759,123.85879 18.806894,124.74937 C 20.139374,123.8596 21.953416,123.43203 23.360116,123.43203 C 27.581053,123.43203 27.728648,125.14068 27.728648,130.16028 L 27.728648,141.26547 C 27.728648,141.76382 27.802857,141.76382 25.692811,141.76382 L 25.692811,129.94606 C 25.692811,126.31544 25.618592,125.21154 23.213365,125.21154 C 22.139794,125.21154 21.029108,125.4603 19.844204,126.24379 L 19.844204,141.5142 C 19.807099,141.65677 19.732887,141.69215 19.474821,141.72758 C 19.436863,141.72758 19.400602,141.763 19.362653,141.763 L 17.807522,141.763 L 17.807522,129.94606 C 17.807522,126.45791 17.807522,125.17607 15.29098,125.17607 C 14.2174,125.17607 13.143818,125.38944 11.884705,125.99501 L 11.884705,141.26547 C 11.884705,141.76382 11.958925,141.76382 9.8488776,141.76382 L 9.8488776,124.60683 M 37.680118,123.43203 C 34.533596,123.43203 31.053954,124.32176 31.053954,133.8263 C 31.053954,141.15915 33.607611,142.29771 37.125192,142.29771 C 39.826435,142.29771 42.159131,141.40799 42.159131,140.98039 C 42.159131,140.44659 42.084921,139.62768 41.900221,139.16468 C 40.75243,139.94814 39.123081,140.37486 37.309893,140.37486 C 34.829612,140.37486 33.164001,139.66309 33.126052,134.14592 C 34.755402,134.14592 38.902128,134.11044 41.97444,133.50498 C 42.233351,132.33022 42.343821,130.62155 42.343821,129.12711 C 42.343821,125.56743 40.900016,123.43203 37.680118,123.43203 M 37.494584,125.21154 C 39.715955,125.21154 40.307995,126.67048 40.3451,129.51849 C 40.3451,130.26565 40.307995,131.15541 40.19667,132.00972 C 38.123729,132.50815 34.60612,132.50815 33.125209,132.50815 C 33.385806,126.0304 35.606333,125.21154 37.494584,125.21154 M 45.565397,124.99816 C 47.304384,123.85879 48.897464,123.43203 50.525969,123.43203 C 52.34,123.43203 53.191776,123.93046 53.191776,124.53602 C 53.191776,124.89187 53.079617,125.49742 52.894917,125.85331 C 52.376261,125.56823 51.785075,125.31945 50.821131,125.31945 C 49.637079,125.31945 48.526385,125.63909 47.638339,126.42255 L 47.638339,141.26632 C 47.638339,141.7647 47.675453,141.7647 45.565397,141.7647 L 45.565397,124.99816 M 64.254794,124.60683 C 64.254794,124.14383 62.700508,123.43203 61.145377,123.43203 C 58.145598,123.43203 54.481256,124.4643 54.481256,133.25617 C 54.481256,141.58507 56.70347,142.3331 60.589608,142.3331 C 62.514121,142.3331 64.254794,141.30089 64.254794,140.73161 C 64.254794,140.4111 64.181418,139.91269 63.99504,139.48515 C 63.217475,140.05441 62.033423,140.58905 60.775152,140.58905 C 58.11018,140.58905 56.55504,139.84185 56.55504,133.3633 C 56.55504,126.20837 59.108698,125.21154 61.330069,125.21154 C 62.58834,125.21154 63.291694,125.56743 63.99504,126.0304 C 64.181418,125.60367 64.254794,124.99816 64.254794,124.60683 M 78.435657,141.15915 C 76.806308,141.97803 74.659991,142.29851 72.808845,142.29851 C 68.070088,142.29851 67.366733,140.30571 67.366733,135.57114 L 67.366733,124.42971 C 67.366733,123.96757 67.330471,123.96757 69.440527,123.96757 L 69.440527,135.7854 C 69.440527,139.34513 69.958338,140.55538 72.734626,140.55538 C 73.808215,140.55538 75.289126,140.34199 76.399811,139.70105 L 76.399811,124.43056 C 76.399811,123.96839 76.325602,123.96839 78.435657,123.96839 L 78.435657,141.15915 M 82.657438,124.99816 C 84.396406,123.85879 85.98865,123.43203 87.617156,123.43203 C 89.431178,123.43203 90.282962,123.93046 90.282962,124.53602 C 90.282962,124.89187 90.171639,125.49742 89.986938,125.85331 C 89.468283,125.56823 88.876272,125.31945 87.913163,125.31945 C 86.729111,125.31945 85.618415,125.63909 84.729535,126.42255 L 84.729535,141.26632 C 84.729535,141.7647 84.767484,141.7647 82.657438,141.7647 L 82.657438,124.99816 M 95.036045,123.9659 C 93.406714,123.9659 92.926008,123.9659 92.926008,124.92729 L 92.926008,141.76382 C 94.99895,141.76382 95.036045,141.76382 95.036045,141.26547 L 95.036045,123.9659 M 92.851787,117.70149 C 92.851787,118.87629 93.222023,119.30304 93.961631,119.33843 C 94.813415,119.33843 95.220746,118.73376 95.220746,117.66526 C 95.257851,116.56214 94.960991,116.06374 94.11006,116.06374 C 93.296243,116.06374 92.888893,116.66926 92.851787,117.70149 M 98.547748,124.99816 C 98.547748,124.60683 98.62196,124.39264 98.770389,124.28635 C 99.473743,123.89502 102.17666,123.43203 105.24898,123.43203 C 107.58166,123.43203 109.06174,124.53602 109.06174,127.73899 L 109.06174,130.05231 C 109.06174,136.38835 108.87704,141.12293 108.87704,141.12293 C 108.02528,141.58507 106.43387,142.29771 103.84143,142.29771 C 101.17646,142.3331 98.511478,142.0843 98.511478,136.81596 C 98.511478,131.7972 101.25067,131.01375 103.98986,131.01375 C 105.02633,131.01375 106.24834,131.12082 107.06301,131.4413 C 107.06301,131.4413 107.06301,129.12711 107.06301,128.13033 C 107.06301,125.81704 105.87895,125.31862 104.47141,125.31862 C 102.58399,125.31862 99.956127,125.67451 98.808337,126.20837 C 98.585707,125.81704 98.547748,125.21154 98.547748,124.99816 M 107.06216,132.9011 C 106.35882,132.65147 105.35945,132.54522 104.65609,132.54522 C 102.54604,132.54522 100.62069,132.97198 100.62069,136.88763 C 100.62069,140.55363 102.21293,140.58991 104.10032,140.58991 C 105.28522,140.58991 106.47014,140.26946 106.87663,139.84271 C 106.87747,139.84185 107.06216,135.57029 107.06216,132.9011 M 114.91792,141.26547 C 114.91792,141.76382 114.95503,141.76382 112.88124,141.76382 L 112.88124,116.56214 C 112.88124,115.60073 113.28857,115.60073 114.91792,115.60073 L 114.91792,141.26547" style="fill:#010101;stroke-width:2.02999997;stroke-miterlimit:4;stroke-dasharray:none" id="text2611"/><g transform="matrix(0.9351326,0,0,0.9351326,150.39508,-1.251766)" id="g4503" style="opacity:1"><path d="M -45.749655,92.691592 C -25.709638,59.370739 -49.98206,5.3291313 -94.363693,10.819389 C -134.46337,15.776665 -135.10949,57.983708 -99.76917,68.010455 C -69.186498,76.695132 -93.451029,96.093536 -92.742037,109.01138 C -92.030055,121.92728 -66.155038,126.61324 -45.749655,92.691592 z " style="fill:#1b1a1b" id="path2339"/><circle cx="33.728001" cy="85.363998" r="15.414" transform="matrix(1.0917947,-0.2858168,0.2858168,1.0917947,-180.30817,13.494135)" style="fill:#1b1a1b" id="circle2341" sodipodi:cx="33.728001" sodipodi:cy="85.363998" sodipodi:rx="15.414" sodipodi:ry="15.414"/><path d="M -140.06215,48.935849 C -146.31997,49.541603 -150.90082,55.100456 -150.29507,61.358275 C -149.68817,67.620461 -144.12955,72.20487 -137.87064,71.59883 C -131.61373,70.985148 -127.02904,65.427621 -127.63726,59.169282 C -128.24543,52.915596 -133.80324,48.329809 -140.06215,48.935849 z " style="fill:#1b1a1b" id="path2343"/><path d="M -44.99294,91.339709 C -24.951831,58.018571 -49.224253,3.976963 -93.605885,9.4672202 C -133.70556,14.424496 -134.35249,56.632918 -99.012168,66.659664 C -68.429497,75.344341 -92.694028,94.742745 -91.984749,107.66168 C -91.271961,120.5762 -65.398322,125.26135 -44.99294,91.339709 z " style="fill:#bfbfbf" id="path2561"/><path d="M -86.84228,112.75985 C -88.056751,110.79004 -86.19955,108.60176 -84.290569,108.76815 C -81.251858,109.03428 -74.635637,108.73252 -69.415044,105.77341 C -56.372412,98.379694 -36.300952,62.803704 -46.395841,40.365295 C -50.915249,30.320886 -53.115898,27.444964 -57.770162,22.531645 C -58.719625,21.529587 -58.174556,21.584053 -57.531623,21.923221 C -55.014762,23.244092 -50.592026,28.36035 -46.055478,36.687677 C -38.390628,50.757116 -38.788117,67.483141 -41.638835,77.975343 C -43.624548,85.27439 -50.464117,101.78644 -60.480639,108.92577 C -70.5197,116.0815 -82.266433,120.18559 -86.84228,112.75985 z " style="fill:#000000" id="path2563"/><path d="M -95.930347,66.591355 C -102.76341,64.562985 -111.57238,61.738267 -116.66758,55.073789 C -120.42371,50.15984 -122.3305,44.796759 -122.81745,41.755703 C -122.99069,40.670602 -123.13785,39.765332 -122.82526,39.515509 C -122.68064,39.399486 -120.02045,45.412302 -116.04367,50.451645 C -112.06769,55.492366 -106.51047,58.440379 -101.88092,59.511496 C -97.763206,60.46345 -89.233623,62.555175 -86.347769,65.013729 C -83.380949,67.540918 -83.133309,73.00119 -84.131664,73.617197 C -85.138469,74.236583 -87.180025,69.187603 -95.930347,66.591355 z " style="fill:#000000" id="path2565"/><path d="M -81.840812,113.72311 C -81.972699,115.28707 -80.176315,115.59377 -77.75828,115.23141 C -74.658947,114.76654 -72.037923,114.41754 -68.470623,112.62971 C -63.63582,110.20674 -58.742752,106.74072 -55.159223,102.06476 C -44.467444,88.115271 -40.681354,71.610444 -41.264404,69.236185 C -41.459242,71.196944 -44.040349,81.489071 -49.943268,90.767882 C -57.52457,102.68631 -63.022197,109.03464 -75.701416,112.1124 C -79.230011,112.96964 -81.668137,111.66432 -81.840812,113.72311 z " style="fill:#ffffff" id="path2567"/><path d="M -109.96233,59.479354 C -108.51822,60.704238 -105.55938,62.336389 -99.737455,64.245644 C -92.705873,66.551032 -89.282274,68.550326 -87.848506,69.508429 C -86.329222,70.525809 -85.366279,72.795951 -85.27115,70.779631 C -85.17194,68.761076 -86.416123,67.025373 -89.192166,66.104839 C -91.070345,65.481234 -94.229847,63.996111 -97.258539,63.398373 C -99.204694,63.014221 -102.37098,62.251845 -105.08636,61.420426 C -106.57454,60.963046 -108.09089,60.161888 -109.96233,59.479354 z " style="fill:#ffffff" id="path2569"/><circle cx="34.681" cy="84.375" r="15.414" transform="matrix(1.0917947,-0.2858168,0.2858168,1.0917947,-180.30817,13.494135)" style="fill:#bfbfbf" id="circle2577" sodipodi:cx="34.681" sodipodi:cy="84.375" sodipodi:rx="15.414" sodipodi:ry="15.414"/><path d="M -128.68413,108.37945 C -115.15301,120.91784 -94.786007,103.69471 -103.75445,88.482597 C -104.76154,86.774656 -106.06907,85.474351 -105.63906,86.782721 C -102.77288,95.529828 -105.42141,102.44941 -110.3632,106.01451 C -115.20857,109.5112 -121.86847,110.09622 -127.20028,107.33186 C -128.76601,106.5203 -129.41538,107.70291 -128.68413,108.37945 z " style="fill:#000000" id="path2579"/><path d="M -118.06686,110.95477 C -116.34413,110.59244 -106.32442,107.99742 -103.97055,99.756195 C -103.23743,97.186709 -103.1058,97.702893 -103.31295,99.095232 C -104.37035,106.20143 -111.08741,111.44338 -116.80312,111.63773 C -117.963,111.75704 -119.48484,111.25131 -118.06686,110.95477 z " style="fill:#ffffff" id="path2585"/><path d="M -139.30435,47.583681 C -145.56216,48.189435 -150.14301,53.748288 -149.53726,60.006106 C -148.93065,66.2672 -143.37174,70.852702 -137.11392,70.246948 C -130.85592,69.632979 -126.27151,64.074361 -126.88083,57.816308 C -127.48791,51.562336 -133.04544,46.977641 -139.30435,47.583681 z " style="fill:#bfbfbf" id="path2589"/><path d="M -144.46878,67.571208 C -144.39939,68.375508 -143.29781,69.408789 -141.56718,69.883196 C -140.08038,70.290771 -136.24758,71.332594 -131.32372,68.224839 C -126.39986,65.117084 -125.8321,56.804464 -128.07041,54.35955 C -128.76326,53.121154 -129.66426,52.21957 -128.94737,54.195974 C -127.13695,59.186468 -130.65487,63.854586 -133.68917,66.0162 C -136.72238,68.177528 -140.56932,67.154692 -142.14014,66.675779 C -143.71095,66.196867 -144.53929,66.740369 -144.46878,67.571208 z " style="fill:#000000" id="path2591"/><path d="M -138.11472,68.687851 C -137.66344,68.281557 -135.37889,68.447629 -133.31622,67.338341 C -131.25464,66.229338 -128.80419,63.798254 -128.36692,60.343756 C -128.10933,58.315237 -128.03197,58.824631 -127.92942,59.929403 C -128.24939,65.67243 -133.53086,68.844638 -136.55132,69.263202 C -137.36636,69.376239 -138.8007,69.307247 -138.11472,68.687851 z " style="fill:#ffffff" id="path2597"/><path d="M -47.767489,69.693822 C -39.234739,45.099506 -57.090457,7.9576459 -93.212919,12.425552 C -125.85191,16.461012 -126.37823,50.814524 -97.613495,58.976486 C -65.031338,63.908526 -84.650966,88.487524 -87.434101,100.88229 C -89.929232,111.99304 -61.102889,113.82164 -47.767489,69.693822 z " style="fill:#999999" id="path2561_1_"/><path d="M -70.093288,88.904346 C -78.920045,87.812046 -91.622267,107.74061 -79.645446,105.40671 C -67.670523,103.07448 -91.622267,107.74061 -79.645446,105.40671 C -73.888849,104.55302 -69.119803,102.52058 -64.850547,97.64761 C -59.283982,91.295233 -50.968477,77.5735 -48.563483,68.707586 C -46.537563,61.232354 -47.555881,49.650767 -49.644305,60.532553 C -51.786232,71.700167 -61.266532,89.996647 -70.093288,88.904346 z " style="fill:#f3f3f3" id="path2571"/><path d="M -129.3854,104.84502 C -127.34184,104.87935 -126.10573,105.16706 -124.03635,106.61908 C -119.94568,108.31891 -112.42648,107.24179 -108.9543,102.67081 C -105.48212,98.099823 -105.36811,91.801741 -106.69103,87.996073 C -109.92728,78.682039 -123.67593,78.846722 -129.81795,86.579362 C -136.46216,95.2146 -131.42897,104.81069 -129.3854,104.84502 z " style="fill:#999999" id="path2581"/><path d="M -147.63565,61.683628 C -147.22833,62.966318 -146.18754,64.837882 -143.9897,65.149887 C -141.05481,65.566524 -140.45479,66.892551 -136.9892,66.204631 C -133.52361,65.516711 -130.89674,62.676625 -129.84557,59.535064 C -128.64212,55.188187 -130.44406,52.944024 -133.15599,50.940416 C -135.86791,48.936808 -141.83359,49.152263 -145.3938,52.39768 C -147.92393,54.702631 -148.62733,58.560726 -147.63565,61.683628 z " style="fill:#999999" id="path2593_2_"/><path d="M -136.11009,64.55822 C -133.44721,63.861113 -129.92545,60.232613 -131.67381,57.462279 C -133.83086,54.048798 -139.84051,56.970651 -140.04374,60.77103 C -140.24777,64.572786 -138.93238,65.297057 -136.11009,64.55822 z " style="fill:#f3f3f3" id="path256"/><path d="M -116.11512,105.50904 C -113.8431,104.91425 -106.88259,102.0818 -108.18994,91.962983 C -108.85161,86.83742 -111.64725,98.324328 -116.82409,100.04237 C -124.66721,102.64507 -123.78607,107.51719 -116.11512,105.50904 z " style="fill:#f3f3f3" id="path258"/></g>
 
</svg>
...
 
\ No newline at end of file
 
</svg>
conservancy/static/img/projects/metalink.svg
Show inline comments
 
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
<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="290pt" height="100pt" viewBox="0 0 290 100" version="1.1" id="svg2" inkscape:version="0.47pre4 r22446" sodipodi:docname="Metalink_logo.svg">
 
  <metadata id="metadata48">
 
    <rdf:RDF>
 
      <cc:Work rdf:about="">
 
        <dc:format>image/svg+xml</dc:format>
 
        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
 
      </cc:Work>
 
    </rdf:RDF>
 
  </metadata>
 
  <defs id="defs46">
 
    <inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 62.5 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="362.5 : 62.5 : 1" inkscape:persp3d-origin="181.25 : 41.666667 : 1" id="perspective50"/>
 
  </defs>
 
  <sodipodi:namedview pagecolor="#000000" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1400" inkscape:window-height="976" id="namedview44" showgrid="false" inkscape:zoom="1.5448276" inkscape:cx="181.25" inkscape:cy="62.5" inkscape:window-x="0" inkscape:window-y="25" inkscape:window-maximized="1" inkscape:current-layer="svg2"/>
 
  <g id="#ff8200ff">
 
    <path fill="#ff8200" opacity="1.00" d=" M 7.44 8.42 C 10.90 3.12 19.44 4.42 22.51 9.45 C 24.13 11.89 24.21 14.91 24.55 17.72 C 28.93 17.85 33.68 17.00 37.66 19.30 C 41.18 21.18 44.21 24.83 43.88 29.02 C 43.60 32.21 41.05 34.60 38.25 35.81 C 40.72 38.73 42.18 43.34 39.47 46.60 C 36.07 51.27 28.90 50.65 24.91 47.11 C 21.67 44.54 20.85 40.28 20.17 36.44 C 14.23 36.96 7.03 35.84 4.09 29.93 C 1.50 25.57 4.76 20.21 9.32 19.02 C 6.65 16.33 4.84 11.77 7.44 8.42 M 8.92 13.98 C 11.82 18.69 18.09 18.17 22.87 17.83 C 21.89 12.83 18.47 7.73 13.03 7.16 C 9.54 6.81 7.01 11.06 8.92 13.98 M 6.34 28.64 C 9.53 32.75 15.26 32.16 19.87 31.86 C 18.88 26.87 15.45 21.67 9.96 21.21 C 6.17 20.88 3.84 25.84 6.34 28.64 M 18.93 22.39 C 20.77 25.18 21.35 28.48 21.58 31.76 C 23.12 31.70 24.67 31.63 26.22 31.57 C 24.50 28.78 23.63 25.62 23.17 22.40 C 21.76 22.40 20.34 22.40 18.93 22.39 M 24.72 22.30 C 26.29 27.79 31.02 32.94 36.92 33.47 C 40.90 34.01 43.81 28.98 41.08 25.92 C 37.14 21.10 30.23 22.13 24.72 22.30 M 21.75 36.33 C 22.77 40.63 25.92 44.10 29.66 46.29 C 32.33 47.77 36.43 48.33 38.40 45.46 C 40.23 42.90 38.46 39.36 35.95 38.01 C 31.69 35.41 26.49 36.22 21.75 36.33 Z" id="path22"/>
 
  </g>
 
  <g id="#0064b5ff">
 
    <path fill="#0064b5" opacity="1.00" d=" M 203.13 22.49 C 206.33 22.50 209.52 22.50 212.71 22.50 C 212.72 25.36 212.72 28.22 212.72 31.09 C 209.52 31.10 206.32 31.10 203.12 31.09 C 203.12 28.22 203.12 25.36 203.13 22.49 Z" id="path25"/>
 
    <path fill="#0064b5" opacity="1.00" d=" M 251.59 22.51 C 254.79 22.48 258.00 22.49 261.20 22.53 C 261.17 31.65 261.19 40.77 261.19 49.89 C 265.26 45.09 269.29 40.26 273.36 35.46 C 276.99 35.47 280.63 35.46 284.26 35.47 C 280.07 40.18 275.81 44.82 271.62 49.53 C 276.15 57.19 280.65 64.87 285.14 72.56 C 281.35 72.57 277.56 72.62 273.78 72.48 C 270.98 67.00 267.94 61.64 265.03 56.23 C 263.75 57.62 262.47 59.00 261.19 60.39 C 261.19 64.45 261.19 68.51 261.17 72.57 C 257.97 72.57 254.78 72.57 251.59 72.55 C 251.60 55.87 251.59 39.19 251.59 22.51 Z" id="path27"/>
 
    <path fill="#0064b5" opacity="1.00" d=" M 190.06 22.50 C 193.26 22.50 196.47 22.50 199.67 22.49 C 199.71 39.18 199.69 55.87 199.69 72.56 C 196.48 72.56 193.27 72.57 190.07 72.57 C 190.04 55.88 190.06 39.19 190.06 22.50 Z" id="path29"/>
 
    <path fill="#0064b5" opacity="1.00" d=" M 225.47 40.80 C 229.41 34.40 238.67 33.23 244.66 37.27 C 248.65 40.17 248.96 45.49 249.07 49.99 C 249.04 57.52 249.13 65.06 249.00 72.59 C 245.81 72.56 242.62 72.56 239.44 72.56 C 239.39 65.05 239.50 57.53 239.40 50.01 C 239.41 47.63 238.78 44.71 236.33 43.70 C 233.21 42.43 229.18 43.16 227.01 45.83 C 225.42 47.85 225.55 50.57 225.48 53.00 C 225.51 59.52 225.50 66.04 225.50 72.55 C 222.27 72.59 219.04 72.59 215.81 72.48 C 215.96 60.15 215.83 47.81 215.88 35.47 C 219.09 35.46 222.29 35.46 225.50 35.47 C 225.50 37.25 225.49 39.02 225.47 40.80 Z" id="path31"/>
 
    <path fill="#0064b5" opacity="1.00" d=" M 203.12 35.50 C 206.32 35.50 209.51 35.50 212.71 35.49 C 212.73 47.85 212.72 60.21 212.72 72.56 C 209.52 72.57 206.32 72.57 203.13 72.57 C 203.11 60.21 203.13 47.86 203.12 35.50 Z" id="path33"/>
 
  </g>
 
  <g id="#000000ff">
 
    <path fill="#000000" opacity="1.00" d=" M 137.50 26.28 C 140.71 26.28 143.91 26.28 147.12 26.28 C 147.12 29.60 147.13 32.92 147.13 36.24 C 148.91 36.25 150.69 36.25 152.47 36.25 C 152.47 38.38 152.47 40.50 152.47 42.62 C 150.69 42.63 148.91 42.63 147.13 42.63 C 147.25 50.03 146.88 57.44 147.30 64.83 C 147.55 67.42 150.71 66.66 152.48 66.81 C 152.47 69.00 152.47 71.19 152.47 73.38 C 148.55 73.95 144.07 74.82 140.58 72.40 C 137.85 70.57 137.55 67.00 137.50 64.01 C 137.48 56.88 137.51 49.76 137.50 42.63 C 135.92 42.63 134.35 42.62 132.78 42.62 C 132.78 40.50 132.78 38.37 132.78 36.25 C 134.35 36.25 135.92 36.25 137.49 36.24 C 137.50 32.92 137.50 29.60 137.50 26.28 Z" id="path36"/>
 
    <path fill="#000000" opacity="1.00" d=" M 55.16 40.05 C 59.87 33.38 71.12 33.02 75.48 40.22 C 79.72 34.31 88.78 33.20 94.46 37.60 C 97.51 40.13 98.09 44.28 98.12 48.00 C 98.14 56.19 98.12 64.38 98.12 72.57 C 94.91 72.56 91.71 72.56 88.50 72.56 C 88.39 64.07 88.70 55.55 88.36 47.07 C 87.96 42.81 82.20 42.06 79.32 44.30 C 77.21 45.78 76.73 48.52 76.71 50.93 C 76.64 58.14 76.72 65.35 76.69 72.56 C 73.48 72.56 70.27 72.56 67.06 72.57 C 66.95 64.04 67.27 55.50 66.91 46.98 C 66.69 43.71 62.77 42.47 60.04 43.32 C 56.87 43.94 55.26 47.30 55.33 50.30 C 55.20 57.72 55.32 65.14 55.28 72.56 C 52.07 72.57 48.86 72.57 45.65 72.56 C 45.66 60.19 45.65 47.83 45.66 35.47 C 48.84 35.47 52.01 35.47 55.19 35.47 C 55.19 36.99 55.18 38.52 55.16 40.05 Z" id="path38"/>
 
    <path fill="#000000" opacity="1.00" d=" M 105.00 39.95 C 111.94 32.23 126.21 33.62 131.49 42.58 C 134.25 46.86 134.47 52.10 134.57 57.03 C 126.25 57.04 117.93 57.02 109.61 57.04 C 109.97 59.71 109.91 62.89 112.23 64.75 C 116.01 68.24 122.69 66.86 124.81 62.14 C 127.92 62.11 131.03 62.12 134.15 62.13 C 131.04 72.38 118.02 76.98 108.77 72.22 C 103.52 69.60 100.72 63.77 100.23 58.13 C 99.64 51.82 100.61 44.83 105.00 39.95 M 109.73 50.65 C 114.70 50.66 119.66 50.68 124.63 50.64 C 124.59 46.06 120.82 41.57 115.96 42.38 C 111.79 42.72 110.31 47.15 109.73 50.65 Z" id="path40"/>
 
    <path fill="#000000" opacity="1.00" d=" M 163.72 35.86 C 169.76 34.66 176.85 34.20 182.17 37.82 C 187.50 41.88 185.59 49.27 185.94 55.03 C 186.48 60.81 184.24 67.60 188.56 72.36 C 184.89 72.73 181.19 72.53 177.51 72.56 C 177.15 71.36 176.82 70.16 176.51 68.95 C 173.24 72.22 168.65 74.78 163.88 73.90 C 159.80 73.47 155.70 70.78 154.67 66.65 C 153.46 62.09 154.47 56.33 158.76 53.71 C 163.50 50.70 169.43 51.15 174.58 49.35 C 177.03 48.30 177.22 44.39 174.67 43.34 C 170.75 41.72 164.47 42.47 164.07 47.71 C 161.00 47.73 157.94 47.73 154.87 47.71 C 155.19 42.46 158.32 37.11 163.72 35.86 M 163.83 60.91 C 162.68 66.21 169.80 67.68 173.20 65.15 C 176.55 63.00 176.49 58.61 176.66 55.10 C 172.53 56.99 165.47 55.65 163.83 60.91 Z" id="path42"/>
 
  </g>
 
</svg>
...
 
\ No newline at end of file
 
</svg>
conservancy/static/img/projects/pypy.svg
Show inline comments
 
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576)  -->
 
<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:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" id="Layer_1" x="0px" y="0px" width="210" height="210" viewBox="-93 6.5 210 210" enable-background="new -93 6.5 800 600" xml:space="preserve" inkscape:version="0.48.1 r9760" sodipodi:docname="pypy_small.svg" inkscape:export-filename="/home/cfbolz/projects/extradoc/logo/pypy_small64.png" inkscape:export-xdpi="27.43" inkscape:export-ydpi="27.43"><metadata id="metadata340"><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/></cc:Work></rdf:RDF></metadata><defs id="defs338"><linearGradient id="linearGradient4152"><stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4154"/><stop id="stop4162" offset="0.6438356" style="stop-color:#000000;stop-opacity:0.88461536;"/><stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop4156"/></linearGradient><linearGradient inkscape:collect="always" xlink:href="#linearGradient4152" id="linearGradient4158" x1="152.95653" y1="165.01984" x2="90.960449" y2="153.23473" gradientUnits="userSpaceOnUse" gradientTransform="translate(-135.203,-10.256996)"/></defs><sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="776" id="namedview336" showgrid="false" inkscape:zoom="1.11" inkscape:cx="46.305995" inkscape:cy="202.60457" inkscape:window-x="0" inkscape:window-y="24" inkscape:window-maximized="1" inkscape:current-layer="g5" fit-margin-top="32" fit-margin-left="10" fit-margin-bottom="32" fit-margin-right="10"/>
 
<g id="g3" transform="translate(-42.203001,-16.756995)">
 
	<g id="g5">
 
		<title id="title7">pypy logo - by samuel reis</title>
 
		<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-38.2686" y1="122.4697" x2="147.1235" y2="122.4697">
 
			<stop offset="0" style="stop-color:#5A9FD4" id="stop10"/>
 
			<stop offset="0.1054" style="stop-color:#5CA0D1" id="stop12"/>
 
			<stop offset="0.19" style="stop-color:#61A4C7" id="stop14"/>
 
			<stop offset="0.2675" style="stop-color:#6AABB6" id="stop16"/>
 
			<stop offset="0.3406" style="stop-color:#76B59E" id="stop18"/>
 
			<stop offset="0.4108" style="stop-color:#86C17F" id="stop20"/>
 
			<stop offset="0.4778" style="stop-color:#99D05A" id="stop22"/>
 
			<stop offset="0.5" style="stop-color:#A0D64C" id="stop24"/>
 
			<stop offset="0.5242" style="stop-color:#ABD850" id="stop26"/>
 
			<stop offset="0.6048" style="stop-color:#C9DE5D" id="stop28"/>
 
			<stop offset="0.6897" style="stop-color:#E1E267" id="stop30"/>
 
			<stop offset="0.7795" style="stop-color:#F2E56E" id="stop32"/>
 
			<stop offset="0.8777" style="stop-color:#FCE772" id="stop34"/>
 
			<stop offset="1" style="stop-color:#FFE873" id="stop36"/>
 
		</linearGradient>
 
		<path d="M 4.814,177.038 C -9.66,170.74 -21.855,161.686 -29.797,149.727 l 0,0 c -5.266,-7.94 -8.489,-17.345 -8.472,-27.256 l 0,0 c -0.017,-9.912 3.206,-19.316 8.472,-27.257 l 0,0 c 5.273,-7.977 12.5,-14.651 20.971,-20.089 l 0,0 C 8.142,64.296 30.236,58.157 54.428,58.123 l 0,0 c 18.144,0.009 35.107,3.506 49.614,9.779 l 0,0 c 14.474,6.3 26.669,15.353 34.61,27.312 l 0,0 c 5.266,7.941 8.489,17.345 8.471,27.257 l 0,0 c 0.018,9.912 -3.206,19.316 -8.471,27.256 l 0,0 c -5.273,7.977 -12.5,14.651 -20.97,20.089 l 0,0 c -16.968,10.829 -39.063,16.966 -63.255,17.001 l 0,0 C 36.284,186.808 19.32,183.312 4.814,177.038 l 0,0 z M 15.698,93.028 C 4.952,97.653 -2.888,104.069 -6.94,110.292 l 0,0 c -2.729,4.18 -3.929,8.102 -3.946,12.179 l 0,0 c 0.017,4.077 1.216,8 3.946,12.178 l 0,0 c 2.722,4.145 7.066,8.386 12.893,12.116 l 0,0 c 11.626,7.503 29.034,12.708 48.476,12.672 l 0,0 c 14.581,0.008 28.019,-2.873 38.73,-7.524 l 0,0 c 10.746,-4.625 18.585,-11.042 22.638,-17.263 l 0,0 c 2.73,-4.179 3.929,-8.102 3.947,-12.178 l 0,0 c -0.018,-4.077 -1.217,-7.999 -3.947,-12.179 l 0,0 c -2.723,-4.144 -7.065,-8.387 -12.893,-12.116 l 0,0 C 91.278,90.671 73.87,85.47 54.428,85.505 l 0,0 c -0.025,0 -0.049,0 -0.073,0 l 0,0 c -14.553,0 -27.964,2.879 -38.657,7.523 l 0,0 z" id="path38" inkscape:connector-curvature="0" style="fill:url(#SVGID_1_)"/>
 
		<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-9.2538996" y1="154.9438" x2="79.773598" y2="178.8157">
 
			<stop offset="0" style="stop-color:#5A9FD4" id="stop41"/>
 
			<stop offset="0.0869" style="stop-color:#6CADB1" id="stop43"/>
 
			<stop offset="0.1845" style="stop-color:#7CBA92" id="stop45"/>
 
			<stop offset="0.2915" style="stop-color:#89C478" id="stop47"/>
 
			<stop offset="0.4095" style="stop-color:#93CC65" id="stop49"/>
 
			<stop offset="0.5442" style="stop-color:#9BD257" id="stop51"/>
 
			<stop offset="0.7102" style="stop-color:#9FD54E" id="stop53"/>
 
			<stop offset="1" style="stop-color:#A0D64C" id="stop55"/>
 
		</linearGradient>
 
		<path d="m -0.282,142.233 7.751,6.868 c 4.436,-2.285 9.825,-3.558 15.604,-3.448 6.706,-3.936 15.21,-5.969 24.287,-5.241 11.093,0.89 20.691,5.708 26.815,12.565 0.479,0.029 0.959,0.058 1.443,0.097 18.916,1.518 33.586,11.022 32.768,21.232 -0.819,10.208 -16.817,17.254 -35.733,15.737 -0.3,-0.025 -0.595,-0.057 -0.893,-0.084 -7.159,6.103 -17.662,9.539 -29.065,8.624 -10.282,-0.825 -19.277,-5.028 -25.416,-11.1 -9.716,-2.061 -17.361,-7.922 -20.222,-15.152 l -8.853,-4.542" id="path57" inkscape:connector-curvature="0" style="fill:url(#SVGID_2_)"/>
 
		<ellipse cx="71.473" cy="179.554" rx="5.4770002" ry="3.4790001" id="ellipse59" sodipodi:cx="71.473" sodipodi:cy="179.554" sodipodi:rx="5.4770002" sodipodi:ry="3.4790001" d="m 76.95,179.554 c 0,1.9214 -2.452137,3.479 -5.477,3.479 -3.024864,0 -5.477001,-1.5576 -5.477001,-3.479 0,-1.9214 2.452137,-3.479 5.477001,-3.479 3.024863,0 5.477,1.5576 5.477,3.479 z"/>
 
		<ellipse cx="72.315002" cy="162.595" rx="5.4759998" ry="3.4779999" id="ellipse61" sodipodi:cx="72.315002" sodipodi:cy="162.595" sodipodi:rx="5.4759998" sodipodi:ry="3.4779999" d="m 77.791002,162.595 c 0,1.92085 -2.451688,3.478 -5.476,3.478 -3.024311,0 -5.475999,-1.55715 -5.475999,-3.478 0,-1.92085 2.451688,-3.478 5.475999,-3.478 3.024312,0 5.476,1.55715 5.476,3.478 z"/>
 
		
 

 
		<path d="m 149.651,122.433 c 0,0 0,-0.004 0,-0.044 -0.001,-10.437 -3.399,-20.288 -8.892,-28.572 -8.285,-12.471 -20.906,-21.79 -35.708,-28.232 -14.858,-6.424 -32.154,-9.979 -50.622,-9.989 -24.62,0.038 -47.17,6.271 -64.615,17.398 -8.716,5.595 -16.216,12.502 -21.72,20.826 -5.493,8.282 -8.889,18.136 -8.891,28.573 0,0.03 0,0.056 0,0.078 0,0.042 0,0.067 0,0.077 10e-4,10.438 3.398,20.29 8.893,28.576 6.727,10.125 16.317,18.17 27.609,24.286 3.704,6.982 11.194,12.254 20.328,14.387 6.579,6.244 15.898,10.457 26.459,11.307 1.291,0.102 2.572,0.153 3.839,0.153 10.123,-0.002 19.396,-3.224 26.231,-8.683 1.755,0.136 3.484,0.203 5.183,0.203 8.646,-0.006 16.467,-1.712 22.428,-4.772 2.977,-1.536 5.501,-3.418 7.387,-5.674 1.377,-1.645 2.401,-3.518 2.944,-5.54 2.961,-1.494 5.813,-3.108 8.538,-4.846 8.714,-5.595 16.215,-12.5 21.719,-20.825 5.49,-8.282 8.888,-18.133 8.89,-28.569 0,-0.014 0,-0.041 0,-0.08 v -0.02 l 0,-0.018 z m -5.054,0.118 c 0,9.327 -3.043,18.223 -8.051,25.778 -5.045,7.633 -11.998,14.075 -20.229,19.359 -1.812,1.156 -3.689,2.256 -5.621,3.302 -0.43,-2.181 -1.402,-4.255 -2.767,-6.137 -2.831,-3.893 -7.297,-7.121 -12.814,-9.586 -0.559,-0.248 -1.131,-0.487 -1.711,-0.719 0.252,-0.106 0.511,-0.209 0.76,-0.316 11.106,-4.794 19.31,-11.416 23.75,-18.203 2.944,-4.485 4.349,-8.972 4.355,-13.547 -0.007,-4.598 -1.411,-9.085 -4.357,-13.573 -2.971,-4.515 -7.567,-8.968 -13.646,-12.862 -12.092,-7.791 -29.822,-13.058 -49.641,-13.07 -0.06,10e-4 -0.134,0 -0.22,10e-4 h -0.05 c -14.883,0.003 -28.607,2.936 -39.656,7.729 -11.114,4.796 -19.318,11.418 -23.758,18.205 -2.944,4.484 -4.348,8.972 -4.355,13.547 0.007,4.596 1.412,9.084 4.357,13.571 1.799,2.734 4.204,5.441 7.164,8.021 l -0.066,0.074 9.045,8.017 1.54,-0.793 c 3.873,-1.998 8.625,-3.176 13.759,-3.175 0.214,0 0.424,0.001 0.632,0.006 l 0.716,0.015 0.618,-0.362 c 5.39,-3.165 12.106,-5.04 19.375,-5.039 1.132,0 2.276,0.046 3.431,0.138 10.485,0.836 19.494,5.407 25.132,11.731 l 0.696,0.78 1.043,0.06 c 0.475,0.028 0.935,0.057 1.386,0.092 8.848,0.703 16.704,3.255 22.169,6.675 2.734,1.707 4.86,3.621 6.25,5.547 1.395,1.935 2.054,3.826 2.055,5.675 0,0.204 -0.007,0.408 -0.023,0.618 -0.143,1.731 -0.851,3.373 -2.187,4.984 -1.993,2.406 -5.458,4.621 -9.959,6.17 -4.497,1.554 -9.998,2.459 -15.974,2.458 -1.6,0 -3.234,-0.064 -4.893,-0.197 -0.254,-0.021 -0.539,-0.051 -0.858,-0.082 l -1.063,-0.1 -0.812,0.693 c -5.876,5.017 -14.366,8.17 -23.788,8.167 -1.133,0 -2.28,-0.046 -3.437,-0.138 -9.716,-0.776 -18.166,-4.759 -23.838,-10.378 l -0.528,-0.521 -0.726,-0.154 C 8.752,183.108 1.835,177.628 -0.594,171.401 l -0.35,-0.883 -9.7,-4.976 -1.151,2.243 1.045,-2.318 c -6.802,-4.833 -12.565,-10.544 -16.942,-17.14 -5.008,-7.553 -8.051,-16.451 -8.05,-25.78 0,-0.036 0,-0.036 0,-0.036 v -0.119 c -0.001,-9.329 3.041,-18.229 8.051,-25.782 5.045,-7.633 11.999,-14.075 20.229,-19.358 16.487,-10.527 38.125,-16.571 61.893,-16.603 17.815,0.008 34.445,3.447 48.608,9.572 14.139,6.153 25.908,14.94 33.507,26.39 5.008,7.554 8.051,16.45 8.049,25.777 0.001,0.014 0,0.054 0.001,0.12 v 0.043 z M 8.952,145.648 c -0.555,-0.331 -1.101,-0.666 -1.629,-1.008 -5.584,-3.571 -9.674,-7.601 -12.151,-11.38 -2.51,-3.866 -3.504,-7.223 -3.531,-10.801 0.026,-3.558 1.021,-6.914 3.534,-10.786 3.667,-5.66 11.143,-11.871 21.521,-16.324 l -0.999,-2.321 1.007,2.318 C 27.04,90.854 40.137,88.03 54.353,88.032 h 0.074 c 0.068,-10e-4 0.125,-10e-4 0.196,-10e-4 18.907,-0.01 35.836,5.106 46.907,12.268 5.584,3.569 9.673,7.602 12.152,11.38 2.51,3.866 3.504,7.222 3.531,10.802 -0.027,3.556 -1.021,6.914 -3.535,10.785 -3.667,5.659 -11.143,11.87 -21.521,16.323 -2.083,0.906 -4.284,1.738 -6.579,2.497 -3.089,-0.734 -6.359,-1.257 -9.761,-1.531 -0.16,-0.013 -0.318,-0.025 -0.475,-0.035 -6.619,-6.971 -16.495,-11.716 -27.783,-12.627 -1.29,-0.104 -2.57,-0.153 -3.836,-0.153 -7.868,0.001 -15.22,1.953 -21.317,5.379 -0.008,0 -0.016,0 -0.023,0 -4.819,0 -9.387,0.9 -13.431,2.529 z" id="path73" inkscape:connector-curvature="0"/>
 
		<path d="m -13.603,123.581 c 0,0 -7.094,-53.079 67.612,-53.079 53.5,0 58.977,19.589 67.824,48.234 0,0 -19.589,-33.912 -67.612,-33.841 -67.396,0.099 -67.824,38.686 -67.824,38.686 z" id="path75" inkscape:connector-curvature="0" style="opacity:0.3"/>
 
		<path d="m 100.138,158.756 c 0,0 5.752,2.723 17.529,-3.739 11.42,-6.266 15.534,4.363 21.228,-7.635 0,0 4.213,6.74 -30.509,26.925 -10e-4,0.001 -5.299,-12.601 -8.248,-15.551 z" id="path77" inkscape:connector-curvature="0" style="opacity:0.2"/>
 
		<path d="m 103.509,164.232 c 0,0 -14.323,16.008 -39.178,8.426 0,0 -22.749,15.164 -42.548,-0.843 0,0 -29.857,-11.954 -32.384,-3.529 0,0 17.055,18.018 27.879,19.199 0,0 26.101,22.727 54.48,2.476 0,0 28.379,0.39 33.856,-8.877 5.477,-9.269 -2.105,-16.852 -2.105,-16.852 z" id="path79" inkscape:connector-curvature="0" style="opacity:0.3"/>
 
	</g>
 
	<polygon points="108.528,175.242 104.272,164.938 89.488,155.53 96.208,150.154 116.592,151.498 121.744,167.178 " id="polygon81" style="opacity:0.5"/>
 
	<polygon points="143.919,139.066 133.335,124.562 119.392,127.922 111.888,139.626 126.448,139.402 134.399,154.634 " id="polygon83" style="opacity:0.35"/>
 
	<polygon points="138.099,92.69 120.163,93.501 115.261,106.98 120.873,119.701 128.728,107.44 145.818,109.225 " id="polygon85" style="opacity:0.25"/>
 
	<defs id="defs87">
 
		<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="-31.469999" y="129.43401" width="91.837997" height="57.230999" color-interpolation-filters="sRGB">
 
			<feColorMatrix type="matrix" values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 1 0" id="feColorMatrix90"/>
 
		</filter>
 
	</defs>
 
	<mask maskUnits="userSpaceOnUse" x="-31.47" y="129.434" width="91.838" height="57.231" id="SVGID_3_">
 
		<g id="g93" style="filter:url(#Adobe_OpacityMaskFilter)">
 
			<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="26.6367" y1="177.2119" x2="-13.0106" y2="154.7003">
 
				<stop offset="0" style="stop-color:#FFFFFF" id="stop96"/>
 
				<stop offset="1" style="stop-color:#000000" id="stop98"/>
 
			</linearGradient>
 
			<rect x="-32.478001" y="123.05" width="108.526" height="102.814" id="rect100" style="fill:url(#SVGID_4_);stroke:#000000"/>
 
		</g>
 
	</mask>
 
	<path mask="url(#SVGID_3_)" d="m -0.943,170.518 c 0,0 22.561,2.932 37.12,8.308 l -0.672,7.84 24.864,-14.336 -21.952,-19.04 -0.672,8.735 c 0,0 -23.52,-1.12 -30.658,-9.884 -5.902,-7.247 -19.069,-18.003 -19.405,-22.708 L -31.47,148.25 c 0,0 21.741,22.695 30.527,22.268 z" id="path102" inkscape:connector-curvature="0" style="opacity:0.68999999"/>
 
</g>
 

	
 

	
 
<g id="g264" transform="translate(-42.203001,-16.756995)">
 
	<path d="m 574.956,574.669 c 0,-0.743 -0.024,-1.343 -0.049,-1.895 h 0.948 l 0.048,0.995 h 0.023 c 0.432,-0.707 1.115,-1.127 2.063,-1.127 1.403,0 2.458,1.188 2.458,2.95 0,2.087 -1.271,3.118 -2.639,3.118 -0.768,0 -1.438,-0.336 -1.786,-0.911 h -0.024 v 3.154 h -1.043 v -6.284 z m 1.043,1.548 c 0,0.155 0.024,0.3 0.048,0.432 0.192,0.731 0.828,1.235 1.583,1.235 1.115,0 1.764,-0.912 1.764,-2.243 0,-1.163 -0.612,-2.159 -1.728,-2.159 -0.72,0 -1.392,0.517 -1.595,1.308 -0.036,0.132 -0.072,0.288 -0.072,0.432 v 0.995 z" id="path266" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 582.084,572.774 1.271,3.43 c 0.132,0.384 0.276,0.84 0.372,1.188 h 0.024 c 0.107,-0.348 0.228,-0.791 0.371,-1.211 l 1.151,-3.406 h 1.115 l -1.583,4.138 c -0.755,1.991 -1.271,3.01 -1.99,3.634 -0.516,0.456 -1.032,0.636 -1.296,0.684 l -0.264,-0.888 c 0.264,-0.084 0.611,-0.252 0.924,-0.516 0.288,-0.228 0.647,-0.636 0.888,-1.175 0.048,-0.108 0.084,-0.192 0.084,-0.252 0,-0.061 -0.024,-0.145 -0.072,-0.276 l -2.146,-5.349 h 1.151 z" id="path268" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 587.352,574.669 c 0,-0.743 -0.024,-1.343 -0.049,-1.895 h 0.948 l 0.048,0.995 h 0.023 c 0.432,-0.707 1.115,-1.127 2.063,-1.127 1.403,0 2.458,1.188 2.458,2.95 0,2.087 -1.271,3.118 -2.639,3.118 -0.768,0 -1.438,-0.336 -1.786,-0.911 h -0.024 v 3.154 h -1.043 v -6.284 z m 1.043,1.548 c 0,0.155 0.024,0.3 0.048,0.432 0.192,0.731 0.828,1.235 1.583,1.235 1.115,0 1.764,-0.912 1.764,-2.243 0,-1.163 -0.612,-2.159 -1.728,-2.159 -0.72,0 -1.392,0.517 -1.595,1.308 -0.036,0.132 -0.072,0.288 -0.072,0.432 v 0.995 z" id="path270" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 594.479,572.774 1.271,3.43 c 0.132,0.384 0.276,0.84 0.372,1.188 h 0.024 c 0.107,-0.348 0.228,-0.791 0.371,-1.211 l 1.151,-3.406 h 1.116 l -1.584,4.138 c -0.755,1.991 -1.271,3.01 -1.99,3.634 -0.516,0.456 -1.031,0.636 -1.296,0.684 l -0.264,-0.888 c 0.264,-0.084 0.611,-0.252 0.924,-0.516 0.288,-0.228 0.647,-0.636 0.888,-1.175 0.048,-0.108 0.084,-0.192 0.084,-0.252 0,-0.061 -0.024,-0.145 -0.072,-0.276 l -2.146,-5.349 h 1.151 z" id="path272" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 602.292,570.063 h 1.055 v 8.516 h -1.055 v -8.516 z" id="path274" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 610.377,575.629 c 0,2.146 -1.487,3.082 -2.891,3.082 -1.571,0 -2.782,-1.151 -2.782,-2.986 0,-1.943 1.271,-3.082 2.878,-3.082 1.667,0 2.795,1.211 2.795,2.986 z m -4.606,0.059 c 0,1.271 0.731,2.231 1.763,2.231 1.008,0 1.763,-0.948 1.763,-2.255 0,-0.983 -0.491,-2.231 -1.738,-2.231 -1.248,10e-4 -1.788,1.152 -1.788,2.255 z" id="path276" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 616.665,577.739 c 0,1.332 -0.265,2.147 -0.828,2.65 -0.563,0.528 -1.379,0.696 -2.11,0.696 -0.696,0 -1.464,-0.168 -1.932,-0.479 l 0.265,-0.804 c 0.384,0.239 0.983,0.455 1.703,0.455 1.079,0 1.87,-0.563 1.87,-2.026 v -0.647 h -0.023 c -0.324,0.539 -0.947,0.971 -1.847,0.971 -1.439,0 -2.471,-1.223 -2.471,-2.83 0,-1.967 1.283,-3.082 2.614,-3.082 1.008,0 1.56,0.527 1.811,1.007 h 0.024 l 0.048,-0.875 h 0.924 c -0.024,0.42 -0.048,0.888 -0.048,1.595 v 3.369 z m -1.044,-2.674 c 0,-0.181 -0.012,-0.336 -0.06,-0.48 -0.192,-0.611 -0.708,-1.115 -1.476,-1.115 -1.007,0 -1.727,0.852 -1.727,2.195 0,1.139 0.575,2.087 1.715,2.087 0.647,0 1.235,-0.408 1.463,-1.08 0.061,-0.18 0.084,-0.384 0.084,-0.563 v -1.044 z" id="path278" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 623.672,575.629 c 0,2.146 -1.487,3.082 -2.891,3.082 -1.571,0 -2.782,-1.151 -2.782,-2.986 0,-1.943 1.271,-3.082 2.878,-3.082 1.667,0 2.795,1.211 2.795,2.986 z m -4.606,0.059 c 0,1.271 0.731,2.231 1.763,2.231 1.008,0 1.763,-0.948 1.763,-2.255 0,-0.983 -0.491,-2.231 -1.738,-2.231 -1.249,10e-4 -1.788,1.152 -1.788,2.255 z" id="path280" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 631.629,577.188 c 0,0.504 0.024,0.996 0.096,1.392 h -0.959 l -0.084,-0.731 h -0.036 c -0.323,0.456 -0.947,0.863 -1.775,0.863 -1.175,0 -1.774,-0.827 -1.774,-1.667 0,-1.403 1.247,-2.171 3.49,-2.159 v -0.119 c 0,-0.48 -0.132,-1.344 -1.319,-1.344 -0.54,0 -1.104,0.168 -1.512,0.432 l -0.239,-0.695 c 0.479,-0.312 1.175,-0.516 1.906,-0.516 1.775,0 2.207,1.211 2.207,2.374 v 2.17 z m -1.02,-1.571 c -1.151,-0.024 -2.458,0.18 -2.458,1.307 0,0.684 0.455,1.008 0.995,1.008 0.756,0 1.235,-0.479 1.403,-0.972 0.036,-0.108 0.06,-0.228 0.06,-0.336 v -1.007 z" id="path282" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 633.335,574.585 c 0,-0.684 -0.013,-1.271 -0.049,-1.811 h 0.924 l 0.036,1.14 h 0.048 c 0.264,-0.78 0.899,-1.271 1.607,-1.271 0.12,0 0.204,0.012 0.3,0.036 v 0.995 c -0.108,-0.024 -0.216,-0.036 -0.36,-0.036 -0.743,0 -1.271,0.563 -1.415,1.355 -0.023,0.144 -0.048,0.312 -0.048,0.491 v 3.095 h -1.043 v -3.994 z" id="path284" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 638.817,571.383 v 1.392 h 1.512 v 0.804 h -1.512 v 3.13 c 0,0.72 0.204,1.128 0.792,1.128 0.288,0 0.456,-0.024 0.611,-0.072 l 0.048,0.791 c -0.203,0.084 -0.527,0.156 -0.936,0.156 -0.491,0 -0.887,-0.168 -1.139,-0.456 -0.3,-0.312 -0.408,-0.827 -0.408,-1.511 v -3.166 h -0.899 v -0.804 h 0.899 v -1.067 l 1.032,-0.325 z" id="path286" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 642.046,572.774 0.768,2.95 c 0.168,0.647 0.324,1.247 0.433,1.847 h 0.035 c 0.132,-0.587 0.324,-1.211 0.516,-1.847 l 0.948,-2.95 h 0.887 l 0.9,2.902 c 0.216,0.695 0.384,1.308 0.516,1.895 h 0.036 c 0.096,-0.587 0.251,-1.199 0.443,-1.883 l 0.827,-2.914 h 1.044 l -1.871,5.805 h -0.96 l -0.887,-2.771 c -0.204,-0.647 -0.372,-1.224 -0.517,-1.907 h -0.023 c -0.144,0.696 -0.324,1.296 -0.527,1.919 l -0.936,2.759 h -0.96 l -1.751,-5.805 h 1.079 z" id="path288" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 655.592,575.629 c 0,2.146 -1.487,3.082 -2.891,3.082 -1.571,0 -2.782,-1.151 -2.782,-2.986 0,-1.943 1.271,-3.082 2.878,-3.082 1.667,0 2.795,1.211 2.795,2.986 z m -4.606,0.059 c 0,1.271 0.731,2.231 1.763,2.231 1.008,0 1.763,-0.948 1.763,-2.255 0,-0.983 -0.491,-2.231 -1.738,-2.231 -1.249,10e-4 -1.788,1.152 -1.788,2.255 z" id="path290" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 656.927,574.585 c 0,-0.684 -0.013,-1.271 -0.049,-1.811 h 0.924 l 0.036,1.14 h 0.048 c 0.264,-0.78 0.899,-1.271 1.607,-1.271 0.12,0 0.204,0.012 0.3,0.036 v 0.995 c -0.108,-0.024 -0.216,-0.036 -0.36,-0.036 -0.743,0 -1.271,0.563 -1.415,1.355 -0.023,0.144 -0.048,0.312 -0.048,0.491 v 3.095 h -1.043 v -3.994 z" id="path292" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 661.941,575.437 h 0.024 c 0.144,-0.203 0.348,-0.455 0.516,-0.659 l 1.703,-2.003 h 1.271 l -2.242,2.387 2.555,3.418 h -1.283 l -2.003,-2.782 -0.54,0.6 v 2.183 h -1.043 v -8.516 h 1.043 v 5.372 z" id="path294" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 574.62,592.979 v -0.647 l 0.827,-0.804 c 1.991,-1.895 2.891,-2.902 2.902,-4.078 0,-0.791 -0.384,-1.522 -1.547,-1.522 -0.708,0 -1.296,0.359 -1.655,0.659 l -0.336,-0.743 c 0.54,-0.456 1.308,-0.792 2.207,-0.792 1.679,0 2.387,1.151 2.387,2.267 0,1.439 -1.044,2.603 -2.687,4.186 l -0.624,0.576 v 0.023 h 3.502 v 0.876 h -4.976 z" id="path296" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 585.957,588.998 c 0,2.65 -0.983,4.113 -2.71,4.113 -1.523,0 -2.555,-1.427 -2.579,-4.006 0,-2.614 1.128,-4.054 2.711,-4.054 1.642,10e-4 2.578,1.464 2.578,3.947 z m -4.233,0.119 c 0,2.027 0.624,3.179 1.583,3.179 1.079,0 1.595,-1.26 1.595,-3.25 0,-1.919 -0.491,-3.179 -1.583,-3.179 -0.923,0 -1.595,1.128 -1.595,3.25 z" id="path298" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 592.112,588.998 c 0,2.65 -0.983,4.113 -2.71,4.113 -1.523,0 -2.555,-1.427 -2.579,-4.006 0,-2.614 1.128,-4.054 2.711,-4.054 1.643,10e-4 2.578,1.464 2.578,3.947 z m -4.233,0.119 c 0,2.027 0.623,3.179 1.583,3.179 1.079,0 1.595,-1.26 1.595,-3.25 0,-1.919 -0.491,-3.179 -1.583,-3.179 -0.923,0 -1.595,1.128 -1.595,3.25 z" id="path300" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 593.699,592.236 c 0.228,0.023 0.492,0 0.852,-0.036 0.611,-0.084 1.188,-0.336 1.631,-0.756 0.516,-0.468 0.888,-1.151 1.031,-2.075 h -0.035 c -0.433,0.528 -1.056,0.84 -1.835,0.84 -1.403,0 -2.303,-1.056 -2.303,-2.387 0,-1.476 1.067,-2.771 2.662,-2.771 1.595,0 2.578,1.295 2.578,3.286 0,1.715 -0.575,2.914 -1.343,3.658 -0.6,0.588 -1.428,0.947 -2.267,1.043 -0.384,0.061 -0.72,0.072 -0.972,0.061 v -0.863 z m 1.907,-6.381 c -0.888,0 -1.523,0.791 -1.523,1.895 0,0.972 0.588,1.655 1.499,1.655 0.708,0 1.26,-0.348 1.535,-0.815 0.061,-0.096 0.096,-0.216 0.096,-0.384 0,-1.331 -0.491,-2.351 -1.595,-2.351 h -0.012 z" id="path302" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 598.691,593.459 3.346,-8.695 h 0.815 l -3.357,8.695 h -0.804 z" id="path304" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 605.649,586.167 h -0.023 l -1.355,0.731 -0.204,-0.803 1.703,-0.912 h 0.899 v 7.796 h -1.02 v -6.812 z" id="path306" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 609.515,592.979 v -0.647 l 0.827,-0.804 c 1.991,-1.895 2.891,-2.902 2.902,-4.078 0,-0.791 -0.384,-1.522 -1.547,-1.522 -0.708,0 -1.296,0.359 -1.655,0.659 l -0.336,-0.743 c 0.54,-0.456 1.308,-0.792 2.207,-0.792 1.679,0 2.387,1.151 2.387,2.267 0,1.439 -1.044,2.603 -2.687,4.186 l -0.624,0.576 v 0.023 h 3.502 v 0.876 h -4.976 z" id="path308" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 615.119,593.459 3.346,-8.695 h 0.815 l -3.357,8.695 h -0.804 z" id="path310" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 624.968,588.998 c 0,2.65 -0.983,4.113 -2.71,4.113 -1.523,0 -2.555,-1.427 -2.579,-4.006 0,-2.614 1.128,-4.054 2.711,-4.054 1.642,10e-4 2.578,1.464 2.578,3.947 z m -4.234,0.119 c 0,2.027 0.623,3.179 1.583,3.179 1.079,0 1.595,-1.26 1.595,-3.25 0,-1.919 -0.491,-3.179 -1.583,-3.179 -0.923,0 -1.595,1.128 -1.595,3.25 z" id="path312" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 631.003,585.184 v 0.695 l -3.394,7.101 h -1.092 l 3.382,-6.896 v -0.023 h -3.813 v -0.876 h 4.917 z" id="path314" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 634.834,591.9 c 0.312,0.203 0.863,0.42 1.392,0.42 0.768,0 1.127,-0.384 1.127,-0.864 0,-0.504 -0.3,-0.779 -1.079,-1.067 -1.044,-0.371 -1.535,-0.947 -1.535,-1.643 0,-0.936 0.756,-1.703 2.003,-1.703 0.588,0 1.104,0.168 1.427,0.359 l -0.264,0.768 c -0.228,-0.144 -0.647,-0.336 -1.188,-0.336 -0.623,0 -0.971,0.36 -0.971,0.792 0,0.479 0.348,0.695 1.103,0.983 1.008,0.384 1.523,0.888 1.523,1.751 0,1.02 -0.791,1.751 -2.171,1.751 -0.636,0 -1.223,-0.168 -1.631,-0.407 l 0.264,-0.804 z" id="path316" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 643.808,591.588 c 0,0.504 0.024,0.996 0.096,1.392 h -0.959 l -0.084,-0.731 h -0.036 c -0.324,0.456 -0.947,0.863 -1.775,0.863 -1.175,0 -1.774,-0.827 -1.774,-1.667 0,-1.403 1.247,-2.171 3.49,-2.159 v -0.119 c 0,-0.48 -0.132,-1.344 -1.319,-1.344 -0.54,0 -1.104,0.168 -1.512,0.432 l -0.239,-0.695 c 0.479,-0.312 1.175,-0.516 1.906,-0.516 1.775,0 2.207,1.211 2.207,2.374 v 2.17 z m -1.02,-1.57 c -1.151,-0.024 -2.458,0.18 -2.458,1.307 0,0.684 0.455,1.008 0.995,1.008 0.756,0 1.235,-0.479 1.403,-0.972 0.036,-0.108 0.06,-0.228 0.06,-0.336 v -1.007 z" id="path318" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 645.514,588.746 c 0,-0.6 -0.013,-1.092 -0.049,-1.571 h 0.924 l 0.048,0.936 h 0.036 c 0.324,-0.552 0.863,-1.067 1.823,-1.067 0.791,0 1.391,0.479 1.643,1.163 h 0.024 c 0.18,-0.324 0.407,-0.575 0.647,-0.756 0.348,-0.264 0.731,-0.407 1.283,-0.407 0.768,0 1.907,0.504 1.907,2.519 v 3.418 h -1.031 v -3.286 c 0,-1.115 -0.408,-1.787 -1.26,-1.787 -0.6,0 -1.067,0.443 -1.247,0.96 -0.048,0.144 -0.084,0.335 -0.084,0.527 v 3.586 h -1.031 v -3.479 c 0,-0.923 -0.408,-1.595 -1.212,-1.595 -0.659,0 -1.139,0.527 -1.307,1.056 -0.061,0.155 -0.084,0.336 -0.084,0.516 v 3.502 h -1.031 v -4.235 z" id="path320" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 660.379,591.396 c 0,0.6 0.013,1.127 0.049,1.583 h -0.936 l -0.061,-0.947 h -0.023 c -0.276,0.468 -0.888,1.079 -1.919,1.079 -0.912,0 -2.003,-0.504 -2.003,-2.543 v -3.394 h 1.055 v 3.214 c 0,1.104 0.336,1.848 1.296,1.848 0.707,0 1.199,-0.492 1.391,-0.96 0.061,-0.156 0.097,-0.348 0.097,-0.54 v -3.562 h 1.055 v 4.222 z" id="path322" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 662.721,590.269 c 0.024,1.428 0.936,2.016 1.991,2.016 0.756,0 1.211,-0.132 1.607,-0.3 l 0.18,0.755 c -0.372,0.168 -1.008,0.372 -1.931,0.372 -1.787,0 -2.854,-1.188 -2.854,-2.938 0,-1.75 1.031,-3.13 2.723,-3.13 1.895,0 2.398,1.667 2.398,2.734 0,0.216 -0.024,0.384 -0.036,0.491 h -4.078 z m 3.094,-0.755 c 0.012,-0.672 -0.276,-1.715 -1.463,-1.715 -1.067,0 -1.535,0.983 -1.619,1.715 h 3.082 z" id="path324" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 668.146,584.464 h 1.055 v 8.516 h -1.055 v -8.516 z" id="path326" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 673.521,588.985 c 0,-0.684 -0.013,-1.271 -0.049,-1.811 h 0.924 l 0.036,1.14 h 0.048 c 0.264,-0.78 0.899,-1.271 1.607,-1.271 0.12,0 0.203,0.012 0.3,0.036 v 0.995 c -0.108,-0.024 -0.216,-0.036 -0.36,-0.036 -0.743,0 -1.271,0.563 -1.415,1.355 -0.023,0.144 -0.048,0.312 -0.048,0.491 v 3.095 h -1.043 v -3.994 z" id="path328" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 677.913,590.269 c 0.024,1.428 0.936,2.016 1.991,2.016 0.756,0 1.211,-0.132 1.607,-0.3 l 0.18,0.755 c -0.372,0.168 -1.008,0.372 -1.931,0.372 -1.787,0 -2.854,-1.188 -2.854,-2.938 0,-1.75 1.031,-3.13 2.723,-3.13 1.895,0 2.398,1.667 2.398,2.734 0,0.216 -0.024,0.384 -0.036,0.491 h -4.078 z m 3.095,-0.755 c 0.012,-0.672 -0.276,-1.715 -1.463,-1.715 -1.067,0 -1.535,0.983 -1.619,1.715 h 3.082 z" id="path330" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 684.513,585.544 c 0.012,0.359 -0.252,0.647 -0.672,0.647 -0.371,0 -0.636,-0.288 -0.636,-0.647 0,-0.372 0.276,-0.66 0.66,-0.66 0.396,0 0.648,0.288 0.648,0.66 z m -1.175,7.435 v -5.805 h 1.055 v 5.805 h -1.055 z" id="path332" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
	<path d="m 686.001,591.9 c 0.312,0.203 0.863,0.42 1.392,0.42 0.768,0 1.127,-0.384 1.127,-0.864 0,-0.504 -0.3,-0.779 -1.079,-1.067 -1.044,-0.371 -1.535,-0.947 -1.535,-1.643 0,-0.936 0.756,-1.703 2.003,-1.703 0.588,0 1.104,0.168 1.427,0.359 l -0.264,0.768 c -0.228,-0.144 -0.647,-0.336 -1.188,-0.336 -0.623,0 -0.971,0.36 -0.971,0.792 0,0.479 0.348,0.695 1.103,0.983 1.008,0.384 1.523,0.888 1.523,1.751 0,1.02 -0.791,1.751 -2.171,1.751 -0.636,0 -1.223,-0.168 -1.631,-0.407 l 0.264,-0.804 z" id="path334" inkscape:connector-curvature="0" style="fill:#6d6d6d"/>
 
</g>
 
<path style="fill:url(#linearGradient4158);fill-opacity:1;stroke:none" d="m -39.411627,128.55903 c 3.648072,9.15888 32.9454945,17.49942 34.7403045,15.93868 0.0732,-3.93095 0.43679,-8.47093 0.43679,-8.47093 0,0 16.8971525,13.88296 22.5804825,19.05885 -5.14622,2.54814 -24.4402525,13.25297 -24.4402525,13.25297 l 0.41181,-7.58934 c 0,0 -36.2179295,-6.72378 -46.4783685,-11.38754 z" id="path3382" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc"/></svg>
...
 
\ No newline at end of file
 
<path style="fill:url(#linearGradient4158);fill-opacity:1;stroke:none" d="m -39.411627,128.55903 c 3.648072,9.15888 32.9454945,17.49942 34.7403045,15.93868 0.0732,-3.93095 0.43679,-8.47093 0.43679,-8.47093 0,0 16.8971525,13.88296 22.5804825,19.05885 -5.14622,2.54814 -24.4402525,13.25297 -24.4402525,13.25297 l 0.41181,-7.58934 c 0,0 -36.2179295,-6.72378 -46.4783685,-11.38754 z" id="path3382" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc"/></svg>
conservancy/static/img/projects/qemu.svg
Show inline comments
 
<?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:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="351.84259" height="111.86757" id="svg2" version="1.1" inkscape:version="0.48.3.1 r9886" sodipodi:docname="qemu_logo.svg">
 
  <title id="title3182">Kew the Angry Emu</title>
 
  <defs id="defs4">
 
    <linearGradient id="linearGradient4686">
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4688"/>
 
      <stop id="stop3956" offset="0.75" style="stop-color:#000000;stop-opacity:0.87843138;"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0.43921569;" offset="0.75" id="stop3958"/>
 
      <stop id="stop3960" offset="0.88" style="stop-color:#181818;stop-opacity:1;"/>
 
      <stop style="stop-color:#242424;stop-opacity:1;" offset="0.88" id="stop3962"/>
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="1" id="stop4690"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4467">
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4469"/>
 
      <stop style="stop-color:#000000;stop-opacity:0.8974359;" offset="1" id="stop4471"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4431">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4433"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4435"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4466">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4468"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4470"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4321">
 
      <stop style="stop-color:#ff6702;stop-opacity:1;" offset="0" id="stop4323"/>
 
      <stop style="stop-color:#ff9a55;stop-opacity:1;" offset="1" id="stop4325"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4283">
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4285"/>
 
      <stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop4287"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4251">
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4253"/>
 
      <stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop4255"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4007">
 
      <stop style="stop-color:#ff6600;stop-opacity:1;" offset="0" id="stop4009"/>
 
      <stop style="stop-color:#ff9148;stop-opacity:1;" offset="1" id="stop4011"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3999">
 
      <stop style="stop-color:#fff7f2;stop-opacity:1;" offset="0" id="stop4001"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4003"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3890">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3892"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3894"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3880">
 
      <stop style="stop-color:#eb7400;stop-opacity:1;" offset="0" id="stop3882"/>
 
      <stop style="stop-color:#f7b06a;stop-opacity:1;" offset="1" id="stop3884"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4011">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3879">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.90598291;" offset="0" id="stop3881"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3869">
 
      <stop style="stop-color:#c95000;stop-opacity:1;" offset="0" id="stop3871"/>
 
      <stop style="stop-color:#ff9e5e;stop-opacity:1;" offset="1" id="stop3873"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3861">
 
      <stop style="stop-color:#f06000;stop-opacity:1;" offset="0" id="stop3863"/>
 
      <stop style="stop-color:#ffccaa;stop-opacity:1;" offset="1" id="stop3865"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3826">
 
      <stop style="stop-color:#ff6600;stop-opacity:1;" offset="0" id="stop3828"/>
 
      <stop style="stop-color:#ff893b;stop-opacity:1;" offset="1" id="stop3830"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3879-6">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.90598291;" offset="0" id="stop3881-4"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-7"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3869-5">
 
      <stop style="stop-color:#c95000;stop-opacity:1;" offset="0" id="stop3871-9"/>
 
      <stop style="stop-color:#ff9e5e;stop-opacity:1;" offset="1" id="stop3873-4"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4" id="linearGradient3885-6" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3869-2">
 
      <stop style="stop-color:#c95000;stop-opacity:1;" offset="0" id="stop3871-99"/>
 
      <stop style="stop-color:#ff9e5e;stop-opacity:1;" offset="1" id="stop3873-6"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011" id="radialGradient4017" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.23244854,1.600893,-1.0124495,0.14700695,145.40424,-26.300303)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4-7" id="linearGradient3885-6-2" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4-7">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011-5" id="radialGradient4017-7" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.99779178,6.8718773,-4.3459674,0.6310314,452.75975,-225.98471)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4011-5">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013-1"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-3"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4-75" id="linearGradient3885-6-8" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4-75">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-1"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-4"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011-0" id="radialGradient4017-5" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.23244854,1.600893,-1.0124495,0.14700695,146.34996,53.681728)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4011-0">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013-4"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-0"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4011-0" id="linearGradient4117" x1="107.03001" y1="189.72537" x2="107.18476" y2="173.47537" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4-7-2" id="linearGradient3885-6-2-8" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4-7-2">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7-9"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6-9"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011-5-1" id="radialGradient4017-7-9" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.99779178,6.8718773,-4.3459674,0.6310314,448.94742,-406.99277)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4011-5-1">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013-1-9"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-3-8"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4-7-2-7" id="linearGradient3885-6-2-8-0" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4-7-2-7">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7-9-3"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6-9-6"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011-5-1-5" id="radialGradient4017-7-9-5" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.55965334,3.8543806,-2.4376181,0.3539404,454.75182,-145.44353)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4011-5-1-5">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013-1-9-6"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-3-8-9"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3879-4-7-2-4" id="linearGradient3885-6-2-8-4" x1="76.025352" y1="124.8497" x2="75.874107" y2="143.03978" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient3879-4-7-2-4">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7-9-9"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6-9-3"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4011-5-1-7" id="radialGradient4017-7-9-7" cx="66.639" cy="93.096375" fx="66.639" fy="93.096375" r="11.515625" gradientTransform="matrix(0.26837158,1.8482981,-1.1689154,0.16972569,466.57614,26.180822)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4011-5-1-7">
 
      <stop style="stop-color:#042dc8;stop-opacity:1;" offset="0" id="stop4013-1-9-1"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-3-8-5"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3879-4-7-2-0">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7-9-7"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6-9-8"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4011-5-1-55">
 
      <stop style="stop-color:#000a30;stop-opacity:1;" offset="0" id="stop4013-1-9-8"/>
 
      <stop style="stop-color:#4260d5;stop-opacity:1;" offset="1" id="stop4015-3-8-3"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3890-9">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3892-0"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3894-9"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3880-4">
 
      <stop style="stop-color:#eb7400;stop-opacity:1;" offset="0" id="stop3882-5"/>
 
      <stop style="stop-color:#f7b06a;stop-opacity:1;" offset="1" id="stop3884-1"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3999-7">
 
      <stop style="stop-color:#fff7f2;stop-opacity:1;" offset="0" id="stop4001-9"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4003-4"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4007-9">
 
      <stop style="stop-color:#ff6600;stop-opacity:1;" offset="0" id="stop4009-1"/>
 
      <stop style="stop-color:#ff9148;stop-opacity:1;" offset="1" id="stop4011-9"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4007-9-5">
 
      <stop style="stop-color:#ff6600;stop-opacity:1;" offset="0" id="stop4009-1-9"/>
 
      <stop style="stop-color:#ff9148;stop-opacity:1;" offset="1" id="stop4011-9-5"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3999-7-1">
 
      <stop style="stop-color:#fff7f2;stop-opacity:1;" offset="0" id="stop4001-9-1"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4003-4-4"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4007-9-5-3">
 
      <stop style="stop-color:#ff6600;stop-opacity:1;" offset="0" id="stop4009-1-9-3"/>
 
      <stop style="stop-color:#ff9148;stop-opacity:1;" offset="1" id="stop4011-9-5-9"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3999-7-1-4">
 
      <stop style="stop-color:#fff7f2;stop-opacity:1;" offset="0" id="stop4001-9-1-4"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4003-4-4-4"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient3879-4-7-2-3">
 
      <stop style="stop-color:#ffffff;stop-opacity:0.93162394;" offset="0" id="stop3881-6-7-9-1"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3883-74-6-9-87"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4011-5-1-1">
 
      <stop style="stop-color:#fde8a1;stop-opacity:1;" offset="0" id="stop4013-1-9-63"/>
 
      <stop style="stop-color:#2947b9;stop-opacity:1;" offset="1" id="stop4015-3-8-8"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4466" id="linearGradient4472" x1="161.7561" y1="540.72662" x2="161.7561" y2="579.80206" gradientUnits="userSpaceOnUse"/>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4321" id="radialGradient4474" cx="130.8242" cy="575.27838" fx="130.8242" fy="575.27838" r="49.498173" gradientTransform="matrix(0.95670828,0.96684666,-0.72623533,0.71862001,423.45109,35.05138)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4466-5" id="linearGradient4472-9" x1="161.7561" y1="540.72662" x2="161.7561" y2="579.80206" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4466-5">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4468-2"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4470-3"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4321-0" id="radialGradient4474-6" cx="130.8242" cy="575.27838" fx="130.8242" fy="575.27838" r="49.498173" gradientTransform="matrix(0.95670828,0.96684666,-0.72623533,0.71862001,442.64399,170.9169)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4321-0">
 
      <stop style="stop-color:#ff6702;stop-opacity:1;" offset="0" id="stop4323-3"/>
 
      <stop style="stop-color:#ff9a55;stop-opacity:1;" offset="1" id="stop4325-1"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4466-5-5">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4468-2-9"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4470-3-4"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4321-0-0">
 
      <stop style="stop-color:#ff6702;stop-opacity:1;" offset="0" id="stop4323-3-9"/>
 
      <stop style="stop-color:#ff9a55;stop-opacity:1;" offset="1" id="stop4325-1-1"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4466-5-9">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4468-2-7"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4470-3-7"/>
 
    </linearGradient>
 
    <linearGradient id="linearGradient4321-0-7">
 
      <stop style="stop-color:#ff6702;stop-opacity:1;" offset="0" id="stop4323-3-3"/>
 
      <stop style="stop-color:#ff9a55;stop-opacity:1;" offset="1" id="stop4325-1-6"/>
 
    </linearGradient>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4431" id="linearGradient4437" x1="142.81854" y1="831.52283" x2="142.81854" y2="878.90735" gradientUnits="userSpaceOnUse"/>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4467" id="radialGradient4475" cx="116.51958" cy="98.282051" fx="116.51958" fy="98.282051" r="55.859375" gradientTransform="matrix(0.97442557,1.5088911,-0.83559154,0.53961599,79.641615,-130.28522)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4431-3" id="linearGradient4437-6" x1="142.81854" y1="831.52283" x2="142.81854" y2="878.90735" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4431-3">
 
      <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4433-0"/>
 
      <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4435-2"/>
 
    </linearGradient>
 
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4467-7" id="radialGradient4475-0" cx="116.51958" cy="98.282051" fx="116.51958" fy="98.282051" r="55.859375" gradientTransform="matrix(0.97442557,1.5088911,-0.83559154,0.53961599,225.10358,63.664066)" gradientUnits="userSpaceOnUse"/>
 
    <linearGradient id="linearGradient4467-7">
 
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4469-4"/>
 
      <stop style="stop-color:#000000;stop-opacity:0.8974359;" offset="1" id="stop4471-7"/>
 
    </linearGradient>
 
  </defs>
 
  <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.0170184" inkscape:cx="539.34448" inkscape:cy="-81.088823" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" showguides="false" inkscape:guide-bbox="true" inkscape:window-width="992" inkscape:window-height="547" inkscape:window-x="30" inkscape:window-y="24" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0">
 
    <sodipodi:guide orientation="0,1" position="52.563745,58.089579" id="guide2989"/>
 
    <sodipodi:guide orientation="0,1" position="54.584055,28.037549" id="guide2991"/>
 
    <sodipodi:guide orientation="1,0" position="51.048515,41.169529" id="guide2993"/>
 
    <sodipodi:guide orientation="1,0" position="77.817565,40.916989" id="guide2995"/>
 
    <sodipodi:guide orientation="1,0" position="51.048515,41.169529" id="guide3017"/>
 
    <inkscape:grid type="xygrid" id="grid3019" empspacing="5" visible="true" enabled="true" snapvisiblegridlinesonly="true" originx="-62.341105px" originy="-884.63528px"/>
 
    <sodipodi:guide orientation="1,0" position="85.658895,8.3647193" id="guide3021"/>
 
    <sodipodi:guide orientation="1,0" position="106.6589,4.3647193" id="guide3023"/>
 
    <sodipodi:guide orientation="0,1" position="90.658895,17.364719" id="guide3025"/>
 
    <sodipodi:guide orientation="0,1" position="90.658895,-6.6352807" id="guide3027"/>
 
    <sodipodi:guide orientation="0,1" position="-0.341105,-14.635281" id="guide3810"/>
 
    <sodipodi:guide orientation="0,1" position="1.658895,-49.635281" id="guide3814"/>
 
    <sodipodi:guide orientation="0,1" position="-17.698248,11.257579" id="guide3856"/>
 
    <sodipodi:guide orientation="0,1" position="6.601806,11.257579" id="guide3887"/>
 
    <sodipodi:guide orientation="0,1" position="24.658283,58.089579" id="guide4019"/>
 
    <sodipodi:guide orientation="0,1" position="106.6589,-6.6352807" id="guide4481"/>
 
    <sodipodi:guide orientation="0,1" position="139.08747,-193.20671" id="guide4483"/>
 
  </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>Kew the Angry Emu</dc:title>
 
        <dc:creator>
 
          <cc:Agent>
 
            <dc:title>Benoît Canet</dc:title>
 
          </cc:Agent>
 
        </dc:creator>
 
        <dc:rights>
 
          <cc:Agent>
 
            <dc:title>CC BY 3.0</dc:title>
 
          </cc:Agent>
 
        </dc:rights>
 
        <dc:publisher>
 
          <cc:Agent>
 
            <dc:title>QEMU Community</dc:title>
 
          </cc:Agent>
 
        </dc:publisher>
 
        <dc:date>2012-02-15</dc:date>
 
        <cc:license rdf:resource="http://creativecommons.org/licenses/by/3.0/"/>
 
        <dc:subject>
 
          <rdf:Bag>
 
            <rdf:li>QEMU logo</rdf:li>
 
            <rdf:li>QEMU mascot</rdf:li>
 
          </rdf:Bag>
 
        </dc:subject>
 
        <dc:source>http://lists.gnu.org/archive/html/qemu-devel/2012-02/msg01961.html</dc:source>
 
      </cc:Work>
 
      <cc:License rdf:about="http://creativecommons.org/licenses/by/3.0/">
 
        <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/>
 
        <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/>
 
        <cc:requires rdf:resource="http://creativecommons.org/ns#Notice"/>
 
        <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution"/>
 
        <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/>
 
      </cc:License>
 
    </rdf:RDF>
 
  </metadata>
 
  <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-62.341105,-55.859333)">
 
    <path inkscape:connector-curvature="0" style="fill:url(#radialGradient4475);fill-opacity:1;stroke:none" d="m 118.2161,55.859333 c -30.850815,0 -55.874995,24.87043 -55.874995,55.562497 0,30.69207 25.02418,55.56249 55.874995,55.56249 10.09496,0 19.54625,-2.6525 27.71875,-7.3125 l 2.90625,7.3125 2.40625,0 20,0 0.125,0 -8.8125,-21.78124 c 7.21537,-9.3622 11.5,-21.07236 11.5,-33.78125 0,-30.692067 -24.99293,-55.562497 -55.84375,-55.562497 z" id="path3834-7-7-2-5-5-0-5-4"/>
 
    <path sodipodi:type="arc" style="fill:url(#linearGradient4437);fill-opacity:1;stroke:none" id="path3661" sodipodi:cx="142.5" sodipodi:cy="856.29077" sodipodi:rx="35.357143" sodipodi:ry="24.642857" d="m 177.85714,856.29077 c 0,13.60988 -15.82993,24.64286 -35.35714,24.64286 -19.52721,0 -35.35714,-11.03298 -35.35714,-24.64286 0,-13.60987 15.82993,-24.64286 35.35714,-24.64286 19.52721,0 35.35714,11.03299 35.35714,24.64286 z" transform="matrix(1.0465082,0,0,1.2920463,-31.641235,-1016.8612)"/>
 
    <path sodipodi:type="arc" style="fill:#000000;fill-opacity:1;stroke:none" id="path4442" sodipodi:cx="115.66247" sodipodi:cy="856.39258" sodipodi:rx="6.5659914" sodipodi:ry="6.5659914" d="m 122.22846,856.39258 c 0,3.6263 -2.9397,6.56599 -6.56599,6.56599 -3.6263,0 -6.56599,-2.93969 -6.56599,-6.56599 0,-3.6263 2.93969,-6.56599 6.56599,-6.56599 3.62629,0 6.56599,2.93969 6.56599,6.56599 z" transform="translate(7.6700247,-777.60351)"/>
 
    <rect style="fill:#000000;fill-opacity:1;stroke:none" id="rect4444" width="37.643608" height="5.5005069" x="125.01157" y="65.255234" transform="matrix(0.98974903,0.14281759,-0.18972639,0.981837,0,0)"/>
 
    <rect style="fill:#000000;fill-opacity:1;stroke:none" id="rect4446" width="6.5659914" height="2.9041886" x="144.92451" y="89.016899"/>
 
    <path style="fill:#ff6600;fill-opacity:1" d="m 103.38797,65.010543 c -0.057,2.18531 -3.865755,0.28296 -4.031245,2.78125 -4.22387,-1.88052 0.32884,2.87188 -0.0937,3.3125 l -0.0312,0 -0.3125,-0.0312 c -0.20386,-0.0728 -0.49977,-0.19904 -0.9375,-0.46875 -2.9499,2.35025 -3.02157,7.23369 -6.0625,9.9375 -1.99467,4.30504 -2.47977,8.98337 -3.9375,13.46875 -0.71796,4.30292 -1.34881,8.597857 -0.28125,12.906247 0.32053,3.50159 -0.68919,8.25865 2.5,10.71875 4.72728,3.88304 8.65575,8.79543 12.624995,13.46875 6.21914,7.65333 11.72948,15.86251 16.59375,24.4375 0.32431,-2.11756 1.10954,4.26459 2.53125,4.6875 -0.49161,-3.19231 -1.13213,-8.26328 -1.4375,-12.1875 -1.5814,-10.2909 -6.65305,-19.64903 -8.5625,-29.84375 -0.0587,-0.43037 -0.12809,-0.87203 -0.1875,-1.3125 l 0,-1.28125 -0.15625,0 c -0.62551,-5.04297 -0.8504,-10.46546 2.8125,-14.40625 3.73968,-3.772097 9.30633,-4.722447 13.8125,-7.343747 1.00194,-0.59119 2.04921,-1.07174 3.125,-1.40625 0.009,-0.003 0.0228,0.003 0.0312,0 3.11701,-0.96341 6.44862,-0.93323 9.6875,-0.40625 0.0479,0.008 0.10841,0.0233 0.15625,0.0312 0.29455,0.0493 0.61389,0.099 0.90625,0.15625 2.37136,0.21133 7.14463,1.13687 8,-0.5 -3.27225,-2.78631 -7.98526,-2.59211 -11.96875,-3.6875 -0.63059,-0.11469 -1.41182,-0.24041 -2.1875,-0.3125 l -3.90625,-0.875 -0.96875,-0.25 0,0.0312 -13.96875,-2.71875 c -0.22212,-0.20226 -0.46434,-0.40933 -0.6875,-0.5625 l 13.625,1.6875 0,-0.0625 c 0.48011,0.10699 0.95576,0.19361 1.4375,0.25 l 0,0.0312 9.625,1.78125 c 1.66103,0.61952 3.4322,1.08374 5.09375,1.1875 2.74263,0.39907 6.22526,4.49092 7.125,4.6875 -0.44096,-4.307 -4.7422,-6.23586 -8.3125,-7.5 -4.1712,-2.02803 -10.4023,-1.95417 -11.0625,-7.5625 -0.1756,-0.39076 -0.34902,-0.78118 -0.5625,-1.15625 l -1.625,-2.15625 0.0625,-0.0312 c -2.21724,-2.61691 -5.34011,-4.52196 -8.65625,-5.25 -3.2914,-1.13611 -6.98773,-2.2671 -10.46875,-2.71875 -1.18132,3.47826 -2.5031,-2.75561 -5.34375,-0.90625 -2.48996,0.29488 -2.14614,0.95256 -4,-0.625 z m 17.90625,10.15625 c 0.90187,-0.0238 1.93277,0.14208 2.96875,0.5 2.76259,0.95447 4.56151,2.96523 4.03125,4.5 -0.53026,1.53477 -3.20616,1.98572 -5.96875,1.03125 -2.76259,-0.95447 -4.5615,-2.93398 -4.03125,-4.46875 0.33141,-0.95923 1.49689,-1.52281 3,-1.5625 z" id="path3499-9-7" inkscape:connector-curvature="0"/>
 
    <text xml:space="preserve" style="font-size:95.54121399px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold" x="184.89412" y="166.37402" id="text4477" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan4479" x="184.89412" y="166.37402" style="fill:#000000;fill-opacity:1">EMU</tspan></text>
 
  </g>
 
</svg>
...
 
\ No newline at end of file
 
</svg>
conservancy/static/img/projects/squeak.svg
Show inline comments
 
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="17100.795" height="11677.684" viewBox="0 0 17100.795 11677.684" preserveAspectRatio="xMidYMid meet" id="svg10661">
 
  <defs id="defs4"/>
 
  <path d="M 11499.066,6464.9345 C 11499.35,7128.2014 11067.736,7666.0733 10535.212,7666.0733 C 10002.69,7666.0733 9571.0756,7128.2014 9571.3592,6464.9345 C 9571.0756,5801.6675 10002.69,5263.7953 10535.212,5263.7953 C 11067.736,5263.7953 11499.35,5801.6675 11499.066,6464.9345 z" id="eyeR"/>
 
  <path d="M 11232.479,6345.701 C 11232.479,6664.9424 11079.638,6923.7412 10891.099,6923.7412 C 10702.564,6923.7412 10549.723,6664.9424 10549.723,6345.701 C 10549.723,6026.4595 10702.564,5767.6607 10891.099,5767.6607 C 11079.638,5767.6607 11232.479,6026.4595 11232.479,6345.701 L 11232.479,6345.701 z" id="pupR" style="fill:#ffffff"/>
 
  <path d="M 7562.9832,6287.2172 C 7562.9832,6950.2358 7131.4511,7487.7183 6599.1302,7487.7183 C 6066.8072,7487.7183 5635.2751,6950.2358 5635.2751,6287.2172 C 5635.2751,5624.1985 6066.8072,5086.7156 6599.1302,5086.7156 C 7131.4511,5086.7156 7562.9832,5624.1985 7562.9832,6287.2172 z" id="eyeL"/>
 
  <path d="M 7296.3965,6168.4368 C 7296.3965,6487.4324 7143.5559,6746.0268 6955.0174,6746.0268 C 6766.481,6746.0268 6613.6404,6487.4324 6613.6404,6168.4368 C 6613.6404,5849.4413 6766.481,5590.8469 6955.0174,5590.8469 C 7143.5559,5590.8469 7296.3965,5849.4413 7296.3965,6168.4368 z" id="pupL" style="fill:#ffffff"/>
 
  <path d="M 5888.2586,3739.3253 C 2900.2186,-1950.4661 610.36464,-824.25739 2805.4007,6583.715" id="earL" style="fill:none;stroke:#000000;stroke-width:150"/>
 
  <path d="M 11111.889,3679.4816 C 13882.653,-1677.1575 16488.614,-1306.6259 14194.747,6524.778" id="earR" style="fill:none;stroke:#000000;stroke-width:150"/>
 
  <path d="M 9814.3692,9363.727 C 9814.3692,9862.9982 9276.8857,10267.737 8613.8669,10267.737 C 7950.8493,10267.737 7413.3659,9862.9982 7413.3659,9363.727 C 7413.3659,8864.4558 7950.8493,8459.7169 8613.8669,8459.7169 C 9276.8857,8459.7169 9814.3692,8864.4558 9814.3692,9363.727 z" id="nose"/>
 
  <path d="M 6895.6277,8835.108 C 4877.6547,8303.2788 2821.4415,8289.1068 20.854627,9191.4501" id="whiskerL1" style="fill:none;stroke:#000000;stroke-width:150"/>
 
  <path d="M 6777.7537,9426.2913 C 4292.2899,9269.5985 2569.1583,9226.9662 495.07071,10849.846" id="whiskerL2" style="fill:none;stroke:#000000;stroke-width:150"/>
 
  <path d="M 6777.7537,10376.537 C 4634.737,10088.359 3812.4057,10276.693 2509.809,11444.657" id="whiskerL3" style="fill:none;stroke:#000000;stroke-width:150"/>
 
  <path d="M 10204.26,9013.7324 C 13100.372,8264.3585 15233.852,8806.9996 17079.939,9370.0745" id="whiskerR1" style="fill:none;stroke:#000000;stroke-width:150"/>
 
  <path d="M 10323.04,9605.8225 C 12979.09,9406.498 14556.098,9477.3417 16605.723,11028.471" id="whiskerR2" style="fill:none;stroke:#000000;stroke-width:150"/>
 
  <path d="M 10323.04,10553.348 C 12342.144,10299.784 13208.104,10377.136 14590.985,11621.467" id="whiskerR3" style="fill:none;stroke:#000000;stroke-width:150"/>
 
</svg>
...
 
\ No newline at end of file
 
</svg>
conservancy/static/img/projects/sugar-labs.svg
Show inline comments
 
<?xml version="1.0" encoding="UTF-8"?>
 
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948)  -->
 
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
 
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="540px" height="180px" viewBox="0 0 540 180" enable-background="new 0 0 540 180" xml:space="preserve">
 
<rect fill="#FFFFFF" width="540" height="180"/>
 
<g>
 
	<g>
 
		<path fill="#033CD2" d="M63.051,117.519c-11.052,0-21.119-5.5-21.119-11.539c0-3.157,2.303-5.63,5.244-5.63    c2.022,0,3.719,1.183,5.515,2.435c2.592,1.809,5.529,3.855,10.651,3.855c5.139,0,8.21-2.647,8.21-5.209    c0-3.416-5.271-5.607-10.852-7.927c-7.799-3.243-16.639-6.918-16.639-15.886c0-10.573,9.933-16.279,19.28-16.279    c7.89,0,18.895,4.132,18.895,10.86c0,2.526-1.763,5.244-5.632,5.244c-2.068,0-3.558-1.125-4.997-2.212    c-1.872-1.414-3.994-3.015-8.266-3.015c-1.209,0-7.242,0.227-7.242,4.726c0,2.729,4.879,4.613,10.044,6.608    c7.772,3.001,17.446,6.739,17.446,16.333C83.591,112,72.943,117.519,63.051,117.519L63.051,117.519z"/>
 
		<path fill="#78E600" d="M63.343,63.098c7.066,0,17.134,3.775,17.134,9.099c0,1.839-1.259,3.484-3.873,3.484    c-3.677,0-5.13-5.227-13.261-5.227c-4.84,0-9.002,2.129-9.002,6.485c0,9.002,27.491,8.035,27.491,22.941    c0,10.746-9.196,15.877-18.779,15.877c-10.842,0-19.359-5.422-19.359-9.779c0-2.321,1.645-3.87,3.484-3.87    c3.775,0,6.873,6.291,16.166,6.291c6.195,0,9.97-3.484,9.97-6.97c0-10.066-27.491-9.486-27.491-23.812    C45.822,68.132,54.728,63.098,63.343,63.098 M63.343,59.578c-10.2,0-21.041,6.323-21.041,18.04    c0,10.142,9.828,14.228,17.724,17.511c4.578,1.903,9.767,4.061,9.767,6.302c0,1.41-2.297,3.45-6.45,3.45    c-4.569,0-7.15-1.801-9.646-3.541c-1.939-1.353-3.944-2.75-6.52-2.75c-3.928,0-7.004,3.246-7.004,7.39    c0,7.085,10.691,13.299,22.879,13.299c10.74,0,22.299-6.069,22.299-19.396c0-10.802-10.733-14.947-18.57-17.974    c-3.337-1.289-8.921-3.445-8.921-4.968c0-2.822,4.567-2.965,5.482-2.965c3.682,0,5.393,1.292,7.205,2.66    c1.593,1.203,3.398,2.566,6.057,2.566c4.284,0,7.393-2.946,7.393-7.004C83.997,64.072,71.784,59.578,63.343,59.578L63.343,59.578z    "/>
 
	</g>
 
	<g>
 
		<path fill="#033CD2" d="M117.647,117.519c-10.726,0-22.187-5.854-22.187-22.281v-27.59c0-3.773,2.418-6.309,6.02-6.309    s6.021,2.536,6.021,6.309v27.299c0,7.979,3.224,11.693,10.146,11.693c6.922,0,10.146-3.715,10.146-11.693V67.647    c0-3.773,2.418-6.309,6.02-6.309c3.6,0,6.018,2.536,6.018,6.309v27.59C139.831,111.665,128.371,117.519,117.647,117.519    L117.647,117.519z"/>
 
		<path fill="#78E600" d="M133.812,63.098c2.613,0,4.259,1.743,4.259,4.549v27.589c0,15.101-10.068,20.522-20.425,20.522    c-10.357,0-20.425-5.422-20.425-20.522V67.647c0-2.807,1.646-4.549,4.26-4.549c2.613,0,4.259,1.743,4.259,4.549v27.299    c0,8.809,3.872,13.454,11.907,13.454s11.906-4.646,11.906-13.454V67.647C129.553,64.841,131.198,63.098,133.812,63.098     M133.812,59.578c-4.581,0-7.78,3.318-7.78,8.069v27.299c0,8.754-4.239,9.935-8.386,9.935s-8.387-1.181-8.387-9.935V67.647    c0-4.751-3.199-8.069-7.779-8.069c-4.581,0-7.78,3.318-7.78,8.069v27.589c0,17.727,12.37,24.042,23.945,24.042    s23.945-6.315,23.945-24.042V67.647C141.591,62.896,138.393,59.578,133.812,59.578L133.812,59.578z"/>
 
	</g>
 
	<g>
 
		<path fill="#033CD2" d="M175.533,137.846c-8.493,0-21.509-4.994-21.509-11.149c0-2.758,1.671-5.729,5.342-5.729    c2.021,0,3.766,1.074,5.785,2.317c2.804,1.728,5.981,3.683,11.059,3.683c10.827,0,12.215-9.426,12.273-13.816    c-3.037,2.818-7.039,4.37-11.498,4.37c-16.028,0-24.414-14.133-24.414-28.092s8.386-28.09,24.414-28.09    c4.424,0,8.692,1.905,11.688,4.32c0.654-2.638,2.95-4.32,6.122-4.32c2.778,0,5.731,2.077,5.731,5.923v44.237    C200.526,127.503,190.715,137.846,175.533,137.846L175.533,137.846z M176.985,72.216c-9.132,0-12.372,9.271-12.372,17.212    s3.24,17.211,12.372,17.211c9.13,0,12.371-9.271,12.371-17.211S186.115,72.216,176.985,72.216L176.985,72.216z"/>
 
		<path fill="#78E600" d="M194.795,63.098c1.645,0,3.969,1.162,3.969,4.163v44.237c0,15.294-9.293,24.587-23.232,24.587    c-8.809,0-19.747-5.033-19.747-9.389c0-1.742,0.872-3.969,3.582-3.969c3.872,0,7.648,6.001,16.843,6.001    c10.843,0,14.037-8.519,14.037-15.875V108.4h-0.194c-2.614,4.453-7.261,7.358-13.068,7.358c-14.52,0-22.651-12.682-22.651-26.331    s8.131-26.33,22.651-26.33c5.517,0,10.841,3.388,13.068,6.486h0.194v-2.324C190.246,64.26,192.472,63.098,194.795,63.098     M176.984,108.4c10.454,0,14.132-10.26,14.132-18.972c0-8.712-3.679-18.973-14.132-18.973c-10.455,0-14.133,10.261-14.133,18.973    C162.852,98.141,166.529,108.4,176.984,108.4 M194.795,59.578c-3.035,0-5.485,1.289-6.859,3.399    c-3.083-1.981-6.961-3.399-10.952-3.399c-17.182,0-26.171,15.017-26.171,29.85s8.99,29.85,26.171,29.85    c3.423,0,6.604-0.83,9.352-2.385c-0.846,4.075-3.355,8.315-10.127,8.315c-4.579,0-7.53-1.818-10.134-3.422    c-2.154-1.326-4.188-2.579-6.708-2.579c-4.115,0-7.102,3.149-7.102,7.488c0,7.488,13.898,12.908,23.267,12.908    c7.882,0,14.584-2.642,19.383-7.64c4.821-5.022,7.37-12.1,7.37-20.467V67.261C202.284,62.271,198.426,59.578,194.795,59.578    L194.795,59.578z M176.984,104.881c-10.101,0-10.613-12.872-10.613-15.453s0.512-15.453,10.613-15.453    c10.101,0,10.612,12.873,10.612,15.453S187.085,104.881,176.984,104.881L176.984,104.881z"/>
 
	</g>
 
	<g>
 
		<path fill="#033CD2" d="M256.264,117.519c-2.625,0-5.279-1.729-5.68-5.044c-3.492,3.314-7.752,5.044-12.52,5.044    c-16.026,0-24.411-14.131-24.411-28.091c0-13.958,8.385-28.089,24.411-28.089c4.755,0,8.745,1.484,12.563,4.743    c0.52-3.119,3.091-4.743,5.636-4.743c2.776,0,5.727,2.076,5.727,5.923v44.334C261.991,115.442,259.04,117.519,256.264,117.519    L256.264,117.519z M238.065,72.215c-9.132,0-12.373,9.273-12.373,17.212c0,7.94,3.241,17.212,12.373,17.212    c9.133,0,12.373-9.272,12.373-17.212C250.438,81.488,247.198,72.215,238.065,72.215L238.065,72.215z"/>
 
		<path fill="#78E600" d="M256.264,63.098c1.645,0,3.967,1.162,3.967,4.163v44.334c0,3.002-2.322,4.164-3.967,4.164    c-1.743,0-3.97-1.162-3.97-4.164v-3.581h-0.193c-3.678,5.228-8.518,7.745-14.036,7.745c-14.521,0-22.651-12.682-22.651-26.331    s8.13-26.33,22.651-26.33c5.905,0,10.067,2.516,14.036,6.873h0.193v-2.71C252.294,64.26,254.521,63.098,256.264,63.098     M238.065,108.4c10.454,0,14.133-10.26,14.133-18.972c0-8.712-3.679-18.973-14.133-18.973c-10.455,0-14.133,10.261-14.133,18.973    C223.932,98.141,227.61,108.4,238.065,108.4 M256.264,59.578c-2.479,0-5.063,1.254-6.454,3.637    c-3.564-2.488-7.348-3.637-11.745-3.637c-17.181,0-26.171,15.017-26.171,29.85s8.99,29.85,26.171,29.85    c4.331,0,8.272-1.291,11.662-3.784c1.37,2.479,4.009,3.784,6.538,3.784c3.63,0,7.487-2.692,7.487-7.684V67.261    C263.751,62.271,259.894,59.578,256.264,59.578L256.264,59.578z M238.065,104.881c-10.102,0-10.613-12.872-10.613-15.453    s0.512-15.453,10.613-15.453c10.101,0,10.613,12.873,10.613,15.453S248.166,104.881,238.065,104.881L238.065,104.881z"/>
 
	</g>
 
	<g>
 
		<path fill="#033CD2" d="M282.981,117.519c-3.601,0-6.02-2.536-6.02-6.311V67.647c0-3.774,2.419-6.309,6.02-6.309    c3.289,0,5.593,2.118,5.965,5.361c2.537-2.849,6.103-5.361,10.104-5.361c3.768,0,6.503,2.572,6.503,6.115    c0,2.326-1.173,5.322-6.76,6.375C295.832,74.343,289,76.616,289,86.718v24.49C289,114.982,286.581,117.519,282.981,117.519    L282.981,117.519z"/>
 
		<path fill="#78E600" d="M299.049,63.098c3,0,4.744,1.936,4.744,4.355c0,2.42-1.744,3.97-5.326,4.647    c-5.033,0.871-11.228,4.646-11.228,14.617v24.491c0,2.808-1.646,4.551-4.259,4.551c-2.615,0-4.26-1.743-4.26-4.551V67.647    c0-2.807,1.645-4.549,4.26-4.549c2.613,0,4.259,1.743,4.259,4.549v4.356h0.194C289.369,68.035,294.112,63.098,299.049,63.098     M299.049,59.578c-3.515,0-6.709,1.664-9.283,3.875c-1.286-2.396-3.728-3.875-6.785-3.875c-4.581,0-7.779,3.318-7.779,8.069    v43.561c0,4.752,3.198,8.07,7.779,8.07c4.58,0,7.778-3.318,7.778-8.07V86.717c0-8.449,5.206-10.611,8.309-11.148    c0.018-0.003,0.035-0.006,0.054-0.01c7.128-1.348,8.191-5.657,8.191-8.105C307.313,62.89,303.838,59.578,299.049,59.578    L299.049,59.578z"/>
 
	</g>
 
	<path fill="#969696" d="M324.99,111.208c0,2.808-1.646,4.551-4.259,4.551c-2.614,0-4.26-1.743-4.26-4.551V44.997   c0-2.808,1.646-4.55,4.26-4.55c2.613,0,4.259,1.743,4.259,4.55V111.208z"/>
 
	<path fill="#969696" d="M386.071,111.595c0,3.002-2.324,4.164-3.969,4.164c-1.742,0-3.969-1.162-3.969-4.164v-3.581h-0.193   c-3.68,5.228-8.52,7.745-14.037,7.745c-14.52,0-22.65-12.682-22.65-26.331s8.131-26.33,22.65-26.33   c5.906,0,10.067,2.516,14.037,6.873h0.193v-2.71c0-3.001,2.227-4.163,3.969-4.163c1.645,0,3.969,1.162,3.969,4.163V111.595z    M363.903,108.4c10.455,0,14.133-10.26,14.133-18.972c0-8.712-3.678-18.973-14.133-18.973c-10.453,0-14.132,10.261-14.132,18.973   C349.771,98.141,353.45,108.4,363.903,108.4z"/>
 
	<path fill="#969696" d="M404.946,44.997c0-2.808,1.646-4.55,4.26-4.55s4.26,1.743,4.26,4.55v25.07h0.192   c2.227-3.194,6.97-6.969,13.745-6.969c13.941,0,21.975,12.681,21.975,26.33s-8.033,26.331-21.975,26.331   c-6.775,0-11.324-2.421-13.745-7.068h-0.192v2.518c0,2.808-1.646,4.551-4.26,4.551s-4.26-1.743-4.26-4.551V44.997z M426.727,108.4   c10.453,0,14.131-10.26,14.131-18.972c0-8.712-3.678-18.973-14.131-18.973c-10.455,0-14.135,10.261-14.135,18.973   C412.592,98.141,416.272,108.4,426.727,108.4z"/>
 
	<path fill="#969696" d="M481.999,63.098c7.066,0,17.135,3.775,17.135,9.099c0,1.839-1.26,3.484-3.873,3.484   c-3.678,0-5.13-5.227-13.262-5.227c-4.84,0-9.002,2.129-9.002,6.485c0,9.002,27.491,8.035,27.491,22.941   c0,10.746-9.196,15.877-18.778,15.877c-10.843,0-19.361-5.422-19.361-9.779c0-2.321,1.646-3.87,3.484-3.87   c3.775,0,6.873,6.291,16.166,6.291c6.195,0,9.971-3.484,9.971-6.97c0-10.066-27.491-9.486-27.491-23.812   C464.478,68.132,473.383,63.098,481.999,63.098z"/>
 
</g>
 
</svg>
...
 
\ No newline at end of file
 
</svg>
conservancy/static/img/projects/twisted.svg
Show inline comments
 
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
<!-- Generator: Adobe Illustrator 9.0.1, SVG Export Plug-In  -->
 

	
 
<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="108.21875"
 
   height="87.6875"
 
   viewBox="0 0 86.575002 70.150002"
 
   xml:space="preserve"
 
   id="svg2277"
 
   sodipodi:version="0.32"
 
   inkscape:version="0.48.5 r10040"
 
   sodipodi:docname="Twisted-trimmed.svg"
 
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
 
   version="1.1"><metadata
 
     id="metadata2323"><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><defs
 
     id="defs2321" /><sodipodi:namedview
 
     inkscape:window-height="733"
 
     inkscape:window-width="1278"
 
     inkscape:pageshadow="2"
 
     inkscape:pageopacity="0.0"
 
     guidetolerance="10.0"
 
     gridtolerance="10.0"
 
     objecttolerance="10.0"
 
     borderopacity="1.0"
 
     bordercolor="#666666"
 
     pagecolor="#ffffff"
 
     id="base"
 
     inkscape:zoom="4.193761"
 
     inkscape:cx="54.958751"
 
     inkscape:cy="-2.3271663"
 
     inkscape:window-x="0"
 
     inkscape:window-y="27"
 
     inkscape:current-layer="svg2277"
 
     showgrid="false"
 
     inkscape:window-maximized="0"
 
     fit-margin-top="0"
 
     fit-margin-left="0"
 
     fit-margin-right="0"
 
     fit-margin-bottom="0" /><path
 
     style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 
     d="M 43.349999,0 -5.9309479e-7,32 29.399999,53.675 l 2.7,1.95 -0.05,0.025 2.925,2.15 34.725,-25.7 -26.975,-19.9 -26.55,19.675 18.8,13.85 18.9,-14.075 -10.85,-8 0,-2.225 0.05,-0.075 12.9,9.55 1,0.75 -1,0.75 -20.4,15.225 -0.55,0.4 -0.575,-0.4 -20.4,-15 -1.025,-0.75 1,-0.75 28.125,-20.85 0.55,-0.4 0.575,0.4 28.525,21.075 1.025,0.75 -1,0.75 -36.25,26.875 -0.55,0.4 -0.575,-0.4 -4,-2.95 -2.9,2 -4.025,3.05 11.025,8.325 52.025,-38.55 -43.225,-31.6 z"
 
     id="path2280"
 
     inkscape:connector-curvature="0" /><path
 
     id="path2302"
 
     d="m 33.193999,35.4 0.094,-1.969 -4.313,-2.062 0,0.938 4.219,3.094 0,-0.001 z"
 
     style="fill:#ffffff;fill-rule:nonzero;stroke:none"
 
     inkscape:connector-curvature="0" /><path
 
     id="path2300"
 
     d="m 37.083999,35.4 -0.094,-1.969 4.312,-2.062 0,0.938 -4.218,3.093 z"
 
     style="fill:#ffffff;fill-rule:nonzero;stroke:none"
 
     inkscape:connector-curvature="0" /></svg>
...
 
\ No newline at end of file
 
     inkscape:connector-curvature="0" /></svg>
conservancy/static/img/sponsors/jmp.svg
Show inline comments
 
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
<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="115" height="115" viewBox="0 0 115 115" fill="none" version="1.1" id="svg46" sodipodi:docname="jmp.svg" inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
 
  <metadata id="metadata50">
 
    <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/>
 
      </cc:Work>
 
    </rdf:RDF>
 
  </metadata>
 
  <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1656" inkscape:window-height="1060" id="namedview48" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:zoom="5.7421875" inkscape:cx="73.79713" inkscape:cy="66.931973" inkscape:window-x="1088" inkscape:window-y="1092" inkscape:window-maximized="0" inkscape:current-layer="svg46"/>
 
  <g id="g59" transform="translate(-5.9920006,3.158316)">
 
    <path fill-rule="evenodd" clip-rule="evenodd" d="m 16.704825,15.9948 c -3.2129,6.2648 -3.2129,14.4714 -3.2129,30.8763 V 52.73 c 0,16.4049 0,24.6116 3.2129,30.8764 2.8256,5.5116 7.3354,9.9936 12.8812,12.8016 1.937,0.979 4.0551,1.661 6.5395,2.13 1.3223,0.251 2.2655,1.423 2.2318,2.762 l -0.1431,6.098 c -0.0253,1.13 1.3474,1.715 2.1559,0.916 l 6.3964,-6.344 c 1.558,-1.544 3.6719,-2.407 5.8742,-2.394 2.4381,0.025 5.0952,0.025 8.0134,0.025 h 5.8952 c 16.5068,0 24.7644,0 31.0681,-3.193 5.545595,-2.808 10.055595,-7.29 12.881595,-12.8016 3.213,-6.2648 3.213,-14.4715 3.213,-30.8764 v -5.8589 c 0,-16.4049 0,-24.6115 -3.213,-30.8763 -2.826,-5.5116 -7.336,-9.9936 -12.881595,-12.8017 C 91.313725,0 83.056125,0 66.549325,0 h -5.8952 c -16.5068,0 -24.7644,0 -31.0681,3.1931 -5.5458,2.8081 -10.0556,7.2901 -12.8812,12.8017 z" fill="url(#paint0_linear)" id="path2" style="fill:url(#paint0_linear)"/>
 
    <g filter="url(#filter0_f)" id="g6" transform="translate(-0.87597501,-11)">
 
      <path d="m 108.871,47.7873 c -4.309,-3.3562 -10.4736,-5.7251 -17.8188,-6.8392 -1.4007,-0.2135 -2.8248,0.1616 -3.9318,1.0364 -1.1034,0.8748 -1.7869,2.1631 -1.8832,3.5613 L 83.584,69.4622 c -0.0387,0.5423 -0.7991,0.5426 -0.8383,0.0012 L 80.746,42.1567 c -0.1964,-3.0864 -2.5224,-5.5232 -5.6722,-5.931 -3.1721,-0.4114 -6.0722,1.3687 -7.0567,4.3322 -0.0324,0.0932 -0.061,0.1903 -0.086,0.2834 l -4.5784,17.4958 c -0.2423,0.9237 -1.4808,0.9562 -1.7725,0.0459 L 56.2437,41.5769 c -0.9296,-2.9702 -3.895,-4.8506 -7.0549,-4.4726 -3.1562,0.3779 -5.5587,2.8997 -5.7107,6.0131 l -0.9297,20.4874 c -0.0241,0.5189 -0.7395,0.5613 -0.8229,0.0513 L 38.8057,46 c -0.4564,-2.774 -3.1066,-4.6694 -5.9098,-4.2294 -2.8069,0.44 -4.7077,3.0456 -4.2476,5.8234 l 4.1892,25.3251 c 0.4552,3.699 -0.6711,6.2383 -3.0205,6.7973 -2.1496,0.5105 -5.1418,-0.7582 -6.6387,-4.748 -0.9965,-2.6444 -3.96,-4.0024 -6.624,-3.0375 -2.664,0.9649 -4.0236,3.8898 -3.0345,6.5265 2.6768,7.1316 8.2539,10.7685 13.6912,11.419 1.7345,0.2061 3.4545,0.1104 5.0602,-0.2743 3.045,-0.7251 5.9596,-2.5286 8.0175,-5.3603 0.4277,-0.5889 1.3329,-0.2309 1.3,0.5087 l -0.1647,3.6592 c -0.1168,2.5904 1.9432,4.7862 4.6004,4.9128 2.6608,0.115 4.9094,-1.8789 5.0263,-4.4693 l 1.1368,-25.0295 c 0.027,-0.5924 0.8195,-0.7053 0.9999,-0.1422 l 3.5705,11.2478 c 0.8105,2.5883 3.2109,4.3548 5.9786,4.4144 0.0223,-2e-4 0.0445,-5e-4 0.0631,-6e-4 2.8008,0.0283 5.2564,-1.693 6.1188,-4.2836 0.0323,-0.0932 0.0573,-0.1902 0.0859,-0.2834 l 2.715,-10.3702 c 0.1533,-0.5783 0.9628,-0.4979 1.0063,0.1015 l 1.8391,25.1218 c 0.1783,2.4441 2.246,4.3224 4.7132,4.3736 0.1447,0.0024 0.2894,8e-4 0.4377,-0.0085 2.6539,-0.1791 4.6514,-2.418 4.4603,-5.0051 -0.0392,-0.5453 0.5134,-0.8995 0.9724,-0.6373 0.642,0.3686 1.3752,0.6007 2.1659,0.6543 0.1002,0.0066 0.2041,0.0094 0.3043,0.0122 2.6635,0.0298 4.9118,-1.9989 5.0984,-4.6597 l 0.4944,-7.142 c 0.0579,-0.825 0.6814,-1.4818 1.4707,-1.556 14.541,-1.3348 20.349,-8.6261 20.823,-14.9436 0.349,-4.737 -2.003,-9.3254 -6.634,-12.9298 z m -13.1269,17.633 c -0.8888,0.1371 -1.6722,-0.6208 -1.608,-1.5543 l 0.69,-10.0003 c 0.0677,-0.9528 0.9807,-1.5895 1.8483,-1.2813 6.1256,2.1758 8.8706,5.359 8.7216,7.3692 -0.142,1.9212 -3.242,4.4659 -9.6519,5.4667 z" fill="#013255" fill-opacity="0.2" id="path4"/>
 
    </g>
 
    <g filter="url(#filter1_f)" id="g10" transform="translate(-0.87597501,-11)">
 
      <path d="m 110.482,44.6829 c -4.503,-3.3541 -10.9466,-5.7201 -18.6251,-6.8307 -1.4642,-0.2128 -2.9532,0.163 -4.111,1.0383 -1.154,0.8754 -1.8692,2.164 -1.9705,3.5623 l -1.74,23.9173 c -0.0407,0.5423 -0.8357,0.543 -0.8764,0.0016 L 81.0817,39.0658 c -0.2038,-3.0863 -2.6343,-5.522 -5.9271,-5.9283 -3.3161,-0.4098 -6.3488,1.3717 -7.3795,4.3357 -0.0339,0.0932 -0.0639,0.1903 -0.09,0.2834 l -4.795,17.4981 c -0.2538,0.9238 -1.5487,0.9569 -1.8532,0.0468 L 55.4661,38.4979 c -0.9704,-2.9698 -4.0696,-4.8488 -7.3734,-4.4693 -3.2998,0.3795 -5.8127,2.9025 -5.9732,6.0159 l -0.9819,20.488 c -0.0254,0.5188 -0.7734,0.5616 -0.8603,0.0517 L 37.2334,42.9294 c -0.4758,-2.7738 -3.2456,-4.668 -6.1764,-4.2266 -2.9347,0.4414 -4.9231,3.0479 -4.4434,5.8255 l 4.3672,25.3232 c 0.4741,3.6988 -0.7047,6.2386 -3.1611,6.7988 -2.2476,0.5115 -5.3751,-0.7557 -6.9381,-4.7448 -1.0406,-2.644 -4.1381,-4.0005 -6.9236,-3.0343 -2.7856,0.9661 -4.20834,3.8917 -3.1756,6.528 2.795,7.1303 8.6237,10.7645 14.3079,11.4124 1.8132,0.2053 3.6115,0.1088 5.2903,-0.2767 3.1837,-0.7266 6.2317,-2.5315 8.3845,-5.3642 0.4474,-0.5892 1.3936,-0.2315 1.3589,0.508 L 39.95,85.338 c -0.1234,2.5905 2.0292,4.7853 4.8071,4.9106 2.7816,0.1137 5.1334,-1.8812 5.2568,-4.4717 l 1.2007,-25.0302 c 0.0286,-0.5924 0.8572,-0.7057 1.0455,-0.1427 l 3.7273,11.2462 c 0.8461,2.5879 3.3546,4.3532 6.2482,4.4115 0.0232,-2e-4 0.0465,-5e-4 0.0659,-7e-4 2.9281,0.027 5.4961,-1.6954 6.3989,-4.2865 0.0339,-0.0932 0.06,-0.1903 0.0901,-0.2835 l 2.8434,-10.3715 c 0.1606,-0.5784 1.0068,-0.4984 1.052,0.1011 l 1.9104,25.1209 c 0.1852,2.4441 2.346,4.3214 4.9253,4.3714 0.1513,0.0023 0.3025,7e-4 0.4575,-0.0087 2.7746,-0.1804 4.864,-2.4202 4.6656,-5.0073 -0.0408,-0.5453 0.5371,-0.8998 1.0169,-0.6378 0.6709,0.3683 1.4374,0.6001 2.2639,0.6533 0.1048,0.0066 0.2134,0.0093 0.3182,0.0121 2.7846,0.0285 5.136,-2.0013 5.3323,-4.6623 l 0.5205,-7.1423 c 0.0609,-0.825 0.7131,-1.4821 1.5383,-1.5566 15.2022,-1.3419 21.2782,-8.636 21.7762,-14.9537 0.368,-4.7373 -2.089,-9.3245 -6.929,-12.9267 z M 96.7501,62.3223 c -0.9292,0.1376 -1.7478,-0.62 -1.6803,-1.5535 L 95.796,50.7681 c 0.0712,-0.9529 1.0261,-1.59 1.933,-1.2823 6.402,2.173 9.271,5.3548 9.115,7.3652 -0.15,1.9212 -3.392,4.4674 -10.0939,5.4713 z" fill="#013255" fill-opacity="0.15" id="path8"/>
 
    </g>
 
    <path d="m 109.73502,32.1037 c -4.51,-3.3446 -10.962595,-5.7038 -18.652195,-6.8109 -1.4664,-0.2121 -2.9575,0.1626 -4.117,1.0356 -1.1557,0.873 -1.872,2.1581 -1.9735,3.5524 l -1.7436,23.8512 c -0.0408,0.5408 -0.8369,0.5415 -0.8777,0.0016 l -2.0791,-27.2301 c -0.2039,-3.0778 -2.6378,-5.5066 -5.9354,-5.9116 -3.3209,-0.4086 -6.3581,1.3682 -7.3904,4.324 -0.034,0.0929 -0.064,0.1898 -0.0902,0.2827 l -4.8027,17.4497 c -0.2542,0.9213 -1.5509,0.9544 -1.8558,0.0468 l -5.5782,-16.7568 c -0.9717,-2.9616 -4.0753,-4.8352 -7.3839,-4.4566 -3.3046,0.3786 -5.8213,2.8947 -5.9821,5.9995 l -0.9843,20.4312 c -0.0255,0.5175 -0.7745,0.5602 -0.8616,0.0517 l -3.0475,-17.6058 c -0.4763,-2.7661 -3.25,-4.6548 -6.1851,-4.2146 -2.9389,0.4403 -4.9304,3.0397 -4.4502,5.8096 l 4.3724,25.2528 c 0.4746,3.6886 -0.7059,6.2214 -3.1659,6.7801 -2.2509,0.5102 -5.3829,-0.7533 -6.948,-4.7313 -1.0419,-2.6366 -4.1438,-3.9893 -6.9335,-3.0256 -2.7896,0.9636 -4.2146,3.8811 -3.1805,6.51 2.7987,7.1105 8.6358,10.7344 14.3282,11.3802 1.8158,0.2046 3.6167,0.1083 5.298,-0.2762 3.1883,-0.7247 6.2408,-2.5248 8.3969,-5.3497 0.448,-0.5876 1.3955,-0.231 1.3608,0.5066 l -0.1744,3.6491 c -0.1237,2.5833 2.0319,4.772 4.8138,4.8968 2.7857,0.1133 5.141,-1.8763 5.2647,-4.4596 l 1.2036,-24.9608 c 0.0286,-0.5909 0.8584,-0.7039 1.047,-0.1424 l 3.7322,11.2148 c 0.8471,2.5808 3.3593,4.3411 6.257,4.3991 0.0233,-3e-4 0.0466,-5e-4 0.066,-7e-4 2.9323,0.0267 5.5042,-1.691 6.4084,-4.275 0.034,-0.0929 0.0601,-0.1897 0.0902,-0.2827 l 2.8481,-10.3429 c 0.1607,-0.5768 1.0082,-0.497 1.0535,0.1008 l 1.9119,25.0512 c 0.1855,2.4373 2.3493,4.3094 4.9323,4.3591 0.1515,0.0023 0.303,7e-4 0.4582,-0.0087 2.7787,-0.18 4.8712,-2.4137 4.6726,-4.9937 -0.0408,-0.5437 0.5379,-0.8972 1.0184,-0.636 0.6719,0.3672 1.4394,0.5984 2.2672,0.6513 0.1049,0.0066 0.2137,0.0093 0.3185,0.0121 2.7887,0.0283 5.1436,-1.996 5.3404,-4.6496 l 0.5215,-7.1225 c 0.061,-0.8227 0.7142,-1.4781 1.5406,-1.5524 15.224395,-1.3388 21.309395,-8.613 21.808395,-14.9132 0.369,-4.7242 -2.092,-9.2986 -6.938,-12.8906 z M 95.982025,49.6948 c -0.9306,0.1373 -1.7503,-0.6182 -1.6827,-1.5491 l 0.7278,-9.973 c 0.0713,-0.9502 1.0276,-1.5856 1.9358,-1.2788 6.412095,2.1666 9.284095,5.3395 9.127095,7.3443 -0.15,1.9159 -3.396,4.4552 -10.107995,5.4566 z" fill="#ffffff" id="path12"/>
 
    <path d="m 109.73402,32.1037 c -4.509,-3.3446 -10.961795,-5.7038 -18.651395,-6.8109 -1.4664,-0.2121 -2.9575,0.1626 -4.1171,1.0356 -1.1556,0.873 -1.8719,2.1581 -1.9734,3.5524 l -1.7437,23.8512 c -0.0408,0.5408 -0.8369,0.5415 -0.8776,0.0016 l -2.0791,-27.2301 c -0.204,-3.0778 -2.6379,-5.5066 -5.9354,-5.9116 -3.3209,-0.4086 -6.3582,1.3682 -7.3905,4.324 -0.0339,0.0929 -0.0639,0.1898 -0.0901,0.2827 l -4.8028,17.4497 c -0.2542,0.9213 -1.5509,0.9544 -1.8558,0.0468 l -5.5782,-16.7568 c -0.9716,-2.9616 -4.0752,-4.8352 -7.3838,-4.4566 -3.3047,0.3786 -5.8213,2.8947 -5.9821,5.9995 l -0.9843,20.4312 c -0.0255,0.5175 -0.7746,0.5602 -0.8616,0.0517 l -3.0475,-17.6058 c -0.4763,-2.7661 -3.25,-4.6548 -6.1851,-4.2146 -2.939,0.4403 -4.9305,3.0397 -4.4502,5.8096 l 4.3724,25.2528 c 0.4746,3.6886 -0.706,6.2214 -3.166,6.7801 -2.2508,0.5102 -5.3828,-0.7533 -6.9479,-4.7313 -1.042,-2.6366 -4.1439,-3.9893 -6.9335,-3.0256 -2.7897,0.9636 -4.21465,3.8811 -3.1806,6.51 2.7988,7.1105 8.6358,10.7344 14.3282,11.3802 1.8158,0.2046 3.6167,0.1083 5.298,-0.2762 3.1884,-0.7247 6.2409,-2.5248 8.3969,-5.3497 0.4481,-0.5876 1.3956,-0.231 1.3608,0.5066 l -0.1744,3.6491 c -0.1237,2.5833 2.0319,4.772 4.8138,4.8968 2.7857,0.1133 5.1411,-1.8763 5.2647,-4.4596 l 1.2036,-24.9608 c 0.0286,-0.5909 0.8585,-0.7039 1.047,-0.1424 l 3.7322,11.2148 c 0.8472,2.5808 3.3593,4.3411 6.257,4.3991 0.0233,-3e-4 0.0466,-5e-4 0.066,-7e-4 2.9324,0.0267 5.5042,-1.691 6.4085,-4.275 0.0339,-0.0929 0.0601,-0.1897 0.0901,-0.2827 l 2.8481,-10.3429 c 0.1608,-0.5768 1.0083,-0.497 1.0535,0.1008 l 1.912,25.0512 c 0.1854,2.4373 2.3492,4.3094 4.9323,4.3591 0.1515,0.0023 0.3029,7e-4 0.4582,-0.0087 2.7786,-0.18 4.8711,-2.4137 4.6725,-4.9937 -0.0408,-0.5437 0.5379,-0.8972 1.0184,-0.636 0.6719,0.3672 1.4395,0.5984 2.2672,0.6513 0.1049,0.0066 0.2137,0.0093 0.3186,0.0121 2.7887,0.0283 5.1436,-1.996 5.3403,-4.6496 l 0.5215,-7.1225 c 0.0611,-0.8227 0.7142,-1.4781 1.5406,-1.5524 15.224695,-1.3388 21.309695,-8.613 21.808695,-14.9132 0.369,-4.7242 -2.092,-9.2986 -6.939,-12.8906 z M 95.981725,49.6948 c -0.9305,0.1373 -1.7503,-0.6182 -1.6826,-1.5491 l 0.7277,-9.973 c 0.0714,-0.9502 1.0277,-1.5856 1.9358,-1.2788 6.411395,2.1666 9.284395,5.3395 9.127395,7.3443 -0.15,1.9159 -3.397,4.4552 -10.108295,5.4566 z" fill="url(#paint1_linear)" id="path14" style="fill:url(#paint1_linear)"/>
 
  </g>
 
  <defs id="defs44">
 
    <filter id="filter0_f" x="0.87597501" y="23.846201" width="126.984" height="82.4785" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
 
      <feFlood flood-opacity="0" result="BackgroundImageFix" id="feFlood16"/>
 
      <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" id="feBlend18"/>
 
      <feGaussianBlur stdDeviation="6.1604" result="effect1_foregroundBlur" id="feGaussianBlur20"/>
 
    </filter>
 
    <filter id="filter1_f" x="4.9011998" y="27.5347" width="118.09" height="68.923401" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
 
      <feFlood flood-opacity="0" result="BackgroundImageFix" id="feFlood23"/>
 
      <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" id="feBlend25"/>
 
      <feGaussianBlur stdDeviation="2.77218" result="effect1_foregroundBlur" id="feGaussianBlur27"/>
 
    </filter>
 
    <linearGradient id="paint0_linear" x1="64.477699" y1="11" x2="64.477699" y2="106.835" gradientUnits="userSpaceOnUse" gradientTransform="translate(-0.87597501,-11)">
 
      <stop stop-color="#93D2FF" id="stop30"/>
 
      <stop offset="0.229167" stop-color="#4A9BD5" id="stop32"/>
 
      <stop offset="0.7188" stop-color="#398BD7" id="stop34"/>
 
      <stop offset="1" stop-color="#1960CC" id="stop36"/>
 
    </linearGradient>
 
    <linearGradient id="paint1_linear" x1="63.664001" y1="31.646099" x2="64.276802" y2="89.372299" gradientUnits="userSpaceOnUse" gradientTransform="translate(-0.87597501,-11)">
 
      <stop stop-color="white" stop-opacity="0" id="stop39"/>
 
      <stop offset="1" stop-color="#8DCDFC" stop-opacity="0.24" id="stop41"/>
 
    </linearGradient>
 
  </defs>
 
</svg>
...
 
\ No newline at end of file
 
</svg>
conservancy/static/img/supporter-card-1.svg
Show inline comments
...
 
@@ -709,385 +709,385 @@
 
     d="m 484.162,157.85416 c -2.46971,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99785,2.65176 4.46756,2.65176 2.4697,0 4.4928,-1.18584 4.4928,-2.65176 0,-1.46591 -2.0231,-2.65176 -4.4928,-2.65176 z"
 
     id="path5061"
 
     inkscape:connector-curvature="0" /><path
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     d="m 496.25217,157.85416 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
     id="path5063"
 
     inkscape:connector-curvature="0" /><path
 
     id="path5954"
 
     d="m 396.9643,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.46971,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99785,-2.65176 -4.46756,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path5956"
 
     d="m 409.05448,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path5958"
 
     d="m 421.14465,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.46972,0 4.46758,-1.18584 4.46758,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46758,-2.65176 z"
 
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path5960"
 
     d="m 433.23484,147.45898 c -2.46972,0 -4.4928,1.18584 -4.4928,2.65176 0,1.46591 2.02309,2.65175 4.4928,2.65175 2.46971,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path5962"
 
     d="m 445.29977,147.45898 c -2.46969,0 -4.46755,1.18584 -4.46755,2.65176 0,1.46591 1.99786,2.65175 4.46755,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path5964"
 
     d="m 457.38996,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path5966"
 
     d="m 469.48014,147.45898 c -2.46972,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99785,2.65175 4.46756,2.65175 2.46969,0 4.46755,-1.18584 4.46755,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46755,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path5968"
 
     d="m 481.57031,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.46971,0 4.46757,-1.18584 4.46757,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46757,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path5970"
 
     d="m 493.63526,147.45898 c -2.46972,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99785,2.65175 4.46756,2.65175 2.4697,0 4.4928,-1.18584 4.4928,-2.65175 0,-1.46592 -2.0231,-2.65176 -4.4928,-2.65176 z"
 
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path5972"
 
     d="m 505.72542,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.46971,0 4.46757,-1.18584 4.46757,-2.65175 0,-1.46592 -1.99785,-2.65176 -4.46757,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     d="m 406.43756,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46756,-2.65175 z"
 
     id="path5986"
 
     inkscape:connector-curvature="0" /><path
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     d="m 418.52773,137.19351 c -2.46969,0 -4.46755,1.18584 -4.46755,2.65175 0,1.46592 1.99786,2.65176 4.46755,2.65176 2.46972,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99785,-2.65175 -4.46756,-2.65175 z"
 
     id="path5988"
 
     inkscape:connector-curvature="0" /><path
 
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     d="m 430.61792,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46757,-1.18584 4.46757,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46757,-2.65175 z"
 
     id="path5990"
 
     inkscape:connector-curvature="0" /><path
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     d="m 442.7081,137.19351 c -2.4697,0 -4.4928,1.18584 -4.4928,2.65175 0,1.46592 2.0231,2.65176 4.4928,2.65176 2.46971,0 4.46755,-1.18584 4.46755,-2.65176 0,-1.46591 -1.99785,-2.65175 -4.46755,-2.65175 z"
 
     id="path5992"
 
     inkscape:connector-curvature="0" /><path
 
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     d="m 454.77304,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46756,-2.65175 z"
 
     id="path5994"
 
     inkscape:connector-curvature="0" /><path
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     d="m 466.86322,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46756,-2.65175 z"
 
     id="path5996"
 
     inkscape:connector-curvature="0" /><path
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     d="m 478.95339,137.19351 c -2.46971,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46756,-2.65175 z"
 
     id="path5998"
 
     inkscape:connector-curvature="0" /><path
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     d="m 491.04356,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46972,0 4.46758,-1.18584 4.46758,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46758,-2.65175 z"
 
     id="path6000"
 
     inkscape:connector-curvature="0" /><path
 
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     d="m 503.10851,137.19351 c -2.4697,0 -4.46755,1.18584 -4.46755,2.65175 0,1.46592 1.99785,2.65176 4.46755,2.65176 2.4697,0 4.4928,-1.18584 4.4928,-2.65176 0,-1.46591 -2.0231,-2.65175 -4.4928,-2.65175 z"
 
     id="path6002"
 
     inkscape:connector-curvature="0" /><path
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     d="m 515.19869,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99785,2.65176 4.46756,2.65176 2.46971,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99785,-2.65175 -4.46756,-2.65175 z"
 
     id="path6004"
 
     inkscape:connector-curvature="0" /><path
 
     id="path6016"
 
     d="m 415.91083,126.92803 c -2.46971,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99785,2.65175 4.46756,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path6018"
 
     d="m 428.001,126.92803 c -2.46969,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99787,2.65175 4.46756,2.65175 2.46971,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path6020"
 
     d="m 440.09118,126.92803 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.46971,0 4.46757,-1.18584 4.46757,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46757,-2.65176 z"
 
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path6022"
 
     d="m 452.18136,126.92803 c -2.4697,0 -4.4928,1.18584 -4.4928,2.65176 0,1.46591 2.0231,2.65175 4.4928,2.65175 2.46971,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99785,-2.65176 -4.46756,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path6024"
 
     d="m 464.2463,126.92803 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path6026"
 
     d="m 476.33647,126.92803 c -2.46969,0 -4.46755,1.18584 -4.46755,2.65176 0,1.46591 1.99786,2.65175 4.46755,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path6028"
 
     d="m 488.42666,126.92803 c -2.46971,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99785,2.65175 4.46756,2.65175 2.46971,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path6030"
 
     d="m 500.51683,126.92803 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.4697,0 4.46757,-1.18584 4.46757,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46757,-2.65176 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path6032"
 
     d="m 512.58177,126.92803 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99785,2.65175 4.46756,2.65175 2.4697,0 4.4928,-1.18584 4.4928,-2.65175 0,-1.46592 -2.0231,-2.65176 -4.4928,-2.65176 z"
 
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><g
 
     transform="translate(1.1591,-0.85910067)"
 
     id="g4917"><path
 
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
       d="m 376.78408,169.03811 c -2.46969,0 -4.46755,1.18585 -4.46755,2.65176 0,1.46592 1.99786,2.65176 4.46755,2.65176 2.46972,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99785,-2.65176 -4.46756,-2.65176 z"
 
       id="path4897"
 
       inkscape:connector-curvature="0" /><path
 
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
       d="m 388.87427,169.03811 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
       id="path4899"
 
       inkscape:connector-curvature="0" /><path
 
       style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
       d="m 400.96445,169.03811 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46757,-1.18584 4.46757,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46757,-2.65176 z"
 
       id="path4901"
 
       inkscape:connector-curvature="0" /><path
 
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
       d="m 413.05463,169.03811 c -2.46971,0 -4.4928,1.18585 -4.4928,2.65176 0,1.46592 2.02309,2.65176 4.4928,2.65176 2.46971,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99785,-2.65176 -4.46756,-2.65176 z"
 
       id="path4903"
 
       inkscape:connector-curvature="0" /><path
 
       style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
       d="m 425.11957,169.03811 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
       id="path4905"
 
       inkscape:connector-curvature="0" /><path
 
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
       d="m 437.20974,169.03811 c -2.46969,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99787,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
       id="path4907"
 
       inkscape:connector-curvature="0" /><path
 
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
       d="m 449.29993,169.03811 c -2.46971,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99785,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
       id="path4909"
 
       inkscape:connector-curvature="0" /><path
 
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
       d="m 461.3901,169.03811 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46757,-1.18584 4.46757,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46757,-2.65176 z"
 
       id="path4911"
 
       inkscape:connector-curvature="0" /><path
 
       style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
       d="m 473.45505,169.03811 c -2.46971,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99785,2.65176 4.46756,2.65176 2.4697,0 4.4928,-1.18584 4.4928,-2.65176 0,-1.46591 -2.0231,-2.65176 -4.4928,-2.65176 z"
 
       id="path4913"
 
       inkscape:connector-curvature="0" /><path
 
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
       d="m 485.54522,169.03811 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
 
       id="path4915"
 
       inkscape:connector-curvature="0" /></g></g><rect
 
   y="153.92546"
 
   x="-678.02777"
 
   height="96.396141"
 
   width="225.13371"
 
   id="rect5097"
 
   style="fill:url(#linearGradient4218);fill-opacity:1;stroke:none"
 
   transform="matrix(-1,0,-0.67470157,0.73809064,0,0)" /><g
 
   id="g5852"
 
   transform="matrix(0.59843688,0,0,0.35143336,-17.575647,-0.07027742)"><rect
 
     y="506.99512"
 
     x="0"
 
     height="12.072122"
 
     width="991.79999"
 
     id="rect5567"
 
     style="fill:#999999;fill-opacity:1;stroke:none" /><rect
 
     y="519.06726"
 
     x="0"
 
     height="12.072122"
 
     width="991.79999"
 
     id="rect5571"
 
     style="fill:#afe478;fill-opacity:1;stroke:none"
 
     inkscape:transform-center-y="-22.18083" /></g><path
 
   inkscape:connector-curvature="0"
 
   id="path3476"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 2.766227,205.75006 c -3.8e-6,0.11555 -0.037857,0.22468 -0.1135578,0.32739 -0.075709,0.10271 -0.1838591,0.19258 -0.3244511,0.26961 -0.1297838,0.077 -0.2811941,0.13802 -0.4542316,0.18295 -0.1730434,0.0449 -0.3568989,0.0674 -0.5515669,0.0674 -0.4001585,0 -0.74083188,-0.0803 -1.02202123,-0.24073 -0.27037705,-0.16691 -0.4055649,-0.36911 -0.40556394,-0.60663 -9.6e-7,-0.11555 0.03785164,-0.22146 0.1135579,-0.31776 0.07570412,-0.10271 0.17844689,-0.18937 0.3082286,-0.25998 0.129779,-0.077 0.28118933,-0.13802 0.45423162,-0.18295 0.17303861,-0.0449 0.35689405,-0.0674 0.55156705,-0.0674 0.194668,0 0.3785235,0.0225 0.5515669,0.0674 0.1730375,0.0449 0.3244478,0.10591 0.4542316,0.18295 0.140592,0.0707 0.2487422,0.15727 0.3244511,0.25998 0.075702,0.0963 0.1135539,0.20221 0.1135578,0.31776" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3478"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 7.503214,205.75006 c -3.8e-6,0.11555 -0.037857,0.22468 -0.1135578,0.32739 -0.075709,0.10271 -0.1838592,0.19258 -0.3244512,0.26961 -0.1297838,0.077 -0.281194,0.13802 -0.4542316,0.18295 -0.1730433,0.0449 -0.3568988,0.0674 -0.5515669,0.0674 -0.4001584,0 -0.7408318,-0.0803 -1.0220212,-0.24073 -0.270377,-0.16691 -0.4055648,-0.36911 -0.4055639,-0.60663 -9e-7,-0.11555 0.037852,-0.22146 0.1135577,-0.31776 0.075705,-0.10271 0.1784469,-0.18937 0.3082287,-0.25998 0.1297786,-0.077 0.2811893,-0.13802 0.4542316,-0.18295 0.1730386,-0.0449 0.3568941,-0.0674 0.5515669,-0.0674 0.1946682,0 0.3785237,0.0225 0.551567,0.0674 0.1730376,0.0449 0.3244479,0.10591 0.4542316,0.18295 0.140592,0.0707 0.2487423,0.15727 0.3244512,0.25998 0.075702,0.0963 0.1135539,0.20221 0.1135578,0.31776" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3480"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 12.240201,205.75006 c -4e-6,0.11555 -0.03786,0.22468 -0.113558,0.32739 -0.07571,0.10271 -0.183859,0.19258 -0.324451,0.26961 -0.129784,0.077 -0.281194,0.13802 -0.454231,0.18295 -0.173044,0.0449 -0.356899,0.0674 -0.551567,0.0674 -0.400159,0 -0.740832,-0.0803 -1.0220215,-0.24073 -0.2703771,-0.16691 -0.405565,-0.36911 -0.405564,-0.60663 -10e-7,-0.11555 0.037852,-0.22146 0.1135578,-0.31776 0.075705,-0.10271 0.1784469,-0.18937 0.3082286,-0.25998 0.1297786,-0.077 0.2811891,-0.13802 0.4542321,-0.18295 0.173038,-0.0449 0.356894,-0.0674 0.551567,-0.0674 0.194668,0 0.378523,0.0225 0.551566,0.0674 0.173038,0.0449 0.324448,0.10591 0.454232,0.18295 0.140592,0.0707 0.248742,0.15727 0.324451,0.25998 0.0757,0.0963 0.113554,0.20221 0.113558,0.31776" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3482"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 18.82656,192.75087 -0.06489,3.19683 3.228288,0 0,1.22289 -3.260734,0 -0.227115,9.44608 -1.995374,0 -0.129786,-9.44608 -3.650075,0 0,-1.22289 3.650075,0 -0.03245,-3.29313 2.482051,0.0963" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3484"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 31.842653,206.53964 c -0.08654,-0.97574 -0.173052,-1.84235 -0.259561,-2.59983 -0.07571,-0.76391 -0.146015,-1.40905 -0.210893,-1.93544 -0.07571,-0.61626 -0.151422,-1.15548 -0.227116,-1.61768 -0.09735,-0.77674 -0.26498,-1.3609 -0.5029,-1.75249 -0.237941,-0.39799 -0.54617,-0.59698 -0.924685,-0.59699 -0.356906,1e-5 -0.730024,0.13802 -1.119357,0.41404 -0.378534,0.27604 -0.75706,0.64194 -1.135579,1.09771 -0.378534,0.45578 -0.746244,0.97896 -1.103134,1.56953 -0.346087,0.58417 -0.66513,1.18759 -0.957131,1.81026 -0.281196,0.62268 -0.529941,1.23574 -0.746238,1.83915 -0.216305,0.60342 -0.37853,1.15227 -0.486677,1.64657 l -2.157599,0.0481 c -3e-6,-2.28529 -0.02704,-4.28492 -0.08111,-5.99889 -0.04326,-1.71396 -0.09192,-3.14226 -0.146002,-4.28492 -0.05407,-1.14263 -0.108148,-1.99962 -0.162226,-2.57095 -0.04326,-0.57131 -0.0703,-0.85698 -0.08111,-0.85699 l 2.79028,0.0771 0,8.03062 c 0.237927,-0.39158 0.470451,-0.73501 0.69757,-1.03031 0.227112,-0.29528 0.427189,-0.54243 0.600236,-0.74144 0.194664,-0.23109 0.383927,-0.43009 0.567788,-0.59699 0.324445,-0.30813 0.665118,-0.58416 1.022021,-0.82811 0.356889,-0.24392 0.719193,-0.44934 1.086913,-0.61625 0.378517,-0.17332 0.746228,-0.30492 1.103133,-0.39479 0.367702,-0.0899 0.724598,-0.1348 1.070689,-0.13481 0.681337,1e-5 1.23831,0.18938 1.670924,0.56811 0.432589,0.37233 0.751632,0.96612 0.95713,1.78137 0.173028,0.65478 0.324438,1.38017 0.454232,2.17617 0.118947,0.68046 0.227103,1.48287 0.324451,2.40725 0.09732,0.92439 0.156804,1.92902 0.178448,3.01389 l -2.22249,0.0771" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3486"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 47.859919,201.2533 c -0.02164,0.64836 -0.05409,1.2935 -0.09734,1.93544 -0.02164,0.27604 -0.04327,0.5649 -0.06489,0.86661 -0.02164,0.30171 -0.04869,0.60663 -0.08111,0.91476 -0.02165,0.30171 -0.05409,0.60021 -0.09734,0.8955 -0.03246,0.29529 -0.0649,0.57132 -0.09734,0.8281 l -2.222491,-0.0385 c 0.02163,-0.18617 0.03784,-0.36912 0.04866,-0.54886 0.01077,-0.17975 0.01621,-0.35949 0.01622,-0.53923 -0.486689,0.30813 -1.000402,0.54886 -1.541144,0.72218 -0.540762,0.17332 -1.054475,0.30492 -1.541143,0.39479 -0.56239,0.10913 -1.119364,0.17974 -1.670923,0.21184 -0.118973,0.0129 -0.232531,0.0193 -0.340675,0.0193 -0.09734,0 -0.205491,0 -0.324451,0 -0.757057,0 -1.481664,-0.0642 -2.173822,-0.19259 -0.692166,-0.12196 -1.308623,-0.31133 -1.849372,-0.56811 -0.529938,-0.25677 -0.957132,-0.57774 -1.281582,-0.9629 -0.313636,-0.39158 -0.470454,-0.85056 -0.470454,-1.37695 0,-0.4622 0.151411,-0.8955 0.454232,-1.29992 0.313635,-0.41084 0.746235,-0.76711 1.297804,-1.06883 0.562379,-0.30812 1.238319,-0.55206 2.02782,-0.7318 0.789493,-0.17974 1.665511,-0.27603 2.628054,-0.28888 0.03244,1e-5 0.216295,0.006 0.551568,0.0193 0.335258,0.0129 0.740821,0.0546 1.216691,0.12518 0.486668,0.0642 1.00579,0.17012 1.557365,0.31776 0.562373,0.14123 1.081494,0.34023 1.557367,0.597 -1.3e-5,-0.28886 -0.01077,-0.59378 -0.03245,-0.91476 -0.02164,-0.32096 -0.07571,-0.63551 -0.162226,-0.94364 -0.07571,-0.31454 -0.20009,-0.61304 -0.373119,-0.89551 -0.173052,-0.28243 -0.410982,-0.52958 -0.713792,-0.74143 -0.292017,-0.21825 -0.665136,-0.38836 -1.119356,-0.51034 -0.454242,-0.12838 -1.005808,-0.19257 -1.654701,-0.19258 -0.508314,10e-6 -0.973361,0.0578 -1.39514,0.17333 -0.421793,0.11555 -0.794912,0.27283 -1.119357,0.47181 -0.324456,0.19901 -0.594832,0.43653 -0.811128,0.71256 -0.216305,0.26962 -0.378531,0.5617 -0.486677,0.87623 l -2.72539,-0.51996 c 0.129785,-0.3659 0.313635,-0.69008 0.551568,-0.97253 0.248743,-0.28245 0.524527,-0.52959 0.827349,-0.74144 0.313634,-0.21183 0.643493,-0.39157 0.989577,-0.53923 0.356892,-0.15405 0.708381,-0.28244 1.054465,-0.38516 0.811123,-0.2375 1.687141,-0.38194 2.628056,-0.4333 1.297795,1e-5 2.395521,0.11556 3.293178,0.34665 0.897637,0.2311 1.622244,0.57132 2.173824,1.02067 0.562368,0.44936 0.962524,1.00464 1.200468,1.66582 0.248732,0.66121 0.373105,1.42511 0.373119,2.29172 m -2.530718,2.67687 c -1.2e-5,-0.12839 0.0055,-0.25356 0.01622,-0.37554 0.01077,-0.12838 0.01621,-0.25035 0.01622,-0.3659 -0.573209,-0.34664 -1.140998,-0.60984 -1.703369,-0.78958 -0.551577,-0.17974 -1.054475,-0.31455 -1.508699,-0.40442 -0.51913,-0.1027 -1.022028,-0.16048 -1.508697,-0.17332 -0.670538,0 -1.249143,0.0578 -1.735813,0.17332 -0.475867,0.10913 -0.870616,0.25678 -1.184247,0.44294 -0.302825,0.18616 -0.529941,0.398 -0.681348,0.63551 -0.140598,0.23752 -0.210897,0.48466 -0.210893,0.74144 -4e-6,0.26319 0.08111,0.50071 0.243339,0.71254 0.162222,0.21185 0.389337,0.39159 0.681347,0.53923 0.302816,0.14765 0.66512,0.2632 1.086912,0.34665 0.432595,0.077 0.913864,0.11555 1.443807,0.11555 0.519115,-0.0257 1.059865,-0.0963 1.622256,-0.21184 0.486667,-0.10271 1.022012,-0.25999 1.606033,-0.47182 0.594817,-0.21826 1.200458,-0.52318 1.816926,-0.91476" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3488"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 53.348745,192.75087 -0.06489,3.19683 3.228288,0 0,1.22289 -3.260734,0 -0.227115,9.44608 -1.995374,0 -0.129785,-9.44608 -3.650076,0 0,-1.22289 3.650076,0 -0.03245,-3.29313 2.482051,0.0963" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3490"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 57.92911,197.6039 -1.573587,0 -0.697572,-5.0071 2.271159,0 0,5.0071" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3492"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 68.073809,199.6934 c 0.02162,-0.0578 0.03244,-0.11555 0.03245,-0.17333 -1e-5,-0.0642 -1e-5,-0.13159 0,-0.2022 -1e-5,-0.32738 -0.08112,-0.6323 -0.243339,-0.91476 -0.151419,-0.28887 -0.373127,-0.53922 -0.665124,-0.75107 -0.2812,-0.21825 -0.627282,-0.38836 -1.038243,-0.51034 -0.41098,-0.12838 -0.865212,-0.19257 -1.362696,-0.19257 -0.573203,0 -1.092324,0.0449 -1.557365,0.1348 -0.465052,0.0835 -0.865208,0.20864 -1.200469,0.37553 -0.324456,0.16692 -0.578608,0.37554 -0.762461,0.62589 -0.183859,0.24394 -0.275787,0.5296 -0.275783,0.85699 -4e-6,0.18616 0.0757,0.37875 0.227115,0.57773 0.162222,0.19259 0.400154,0.37555 0.713794,0.54886 0.313631,0.17333 0.697565,0.3274 1.151801,0.4622 0.46504,0.13481 1.005792,0.23109 1.622256,0.28886 1.157201,0.11556 2.098108,0.28567 2.822724,0.51034 0.735413,0.21827 1.308609,0.46542 1.719593,0.74144 0.421773,0.27603 0.708371,0.5617 0.859795,0.85698 0.151398,0.2953 0.227103,0.57133 0.227116,0.8281 -1.3e-5,0.16049 -0.03246,0.34344 -0.09734,0.54886 -0.05409,0.20541 -0.162239,0.41726 -0.324451,0.63551 -0.162237,0.21827 -0.389354,0.43331 -0.681348,0.64514 -0.281202,0.20543 -0.648912,0.39159 -1.103133,0.55849 -0.454243,0.16048 -1.000401,0.29208 -1.638479,0.39479 -0.62728,0.10271 -1.373518,0.15407 -2.238713,0.15407 -0.08652,0 -0.281197,-0.006 -0.584012,-0.0193 -0.292012,-0.0129 -0.6435,-0.0546 -1.054467,-0.12518 -0.400161,-0.0706 -0.832761,-0.17653 -1.297804,-0.31776 -0.454235,-0.14122 -0.886836,-0.34022 -1.297804,-0.59699 -0.410973,-0.25678 -0.773278,-0.58096 -1.086911,-0.97254 -0.302823,-0.39158 -0.5029,-0.86982 -0.600236,-1.43473 l 2.6605,-0.0866 c 0.0757,0.37232 0.210889,0.68366 0.405564,0.93401 0.205481,0.25036 0.438005,0.45899 0.69757,0.62589 0.270371,0.16048 0.546154,0.28566 0.82735,0.37553 0.292,0.0899 0.562376,0.15728 0.811128,0.20221 0.259554,0.0385 0.475855,0.061 0.648903,0.0674 0.183849,0.006 0.291998,0.01 0.324451,0.01 0.454224,-0.006 0.865195,-0.0514 1.232915,-0.13481 0.378517,-0.0899 0.697561,-0.2022 0.957131,-0.33701 0.25955,-0.13481 0.459629,-0.28887 0.600234,-0.4622 0.140586,-0.17974 0.210883,-0.36269 0.210893,-0.54885 -10e-6,-0.16048 -0.04867,-0.31776 -0.146003,-0.47183 -0.09735,-0.15406 -0.281201,-0.29849 -0.551567,-0.4333 -0.25957,-0.14123 -0.621874,-0.26961 -1.086912,-0.38517 -0.454239,-0.11554 -1.043658,-0.21825 -1.768259,-0.30812 -1.168029,-0.1348 -2.130566,-0.3338 -2.887615,-0.59701 -0.74624,-0.2696 -1.341067,-0.56168 -1.784481,-0.87623 -0.443418,-0.32096 -0.751646,-0.64514 -0.924685,-0.97254 -0.173042,-0.32738 -0.259563,-0.62266 -0.259561,-0.88587 -2e-6,-0.39157 0.11356,-0.78957 0.340673,-1.194 0.227114,-0.41083 0.594826,-0.78315 1.103134,-1.11697 0.519119,-0.34021 1.195059,-0.61624 2.02782,-0.82809 0.832752,-0.21825 1.860181,-0.32738 3.082285,-0.32739 1.157201,0.0449 2.190037,0.20222 3.098509,0.47182 0.389331,0.11556 0.767857,0.26321 1.13558,0.44294 0.378513,0.17333 0.713779,0.38838 1.005798,0.64514 0.291993,0.25678 0.524516,0.55849 0.69757,0.90513 0.183842,0.34024 0.27577,0.73503 0.275784,1.18437 -1.4e-5,0.0963 -0.01077,0.19901 -0.03245,0.30813 -0.01077,0.10272 -0.02705,0.20863 -0.04866,0.31776 l -2.920061,-0.0578" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3494"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 94.201463,200.63705 c -1.8e-5,0.48145 -0.03246,0.96932 -0.09734,1.46361 -0.05409,0.49429 -0.146021,0.97253 -0.275783,1.43473 -0.129798,0.46219 -0.302838,0.89549 -0.519122,1.29992 -0.216318,0.40442 -0.481286,0.76068 -0.794906,1.06882 -0.313652,0.3017 -0.686771,0.53922 -1.119356,0.71254 -0.432616,0.17333 -0.9247,0.25999 -1.476252,0.25999 -0.616471,0 -1.151816,-0.11555 -1.606035,-0.34665 -0.454243,-0.23109 -0.838176,-0.52318 -1.151801,-0.87624 -0.313646,-0.35307 -0.5678,-0.74143 -0.76246,-1.16511 -0.194681,-0.4301 -0.340683,-0.84414 -0.43801,-1.24215 -0.140604,0.44294 -0.319053,0.88267 -0.535344,1.31918 -0.216309,0.4301 -0.47587,0.81847 -0.778682,1.16511 -0.302829,0.34023 -0.654317,0.61626 -1.054467,0.8281 -0.400163,0.21184 -0.848987,0.31776 -1.346472,0.31776 -0.919283,0 -1.670927,-0.17974 -2.254935,-0.53923 -0.584015,-0.35948 -1.043655,-0.84093 -1.378918,-1.44435 -0.324452,-0.60984 -0.551569,-1.31275 -0.681348,-2.10876 -0.118973,-0.796 -0.178449,-1.63051 -0.178447,-2.50355 -2e-6,-0.25035 0.0055,-0.52959 0.01622,-0.83773 0.01077,-0.31454 0.02704,-0.63229 0.04866,-0.95327 0.02162,-0.32738 0.04326,-0.64514 0.06489,-0.95328 0.03245,-0.31453 0.06489,-0.59377 0.09734,-0.83772 l 3.22829,-0.077 c -0.09733,0.43011 -0.194676,0.89231 -0.292007,1.38659 -0.08652,0.48788 -0.162229,0.98538 -0.227115,1.4925 -0.0649,0.50714 -0.118973,1.00784 -0.162226,1.50213 -0.03245,0.4943 -0.04867,0.9597 -0.04866,1.39621 -4e-6,0.0834 0.01077,0.21826 0.03245,0.40442 0.03244,0.18616 0.0757,0.39801 0.129785,0.63551 0.06489,0.23111 0.140591,0.47183 0.227115,0.72219 0.08651,0.24393 0.189259,0.47182 0.308229,0.68366 0.129772,0.20542 0.275778,0.37553 0.438009,0.51034 0.16222,0.12838 0.346075,0.19257 0.551568,0.19257 0.227109,0 0.438002,-0.0995 0.632678,-0.2985 0.20548,-0.19899 0.394742,-0.4654 0.56779,-0.7992 0.173034,-0.33381 0.329851,-0.71576 0.470455,-1.14586 0.151403,-0.43652 0.28659,-0.88587 0.405563,-1.34807 0.11896,-0.46219 0.227108,-0.92438 0.324451,-1.38658 0.09732,-0.46218 0.17844,-0.88907 0.243339,-1.28066 0.06489,-0.39799 0.113547,-0.74142 0.146004,-1.0303 0.04325,-0.28887 0.07028,-0.49429 0.08111,-0.61627 l 2.579387,-0.077 c -0.02164,0.17333 -0.03786,0.37875 -0.04866,0.61626 -0.01077,0.23752 -0.02164,0.48146 -0.03245,0.7318 -1.2e-5,0.24394 -0.0055,0.48467 -0.01622,0.72218 -1.2e-5,0.2311 -1.2e-5,0.43332 0,0.60663 -1.2e-5,0.13481 0.01621,0.35628 0.04866,0.6644 0.03244,0.30172 0.0811,0.64195 0.146003,1.02068 0.06487,0.37233 0.156806,0.7607 0.275783,1.16511 0.11896,0.40443 0.259549,0.77354 0.421786,1.10734 0.162214,0.32739 0.356884,0.60021 0.584013,0.81847 0.227103,0.21184 0.486663,0.31776 0.778683,0.31776 0.194657,-0.0257 0.373105,-0.11875 0.535344,-0.27924 0.162212,-0.16048 0.302806,-0.35628 0.421787,-0.58737 0.118947,-0.23109 0.221694,-0.48145 0.308228,-0.75107 0.08651,-0.27603 0.156803,-0.53601 0.210893,-0.77995 0.05406,-0.25035 0.09191,-0.47182 0.11356,-0.6644 0.03242,-0.19258 0.04865,-0.32418 0.04866,-0.39479 -1.5e-5,-0.41084 -0.01624,-0.85056 -0.04866,-1.31918 -0.03246,-0.46861 -0.07572,-0.94364 -0.129785,-1.4251 -0.05409,-0.48144 -0.118986,-0.95648 -0.194671,-1.4251 -0.07572,-0.4686 -0.151425,-0.90511 -0.227115,-1.30955 l 2.98495,-0.11555 c 0.06487,0.30814 0.118947,0.65158 0.162226,1.03031 0.05406,0.37233 0.09732,0.75429 0.129785,1.14586 0.03242,0.38517 0.05946,0.76712 0.08111,1.14585 0.02161,0.37233 0.03242,0.71577 0.03245,1.03031" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3496"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 105.5953,206.53964 c -0.0865,-0.97574 -0.17305,-1.84235 -0.25956,-2.59983 -0.0757,-0.76391 -0.14601,-1.40905 -0.21089,-1.93544 -0.0757,-0.61626 -0.15142,-1.15548 -0.22712,-1.61768 -0.0973,-0.77674 -0.26498,-1.3609 -0.5029,-1.75249 -0.23794,-0.39799 -0.54617,-0.59698 -0.92468,-0.59699 -0.35691,1e-5 -0.73003,0.13802 -1.11936,0.41404 -0.37853,0.27604 -0.75706,0.64194 -1.13558,1.09771 -0.37853,0.45578 -0.74624,0.97896 -1.10313,1.56953 -0.346089,0.58417 -0.665133,1.18759 -0.957133,1.81026 -0.281196,0.62268 -0.529941,1.23574 -0.746238,1.83915 -0.216304,0.60342 -0.37853,1.15227 -0.486676,1.64657 l -2.1576,0.0481 c -3e-6,-2.28529 -0.02704,-4.28492 -0.08111,-5.99889 -0.04326,-1.71396 -0.09194,-3.14226 -0.146002,-4.28492 -0.05407,-1.14263 -0.108148,-1.99962 -0.162226,-2.57095 -0.04326,-0.57131 -0.0703,-0.85698 -0.08111,-0.85699 l 2.790279,0.0771 0,8.03062 c 0.237927,-0.39158 0.470451,-0.73501 0.69757,-1.03031 0.227112,-0.29528 0.427189,-0.54243 0.600236,-0.74144 0.194665,-0.23109 0.383927,-0.43009 0.567789,-0.59699 0.324442,-0.30813 0.665122,-0.58416 1.022022,-0.82811 0.35689,-0.24392 0.71919,-0.44934 1.08691,-0.61625 0.37852,-0.17332 0.74623,-0.30492 1.10313,-0.39479 0.36771,-0.0899 0.7246,-0.1348 1.07069,-0.13481 0.68134,1e-5 1.23831,0.18938 1.67093,0.56811 0.43259,0.37233 0.75163,0.96612 0.95713,1.78137 0.17303,0.65478 0.32444,1.38017 0.45423,2.17617 0.11895,0.68046 0.2271,1.48287 0.32445,2.40725 0.0973,0.92439 0.1568,1.92902 0.17845,3.01389 l -2.22249,0.0771" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3498"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 121.36923,196.55434 c -0.0649,0.44935 -0.1298,0.93723 -0.19467,1.46361 -0.0649,0.51997 -0.12439,1.05278 -0.17845,1.59842 -0.0433,0.54565 -0.0865,1.09451 -0.12979,1.64656 -0.0433,0.55207 -0.0811,1.08167 -0.11356,1.58879 -0.0865,1.194 -0.15683,2.39764 -0.21089,3.61089 -0.0541,0.66761 -0.22713,1.28387 -0.51912,1.84877 -0.2812,0.56491 -0.69218,1.05277 -1.23291,1.46362 -0.52995,0.41083 -1.18967,0.7318 -1.97916,0.9629 -0.7895,0.23751 -1.71419,0.35627 -2.77405,0.35627 -0.68136,-0.0129 -1.34648,-0.0642 -1.99538,-0.15406 -0.28119,-0.0385 -0.56779,-0.0899 -0.85979,-0.15406 -0.29201,-0.0578 -0.58402,-0.13161 -0.87602,-0.22147 -0.2812,-0.0835 -0.55698,-0.18617 -0.82735,-0.30813 -0.25957,-0.11555 -0.49209,-0.25036 -0.69757,-0.40442 l 1.26536,-1.08808 c 0.35689,0.24394 0.74082,0.43331 1.1518,0.56811 0.41097,0.13481 0.80031,0.23431 1.16802,0.2985 0.37852,0.0642 0.71379,0.10271 1.0058,0.11555 0.292,0.0193 0.49208,0.0289 0.60024,0.0289 0.70297,-1e-5 1.3032,-0.0835 1.8007,-0.25036 0.5083,-0.16049 0.93008,-0.38516 1.26536,-0.67403 0.33525,-0.28245 0.60022,-0.62268 0.79491,-1.02068 0.19465,-0.39158 0.34066,-0.81526 0.438,-1.27103 0.10814,-0.46219 0.17303,-0.94685 0.19467,-1.45398 0.0324,-0.51355 0.0487,-1.03031 0.0487,-1.55028 l 0,-0.11555 c -0.32446,0.59059 -0.68135,1.0913 -1.07068,1.50213 -0.37854,0.40442 -0.76247,0.74144 -1.1518,1.01105 -0.38935,0.26961 -0.76788,0.48146 -1.13558,0.63552 -0.36772,0.14764 -0.69758,0.25677 -0.98958,0.32738 -0.29201,0.0707 -0.54076,0.11234 -0.74624,0.12518 -0.19467,0.0193 -0.31364,0.0289 -0.35689,0.0289 -0.81114,0 -1.49248,-0.1348 -2.04405,-0.40442 -0.55157,-0.26319 -0.99498,-0.64514 -1.33025,-1.14585 -0.33526,-0.5007 -0.5786,-1.11054 -0.73001,-1.82951 -0.1406,-0.71897 -0.2109,-1.53102 -0.21089,-2.43615 -1e-5,-0.72538 0.0379,-1.49891 0.11356,-2.3206 0.0757,-0.82166 0.18385,-1.69791 0.32445,-2.62873 l 2.9525,0.13481 c -0.28119,1.13624 -0.48668,2.13124 -0.61645,2.985 -0.11898,0.84736 -0.17846,1.5888 -0.17845,2.22431 -1e-5,0.64194 0.0433,1.18438 0.12978,1.62731 0.0973,0.44294 0.2163,0.81205 0.3569,1.10734 0.14059,0.29529 0.292,0.52639 0.45423,0.69328 0.17304,0.16049 0.33526,0.28246 0.48668,0.36591 0.1514,0.077 0.28659,0.12518 0.40556,0.14443 0.11896,0.0129 0.19467,0.0193 0.22712,0.0193 0.41096,0 0.8003,-0.11233 1.16802,-0.33701 0.37852,-0.22468 0.73001,-0.52318 1.05447,-0.8955 0.33525,-0.37233 0.64348,-0.79921 0.92468,-1.28067 0.292,-0.48786 0.55697,-0.99499 0.79491,-1.52138 0.23792,-0.52638 0.44881,-1.05277 0.63268,-1.57916 0.19466,-0.52638 0.35688,-1.01746 0.48667,-1.47325 0.12978,-0.45576 0.23252,-0.85376 0.30823,-1.194 0.0757,-0.34664 0.12436,-0.6034 0.14601,-0.77032 l 2.4496,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3500"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 135.23263,206.50112 -7.10548,0 0.0325,-1.50212 c 0.34608,0.0129 0.69216,0.0225 1.03824,0.0289 0.34608,0.006 0.68675,0.01 1.02202,0.01 0.0541,-1.29029 0.0919,-2.58058 0.11357,-3.87087 0.0325,-1.29029 0.0487,-2.5902 0.0487,-3.89976 0,-0.51354 0,-1.02709 0,-1.54065 0,-0.51353 -0.0104,-1.03029 -0.0325,-1.55027 l -2.06027,0.17332 -0.16222,-1.73323 c 0.6489,0.0129 1.2978,0.0193 1.9467,0.0193 0.6489,2e-5 1.2978,2e-5 1.9467,0 0.63809,2e-5 1.27077,2e-5 1.89804,0 0.63809,2e-5 1.27618,-0.006 1.91426,-0.0193 l -0.0325,1.26141 c -0.36771,0.0129 -0.73543,0.0289 -1.10314,0.0482 -0.3569,0.0129 -0.7192,0.0289 -1.0869,0.0481 -0.23795,1.85521 -0.45424,3.70077 -0.64891,5.5367 -0.18386,1.82952 -0.34608,3.67188 -0.48667,5.52706 0.47585,0 0.9355,-0.006 1.37891,-0.0193 0.45423,-0.0193 0.91387,-0.0449 1.37892,-0.077 l 0,1.5599" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3502"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 139.54782,197.6039 -1.57358,0 -0.69757,-5.0071 2.27115,0 0,5.0071" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3504"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 156.40307,206.37595 c 0.12979,-0.51997 0.23791,-1.02389 0.32445,-1.51176 0.0865,-0.48787 0.15138,-0.94685 0.19466,-1.37696 0.0432,-0.43009 0.0703,-0.82166 0.0811,-1.17474 0.0215,-0.35948 0.0325,-0.6676 0.0325,-0.92439 -1e-5,-0.95005 -0.11902,-1.66902 -0.35689,-2.1569 -0.23795,-0.49427 -0.61648,-0.74142 -1.13558,-0.74143 -0.40016,1e-5 -0.85441,0.19259 -1.3627,0.57774 -0.4975,0.37875 -0.99499,0.96933 -1.49247,1.77174 0.0217,0.18617 0.0379,0.38517 0.0487,0.59701 0.0104,0.20542 0.0162,0.42688 0.0162,0.6644 -1e-5,0.61626 -0.0379,1.28708 -0.11357,2.01246 -0.0757,0.7254 -0.21631,1.49893 -0.42178,2.32061 l -2.38471,0.0866 c 0.15139,-0.90512 0.24873,-1.71717 0.292,-2.43614 0.0432,-0.71896 0.0649,-1.34165 0.0649,-1.86803 -1e-5,-0.74464 -0.0325,-1.36732 -0.0974,-1.86804 -0.0649,-0.5007 -0.15142,-0.90191 -0.25955,-1.20363 -0.0974,-0.30812 -0.21091,-0.52638 -0.34069,-0.65477 -0.12979,-0.12838 -0.25957,-0.19257 -0.38934,-0.19258 -0.23793,1e-5 -0.51912,0.14765 -0.84357,0.44293 -0.31364,0.2953 -0.69757,0.73182 -1.1518,1.30955 -0.45424,0.58417 -0.80032,1.14587 -1.03824,1.68508 -0.23794,0.53923 -0.42721,1.06883 -0.56779,1.58879 -0.1298,0.51998 -0.23253,1.03352 -0.30823,1.54065 -0.0757,0.50713 -0.16764,1.01747 -0.27578,1.53101 l -2.2225,0.0385 c 0.0217,-0.4622 0.0325,-0.91798 0.0325,-1.36733 0,-0.44936 0,-0.88587 0,-1.30955 0,-1.02067 -0.0162,-1.95469 -0.0487,-2.80205 -0.0324,-0.84735 -0.0649,-1.58236 -0.0974,-2.20505 -0.0432,-0.72538 -0.0866,-1.37694 -0.1298,-1.95469 l 2.9525,0.077 0,3.10054 c 0.0866,-0.17973 0.20008,-0.38515 0.34067,-0.61625 0.1406,-0.23751 0.30282,-0.47824 0.48668,-0.72218 0.18386,-0.25035 0.39474,-0.49428 0.63269,-0.7318 0.24873,-0.24393 0.51911,-0.45898 0.81112,-0.64515 0.29201,-0.19257 0.61105,-0.34663 0.95713,-0.4622 0.34608,-0.11553 0.7246,-0.1733 1.13558,-0.17332 0.57319,2e-5 1.09771,0.17976 1.57359,0.53923 0.48667,0.35307 0.83816,0.89551 1.05447,1.6273 0.40014,-0.44934 0.80571,-0.7992 1.21669,-1.04956 0.41095,-0.25035 0.78408,-0.43329 1.11935,-0.54886 0.34607,-0.12196 0.63267,-0.19578 0.85979,-0.22146 0.22711,-0.0257 0.36771,-0.0385 0.4218,-0.0385 0.4434,1e-5 0.87059,0.061 1.28158,0.18296 0.41096,0.12197 0.77325,0.35628 1.08691,0.70291 0.32443,0.34024 0.57859,0.81527 0.76246,1.4251 0.19466,0.60985 0.29199,1.39943 0.292,2.36875 -10e-6,0.63552 -0.0432,1.35128 -0.12979,2.14727 -0.0866,0.78958 -0.22174,1.68188 -0.40557,2.67688 l -2.49828,-0.0578" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3506"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 179.93511,201.2533 c -0.0217,0.64836 -0.0541,1.2935 -0.0974,1.93544 -0.0217,0.27604 -0.0432,0.5649 -0.0649,0.86661 -0.0217,0.30171 -0.0487,0.60663 -0.0811,0.91476 -0.0217,0.30171 -0.0541,0.60021 -0.0974,0.8955 -0.0325,0.29529 -0.0649,0.57132 -0.0974,0.8281 l -2.2225,-0.0385 c 0.0217,-0.18617 0.0379,-0.36912 0.0487,-0.54886 0.0104,-0.17975 0.0162,-0.35949 0.0162,-0.53923 -0.48669,0.30813 -1.0004,0.54886 -1.54114,0.72218 -0.54077,0.17332 -1.05448,0.30492 -1.54115,0.39479 -0.56238,0.10913 -1.11936,0.17974 -1.67093,0.21184 -0.11902,0.0129 -0.23252,0.0193 -0.34066,0.0193 -0.0974,0 -0.2055,0 -0.32446,0 -0.75706,0 -1.48166,-0.0642 -2.17382,-0.19259 -0.69216,-0.12196 -1.30862,-0.31133 -1.84937,-0.56811 -0.52994,-0.25677 -0.95714,-0.57774 -1.28158,-0.9629 -0.31364,-0.39158 -0.47045,-0.85056 -0.47045,-1.37695 0,-0.4622 0.15141,-0.8955 0.45423,-1.29992 0.31363,-0.41084 0.74623,-0.76711 1.2978,-1.06883 0.56238,-0.30812 1.23832,-0.55206 2.02782,-0.7318 0.78949,-0.17974 1.66551,-0.27603 2.62806,-0.28888 0.0325,1e-5 0.21629,0.006 0.55156,0.0193 0.33526,0.0129 0.74082,0.0546 1.21669,0.12518 0.48667,0.0642 1.00579,0.17012 1.55737,0.31776 0.56238,0.14123 1.08149,0.34023 1.55737,0.597 -1e-5,-0.28886 -0.0104,-0.59378 -0.0325,-0.91476 -0.0217,-0.32096 -0.0757,-0.63551 -0.16222,-0.94364 -0.0757,-0.31454 -0.2001,-0.61304 -0.37312,-0.89551 -0.17306,-0.28243 -0.41099,-0.52958 -0.7138,-0.74143 -0.29202,-0.21825 -0.66514,-0.38836 -1.11935,-0.51034 -0.45424,-0.12838 -1.00581,-0.19257 -1.65471,-0.19258 -0.50831,10e-6 -0.97335,0.0578 -1.39513,0.17333 -0.42179,0.11555 -0.79491,0.27283 -1.11937,0.47181 -0.32445,0.19901 -0.59482,0.43653 -0.81112,0.71256 -0.21631,0.26962 -0.37853,0.5617 -0.48668,0.87623 l -2.72539,-0.51996 c 0.1298,-0.3659 0.31364,-0.69008 0.55158,-0.97253 0.24874,-0.28245 0.52452,-0.52959 0.82734,-0.74144 0.31363,-0.21183 0.64349,-0.39157 0.98958,-0.53923 0.35689,-0.15405 0.70837,-0.28244 1.05447,-0.38516 0.81112,-0.2375 1.68713,-0.38194 2.62805,-0.4333 1.2978,1e-5 2.39552,0.11556 3.29318,0.34665 0.89763,0.2311 1.62224,0.57132 2.17382,1.02067 0.56236,0.44936 0.96252,1.00464 1.20046,1.66582 0.24874,0.66121 0.37311,1.42511 0.37312,2.29172 m -2.53071,2.67687 c -10e-6,-0.12839 0.005,-0.25356 0.0162,-0.37554 0.0104,-0.12838 0.0162,-0.25035 0.0162,-0.3659 -0.57322,-0.34664 -1.141,-0.60984 -1.70338,-0.78958 -0.55158,-0.17974 -1.05447,-0.31455 -1.5087,-0.40442 -0.51912,-0.1027 -1.02203,-0.16048 -1.50869,-0.17332 -0.67054,0 -1.24914,0.0578 -1.73582,0.17332 -0.47586,0.10913 -0.8706,0.25678 -1.18423,0.44294 -0.30284,0.18616 -0.52996,0.398 -0.68135,0.63551 -0.1406,0.23752 -0.2109,0.48466 -0.2109,0.74144 0,0.26319 0.0811,0.50071 0.24333,0.71254 0.16222,0.21185 0.38935,0.39159 0.68135,0.53923 0.30282,0.14765 0.66513,0.2632 1.08692,0.34665 0.43259,0.077 0.91385,0.11555 1.44381,0.11555 0.51911,-0.0257 1.05986,-0.0963 1.62225,-0.21184 0.48667,-0.10271 1.02201,-0.25999 1.60603,-0.47182 0.59482,-0.21826 1.20047,-0.52318 1.81693,-0.91476" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3508"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 191.34518,206.69371 c -0.0866,-0.97574 -0.17305,-1.85199 -0.25956,-2.62873 -0.0757,-0.78316 -0.14601,-1.45077 -0.2109,-2.00284 -0.0757,-0.64193 -0.15142,-1.21325 -0.22711,-1.71397 -0.0866,-0.77673 -0.25417,-1.36089 -0.5029,-1.75248 -0.23794,-0.39799 -0.54618,-0.597 -0.92468,-0.597 -0.37854,0 -0.76247,0.14123 -1.1518,0.42368 -0.38936,0.28245 -0.77329,0.65799 -1.1518,1.12659 -0.37855,0.46862 -0.74084,1.00464 -1.08692,1.60805 -0.33527,0.59701 -0.64891,1.21327 -0.94091,1.84878 -0.28119,0.63551 -0.52994,1.26461 -0.74623,1.88729 -0.2055,0.62267 -0.36232,1.18437 -0.47045,1.68508 l -2.2225,0.0385 c 0.0649,-1.06561 0.0974,-2.07666 0.0974,-3.03314 0,-1.00142 -0.027,-1.91618 -0.0811,-2.74428 -0.0541,-0.83451 -0.11358,-1.55347 -0.17845,-2.1569 -0.0757,-0.70612 -0.15682,-1.34164 -0.24335,-1.90655 l 3.13096,0.077 0,3.87088 c 0.24874,-0.42368 0.47045,-0.77995 0.66512,-1.06883 0.19467,-0.28886 0.35689,-0.52316 0.48668,-0.70292 0.15141,-0.21183 0.27578,-0.37873 0.37311,-0.50071 0.2812,-0.31453 0.58942,-0.59378 0.9247,-0.83772 0.33525,-0.25034 0.68134,-0.45897 1.03824,-0.62589 0.36771,-0.17331 0.73541,-0.30491 1.10313,-0.39479 0.37852,-0.0899 0.74082,-0.13479 1.08692,-0.13481 0.34606,2e-5 0.67052,0.0449 0.97335,0.13481 0.30281,0.0899 0.56778,0.23111 0.7949,0.42368 0.23792,0.19259 0.438,0.43973 0.60024,0.74143 0.17303,0.29531 0.3028,0.65158 0.38934,1.06883 0.17303,0.69329 0.32444,1.45078 0.45423,2.27245 0.11889,0.70613 0.2271,1.53102 0.32445,2.47466 0.0974,0.94365 0.15681,1.95791 0.17845,3.04278 l -2.22249,0.077" />
 

	
 

	
 

	
 
<g
 
   transform="scale(1.2979808,0.77042743)"
 
   style="font-size:36.36539459000000107px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   id="text4991"><path
 
     d="m 310.34551,303.54245 c -0.0118,0.35515 -0.0414,0.73395 -0.0888,1.13642 -0.0474,0.34331 -0.11248,0.74579 -0.19532,1.20744 -0.0711,0.46169 -0.18942,0.94111 -0.35514,1.43828 l -3.28496,-0.44391 c 0.13021,-0.50901 0.22491,-0.99435 0.28411,-1.45604 0.0592,-0.47349 0.0888,-0.9174 0.0888,-1.33174 -10e-6,-0.85229 -0.11247,-1.59807 -0.33737,-2.23732 -0.22493,-0.63922 -0.52679,-1.17783 -0.90559,-1.61585 -0.37881,-0.43797 -0.82273,-0.76351 -1.33174,-0.97661 -0.49719,-0.22489 -1.02397,-0.33735 -1.58033,-0.33737 -0.66292,2e-5 -1.24888,0.17167 -1.7579,0.51494 -0.49718,0.33148 -0.91742,0.77539 -1.26071,1.33174 -0.3433,0.54455 -0.60373,1.16603 -0.78129,1.86443 -0.17757,0.68661 -0.26635,1.39095 -0.26635,2.11303 0,0.71028 0.11838,1.39095 0.35513,2.042 0.24859,0.63926 0.58005,1.2489 0.99437,1.82893 0.42615,0.56822 0.91742,1.10092 1.47379,1.59809 0.55637,0.49719 1.15417,0.95294 1.79341,1.36725 1.1009,0.71027 2.03016,1.36726 2.78778,1.97098 0.76944,0.60373 1.39092,1.19561 1.86444,1.77565 0.47349,0.56822 0.81678,1.13643 1.02988,1.70463 0.21306,0.56821 0.3196,1.17193 0.31962,1.81116 -2e-5,0.69843 -0.1184,1.3791 -0.35514,2.04201 -0.22493,0.66291 -0.59189,1.24888 -1.1009,1.75789 -0.50903,0.50903 -1.17195,0.91743 -1.98873,1.22521 -0.80498,0.30778 -1.79342,0.46167 -2.96535,0.46167 -1.13642,0 -2.1663,-0.17757 -3.08963,-0.5327 -0.91151,-0.36697 -1.6928,-0.87007 -2.34387,-1.50931 -0.63924,-0.63923 -1.13642,-1.39684 -1.49155,-2.27283 -0.34329,-0.88783 -0.51494,-1.85852 -0.51494,-2.91208 l 3.33823,0.14206 c 0,1.1601 0.13613,2.08343 0.4084,2.77002 0.2841,0.68659 0.62148,1.20744 1.01213,1.56257 0.40247,0.35513 0.81679,0.58597 1.24295,0.69251 0.43799,0.0947 0.81088,0.14205 1.11867,0.14205 0.35512,0 0.73392,-0.0533 1.13642,-0.15981 0.4143,-0.11837 0.79311,-0.30778 1.13641,-0.56821 0.35512,-0.27226 0.64515,-0.62148 0.87007,-1.04763 0.23675,-0.438 0.35512,-0.97661 0.35513,-1.61585 -10e-6,-0.66291 -0.15982,-1.26663 -0.47942,-1.81117 -0.30779,-0.55636 -0.71619,-1.07722 -1.2252,-1.56257 -0.50903,-0.48534 -1.08908,-0.95293 -1.74014,-1.40277 -0.65108,-0.44982 -1.31991,-0.91149 -2.00649,-1.38501 -0.67476,-0.4735 -1.33767,-0.97068 -1.98874,-1.49155 -0.65107,-0.52084 -1.23112,-1.08905 -1.74014,-1.70463 -0.50902,-0.62738 -0.92334,-1.31988 -1.24295,-2.07751 -0.30779,-0.7576 -0.46168,-1.60991 -0.46167,-2.55694 -10e-6,-0.60371 0.0473,-1.22519 0.14205,-1.86444 0.10654,-0.63921 0.27226,-1.26069 0.49718,-1.86444 0.23675,-0.61553 0.54453,-1.18966 0.92334,-1.72238 0.39064,-0.54451 0.87599,-1.01802 1.45604,-1.42053 0.58004,-0.40245 1.26071,-0.72207 2.042,-0.95885 0.79312,-0.23673 1.70462,-0.3551 2.73451,-0.35513 1.07722,0.0237 2.01239,0.16576 2.80553,0.42616 0.79311,0.26045 1.46786,0.59191 2.02425,0.99436 0.55635,0.39067 1.00619,0.82867 1.34949,1.31399 0.34328,0.48537 0.60963,0.97663 0.79905,1.47379 0.18938,0.48537 0.3196,0.94704 0.39064,1.38501 0.071,0.43802 0.10652,0.80499 0.10654,1.10091"
 
     style="fill:#9cd5d3"
 
     id="path3642" /><path
 
     d="m 325.24222,312.56277 c -0.1539,2.00058 -0.41433,3.7348 -0.78129,5.20267 -0.36698,1.45604 -0.87008,2.66348 -1.5093,3.62233 -0.62741,0.94702 -1.40278,1.65136 -2.32611,2.11303 -0.91151,0.46167 -1.99466,0.6925 -3.24945,0.6925 -1.27847,0 -2.33795,-0.27818 -3.17842,-0.83455 -0.82864,-0.55637 -1.48563,-1.35542 -1.97097,-2.39714 -0.48535,-1.05355 -0.82864,-2.33794 -1.02988,-3.85317 -0.18941,-1.51521 -0.28411,-3.2376 -0.28411,-5.16715 0.0355,-1.45602 0.1243,-2.96533 0.26635,-4.52792 0.0592,-0.66289 0.13021,-1.36723 0.21308,-2.11303 0.0947,-0.75759 0.20124,-1.52704 0.31962,-2.30835 0.13021,-0.7931 0.27818,-1.59214 0.44391,-2.39713 0.16573,-0.81678 0.35513,-1.61582 0.56821,-2.39713 l 3.64009,0.55045 c -0.438,2.16632 -0.77537,4.09586 -1.01212,5.78863 -0.23676,1.68097 -0.40841,3.16068 -0.51494,4.43914 -0.10655,1.26664 -0.17165,2.34979 -0.19532,3.24944 -0.0118,0.88784 -0.0178,1.6277 -0.0178,2.21957 0,1.44421 0.0533,2.65165 0.15981,3.62234 0.10653,0.95885 0.27818,1.73422 0.51494,2.3261 0.24858,0.58005 0.56228,0.99437 0.9411,1.24296 0.37879,0.24859 0.83455,0.37289 1.36725,0.37289 0.54452,0 1.05946,-0.15981 1.54482,-0.47943 0.49717,-0.33145 0.92925,-0.84639 1.29623,-1.54482 0.37879,-0.69842 0.67473,-1.604 0.88782,-2.71675 0.22491,-1.11273 0.33736,-2.46223 0.33738,-4.04849 -2e-5,-1.02987 0.006,-2.14261 0.0177,-3.33823 0.0118,-1.20743 0.006,-2.44447 -0.0177,-3.71112 -0.0237,-1.27845 -0.077,-2.56875 -0.15981,-3.87092 -0.0829,-1.30212 -0.22493,-2.57468 -0.42616,-3.81766 l 3.85317,-0.46167 c 0.16571,1.94141 0.27817,3.72298 0.33737,5.34472 0.071,1.62178 0.10653,3.06006 0.10654,4.31484 -1e-5,0.7813 -0.006,1.47381 -0.0178,2.07752 -0.0119,0.59189 -0.0296,1.095 -0.0533,1.5093 -0.0237,0.48536 -0.0474,0.91743 -0.071,1.29623"
 
     style="fill:#9cd5d3"
 
     id="path3644" /><path
 
     d="m 342.0744,306.45452 c -0.0474,0.99438 -0.24269,1.9118 -0.58597,2.75226 -0.34331,0.84049 -0.79314,1.60402 -1.3495,2.2906 -0.55638,0.68659 -1.19562,1.29032 -1.9177,1.81116 -0.72211,0.52087 -1.48564,0.95887 -2.2906,1.31399 -0.79313,0.35514 -1.60993,0.62149 -2.4504,0.79904 -0.84048,0.17758 -1.65136,0.26636 -2.43264,0.26635 -0.14206,10e-6 -0.28411,10e-6 -0.42616,0 -0.14206,10e-6 -0.29003,-0.0118 -0.44392,-0.0355 -0.071,1.40869 -0.13021,2.81145 -0.17756,4.2083 -0.0355,1.38501 -0.071,2.78186 -0.10654,4.19054 l -2.66348,0 c 0.071,-2.46224 0.13021,-4.91264 0.17756,-7.35121 0.0592,-2.45039 0.0888,-4.91855 0.0888,-7.40447 0,-1.79932 -0.0178,-3.58089 -0.0533,-5.34472 -0.0355,-1.77564 -0.0829,-3.56313 -0.14205,-5.36248 0.5682,-0.22489 1.16601,-0.40245 1.79341,-0.53269 0.62739,-0.14203 1.23111,-0.24857 1.81116,-0.31962 0.59188,-0.071 1.13641,-0.11243 1.6336,-0.1243 0.49718,-0.0237 0.89966,-0.0355 1.20745,-0.0355 1.12457,3e-5 2.18996,0.15392 3.19618,0.46167 1.01803,0.3078 1.90585,0.81683 2.66348,1.52706 0.7576,0.69845 1.3554,1.61587 1.79341,2.75227 0.44981,1.1246 0.67473,2.50369 0.67475,4.13727 m -10.9913,-6.3746 c -0.17757,2.27286 -0.33146,4.53386 -0.46167,6.783 -0.13022,2.24918 -0.25452,4.49834 -0.37289,6.74749 l 0.0355,0 c 1.30214,10e-6 2.40305,-0.17756 3.30272,-0.5327 0.91149,-0.35512 1.66319,-0.79903 2.25508,-1.33174 0.60371,-0.53269 1.0713,-1.10681 1.40277,-1.72239 0.33144,-0.62738 0.57411,-1.21334 0.72802,-1.75789 0.16571,-0.54452 0.26633,-1.00027 0.30186,-1.36726 0.0355,-0.36695 0.0532,-0.56227 0.0533,-0.58596 -2e-5,-0.1302 -0.0118,-0.37879 -0.0355,-0.74578 -0.0237,-0.36695 -0.0888,-0.78719 -0.19532,-1.26071 -0.10655,-0.48533 -0.27228,-0.98843 -0.49718,-1.50931 -0.21309,-0.52083 -0.51495,-0.99434 -0.90558,-1.42052 -0.39066,-0.43797 -0.88192,-0.79902 -1.4738,-1.08315 -0.59189,-0.28408 -1.31399,-0.42613 -2.1663,-0.42616 -0.59189,3e-5 -1.24888,0.071 -1.97097,0.21308"
 
     style="fill:#9cd5d3"
 
     id="path3646" /><path
 
     d="m 357.78791,306.45452 c -0.0474,0.99438 -0.24269,1.9118 -0.58597,2.75226 -0.34331,0.84049 -0.79314,1.60402 -1.34949,2.2906 -0.55639,0.68659 -1.19562,1.29032 -1.91771,1.81116 -0.72211,0.52087 -1.48564,0.95887 -2.29059,1.31399 -0.79314,0.35514 -1.60994,0.62149 -2.45041,0.79904 -0.84048,0.17758 -1.65136,0.26636 -2.43264,0.26635 -0.14206,10e-6 -0.28411,10e-6 -0.42616,0 -0.14206,10e-6 -0.29003,-0.0118 -0.44391,-0.0355 -0.071,1.40869 -0.13022,2.81145 -0.17757,4.2083 -0.0355,1.38501 -0.071,2.78186 -0.10654,4.19054 l -2.66348,0 c 0.071,-2.46224 0.13021,-4.91264 0.17757,-7.35121 0.0592,-2.45039 0.0888,-4.91855 0.0888,-7.40447 0,-1.79932 -0.0178,-3.58089 -0.0533,-5.34472 -0.0355,-1.77564 -0.0829,-3.56313 -0.14205,-5.36248 0.5682,-0.22489 1.16601,-0.40245 1.79341,-0.53269 0.62739,-0.14203 1.23111,-0.24857 1.81117,-0.31962 0.59187,-0.071 1.13641,-0.11243 1.6336,-0.1243 0.49717,-0.0237 0.89965,-0.0355 1.20744,-0.0355 1.12457,3e-5 2.18996,0.15392 3.19618,0.46167 1.01803,0.3078 1.90585,0.81683 2.66348,1.52706 0.7576,0.69845 1.3554,1.61587 1.79341,2.75227 0.44982,1.1246 0.67473,2.50369 0.67475,4.13727 m -10.9913,-6.3746 c -0.17757,2.27286 -0.33146,4.53386 -0.46167,6.783 -0.13022,2.24918 -0.25451,4.49834 -0.37289,6.74749 l 0.0355,0 c 1.30214,10e-6 2.40304,-0.17756 3.30271,-0.5327 0.9115,-0.35512 1.66319,-0.79903 2.25508,-1.33174 0.60371,-0.53269 1.0713,-1.10681 1.40277,-1.72239 0.33144,-0.62738 0.57412,-1.21334 0.72802,-1.75789 0.16571,-0.54452 0.26633,-1.00027 0.30186,-1.36726 0.0355,-0.36695 0.0533,-0.56227 0.0533,-0.58596 -10e-6,-0.1302 -0.0118,-0.37879 -0.0355,-0.74578 -0.0237,-0.36695 -0.0888,-0.78719 -0.19533,-1.26071 -0.10655,-0.48533 -0.27228,-0.98843 -0.49718,-1.50931 -0.21309,-0.52083 -0.51495,-0.99434 -0.90558,-1.42052 -0.39066,-0.43797 -0.88192,-0.79902 -1.4738,-1.08315 -0.59189,-0.28408 -1.31399,-0.42613 -2.16629,-0.42616 -0.59189,3e-5 -1.24889,0.071 -1.97098,0.21308"
 
     style="fill:#9cd5d3"
 
     id="path3648" /><path
 
     d="m 372.98648,310.37871 c -10e-6,1.27849 -0.0888,2.52736 -0.26635,3.74663 -0.16574,1.20746 -0.40841,2.35571 -0.72801,3.44477 -0.3078,1.08908 -0.69252,2.08936 -1.15418,3.00086 -0.46168,0.9115 -0.98254,1.69871 -1.56258,2.36162 -0.56822,0.65107 -1.20153,1.16009 -1.89994,1.52706 -0.6866,0.37881 -1.42054,0.56821 -2.20182,0.56821 -0.79313,0 -1.52115,-0.18348 -2.18405,-0.55045 -0.65108,-0.36697 -1.24296,-0.88191 -1.77565,-1.54482 -0.52087,-0.66291 -0.98254,-1.45012 -1.38501,-2.36162 -0.39065,-0.9115 -0.72211,-1.91178 -0.99437,-3.00086 -0.26043,-1.08906 -0.46167,-2.23731 -0.60372,-3.44477 -0.13022,-1.21927 -0.19533,-2.46814 -0.19533,-3.74663 0,-1.89401 0.14797,-3.62823 0.44392,-5.20266 0.29594,-1.58623 0.75169,-2.94757 1.36725,-4.08401 0.61556,-1.13639 1.39093,-2.0183 2.32611,-2.64572 0.94701,-0.62737 2.06567,-0.94107 3.35598,-0.9411 1.36133,3e-5 2.5155,0.31373 3.46253,0.9411 0.947,0.62742 1.71645,1.50933 2.30835,2.64572 0.59187,1.13644 1.01803,2.49778 1.27847,4.08401 0.27225,1.57443 0.40839,3.30865 0.4084,5.20266 m -3.30271,0.14206 c -2e-5,-1.5744 -0.077,-3.0186 -0.23084,-4.3326 -0.14206,-1.31396 -0.37882,-2.43854 -0.71026,-3.37374 -0.33147,-0.94699 -0.76354,-1.68093 -1.29623,-2.20181 -0.52087,-0.52084 -1.1601,-0.78127 -1.91771,-0.78129 -0.71026,2e-5 -1.33174,0.26045 -1.86443,0.78129 -0.52087,0.52088 -0.95294,1.25482 -1.29623,2.20181 -0.3433,0.9352 -0.59781,2.05978 -0.76353,3.37374 -0.16573,1.314 -0.2486,2.7582 -0.24859,4.3326 -1e-5,1.5981 0.0829,3.13108 0.24859,4.59894 0.16572,1.46788 0.41431,2.77003 0.74577,3.90644 0.33145,1.12458 0.74577,2.02425 1.24296,2.69899 0.49718,0.67475 1.07131,1.01213 1.72239,1.01213 0.65106,0 1.24294,-0.33738 1.77565,-1.01213 0.54452,-0.67474 1.00619,-1.57441 1.38501,-2.69899 0.39063,-1.13641 0.68657,-2.43856 0.88783,-3.90644 0.21306,-1.46786 0.3196,-3.00084 0.31962,-4.59894"
 
     style="fill:#9cd5d3"
 
     id="path3650" /><path
 
     d="m 383.00015,324.1933 -3.01861,-8.61192 c -0.59189,0.071 -1.16602,0.10655 -1.72239,0.10654 -0.14206,10e-6 -0.28411,10e-6 -0.42615,0 -0.14206,10e-6 -0.29003,-0.0118 -0.44392,-0.0355 -0.071,1.40869 -0.13022,2.81145 -0.17756,4.2083 -0.0355,1.38501 -0.071,2.78186 -0.10654,4.19054 l -2.66348,0 c 0.071,-2.46224 0.13021,-4.91264 0.17756,-7.35121 0.0592,-2.45039 0.0888,-4.91855 0.0888,-7.40447 0,-1.79932 -0.0177,-3.58089 -0.0533,-5.34472 -0.0355,-1.77564 -0.0829,-3.56313 -0.14205,-5.36248 0.56821,-0.22489 1.16601,-0.40245 1.79341,-0.53269 0.6274,-0.14203 1.23112,-0.24857 1.81117,-0.31962 0.59188,-0.071 1.13641,-0.11243 1.6336,-0.1243 0.49718,-0.0237 0.89966,-0.0355 1.20745,-0.0355 1.12457,3e-5 2.18996,0.15392 3.19617,0.46167 1.01803,0.3078 1.90586,0.81683 2.66348,1.52706 0.7576,0.69845 1.3554,1.61587 1.79342,2.75227 0.44981,1.1246 0.67473,2.50369 0.67474,4.13727 -0.0592,1.08908 -0.29004,2.08937 -0.6925,3.00085 -0.4025,0.89968 -0.92928,1.71056 -1.58033,2.43265 -0.65109,0.71027 -1.39095,1.32583 -2.21957,1.84668 -0.81681,0.52087 -1.66913,0.94111 -2.55694,1.26072 0.65106,1.50339 1.3554,2.98902 2.11303,4.45689 0.7576,1.46787 1.56848,2.94167 2.43264,4.42138 l -3.78214,0.31961 m -4.70548,-24.11338 c -0.17758,2.27286 -0.33147,4.53386 -0.46167,6.783 -0.13022,2.24918 -0.25452,4.49834 -0.37289,6.74749 l 0.0355,0 c 1.30214,10e-6 2.40305,-0.17756 3.30272,-0.5327 0.91149,-0.35512 1.66318,-0.79903 2.25508,-1.33174 0.60371,-0.53269 1.0713,-1.10681 1.40276,-1.72239 0.33145,-0.62738 0.57412,-1.21334 0.72802,-1.75789 0.16572,-0.54452 0.26634,-1.00027 0.30186,-1.36726 0.0355,-0.36695 0.0533,-0.56227 0.0533,-0.58596 -1e-5,-0.1302 -0.0118,-0.37879 -0.0355,-0.74578 -0.0237,-0.36695 -0.0888,-0.78719 -0.19532,-1.26071 -0.10655,-0.48533 -0.27228,-0.98843 -0.49718,-1.50931 -0.21309,-0.52083 -0.51496,-0.99434 -0.90559,-1.42052 -0.39065,-0.43797 -0.88192,-0.79902 -1.47379,-1.08315 -0.59189,-0.28408 -1.31399,-0.42613 -2.1663,-0.42616 -0.59189,3e-5 -1.24888,0.071 -1.97097,0.21308"
 
     style="fill:#9cd5d3"
 
     id="path3652" /><path
 
     d="m 401.35938,298.58837 -0.24859,2.48592 -5.57555,0 0,22.72837 -2.36162,0 0,-22.72837 -4.35036,0 0,-2.55694 12.53612,0.071"
 
     style="fill:#9cd5d3"
 
     id="path3654" /><path
 
     d="m 414.99538,298.71267 0,2.43264 -9.74834,0 0,10.83149 7.70634,0 0,2.62797 -7.81288,0 0,6.42787 9.44648,0 0,2.80553 -12.46509,0 0,-25.1255 12.87349,0"
 
     style="fill:#9cd5d3"
 
     id="path3656" /><path
 
     d="m 424.60064,324.1933 -3.01861,-8.61192 c -0.59189,0.071 -1.16602,0.10655 -1.72238,0.10654 -0.14206,10e-6 -0.28411,10e-6 -0.42616,0 -0.14206,10e-6 -0.29003,-0.0118 -0.44391,-0.0355 -0.071,1.40869 -0.13022,2.81145 -0.17757,4.2083 -0.0355,1.38501 -0.071,2.78186 -0.10654,4.19054 l -2.66348,0 c 0.071,-2.46224 0.13021,-4.91264 0.17757,-7.35121 0.0592,-2.45039 0.0888,-4.91855 0.0888,-7.40447 0,-1.79932 -0.0178,-3.58089 -0.0533,-5.34472 -0.0355,-1.77564 -0.0829,-3.56313 -0.14205,-5.36248 0.5682,-0.22489 1.16601,-0.40245 1.79341,-0.53269 0.62739,-0.14203 1.23111,-0.24857 1.81116,-0.31962 0.59188,-0.071 1.13642,-0.11243 1.63361,-0.1243 0.49717,-0.0237 0.89965,-0.0355 1.20744,-0.0355 1.12457,3e-5 2.18996,0.15392 3.19618,0.46167 1.01803,0.3078 1.90585,0.81683 2.66348,1.52706 0.7576,0.69845 1.3554,1.61587 1.79341,2.75227 0.44982,1.1246 0.67473,2.50369 0.67475,4.13727 -0.0592,1.08908 -0.29004,2.08937 -0.69251,3.00085 -0.40249,0.89968 -0.92927,1.71056 -1.58033,2.43265 -0.65109,0.71027 -1.39094,1.32583 -2.21957,1.84668 -0.81681,0.52087 -1.66912,0.94111 -2.55694,1.26072 0.65106,1.50339 1.35541,2.98902 2.11303,4.45689 0.7576,1.46787 1.56848,2.94167 2.43265,4.42138 l -3.78215,0.31961 m -4.70548,-24.11338 c -0.17757,2.27286 -0.33146,4.53386 -0.46167,6.783 -0.13022,2.24918 -0.25452,4.49834 -0.37289,6.74749 l 0.0355,0 c 1.30214,10e-6 2.40304,-0.17756 3.30271,-0.5327 0.9115,-0.35512 1.66319,-0.79903 2.25508,-1.33174 0.60371,-0.53269 1.0713,-1.10681 1.40277,-1.72239 0.33144,-0.62738 0.57411,-1.21334 0.72802,-1.75789 0.16571,-0.54452 0.26633,-1.00027 0.30186,-1.36726 0.0355,-0.36695 0.0533,-0.56227 0.0533,-0.58596 -1e-5,-0.1302 -0.0119,-0.37879 -0.0355,-0.74578 -0.0237,-0.36695 -0.0888,-0.78719 -0.19532,-1.26071 -0.10655,-0.48533 -0.27228,-0.98843 -0.49718,-1.50931 -0.21309,-0.52083 -0.51495,-0.99434 -0.90558,-1.42052 -0.39066,-0.43797 -0.88192,-0.79902 -1.4738,-1.08315 -0.59189,-0.28408 -1.31399,-0.42613 -2.16629,-0.42616 -0.5919,3e-5 -1.24889,0.071 -1.97098,0.21308"
 
     style="fill:#9cd5d3"
 
     id="path3658" /></g>
 

	
 
<g
 
   transform="matrix(0.53467448,0,0,0.31736055,104.31973,88.434494)"
 
   id="layer1"
 
   inkscape:label="Layer 1"><g
 
     transform="translate(53.538085,-120.20815)"
 
     id="g4480-11" /><g
 
     transform="translate(-227.3622,344.1437)"
 
     id="g5180" /><g
 
     id="g4361"><path
 
       inkscape:connector-curvature="0"
 
       style="fill:#afe478;fill-opacity:1;fill-rule:evenodd;stroke:none"
 
       d="m 294.8728,344.65416 c -17.99591,0.20347 -32.91812,12.38231 -34.16415,28.45216 -0.13622,1.75558 -0.0824,3.47227 0.1076,5.17312 -5.89428,-1.88791 -12.25439,-3.14371 -18.9681,-3.66429 -29.235,-2.26687 -54.66561,10.5136 -60.46085,29.31434 -19.33453,6.26155 -34.68239,18.44021 -42.24714,34.05638 -17.1699,-0.89371 -32.07025,12.14704 -33.40974,29.42212 -1.36074,17.54933 11.69211,32.91384 29.20658,34.27192 5.54251,0.42975 10.89952,-0.64981 15.62713,-2.80211 13.6788,14.40097 34.76181,24.52877 58.95201,26.40447 21.79146,1.68968 42.02271,-3.65691 57.33542,-13.57944 6.04955,10.00137 17.2846,17.40024 30.7154,19.3992 l 0,0.32315 c 0.40102,-0.0393 0.78811,-0.16657 1.18551,-0.21555 0.40533,0.05 0.77641,0.1752 1.1855,0.21555 l 0,-0.32315 c 13.45167,-1.98865 24.65882,-9.38618 30.7154,-19.3992 15.31272,9.92253 35.65177,15.26916 57.44319,13.57944 24.1902,-1.87567 45.16545,-12.0035 58.84425,-26.40447 4.72765,2.1523 10.08465,3.23189 15.62714,2.80211 17.51446,-1.35805 30.67508,-16.72263 29.31434,-34.27192 -1.33949,-17.27508 -16.23983,-30.31583 -33.40973,-29.42212 -7.56476,-15.61617 -23.02039,-27.79483 -42.35493,-34.05638 -5.79524,-18.80074 -31.11807,-31.58121 -60.35307,-29.31434 -6.71371,0.52058 -13.07382,1.77638 -18.96811,3.66429 0.19003,-1.70085 0.24418,-3.41754 0.1076,-5.17312 -1.24603,-16.06985 -16.27601,-28.24858 -34.27192,-28.45216 -1.19975,-0.0138 -2.44085,0.0138 -3.66429,0.1076 -0.0724,0.007 -0.14381,-0.007 -0.21555,0 -0.0717,-0.007 -0.14312,0.007 -0.21554,0 -1.22345,-0.0948 -2.46455,-0.12174 -3.6643,-0.1076 z m 3.44874,21.55467 0.53887,0 c 3.05373,0 5.82187,0.85901 7.86746,2.37101 2.04558,1.512 3.34097,3.66581 3.34097,6.03531 0,0.6994 -0.21658,1.38874 -0.43109,2.04769 l 9.05296,6.68195 c 1.88349,-1.05553 4.06897,-1.72438 6.57417,-1.72438 3.0528,0 5.82159,0.86702 7.86745,2.37102 2.04587,1.504 3.44875,3.66591 3.44875,6.0353 0,1.55932 -0.75038,2.95413 -1.72437,4.20316 l 12.71725,9.26851 c 1.61046,-0.67375 3.41978,-1.07773 5.38867,-1.07773 3.05372,0 5.92967,0.85898 7.97522,2.37101 2.04556,1.51203 3.34098,3.66581 3.34098,6.03531 0,1.33808 -0.56249,2.55383 -1.29328,3.66429 l 12.07061,8.72964 c 1.62936,-0.69337 3.49886,-1.18551 5.49644,-1.18551 3.05373,0 5.8219,0.85898 7.86746,2.37102 2.04555,1.51203 3.34097,3.66591 3.34097,6.03531 0,2.36949 -1.29542,4.5233 -3.34097,6.0353 -2.04556,1.512 -4.81373,2.37102 -7.86746,2.37102 -3.05372,0 -5.82186,-0.85902 -7.86745,-2.37102 -2.04559,-1.512 -3.44875,-3.66581 -3.44875,-6.0353 0,-1.82915 0.96593,-3.48283 2.26324,-4.84981 l -11.3162,-8.29854 c -1.96037,1.23744 -4.48534,2.04769 -7.22081,2.04769 -2.494,0 -4.69747,-0.67813 -6.57418,-1.72437 l -9.05296,6.57417 c 0.78087,0.95272 1.4531,1.98296 1.72438,3.12543 0.0904,0.38081 0.1076,0.78066 0.1076,1.1855 0,2.3694 -1.29542,4.52328 -3.34098,6.03531 -1.02276,0.756 -2.22706,1.4284 -3.55652,1.83215 -0.66471,0.20175 -1.3268,0.32694 -2.04769,0.43109 -0.72089,0.10415 -1.49983,0.1076 -2.26324,0.1076 -2.40153,0 -4.63011,-0.5329 -6.4664,-1.50882 l -12.71725,9.37628 c 1.31083,1.10508 2.28555,2.56007 2.69433,4.09538 0.13623,0.51176 0.21555,0.96755 0.21555,1.50883 0,2.36939 -1.29542,4.4155 -3.34098,5.92753 -0.51138,0.37802 -1.02172,0.77449 -1.6166,1.07774 -1.18978,0.60653 -2.54579,1.06476 -3.98761,1.29328 -0.72089,0.11415 -1.49983,0.1076 -2.26324,0.1076 -3.05373,0 -5.8219,-0.96675 -7.86745,-2.47879 -1.02276,-0.75603 -1.89923,-1.58987 -2.47879,-2.58656 -0.28969,-0.49834 -0.49324,-1.06794 -0.64664,-1.6166 -0.15347,-0.54866 -0.21555,-1.13202 -0.21555,-1.72437 0,-2.36939 1.29542,-4.52331 3.34098,-6.03531 2.04555,-1.512 4.81372,-2.47879 7.86745,-2.47879 1.52445,0 2.98303,0.33729 4.31093,0.75442 l 13.68722,-9.91515 c -0.48897,-0.62305 -0.87667,-1.24051 -1.18551,-1.93992 -0.30901,-0.69941 -0.53887,-1.48068 -0.53887,-2.26324 0,-2.3695 1.29511,-4.53134 3.34098,-6.03531 0.51145,-0.37598 1.02162,-0.67719 1.6166,-0.96996 1.78493,-0.87832 3.96126,-1.40105 6.25085,-1.40105 2.29569,0 4.35028,0.60977 6.14308,1.50883 l 9.26851,-6.68195 c -0.4521,-0.60405 -0.89437,-1.25462 -1.18551,-1.93992 -0.29107,-0.6853 -0.43109,-1.40533 -0.43109,-2.15547 0,-1.85332 1.04193,-3.47037 2.37101,-4.8498 l -12.50171,-9.16073 c -1.82535,0.95168 -3.99116,1.6166 -6.35862,1.6166 -2.6873,0 -5.06063,-0.74203 -7.00527,-1.93992 l -10.45401,7.65191 c 0.93402,1.00872 1.62556,2.1785 1.93992,3.44874 0.10484,0.42341 0.21554,0.84567 0.21554,1.29328 0,2.36946 -1.29542,4.52328 -3.34097,6.03531 -0.51138,0.37802 -1.11939,0.78459 -1.72437,1.07773 -1.21,0.58632 -2.52559,0.97721 -3.98762,1.18551 -0.73099,0.10415 -1.49982,0.1076 -2.26324,0.1076 -3.05372,0 -5.82189,-0.85898 -7.86745,-2.37101 -2.04555,-1.51204 -3.34097,-3.66585 -3.34097,-6.03531 0,-2.3695 1.29511,-4.53134 3.34097,-6.03531 2.04587,-1.50396 4.81466,-2.37101 7.86745,-2.37101 2.10463,0 4.12867,0.4214 5.81976,1.18551 l 10.88511,-7.97523 c -0.73538,-1.11546 -1.29328,-2.32311 -1.29328,-3.66429 0,-0.36526 0.0345,-0.72717 0.1076,-1.07774 0.22313,-1.05169 0.75704,-2.029 1.40105,-2.90988 l -8.19077,-6.0353 c -2.0807,1.86639 -5.07473,3.12542 -8.51409,3.12542 -2.86333,0 -5.43564,-1.02534 -7.43636,-2.37101 l -8.083,5.60421 c 0.7142,1.10319 1.18551,2.34581 1.18551,3.6643 0,2.36949 -1.29542,4.41553 -3.34098,5.92753 -2.04555,1.512 -4.81376,2.47879 -7.86745,2.47879 -2.03866,0 -3.94916,-0.46465 -5.60422,-1.18551 l -12.71725,8.62187 c 1.41637,1.40302 2.58656,3.03669 2.58656,4.95757 0,0.38629 -0.0207,0.81611 -0.1076,1.18551 -0.26038,1.10822 -0.89788,2.08576 -1.6166,3.01765 l 9.26851,6.68195 c 1.36953,-0.45024 2.83104,-0.75442 4.4187,-0.75442 3.0537,0 5.82187,0.96683 7.86746,2.47879 2.04559,1.51197 3.34097,3.55804 3.34097,5.92753 0,2.3695 -1.29538,4.52331 -3.34097,6.03531 -2.04559,1.512 -4.81373,2.47879 -7.86746,2.47879 -3.05369,0 -5.82955,-0.96634 -7.86745,-2.47879 -2.0379,-1.51245 -3.34097,-3.66705 -3.34097,-6.03531 0,-1.0858 0.24693,-2.09973 0.75441,-3.01765 0.25383,-0.45896 0.61467,-0.87836 0.96996,-1.29328 0.35529,-0.41492 0.74565,-0.81604 1.18551,-1.18551 l -8.5141,-6.25085 c -1.83083,0.96448 -3.97337,1.72437 -6.35862,1.72437 -2.95613,0 -5.63088,-1.05386 -7.65191,-2.47878 l -11.85507,8.19077 c 1.43175,1.12157 2.55573,2.5966 3.01766,4.20316 0.15381,0.53552 0.21554,1.04725 0.21554,1.6166 0,1.02966 -0.41388,1.90002 -0.86218,2.80211 l 10.45401,7.54413 c 1.40633,-0.47644 2.89084,-0.75441 4.52648,-0.75441 3.05369,0 5.92967,0.85901 7.97523,2.37101 2.04555,1.512 3.34097,3.66592 3.34097,6.03531 0,2.36949 -1.29511,4.53134 -3.34097,6.03531 -2.04587,1.50396 -4.92247,2.37101 -7.97523,2.37101 -1.52638,0 -2.98141,-0.13416 -4.31093,-0.53887 -0.66478,-0.20244 -1.34495,-0.46165 -1.93992,-0.75441 -0.59498,-0.2928 -1.10515,-0.70175 -1.6166,-1.07773 -2.04587,-1.50397 -3.34098,-3.66582 -3.34098,-6.03531 0,-2.11177 1.34074,-3.92095 3.01766,-5.38867 l -9.48406,-6.78972 c -2.04141,1.50652 -4.71109,2.58656 -7.75968,2.58656 -3.48785,0 -6.54434,-1.21427 -8.62187,-3.12543 l -11.20842,7.75968 c 0.54266,0.64482 1.05173,1.41916 1.40105,2.15547 0.17451,0.36816 0.33384,0.68654 0.43109,1.07774 0.0973,0.39119 0.1076,0.7712 0.1076,1.1855 0,2.36957 -1.2951,4.53131 -3.34097,6.03531 -0.51145,0.37598 -1.02162,0.78493 -1.6166,1.07773 -1.18995,0.58556 -2.54593,0.97593 -3.98761,1.18551 -0.72082,0.10484 -1.50007,0.1076 -2.26324,0.1076 -3.0528,0 -5.92936,-0.86702 -7.97523,-2.37101 -2.04586,-1.504 -3.34097,-3.66575 -3.34097,-6.03531 0,-2.36939 1.29542,-4.52331 3.34097,-6.03531 2.04556,-1.512 4.9215,-2.37101 7.97523,-2.37101 2.12794,0 4.00527,0.51238 5.71198,1.29328 l 12.60949,-8.62187 c -0.17899,-0.5718 -0.4311,-1.0906 -0.4311,-1.72437 0,-2.36939 1.29542,-4.52327 3.34098,-6.03531 2.04555,-1.51203 4.81376,-2.47879 7.86745,-2.47879 1.30211,0 2.60235,0.22969 3.77207,0.53887 l 1.72437,-1.29328 0.21555,-0.1076 11.42397,-7.75968 c -0.45327,-0.91357 -0.86219,-1.87557 -0.86219,-2.90988 0,-2.36939 1.29542,-4.52327 3.34098,-6.03531 2.04555,-1.51203 4.9215,-2.37101 7.97522,-2.37101 1.7331,0 3.26976,0.33073 4.74203,0.86219 l 1.50883,-0.96996 11.42397,-7.86746 c -1.10108,-1.29669 -2.04769,-2.74806 -2.04769,-4.4187 0,-2.3695 1.40288,-4.53135 3.44874,-6.03531 2.04587,-1.50396 4.81466,-2.37101 7.86746,-2.37101 2.61925,0 4.96937,0.68699 6.89749,1.83214 l 8.29855,-5.60421 c -0.54221,-0.98531 -0.96996,-2.09511 -0.96996,-3.2332 0,-2.36939 1.29542,-4.52327 3.34097,-6.03531 1.91102,-1.41257 4.61842,-2.1515 7.43636,-2.26324 l 0,-0.1076 z m 0.53887,3.55652 c -2.08904,0 -4.01627,0.6785 -5.28089,1.6166 -0.95272,0.70661 -1.58425,1.50965 -1.83215,2.37101 -0.0828,0.28728 -0.1076,0.5549 -0.1076,0.86219 0,0.92216 0.3535,1.80255 1.07774,2.58656 0.24141,0.26141 0.54462,0.51883 0.86218,0.75441 0.94847,0.70347 2.28945,1.274 3.77207,1.50883 0.4942,0.0783 0.98658,0.1076 1.50882,0.1076 2.08925,0 3.89857,-0.67599 5.17312,-1.6166 1.28032,-0.94499 1.93992,-2.12046 1.93992,-3.34098 0,-1.22013 -0.65967,-2.28841 -1.93992,-3.2332 -1.27455,-0.94075 -3.08387,-1.6166 -5.17312,-1.6166 z m -25.54228,15.41158 c -2.09014,0 -4.01537,0.5766 -5.28089,1.50883 -0.95365,0.70265 -1.5071,1.58587 -1.72437,2.47879 -0.0724,0.29762 -0.1076,0.55487 -0.1076,0.86218 0,0.92189 0.27589,1.80253 0.96996,2.58656 0.23141,0.26142 0.54462,0.51887 0.86218,0.75442 1.26462,0.93809 3.19182,1.50882 5.2809,1.50882 2.08918,0 3.89853,-0.56807 5.17312,-1.50882 1.28024,-0.94482 1.93992,-2.12071 1.93992,-3.34098 0,-1.22016 -0.6584,-2.40153 -1.93992,-3.34097 -1.27549,-0.93489 -3.08287,-1.50883 -5.17312,-1.50883 z m 51.94675,0 c -2.09008,0 -3.9076,0.5766 -5.17312,1.50883 -0.95365,0.70265 -1.58456,1.58587 -1.83215,2.47879 -0.0824,0.29762 -0.1076,0.55487 -0.1076,0.86218 0,0.92189 0.3535,1.80253 1.07773,2.58656 0.24142,0.26142 0.54463,0.51887 0.86219,0.75442 1.26462,0.93809 3.08408,1.50882 5.17312,1.50882 2.08925,0 4.00631,-0.56807 5.2809,-1.50882 1.28024,-0.94482 1.93992,-2.12071 1.93992,-3.34098 0,-1.22016 -0.6584,-2.40153 -1.93992,-3.34097 -1.27549,-0.93489 -3.19061,-1.50883 -5.2809,-1.50883 z m -26.62002,18.86034 c -2.09025,0 -3.8976,0.68161 -5.17311,1.6166 -0.9611,0.70444 -1.58691,1.51024 -1.83215,2.37101 -0.0817,0.28694 -0.1076,0.55715 -0.1076,0.86219 0,0.91536 0.35208,1.80011 1.07773,2.58656 0.24176,0.2621 0.54215,0.51821 0.86219,0.75441 0.95596,0.70558 2.2143,1.27466 3.66429,1.50883 0.48334,0.0779 0.98651,0.1076 1.50883,0.1076 2.08904,0 4.0163,-0.67847 5.28089,-1.6166 1.27028,-0.94213 1.93992,-2.11163 1.93992,-3.34097 0,-1.22903 -0.6684,-2.29653 -1.93992,-3.23321 -1.26552,-0.93236 -3.19078,-1.6166 -5.28089,-1.6166 z m -52.27006,1.93992 c -2.09011,0 -4.01545,0.68423 -5.28089,1.6166 -0.95365,0.70247 -1.58457,1.5858 -1.83215,2.47878 -0.0824,0.29763 -0.1076,0.55487 -0.1076,0.86219 0,0.92199 0.35349,1.83287 1.07773,2.58656 0.24141,0.25141 0.54463,0.41109 0.86219,0.64664 0.94847,0.70348 2.28945,1.274 3.77206,1.50883 0.49421,0.0783 0.98655,0.1076 1.50883,0.1076 2.08922,0 3.89853,-0.67589 5.17312,-1.6166 1.28031,-0.94499 1.93992,-2.01286 1.93992,-3.2332 0,-1.22017 -0.6584,-2.40154 -1.93992,-3.34097 -1.27552,-0.93489 -3.08287,-1.61661 -5.17312,-1.61661 z m 106.58783,0 c -2.09025,0 -3.8976,0.68171 -5.17312,1.6166 -0.96113,0.70458 -1.58691,1.58773 -1.83215,2.47878 -0.0817,0.29694 -0.1076,0.55715 -0.1076,0.86219 0,0.91523 0.35208,1.83035 1.07773,2.58656 0.24176,0.2521 0.54211,0.4104 0.86219,0.64664 0.95596,0.70555 2.2143,1.27462 3.66429,1.50883 0.48334,0.0779 0.98652,0.1076 1.50883,0.1076 2.08904,0 4.01624,-0.67865 5.28089,-1.6166 1.27028,-0.94216 1.93992,-2.00386 1.93992,-3.2332 0,-1.2292 -0.66843,-2.40433 -1.93992,-3.34097 -1.26548,-0.93241 -3.19078,-1.61661 -5.28089,-1.61661 z m -25.00342,17.67482 c -2.09014,0 -4.01541,0.68424 -5.28089,1.6166 -0.95365,0.70262 -1.5071,1.50838 -1.72437,2.37102 -0.0724,0.28762 -0.10761,0.5549 -0.10761,0.86218 0,0.92199 0.2759,1.80253 0.96996,2.58657 0.23142,0.26141 0.54463,0.51882 0.86219,0.75441 0.94848,0.70347 2.28945,1.274 3.77207,1.50883 0.4942,0.0783 0.98655,0.1076 1.50883,0.1076 2.08925,0 4.0063,-0.67603 5.28089,-1.6166 1.28031,-0.945 1.83215,-2.12064 1.83215,-3.34098 0,-1.22016 -0.55063,-2.29376 -1.83215,-3.2332 -1.27549,-0.93488 -3.19061,-1.6166 -5.28089,-1.6166 z m -58.41314,0.86219 c -2.08905,0 -3.90854,0.67865 -5.17312,1.6166 -0.95272,0.70679 -1.58429,1.58711 -1.83215,2.47879 -0.0828,0.29728 -0.1076,0.55483 -0.1076,0.86219 0,1.22916 0.66964,2.39881 1.93992,3.34097 0.94847,0.70358 2.21199,1.19658 3.66429,1.40105 0.4841,0.0683 0.98658,0.1076 1.50883,0.1076 2.08925,0 4.0063,-0.56807 5.28089,-1.50882 1.28025,-0.94482 1.93992,-2.12067 1.93992,-3.34098 0,-1.2203 -0.65964,-2.39601 -1.93992,-3.34097 -1.27459,-0.94075 -3.19164,-1.6166 -5.28089,-1.6166 z m 111.00653,1.07773 c -2.09011,0 -4.01541,0.68441 -5.28089,1.6166 -0.95365,0.70265 -1.5071,1.50842 -1.72438,2.37102 -0.0724,0.28762 -0.1076,0.55494 -0.1076,0.86219 0,0.92216 0.2759,1.80252 0.96996,2.58656 0.23141,0.26141 0.5446,0.51876 0.86219,0.75441 0.94844,0.70347 2.28942,1.274 3.77207,1.50883 0.4942,0.0783 0.98655,0.1076 1.50883,0.1076 2.08904,0 3.90849,-0.67861 5.17312,-1.6166 1.27041,-0.94258 1.93992,-2.11143 1.93992,-3.34098 0,-1.22896 -0.66841,-2.29635 -1.93992,-3.2332 -1.26552,-0.93223 -3.08301,-1.6166 -5.17312,-1.6166 z m -161.76778,0.32315 c -2.08904,0 -3.90849,0.67847 -5.17312,1.6166 -0.95271,0.70662 -1.58425,1.58712 -1.83214,2.47879 -0.0828,0.29728 -0.1076,0.55487 -0.1076,0.86219 0,0.92188 0.35332,1.83359 1.07773,2.58656 0.24141,0.25106 0.54432,0.41247 0.86219,0.64664 0.94909,0.6993 2.21202,1.27269 3.66429,1.50882 0.4841,0.0786 0.98631,0.1076 1.50883,0.1076 2.09014,0 4.01541,-0.68419 5.28089,-1.6166 1.27152,-0.93668 1.93992,-2.00403 1.93992,-3.2332 0,-1.2292 -0.66964,-2.39881 -1.93992,-3.34097 -1.26462,-0.93813 -3.19181,-1.6166 -5.28089,-1.6166 z m -29.0988,17.56706 c -2.08908,0 -4.01624,0.67861 -5.28089,1.6166 -0.95268,0.70658 -1.58425,1.58708 -1.83215,2.47878 -0.0828,0.29729 -0.1076,0.55487 -0.1076,0.86219 0,0.92161 0.35333,1.83349 1.07774,2.58656 0.24141,0.25107 0.54431,0.41244 0.86218,0.64664 0.94917,0.69916 2.28952,1.27266 3.77207,1.50883 0.49417,0.0786 0.98631,0.1076 1.50883,0.1076 2.09004,0 3.90756,-0.68437 5.17312,-1.6166 1.27151,-0.93685 1.93992,-2.00438 1.93992,-3.2332 0,-1.22934 -0.66968,-2.39885 -1.93992,-3.34098 -1.26466,-0.93799 -3.08408,-1.6166 -5.17312,-1.6166 z m 54.53331,0.53886 c -2.08908,0 -3.9085,0.67848 -5.17312,1.6166 -0.95271,0.70662 -1.58425,1.50966 -1.83215,2.37102 -0.0828,0.28728 -0.1076,0.55487 -0.1076,0.86218 0,0.61467 0.21279,1.26766 0.53887,1.83215 0.16313,0.28211 0.29728,0.49334 0.53887,0.75441 0.24141,0.26107 0.54431,0.52025 0.86218,0.75442 0.94913,0.69926 2.21203,1.27269 3.6643,1.50882 0.4841,0.0786 0.9863,0.1076 1.50882,0.1076 2.09022,0 4.00541,-0.68161 5.2809,-1.6166 1.28152,-0.9393 1.93992,-2.12066 1.93992,-3.34097 0,-1.22013 -0.65971,-2.28845 -1.93992,-3.2332 -1.27459,-0.94078 -3.19168,-1.6166 -5.2809,-1.6166 z m 56.25768,1.50883 c -2.09025,0 -3.8976,0.57394 -5.17312,1.50883 -0.9611,0.7044 -1.5869,1.5877 -1.83214,2.47878 -0.0817,0.29694 -0.1076,0.55718 -0.1076,0.86219 0,0.91537 0.35208,1.80007 1.07773,2.58656 0.24175,0.2621 0.54211,0.51817 0.86218,0.75441 1.27459,0.94072 3.08391,1.50883 5.17312,1.50883 2.08908,0 4.01631,-0.57087 5.2809,-1.50883 1.27027,-0.94216 1.83214,-2.11163 1.83214,-3.34097 0,-1.22882 -0.56059,-2.40416 -1.83214,-3.34097 -1.26549,-0.93227 -3.19082,-1.50883 -5.2809,-1.50883 z"
 
       id="path5152" /><path
 
       inkscape:connector-curvature="0"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="M 242.96875,155.625 272.625,178.84375 245.8125,179 230.9375,167.59375 216.28125,167.5 l 26.375,20.6875 0.3125,-0.21875 0,0.0625 41.09375,-0.21875 0.8125,0.625 -15.0625,82.59375 57.96875,0.4375 L 311.75,189.25 l 1.78125,-1.40625 41.125,0.21875 0,-0.0625 0.28125,0.21875 26.375,-20.6875 -14.65625,0.0937 -14.875,11.40625 -26.8125,-0.15625 29.6875,-23.21875 -15.90625,0.1875 -29.09375,22.6875 -2.09375,-10.8125 -18.875,-0.1875 -1.84375,10.09375 -27.96875,-21.8125 -15.90625,-0.1875 z"
 
       id="path4212-7-6-7-3-0-7-3-1"
 
       transform="translate(0,308.2677)" /></g><g
 
     id="flowRoot3013-0-3-7-9-7-8"
 
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed Light;-inkscape-font-specification:'Open Sans Condensed Light, Light'"
 
     transform="matrix(0.88882369,0,0,0.88882369,1106.9094,-58.223798)"><path
 
       inkscape:connector-curvature="0"
 
       id="path3277"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -1032.3359,754.60721 c -10e-5,2.14063 -0.5626,3.81641 -1.6875,5.02734 -1.125,1.21094 -2.75,1.81641 -4.875,1.81641 -1.1563,0 -2.1719,-0.14844 -3.0469,-0.44531 -0.875,-0.29688 -1.5547,-0.625 -2.0391,-0.98438 l 0,-2.60156 c 0.5781,0.57813 1.3438,1.04297 2.2969,1.39453 0.9531,0.35156 1.9297,0.52734 2.9297,0.52734 1.3125,0 2.3437,-0.42968 3.0937,-1.28906 0.75,-0.85937 1.125,-2.00781 1.125,-3.44531 0,-1.12499 -0.2695,-2.07421 -0.8086,-2.84766 -0.539,-0.77343 -1.5664,-1.65233 -3.082,-2.63672 -1.7344,-1.09373 -2.918,-1.96873 -3.5508,-2.625 -0.6328,-0.65623 -1.125,-1.39061 -1.4765,-2.20312 -0.3516,-0.81248 -0.5274,-1.78123 -0.5274,-2.90625 0,-1.82811 0.6172,-3.33982 1.8516,-4.53516 1.2344,-1.19529 2.8047,-1.79294 4.7109,-1.79297 2.0469,3e-5 3.7578,0.4844 5.1328,1.45313 l -1.1484,1.94531 c -1.2813,-0.85935 -2.6406,-1.28904 -4.0781,-1.28906 -1.3125,2e-5 -2.3594,0.38674 -3.1407,1.16015 -0.7812,0.77346 -1.1718,1.79299 -1.1718,3.0586 0,1.12502 0.2656,2.06642 0.7968,2.82422 0.5313,0.75783 1.6563,1.67579 3.375,2.7539 1.6875,1.10939 2.8438,1.99611 3.4688,2.66016 0.625,0.66407 1.0898,1.39845 1.3945,2.20312 0.3047,0.8047 0.457,1.73048 0.4571,2.77735 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3279"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -1012.9062,748.20877 c -10e-5,4.28126 -0.6758,7.5586 -2.0274,9.83203 -1.3516,2.27344 -3.2852,3.41016 -5.8008,3.41016 -2.4844,0 -4.3867,-1.13672 -5.707,-3.41016 -1.3203,-2.27343 -1.9805,-5.55077 -1.9805,-9.83203 0,-8.7656 2.5938,-13.14841 7.7813,-13.14844 2.4375,3e-5 4.3359,1.14847 5.6953,3.44532 1.3593,2.29689 2.039,5.53126 2.0391,9.70312 z m -13.1954,0 c 0,3.67188 0.4375,6.44532 1.3125,8.32031 0.875,1.87501 2.2422,2.8125 4.1016,2.8125 3.6406,0 5.4609,-3.71093 5.4609,-11.13281 0,-7.35935 -1.8203,-11.03904 -5.4609,-11.03906 -1.9063,2e-5 -3.2852,0.9219 -4.1367,2.76562 -0.8516,1.84377 -1.2774,4.60158 -1.2774,8.27344 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3281"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -1000.7656,737.52127 -3.9844,0 0,23.46094 -2.2031,0 0,-23.46094 -3.2344,0 0,-1.26562 3.2344,-0.96094 0,-1.92188 c 0,-3.23434 0.3828,-5.56246 1.1484,-6.98437 0.7656,-1.42184 2.0938,-2.13278 3.9844,-2.13281 1.0937,3e-5 2.08591,0.19534 2.97655,0.58593 l -0.77344,2.0625 c -0.82811,-0.39059 -1.57811,-0.5859 -2.25001,-0.58593 -0.7656,3e-5 -1.3437,0.22659 -1.7344,0.67968 -0.3906,0.45316 -0.6797,1.18754 -0.8671,2.20313 -0.1876,1.01565 -0.2813,2.4219 -0.2813,4.21875 l 0,2.13281 3.9844,0 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3283"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -992,759.38846 c 0.68749,0 1.29687,-0.0937 1.82813,-0.28125 l 0,1.875 c -0.68751,0.3125 -1.57033,0.46875 -2.64844,0.46875 -2.62501,0 -3.93751,-1.96094 -3.9375,-5.88281 l 0,-18.04688 -2.29688,0 0,-1.3125 2.25,-0.65625 0.72657,-6.04687 1.54687,0 0,6.04687 4.03125,0 0,1.96875 -4.03125,0 0,17.41406 c -10e-6,1.71876 0.18749,2.89063 0.5625,3.51563 0.37499,0.625 1.03124,0.9375 1.96875,0.9375 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3285"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -972.03125,760.98221 -3.51562,-17.22656 c -0.0313,-0.12499 -0.0586,-0.2578 -0.082,-0.39844 -0.0235,-0.14061 -0.26954,-1.64061 -0.73828,-4.5 l -0.0469,0 -0.32813,1.99219 -0.53906,2.90625 -3.63281,17.22656 -2.64844,0 -5.53125,-25.42969 2.22656,0 3.16407,14.8125 1.47656,7.73438 0.14062,0 c 0.28124,-2.23437 0.73437,-4.82812 1.35938,-7.78125 l 3.16406,-14.76563 2.34375,0 3.1875,14.8125 c 0.24998,1.10939 0.69529,3.68751 1.33594,7.73438 l 0.14062,0 c 0.0469,-0.51563 0.27733,-1.8125 0.69141,-3.89063 0.41404,-2.07812 1.73826,-8.29686 3.97266,-18.65625 l 2.20312,0 -5.71875,25.42969 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3287"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -949.97656,760.98221 -0.28125,-3.5625 -0.0937,0 c -1.21876,2.6875 -3.06251,4.03125 -5.53125,4.03125 -1.65626,0 -2.98829,-0.66016 -3.9961,-1.98047 -1.00781,-1.32031 -1.51172,-3.08984 -1.51171,-5.30859 -10e-6,-2.42187 0.72655,-4.33984 2.17968,-5.75391 1.45312,-1.41405 3.49218,-2.18358 6.11719,-2.30859 l 2.74219,-0.14063 0,-2.10937 c -2e-5,-2.37498 -0.29689,-4.10545 -0.89063,-5.19141 -0.59376,-1.08591 -1.57813,-1.62888 -2.95312,-1.62891 -1.45314,3e-5 -2.93751,0.47659 -4.45313,1.42969 l -0.96093,-1.75781 c 1.76561,-1.09373 3.61718,-1.6406 5.55468,-1.64063 2.09374,3e-5 3.60155,0.66018 4.52344,1.98047 0.92186,1.32034 1.3828,3.52737 1.38281,6.6211 l 0,17.32031 z m -5.41406,-1.42969 c 1.59374,0 2.83202,-0.78515 3.71484,-2.35547 0.8828,-1.57031 1.3242,-3.79296 1.32422,-6.66797 l 0,-2.64843 -2.64844,0.14062 c -2.04688,0.10939 -3.56641,0.67579 -4.55859,1.69922 -0.9922,1.02345 -1.48829,2.51954 -1.48828,4.48828 -10e-6,1.84376 0.32812,3.19532 0.98437,4.05469 0.65624,0.85937 1.54687,1.28906 2.67188,1.28906 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3289"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -934.39062,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3291"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -921.10156,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3293"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -893.98437,737.52127 -3.98438,0 0,23.46094 -2.20312,0 0,-23.46094 -3.23438,0 0,-1.26562 3.23438,-0.96094 0,-1.92188 c -10e-6,-3.23434 0.3828,-5.56246 1.14843,-6.98437 0.76562,-1.42184 2.09375,-2.13278 3.98438,-2.13281 1.09374,3e-5 2.08592,0.19534 2.97656,0.58593 l -0.77344,2.0625 c -0.82813,-0.39059 -1.57813,-0.5859 -2.25,-0.58593 -0.76563,3e-5 -1.34375,0.22659 -1.73437,0.67968 -0.39063,0.45316 -0.6797,1.18754 -0.86719,2.20313 -0.18751,1.01565 -0.28126,2.4219 -0.28125,4.21875 l 0,2.13281 3.98438,0 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3295"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -882.82812,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3297"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -869.53906,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3299"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -850.69531,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3301"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -832.85937,761.45096 c -4.93751,0 -7.40626,-4.38281 -7.40625,-13.14844 -10e-6,-4.31248 0.61718,-7.59764 1.85156,-9.85547 1.23437,-2.25779 3.05468,-3.38669 5.46094,-3.38672 1.14061,3e-5 2.22264,0.32815 3.24609,0.98438 1.02342,0.65627 1.83983,1.56252 2.44922,2.71875 l 0.1875,0 -0.0937,-2.83594 0,-11.41406 2.22656,0 0,36.46875 -1.82812,0 -0.1875,-3.5625 -0.21094,0 c -0.60939,1.29688 -1.39845,2.29297 -2.36719,2.98828 -0.96876,0.69531 -2.07814,1.04297 -3.32812,1.04297 z m 0.14062,-1.94531 c 1.78124,0 3.15233,-0.82422 4.11328,-2.47266 0.96092,-1.64843 1.44139,-4.07421 1.44141,-7.27734 l 0,-1.45313 c -2e-5,-3.84373 -0.46486,-6.66014 -1.39453,-8.44922 -0.9297,-1.78904 -2.34767,-2.68357 -4.25391,-2.68359 -1.82813,2e-5 -3.14063,0.95705 -3.9375,2.87109 -0.79688,1.91408 -1.19532,4.68361 -1.19531,8.3086 -1e-5,3.65625 0.41406,6.42969 1.24219,8.32031 0.82811,1.89063 2.15624,2.83594 3.98437,2.83594 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3303"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -803.84375,748.20877 c -2e-5,4.28126 -0.6758,7.5586 -2.02734,9.83203 -1.35158,2.27344 -3.28517,3.41016 -5.80078,3.41016 -2.48439,0 -4.38673,-1.13672 -5.70704,-3.41016 -1.32031,-2.27343 -1.98047,-5.55077 -1.98046,-9.83203 -10e-6,-8.7656 2.59374,-13.14841 7.78125,-13.14844 2.43748,3e-5 4.33592,1.14847 5.69531,3.44532 1.35936,2.29689 2.03904,5.53126 2.03906,9.70312 z m -13.19531,0 c -1e-5,3.67188 0.43749,6.44532 1.3125,8.32031 0.87499,1.87501 2.24218,2.8125 4.10156,2.8125 3.64061,0 5.46092,-3.71093 5.46094,-11.13281 -2e-5,-7.35935 -1.82033,-11.03904 -5.46094,-11.03906 -1.90626,2e-5 -3.28516,0.9219 -4.13672,2.76562 -0.85157,1.84377 -1.27735,4.60158 -1.27734,8.27344 z" /><path
 
       inkscape:connector-curvature="0"
 
       id="path3305"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="m -776.58594,760.98221 0,-17.32031 c -2e-5,-4.26561 -1.25002,-6.39842 -3.75,-6.39844 -1.71877,2e-5 -2.95705,0.74611 -3.71484,2.23828 -0.75783,1.49221 -1.13674,3.69142 -1.13672,6.59766 l 0,14.88281 -2.20312,0 0,-17.32031 c -2e-5,-2.15623 -0.30471,-3.7617 -0.91407,-4.81641 -0.60939,-1.05467 -1.5547,-1.58201 -2.83593,-1.58203 -1.68751,2e-5 -2.91408,0.76565 -3.67969,2.29687 -0.76563,1.53127 -1.14845,4.01565 -1.14844,7.45313 l 0,13.96875 -2.22656,0 0,-25.42969 1.875,0 0.1875,3.53906 0.21094,0 c 1.01561,-2.68747 2.74217,-4.03122 5.17968,-4.03125 1.40624,3e-5 2.51561,0.37503 3.32813,1.125 0.81248,0.75003 1.39842,1.84378 1.75781,3.28125 0.60936,-1.56247 1.35936,-2.68747 2.25,-3.375 0.89061,-0.68747 2.04685,-1.03122 3.46875,-1.03125 1.92185,3e-5 3.3281,0.73831 4.21875,2.21485 0.8906,1.47658 1.33591,3.83986 1.33594,7.08984 l 0,16.61719 z" /></g><path
 
     id="flowRoot3023-5-6-2-5-9-7"
 
     d="m 160.4375,627.67395 c -4.16544,3e-5 -7.25828,1.44305 -9.25,4.375 -1.99173,2.93201 -2.96875,7.36768 -2.96875,13.3125 0,5.68198 1.05331,10.00553 3.15625,12.9375 2.10293,2.93198 5.1636,4.40625 9.1875,4.40625 2.56799,0 4.90807,-0.68566 7.03125,-2 l 0,-7.09375 c -2.20406,1.41545 -4.32171,2.12501 -6.34375,2.125 -1.69854,10e-6 -2.9081,-0.86489 -3.65625,-2.59375 -0.74817,-1.72885 -1.12501,-4.34558 -1.125,-7.84375 -1e-5,-3.57902 0.36672,-6.24171 1.125,-8.03125 0.75826,-1.78949 1.99999,-2.68747 3.71875,-2.6875 1.2941,3e-5 2.79043,0.47797 4.46875,1.46875 l 2.3125,-6.28125 c -1.09193,-0.68747 -2.34377,-1.1985 -3.71875,-1.5625 -1.37501,-0.36394 -2.68384,-0.53122 -3.9375,-0.53125 z m 24,0 c -4.125,3e-5 -7.36215,1.5414 -9.6875,4.625 -2.32537,3.08366 -3.46875,7.36401 -3.46875,12.84375 0,3.55883 0.52206,6.65351 1.59375,9.3125 1.07168,2.65901 2.61213,4.70956 4.59375,6.125 1.9816,1.41544 4.25551,2.125 6.84375,2.125 4.08453,0 7.31064,-1.54137 9.65625,-4.625 2.34556,-3.08363 3.49997,-7.39706 3.5,-12.9375 -3e-5,-5.35842 -1.17558,-9.63693 -3.53125,-12.78125 -2.35572,-3.14426 -5.51657,-4.68747 -9.5,-4.6875 z m 34.46875,0 c -1.81987,3e-5 -3.39524,0.43294 -4.75,1.3125 -1.28039,0.83132 -2.27951,1.96996 -3,3.40625 l 0,-4.15625 -7.96875,0 0,0.0625 -0.0312,0 0,33.78125 8.0625,0 0,-16.21875 c -10e-6,-4.10475 0.40992,-7.02112 1.21875,-8.75 0.80881,-1.72883 2.07352,-2.59372 3.8125,-2.59375 1.31432,3e-5 2.25734,0.62135 2.84375,1.875 0.58638,1.2537 0.87498,3.11584 0.875,5.5625 l 0,20.125 8.125,0 0,-22.03125 c -3e-5,-4.04408 -0.75463,-7.14703 -2.28125,-9.25 -1.52668,-2.1029 -3.83275,-3.12497 -6.90625,-3.125 z m 25.28125,0 c -3.4375,3e-5 -6.1535,0.82173 -8.125,2.5 -1.97151,1.67834 -2.9375,3.94121 -2.9375,6.8125 0,2.2445 0.53217,4.1958 1.59375,5.84375 1.06157,1.64799 2.80331,3.20039 5.25,4.65625 1.84006,1.11214 3.09374,2.07538 3.78125,2.84375 0.68749,0.76839 1.03124,1.65626 1.03125,2.6875 -1e-5,1.01104 -0.3116,1.82078 -0.96875,2.4375 -0.65718,0.61673 -1.62134,0.93751 -2.875,0.9375 -1.13236,10e-6 -2.4513,-0.27573 -3.9375,-0.78125 -1.48621,-0.50551 -2.76287,-1.13786 -3.875,-1.90625 l 0,7 c 2.18381,1.31434 4.94485,2 8.28125,2 3.76101,0 6.60017,-0.93107 8.53125,-2.78125 1.93104,-1.85018 2.87498,-4.42279 2.875,-7.71875 -2e-5,-1.51653 -0.22245,-2.83639 -0.6875,-3.96875 -0.46509,-1.13234 -1.11951,-2.14153 -1.96875,-3.03125 -0.84928,-0.88969 -2.33458,-1.97609 -4.4375,-3.25 -1.73898,-1.05145 -2.92556,-1.94851 -3.5625,-2.65625 -0.63696,-0.7077 -0.93751,-1.4963 -0.9375,-2.40625 -1e-5,-0.78858 0.23437,-1.45402 0.75,-2 0.51561,-0.54593 1.31249,-0.84372 2.34375,-0.84375 1.63785,3e-5 3.52389,0.60849 5.6875,1.78125 l 2.65625,-5.8125 c -2.64891,-1.57717 -5.47613,-2.34372 -8.46875,-2.34375 z m 25.125,0 c -3.94302,3e-5 -7.01472,1.55335 -9.21875,4.6875 -2.20404,3.13421 -3.28125,7.48165 -3.28125,13.0625 0,5.5 1.21967,9.74726 3.65625,12.75 2.43657,3.00275 5.74264,4.53125 9.96875,4.53125 3.61946,0 6.72425,-0.78677 9.3125,-2.34375 l 0,-6.65625 c -2.75002,1.63787 -5.43385,2.46876 -8.0625,2.46875 -2.06251,10e-6 -3.67097,-0.75275 -4.84375,-2.21875 -1.1728,-1.46598 -1.7831,-3.67463 -1.84375,-6.6875 l 16.21875,0 0,-4.3125 c -3e-5,-4.83269 -1.06437,-8.602 -3.1875,-11.28125 -2.12318,-2.67919 -5.03863,-3.99997 -8.71875,-4 z m 31.71875,0 c -1.39523,3e-5 -2.63605,0.43386 -3.6875,1.34375 -1.05148,0.90996 -2.01656,2.43937 -2.90625,4.5625 l -0.28125,0 -0.90625,-5.28125 -6.625,0 0,33.78125 8.0625,0 0,-17.375 c -10e-6,-2.95218 0.51102,-5.20311 1.5625,-6.75 1.05145,-1.54685 2.56984,-2.31247 4.53125,-2.3125 0.90991,3e-5 1.65256,0.0791 2.21875,0.28125 l 0.9375,-7.8125 c -0.95039,-0.30327 -1.91546,-0.43747 -2.90625,-0.4375 z m -31.75,6.1875 c 1.23344,3e-5 2.19851,0.66363 2.90625,1.9375 0.7077,1.27392 1.08454,3.12687 1.125,5.59375 l -8.1875,0 c 0.12131,-2.56799 0.53308,-4.46413 1.28125,-5.6875 0.74815,-1.22332 1.72242,-1.84372 2.875,-1.84375 z M 184.375,634.5802 c 1.67829,3e-5 2.90899,0.87595 3.6875,2.625 0.77847,1.7491 1.15623,4.39893 1.15625,7.9375 -2e-5,7.11764 -1.60848,10.65626 -4.84375,10.65625 -1.69854,10e-6 -2.95038,-0.88786 -3.71875,-2.6875 -0.76839,-1.79962 -1.12501,-4.45036 -1.125,-7.96875 -1e-5,-3.53857 0.35661,-6.1884 1.125,-7.9375 0.76837,-1.74905 2.02021,-2.62497 3.71875,-2.625 z"
 
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
 
     inkscape:connector-curvature="0" /><path
 
     id="flowRoot3023-5-6-2-5-9-7-1"
 
     d="m 350.4375,627.67395 c -3.94302,3e-5 -7.5809,1.03313 -10.9375,3.15625 l 2.78125,5.59375 c 2.62866,-1.57718 4.94668,-2.37497 6.96875,-2.375 2.72976,3e-5 4.09373,1.59562 4.09375,4.75 l 0,2.40625 -4.46875,0.1875 c -3.88235,0.18201 -6.79872,1.14616 -8.75,2.875 -1.95129,1.72887 -2.9375,4.3787 -2.9375,7.9375 0,3.31618 0.69945,5.88971 2.125,7.75 1.42554,1.86029 3.38787,2.78125 5.875,2.78125 1.94116,0 3.53859,-0.34559 4.8125,-1.09375 1.27388,-0.74816 2.52572,-2.11213 3.71875,-4.09375 l 0.1875,0 1.59375,4.59375 5.90625,0 0,-22.6875 c -3e-5,-3.76099 -0.91087,-6.66634 -2.78125,-8.71875 -1.87042,-2.05235 -4.60848,-3.06247 -8.1875,-3.0625 z m 33.28125,0.0312 c -1.81987,3e-5 -3.42649,0.46419 -4.78125,1.34375 -1.31804,0.85577 -2.33777,2.0344 -3.0625,3.53125 l 0,-4.28125 -7.96875,0 0,18.15625 0.0312,0 0,15.6875 8.0625,0 0,-16.21875 c -1e-5,-4.10475 0.40992,-7.02112 1.21875,-8.75 0.80881,-1.72883 2.07352,-2.59372 3.8125,-2.59375 1.31432,3e-5 2.28859,0.62135 2.875,1.875 0.58638,1.2537 0.87498,3.11584 0.875,5.5625 l 0,20.125 8.125,0 0,-22.0625 c -3e-5,-4.04408 -0.75463,-7.11578 -2.28125,-9.21875 -1.52668,-2.1029 -3.83275,-3.15622 -6.90625,-3.15625 z m 26.8125,0 c -4.16544,3e-5 -7.25828,1.4743 -9.25,4.40625 -1.99173,2.93201 -2.96875,7.36768 -2.96875,13.3125 0,5.68198 1.05331,10.00553 3.15625,12.9375 2.10293,2.93198 5.1636,4.375 9.1875,4.375 2.56799,0 4.90807,-0.65441 7.03125,-1.96875 l 0,-7.09375 c -2.20406,1.41545 -4.32171,2.12501 -6.34375,2.125 -1.69854,10e-6 -2.9081,-0.86489 -3.65625,-2.59375 -0.74817,-1.72885 -1.12501,-4.34558 -1.125,-7.84375 -10e-6,-3.57902 0.36672,-6.24171 1.125,-8.03125 0.75826,-1.78949 1.99999,-2.68747 3.71875,-2.6875 1.2941,3e-5 2.79043,0.47797 4.46875,1.46875 l 2.28125,-6.28125 c -1.09193,-0.68747 -2.31252,-1.1985 -3.6875,-1.5625 -1.37501,-0.36394 -2.68384,-0.56247 -3.9375,-0.5625 z m -102.6875,0.65625 8.84375,33.78125 10,0 8.875,-33.78125 -8.375,0 c -2.95222,13.44668 -4.52575,20.6434 -4.6875,21.59375 -0.16178,0.95038 -0.31711,1.99266 -0.46875,3.125 -0.15167,1.13236 -0.22979,1.98714 -0.25,2.59375 l -0.125,0 c -0.0607,-0.76837 -0.21601,-2.03216 -0.46875,-3.78125 -0.25277,-1.74907 -0.47428,-3.05881 -0.65625,-3.96875 l -4.3125,-19.5625 -8.375,0 z m 45.5,17.9375 0,2.875 c -2e-5,2.20405 -0.43292,3.95681 -1.3125,5.28125 -0.87961,1.32445 -2.05516,2.00001 -3.53125,2 -1.98162,10e-6 -2.96876,-1.39706 -2.96875,-4.1875 -10e-6,-1.8805 0.42187,-3.29962 1.28125,-4.25 0.85936,-0.95035 2.22242,-1.49263 4.0625,-1.59375 l 2.46875,-0.125 z"
 
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
 
     inkscape:connector-curvature="0" /><g
 
     id="flowRoot3023-5-6-2-5-9-7-1-5"
 
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
 
     transform="matrix(1.2941148,0,0,1.2941148,1726.8994,-500.84696)"><path
 
       inkscape:connector-curvature="0"
 
       id="path3274"
 
       d="m -1008.5625,872.02908 6.4688,0 3.60933,14.74219 c 0.35936,1.31251 0.64842,3.14845 0.86718,5.50781 l 0.14063,0 c 0.0156,-0.37499 0.0859,-1.04296 0.21094,-2.0039 0.12498,-0.96093 0.22655,-1.71484 0.30468,-2.26172 0.0781,-0.54687 1.15624,-5.87499 3.23438,-15.98438 l 6.5625,0 -7.47656,27.98438 c -0.90627,3.43749 -2.10939,5.90624 -3.60938,7.40625 -1.50001,1.49999 -3.5,2.24999 -6,2.25 -1.2344,-10e-6 -2.3359,-0.13283 -3.3047,-0.39844 l 0,-5.22656 c 0.6406,0.18749 1.3594,0.28124 2.1563,0.28125 2.0937,-10e-6 3.4687,-1.37501 4.125,-4.125 l 0.4453,-1.64063 z" /></g></g></g></g></g></svg>
...
 
\ No newline at end of file
 
       d="m -1008.5625,872.02908 6.4688,0 3.60933,14.74219 c 0.35936,1.31251 0.64842,3.14845 0.86718,5.50781 l 0.14063,0 c 0.0156,-0.37499 0.0859,-1.04296 0.21094,-2.0039 0.12498,-0.96093 0.22655,-1.71484 0.30468,-2.26172 0.0781,-0.54687 1.15624,-5.87499 3.23438,-15.98438 l 6.5625,0 -7.47656,27.98438 c -0.90627,3.43749 -2.10939,5.90624 -3.60938,7.40625 -1.50001,1.49999 -3.5,2.24999 -6,2.25 -1.2344,-10e-6 -2.3359,-0.13283 -3.3047,-0.39844 l 0,-5.22656 c 0.6406,0.18749 1.3594,0.28124 2.1563,0.28125 2.0937,-10e-6 3.4687,-1.37501 4.125,-4.125 l 0.4453,-1.64063 z" /></g></g></g></g></g></svg>
conservancy/static/img/supporter-card-2.svg
Show inline comments
...
 
@@ -843,385 +843,385 @@
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path4218"
 
     d="m 442.94674,264.88851 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31208,-3.06884 -5.17023,-3.06884 z"
 
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path4220"
 
     d="m 456.9385,264.88851 c -2.85815,0 -5.19944,1.37236 -5.19944,3.06884 0,1.69648 2.34129,3.06883 5.19944,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31208,-3.06884 -5.17023,-3.06884 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path4222"
 
     d="m 470.90105,264.88851 c -2.85815,0 -5.17024,1.37236 -5.17024,3.06884 0,1.69648 2.31209,3.06883 5.17024,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17023,-3.06884 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path4224"
 
     d="m 484.8928,264.88851 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31208,-3.06884 -5.17023,-3.06884 z"
 
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /><path
 
     id="path4226"
 
     d="m 498.88456,264.88851 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17023,-3.06884 z"
 
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
 
     inkscape:connector-curvature="0" /></g><rect
 
   style="fill:url(#linearGradient6744);fill-opacity:1;stroke:none"
 
   id="rect6728"
 
   width="283.13037"
 
   height="43.704079"
 
   x="227.34274"
 
   y="256.32147" /><g
 
   transform="matrix(0.59207878,0,0,0.35143336,349.96837,-162.35997)"
 
   id="g4480" /><g
 
   id="g5539"
 
   transform="matrix(0.68850366,0,0,0.40866716,0.18296913,-31.44899)"
 
   style="fill:#577632" /><g
 
   transform="matrix(0.59207878,0,0,0.35143336,-197.92653,-253.68871)"
 
   id="g4480-1" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3708"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 103.23826,139.29803 c -2e-5,-0.83904 -0.12295,-1.54584 -0.36877,-2.12042 -0.24586,-0.58367 -0.56084,-1.06247 -0.94495,-1.43642 -0.36878,-0.3739 -0.77595,-0.66119 -1.22153,-0.86184 -0.43023,-0.20974 -0.83741,-0.36023 -1.221521,-0.45145 -0.384143,-0.1003 -0.706809,-0.15502 -0.968002,-0.16416 -0.245854,-0.0183 -0.376458,-0.0274 -0.391809,-0.0274 -1.060204,2e-5 -2.028204,0.1733 -2.904004,0.51984 -0.87582,0.33746 -1.62871,0.85731 -2.25867,1.55954 -0.614612,0.69314 -1.098612,1.56867 -1.452001,2.62658 -0.338039,1.04882 -0.507055,2.28003 -0.507049,3.69364 -6e-6,1.41362 0.153645,2.65395 0.460953,3.72099 0.32266,1.06705 0.768248,1.96082 1.336764,2.6813 0.5685,0.72049 1.252246,1.26314 2.05124,1.62794 0.81434,0.36481 1.72088,0.5472 2.719623,0.5472 0.752876,-0.0364 1.451988,-0.20064 2.097336,-0.49248 0.276557,-0.11856 0.55313,-0.2736 0.82971,-0.46513 0.29193,-0.19152 0.56082,-0.42864 0.80667,-0.71136 0.26119,-0.28272 0.49935,-0.61104 0.71448,-0.98497 0.21509,-0.38304 0.38411,-0.82537 0.50705,-1.32697 l 3.68762,0.16416 c -0.16903,0.68401 -0.42256,1.29049 -0.76057,1.81945 -0.33805,0.51986 -0.72986,0.97586 -1.17543,1.36802 -0.43024,0.38304 -0.89888,0.70681 -1.40591,0.97129 -0.4917,0.26448 -0.98338,0.48336 -1.47505,0.65665 -1.16776,0.40127 -2.427696,0.62928 -3.779811,0.684 -1.797728,0 -3.403378,-0.21432 -4.816958,-0.64296 -1.398231,-0.43777 -2.581343,-1.08074 -3.549338,-1.92891 -0.95264,-0.85728 -1.682482,-1.91977 -2.189527,-3.18746 -0.491685,-1.26769 -0.737526,-2.73146 -0.737525,-4.39132 -10e-7,-3.4565 0.991047,-6.06485 2.973147,-7.82504 1.982091,-1.76927 5.039743,-2.65392 9.172964,-2.65394 0.04608,2e-5 0.199732,0.005 0.460953,0.0137 0.276557,0.009 0.622272,0.0411 1.037144,0.0958 0.414841,0.0548 0.883481,0.14138 1.405911,0.25993 0.52239,0.10945 1.05249,0.27361 1.59028,0.49248 0.53776,0.2189 1.06018,0.4925 1.56724,0.8208 0.50703,0.32835 0.9603,0.73875 1.35982,1.23121 0.39947,0.48339 0.71445,1.05339 0.94495,1.71002 0.24582,0.65666 0.36874,1.41363 0.36876,2.27091 l -3.96419,0.13679" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3710"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 126.99353,142.02037 c -2e-5,0.98498 -0.11526,1.94715 -0.34572,2.88651 -0.21513,0.93026 -0.53011,1.8149 -0.94495,2.65394 -0.39951,0.83906 -0.89888,1.6097 -1.4981,2.31195 -0.59925,0.70224 -1.27532,1.30873 -2.02819,1.81945 -0.73754,0.5016 -1.55957,0.89377 -2.4661,1.17649 -0.89119,0.29185 -1.84382,0.43777 -2.85791,0.43777 -1.02947,0 -1.97442,-0.14137 -2.83486,-0.42409 -0.84508,-0.28272 -1.61334,-0.67944 -2.30476,-1.19017 -0.67607,-0.51072 -1.27531,-1.11721 -1.79772,-1.81945 -0.50705,-0.70225 -0.93727,-1.47289 -1.29067,-2.31195 -0.33803,-0.83904 -0.59924,-1.72368 -0.78362,-2.65394 -0.16901,-0.93936 -0.25352,-1.90153 -0.25352,-2.88651 0,-1.4592 0.19206,-2.79529 0.57619,-4.00827 0.38413,-1.22208 0.97568,-2.27089 1.77467,-3.14644 0.79898,-0.8755 1.80539,-1.55495 3.01924,-2.03833 1.2292,-0.48334 2.6812,-0.72503 4.35601,-0.72505 1.76697,2e-5 3.26507,0.24171 4.49429,0.72505 1.22919,0.48338 2.22792,1.16283 2.99619,2.03833 0.76824,0.87555 1.32138,1.92436 1.65943,3.14644 0.35338,1.21298 0.53008,2.54907 0.5301,4.00827 m -4.28686,0.10945 c -2e-5,-1.21297 -0.0999,-2.32562 -0.29962,-3.33796 -0.1844,-1.01232 -0.4917,-1.87872 -0.92191,-2.59922 -0.43024,-0.72959 -0.99106,-1.29503 -1.68248,-1.69633 -0.67607,-0.40127 -1.50579,-0.60192 -2.48914,-0.60193 -0.92192,10e-6 -1.72859,0.20066 -2.42001,0.60193 -0.67607,0.4013 -1.23689,0.96674 -1.68247,1.69633 -0.4456,0.7205 -0.77595,1.5869 -0.99105,2.59922 -0.21512,1.01234 -0.32268,2.12499 -0.32267,3.33796 -10e-6,1.23122 0.10755,2.41227 0.32267,3.54315 0.2151,1.13089 0.53777,2.1341 0.968,3.00962 0.43021,0.86641 0.96799,1.55954 1.61333,2.07938 0.64533,0.51985 1.39053,0.77977 2.23563,0.77977 0.84506,0 1.61332,-0.25992 2.30476,-0.77977 0.70678,-0.51984 1.30602,-1.21297 1.79772,-2.07938 0.50703,-0.87552 0.89116,-1.87873 1.15238,-3.00962 0.27655,-1.13088 0.41484,-2.31193 0.41486,-3.54315" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3712"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 147.86784,132.97781 c -0.62999,3.25589 -1.12166,6.50719 -1.47504,9.75393 -0.33806,3.23763 -0.56085,6.50262 -0.66838,9.79497 l -3.66457,0 -8.64288,-13.63908 c -0.36877,4.52356 -0.5762,9.05168 -0.62228,13.58436 l -3.71068,0.0273 c 0.0307,-0.96673 0.0461,-1.93346 0.0461,-2.90018 0,-0.96673 0,-1.94258 0,-2.92755 0,-4.52356 -0.11523,-9.04255 -0.34571,-13.557 l 5.13963,0.0547 8.22801,14.70613 c 0.0614,-0.7296 0.11526,-1.5276 0.16134,-2.39402 0.0461,-0.87552 0.0845,-1.78753 0.11526,-2.73602 0.0461,-0.94849 0.0768,-1.91977 0.0922,-2.91387 0.0308,-0.99407 0.0461,-1.97448 0.0461,-2.94123 -1e-5,-0.68399 -0.008,-1.35431 -0.0231,-2.01098 -0.0154,-0.66575 -0.0384,-1.31327 -0.0692,-1.94258 l 5.39315,0.0411" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3714"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 168.4195,136.75353 c -0.0153,0.27361 -0.0537,0.56545 -0.11526,0.87552 -0.0615,0.2645 -0.146,0.57458 -0.25354,0.93025 -0.0922,0.3557 -0.24585,0.72506 -0.46095,1.10809 l -4.26381,-0.34201 c 0.16901,-0.39214 0.29193,-0.76606 0.36877,-1.12176 0.0768,-0.36479 0.11526,-0.70679 0.11526,-1.02601 -2e-5,-0.65664 -0.14599,-1.2312 -0.4379,-1.7237 -0.29196,-0.49247 -0.68377,-0.90743 -1.17544,-1.24489 -0.49169,-0.33742 -1.06789,-0.58823 -1.72857,-0.75241 -0.64535,-0.17326 -1.3291,-0.2599 -2.05124,-0.25992 -0.86046,2e-5 -1.62102,0.13226 -2.28172,0.39672 -0.64535,0.25538 -1.1908,0.59739 -1.63638,1.02601 -0.4456,0.41954 -0.78363,0.89835 -1.0141,1.43642 -0.23048,0.52898 -0.34572,1.07162 -0.34572,1.62793 0,0.54722 0.15366,1.07163 0.46095,1.57321 0.32267,0.4925 0.7529,0.96218 1.29068,1.40906 0.55313,0.43777 1.19078,0.84818 1.91295,1.23121 0.72216,0.38305 1.49809,0.73418 2.32781,1.05337 1.42895,0.54721 2.63511,1.05338 3.61849,1.51849 0.99871,0.46514 1.80538,0.92114 2.42,1.36802 0.61458,0.43777 1.06017,0.87553 1.33677,1.31329 0.27655,0.43777 0.41483,0.90289 0.41485,1.39537 -2e-5,0.53809 -0.15367,1.0625 -0.46096,1.57322 -0.29195,0.51072 -0.76827,0.96216 -1.42894,1.35433 -0.66073,0.39216 -1.52117,0.7068 -2.58134,0.94392 -1.04485,0.23713 -2.32783,0.35569 -3.84896,0.35569 -1.47506,0 -2.81182,-0.1368 -4.0103,-0.4104 -1.18311,-0.28273 -2.19721,-0.67033 -3.04228,-1.16282 -0.82972,-0.49248 -1.47505,-1.07616 -1.93601,-1.75105 -0.44558,-0.684 -0.66838,-1.43185 -0.66838,-2.24354 l 4.33296,0.10944 c 0,0.89377 0.17669,1.60514 0.5301,2.1341 0.36875,0.52896 0.80666,0.93025 1.31372,1.20385 0.5224,0.2736 1.06018,0.45145 1.61333,0.53353 0.5685,0.073 1.0525,0.10944 1.45201,0.10944 0.46094,0 0.95261,-0.0411 1.47504,-0.12312 0.53776,-0.0912 1.02945,-0.23713 1.47505,-0.43777 0.46094,-0.20975 0.83739,-0.4788 1.12933,-0.80713 0.30729,-0.33744 0.46094,-0.7524 0.46095,-1.24489 -1e-5,-0.51072 -0.20744,-0.97584 -0.62227,-1.39537 -0.39951,-0.42864 -0.92961,-0.82992 -1.59029,-1.20385 -0.66071,-0.37392 -1.41361,-0.73416 -2.25868,-1.08073 -0.84509,-0.34655 -1.71322,-0.70224 -2.60437,-1.06705 -0.87583,-0.3648 -1.73627,-0.74784 -2.58135,-1.14913 -0.84508,-0.40128 -1.59797,-0.83904 -2.25867,-1.31329 -0.6607,-0.48336 -1.19848,-1.01688 -1.61334,-1.60058 -0.39949,-0.58367 -0.59924,-1.24031 -0.59924,-1.96994 0,-0.46511 0.0615,-0.94391 0.1844,-1.43641 0.13827,-0.49247 0.35338,-0.97127 0.64533,-1.43641 0.30729,-0.47423 0.70678,-0.91655 1.19847,-1.32697 0.50705,-0.41951 1.13702,-0.78431 1.88991,-1.09442 0.75289,-0.31006 1.63638,-0.5563 2.65048,-0.73872 1.02946,-0.18239 2.21257,-0.27358 3.54934,-0.2736 1.39821,0.0183 2.61205,0.12769 3.64153,0.32832 1.02944,0.20066 1.90525,0.45603 2.62742,0.76608 0.72215,0.30099 1.30602,0.63843 1.75163,1.01234 0.44557,0.37394 0.79129,0.75242 1.03715,1.13545 0.24581,0.37394 0.41483,0.72962 0.50704,1.06705 0.0922,0.33746 0.13826,0.62017 0.13829,0.84817" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3716"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 186.62029,133.03253 0,1.87417 -12.65316,0 0,8.34488 10.00268,0 0,2.02466 -10.14096,0 0,4.95221 12.26135,0 0,2.16146 -16.17945,0 0,-19.35738 16.70954,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3718"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 199.03611,152.66351 -3.91809,-6.63486 c -0.76827,0.0547 -1.51348,0.0821 -2.23562,0.0821 -0.18439,1e-5 -0.36877,1e-5 -0.55315,0 -0.18439,1e-5 -0.37645,-0.009 -0.57618,-0.0273 -0.0922,1.08529 -0.16903,2.16602 -0.23049,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13828,3.22851 l -3.45715,0 c 0.0922,-1.89698 0.16901,-3.78484 0.23048,-5.66358 0.0768,-1.88784 0.11526,-3.78938 0.11526,-5.70461 0,-1.38624 -0.0231,-2.75881 -0.0692,-4.11771 -0.0461,-1.368 -0.1076,-2.74514 -0.18438,-4.1314 0.73752,-0.17327 1.51346,-0.31007 2.32782,-0.41041 0.81434,-0.10942 1.59795,-0.1915 2.35086,-0.24624 0.76823,-0.0547 1.47504,-0.0866 2.12038,-0.0958 0.64532,-0.0182 1.16773,-0.0274 1.56723,-0.0274 1.45967,1e-5 2.84253,0.11857 4.14858,0.35568 1.32139,0.23714 2.47376,0.6293 3.45715,1.17649 0.98335,0.53811 1.75928,1.24491 2.32781,2.12042 0.58386,0.86643 0.87579,1.92892 0.87581,3.18747 -0.0768,0.83906 -0.37646,1.60971 -0.89886,2.31194 -0.52242,0.69314 -1.20617,1.31786 -2.05124,1.87418 -0.8451,0.54721 -1.80541,1.02145 -2.88096,1.42273 -1.0602,0.40129 -2.16648,0.72506 -3.31886,0.97129 0.84508,1.15826 1.7593,2.30283 2.74268,3.43371 0.98335,1.13089 2.03585,2.26634 3.15753,3.40635 l -4.90916,0.24624 m -6.10762,-18.57761 c -0.23048,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16902,1.73283 -0.33035,3.46564 -0.484,5.19845 l 0.0461,0 c 1.69016,0 3.1191,-0.13679 4.28686,-0.4104 1.18311,-0.2736 2.15879,-0.6156 2.92705,-1.02601 0.7836,-0.4104 1.39053,-0.85272 1.82077,-1.32698 0.4302,-0.48335 0.74519,-0.9348 0.94495,-1.35433 0.21509,-0.41951 0.34569,-0.77063 0.39181,-1.05337 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -1e-5,-0.10031 -0.0154,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11527,-0.60647 -0.25354,-0.97128 -0.1383,-0.37391 -0.35341,-0.76152 -0.64533,-1.16282 -0.27659,-0.40127 -0.66839,-0.76606 -1.17542,-1.0944 -0.50707,-0.33743 -1.14472,-0.61559 -1.91297,-0.83449 -0.76826,-0.21887 -1.70553,-0.32831 -2.8118,-0.32833 -0.76828,2e-5 -1.62104,0.0547 -2.5583,0.16416" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3720"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 226.64036,132.93677 c -1.42897,3.24676 -2.75805,6.48439 -3.98725,9.71288 -1.21386,3.22853 -2.37392,6.48439 -3.48019,9.76761 l -5.94629,-0.0274 c -0.55315,-1.63249 -1.09861,-3.26042 -1.63639,-4.8838 -0.53778,-1.62336 -1.08325,-3.24674 -1.63638,-4.87012 -0.55315,-1.62337 -1.12934,-3.24219 -1.72857,-4.85645 -0.58387,-1.61423 -1.21385,-3.22849 -1.88992,-4.84276 l 4.30992,0.0684 c 0.82971,2.82724 1.7132,5.64534 2.65048,8.45432 0.93726,2.79988 1.95904,5.63166 3.06534,8.49536 1.01408,-2.84547 1.98208,-5.67269 2.904,-8.48168 0.92189,-2.81809 1.83612,-5.66355 2.74267,-8.5364 l 4.63258,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3722"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 240.78476,152.69087 -1.12934,-3.66628 c -0.73753,-0.0182 -1.46738,-0.0319 -2.18952,-0.0411 -0.72217,-0.009 -1.45201,-0.0137 -2.18953,-0.0137 -0.78363,0 -1.57493,0.005 -2.3739,0.0137 -0.799,0.009 -1.59798,0.0228 -2.39695,0.0411 -0.19976,0.62018 -0.39183,1.23122 -0.5762,1.83314 -0.16903,0.60193 -0.33804,1.20385 -0.50705,1.80578 l -4.30992,0.0273 c 0.67607,-1.61426 1.30604,-3.24218 1.88992,-4.8838 0.59923,-1.64161 1.17542,-3.28779 1.72857,-4.93853 0.55313,-1.65072 1.0986,-3.30146 1.63639,-4.9522 0.53777,-1.65072 1.08323,-3.28777 1.63638,-4.91117 l 5.94629,-0.0684 c 1.10627,3.29237 2.26634,6.5984 3.4802,9.91809 1.22919,3.31972 2.55827,6.59839 3.98724,9.83601 l -4.63258,0 m -5.64667,-17.25063 c -0.73754,1.92435 -1.43665,3.85781 -2.09735,5.80037 -0.66069,1.93347 -1.30602,3.87604 -1.93599,5.82774 0.67606,0.0183 1.34444,0.0228 2.00514,0.0137 0.6607,-0.009 1.33676,-0.0137 2.0282,-0.0137 0.66068,0 1.30601,0.005 1.936,0.0137 0.62995,0.009 1.26761,0.005 1.91295,-0.0137 -0.61462,-1.96082 -1.2369,-3.90795 -1.86686,-5.84142 -0.62997,-1.93344 -1.29067,-3.86234 -1.98209,-5.78669" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3724"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 264.8627,132.97781 c -0.62998,3.25589 -1.12167,6.50719 -1.47505,9.75393 -0.33806,3.23763 -0.56084,6.50262 -0.66838,9.79497 l -3.66458,0 -8.64286,-13.63908 c -0.36877,4.52356 -0.5762,9.05168 -0.62229,13.58436 l -3.71067,0.0273 c 0.0308,-0.96673 0.0461,-1.93346 0.0461,-2.90018 0,-0.96673 0,-1.94258 0,-2.92755 0,-4.52356 -0.11526,-9.04255 -0.34572,-13.557 l 5.13963,0.0547 8.22802,14.70613 c 0.0614,-0.7296 0.11526,-1.5276 0.16132,-2.39402 0.0461,-0.87552 0.0845,-1.78753 0.11526,-2.73602 0.0461,-0.94849 0.0768,-1.91977 0.0922,-2.91387 0.0308,-0.99407 0.0461,-1.97448 0.0461,-2.94123 -10e-6,-0.68399 -0.008,-1.35431 -0.0231,-2.01098 -0.0153,-0.66575 -0.0384,-1.31327 -0.0692,-1.94258 l 5.39315,0.0411" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3726"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 282.74082,139.29803 c -10e-6,-0.83904 -0.12292,-1.54584 -0.36876,-2.12042 -0.24586,-0.58367 -0.56084,-1.06247 -0.94495,-1.43642 -0.36879,-0.3739 -0.77595,-0.66119 -1.22153,-0.86184 -0.43023,-0.20974 -0.83741,-0.36023 -1.22152,-0.45145 -0.38415,-0.1003 -0.70682,-0.15502 -0.96801,-0.16416 -0.24585,-0.0183 -0.37645,-0.0274 -0.39181,-0.0274 -1.0602,2e-5 -2.0282,0.1733 -2.90399,0.51984 -0.87583,0.33746 -1.62871,0.85731 -2.25867,1.55954 -0.61462,0.69314 -1.09861,1.56867 -1.45202,2.62658 -0.33803,1.04882 -0.50704,2.28003 -0.50704,3.69364 0,1.41362 0.15364,2.65395 0.46095,3.72099 0.32267,1.06705 0.76825,1.96082 1.33677,2.6813 0.5685,0.72049 1.25225,1.26314 2.05124,1.62794 0.81434,0.36481 1.72088,0.5472 2.71963,0.5472 0.75287,-0.0364 1.45199,-0.20064 2.09733,-0.49248 0.27656,-0.11856 0.55313,-0.2736 0.82972,-0.46513 0.29192,-0.19152 0.56081,-0.42864 0.80666,-0.71136 0.26119,-0.28272 0.49935,-0.61104 0.71448,-0.98497 0.21509,-0.38304 0.38411,-0.82537 0.50705,-1.32697 l 3.68762,0.16416 c -0.16903,0.68401 -0.42257,1.29049 -0.76057,1.81945 -0.33805,0.51986 -0.72986,0.97586 -1.17543,1.36802 -0.43024,0.38304 -0.89888,0.70681 -1.40591,0.97129 -0.4917,0.26448 -0.98339,0.48336 -1.47505,0.65665 -1.16777,0.40127 -2.4277,0.62928 -3.77981,0.684 -1.79773,0 -3.40338,-0.21432 -4.81696,-0.64296 -1.39823,-0.43777 -2.58135,-1.08074 -3.54934,-1.92891 -0.95264,-0.85728 -1.68249,-1.91977 -2.18953,-3.18746 -0.49167,-1.26769 -0.73752,-2.73146 -0.73752,-4.39132 0,-3.4565 0.99104,-6.06485 2.97315,-7.82504 1.98208,-1.76927 5.03974,-2.65392 9.17296,-2.65394 0.0461,2e-5 0.19973,0.005 0.46095,0.0137 0.27656,0.009 0.62228,0.0411 1.03715,0.0958 0.41484,0.0548 0.88347,0.14138 1.4059,0.25993 0.5224,0.10945 1.05249,0.27361 1.5903,0.49248 0.53775,0.2189 1.06016,0.4925 1.56723,0.8208 0.50703,0.32835 0.9603,0.73875 1.35982,1.23121 0.39947,0.48339 0.71445,1.05339 0.94494,1.71002 0.24583,0.65666 0.36875,1.41363 0.36877,2.27091 l -3.9642,0.13679" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3728"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 306.21951,132.77261 c -1.24458,2.16148 -2.53525,4.28645 -3.87199,6.37494 -1.33679,2.08851 -2.76574,4.17701 -4.28687,6.2655 l -0.71447,7.14102 -3.29582,0 -0.34572,-7.00423 c -1.53651,-2.04289 -2.97314,-4.09946 -4.3099,-6.16973 -1.3214,-2.07936 -2.57365,-4.20434 -3.75678,-6.37494 l 5.32401,-0.17784 c 0.72216,1.87876 1.46737,3.73924 2.23563,5.58149 0.78362,1.83315 1.62869,3.67084 2.53524,5.51309 1.01409,-1.86048 1.95904,-3.7073 2.83486,-5.54045 0.8758,-1.84224 1.68246,-3.71185 2.42,-5.60885 l 5.23181,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3730"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 334.81023,136.75353 c -0.0153,0.27361 -0.0537,0.56545 -0.11526,0.87552 -0.0615,0.2645 -0.146,0.57458 -0.25352,0.93025 -0.0922,0.3557 -0.24587,0.72506 -0.46096,1.10809 l -4.26381,-0.34201 c 0.169,-0.39214 0.29191,-0.76606 0.36875,-1.12176 0.0769,-0.36479 0.11527,-0.70679 0.11527,-1.02601 -2e-5,-0.65664 -0.14599,-1.2312 -0.4379,-1.7237 -0.29196,-0.49247 -0.68377,-0.90743 -1.17543,-1.24489 -0.4917,-0.33742 -1.06789,-0.58823 -1.72859,-0.75241 -0.64534,-0.17326 -1.32908,-0.2599 -2.05123,-0.25992 -0.86046,2e-5 -1.62103,0.13226 -2.28171,0.39672 -0.64534,0.25538 -1.19081,0.59739 -1.63639,1.02601 -0.4456,0.41954 -0.78363,0.89835 -1.0141,1.43642 -0.23048,0.52898 -0.34572,1.07162 -0.34571,1.62793 -10e-6,0.54722 0.15365,1.07163 0.46096,1.57321 0.32265,0.4925 0.75288,0.96218 1.29066,1.40906 0.55313,0.43777 1.19079,0.84818 1.91296,1.23121 0.72215,0.38305 1.49808,0.73418 2.32781,1.05337 1.42894,0.54721 2.6351,1.05338 3.61847,1.51849 0.99872,0.46514 1.80539,0.92114 2.42001,1.36802 0.61458,0.43777 1.06018,0.87553 1.33677,1.31329 0.27654,0.43777 0.41483,0.90289 0.41486,1.39537 -3e-5,0.53809 -0.15368,1.0625 -0.46095,1.57322 -0.29197,0.51072 -0.76828,0.96216 -1.42897,1.35433 -0.66071,0.39216 -1.52115,0.7068 -2.58133,0.94392 -1.04485,0.23713 -2.32782,0.35569 -3.84895,0.35569 -1.47507,0 -2.81183,-0.1368 -4.0103,-0.4104 -1.18312,-0.28273 -2.19722,-0.67033 -3.04229,-1.16282 -0.82971,-0.49248 -1.47506,-1.07616 -1.93601,-1.75105 -0.44558,-0.684 -0.66838,-1.43185 -0.66838,-2.24354 l 4.33296,0.10944 c 0,0.89377 0.17669,1.60514 0.53009,2.1341 0.36876,0.52896 0.80667,0.93025 1.31373,1.20385 0.5224,0.2736 1.06018,0.45145 1.61334,0.53353 0.56849,0.073 1.05249,0.10944 1.452,0.10944 0.46094,0 0.95262,-0.0411 1.47505,-0.12312 0.53776,-0.0912 1.02944,-0.23713 1.47504,-0.43777 0.46094,-0.20975 0.83739,-0.4788 1.12934,-0.80713 0.30729,-0.33744 0.46093,-0.7524 0.46096,-1.24489 -3e-5,-0.51072 -0.20745,-0.97584 -0.6223,-1.39537 -0.3995,-0.42864 -0.9296,-0.82992 -1.59028,-1.20385 -0.66071,-0.37392 -1.41361,-0.73416 -2.25867,-1.08073 -0.84509,-0.34655 -1.71322,-0.70224 -2.60439,-1.06705 -0.87582,-0.3648 -1.73627,-0.74784 -2.58133,-1.14913 -0.84509,-0.40128 -1.59798,-0.83904 -2.25868,-1.31329 -0.6607,-0.48336 -1.19848,-1.01688 -1.61333,-1.60058 -0.39949,-0.58367 -0.59923,-1.24031 -0.59923,-1.96994 0,-0.46511 0.0615,-0.94391 0.18437,-1.43641 0.13829,-0.49247 0.35339,-0.97127 0.64533,-1.43641 0.3073,-0.47423 0.70679,-0.91655 1.19848,-1.32697 0.50704,-0.41951 1.13702,-0.78431 1.88991,-1.09442 0.75288,-0.31006 1.63638,-0.5563 2.65048,-0.73872 1.02946,-0.18239 2.21256,-0.27358 3.54934,-0.2736 1.39821,0.0183 2.61206,0.12769 3.64153,0.32832 1.02944,0.20066 1.90525,0.45603 2.62743,0.76608 0.72214,0.30099 1.30602,0.63843 1.75162,1.01234 0.44557,0.37394 0.79128,0.75242 1.03715,1.13545 0.24582,0.37394 0.41483,0.72962 0.50704,1.06705 0.0922,0.33746 0.13827,0.62017 0.13829,0.84817" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3732"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 354.09426,143.70303 c -0.19976,1.5413 -0.53779,2.87739 -1.01408,4.00827 -0.47635,1.12178 -1.12936,2.05203 -1.95906,2.79075 -0.81436,0.72961 -1.82078,1.27225 -3.01924,1.62794 -1.18313,0.35568 -2.58904,0.53352 -4.21772,0.53352 -1.65944,0 -3.03461,-0.21432 -4.12552,-0.64297 -1.07558,-0.42864 -1.92834,-1.04424 -2.5583,-1.84681 -0.62997,-0.81169 -1.07556,-1.80122 -1.33676,-2.96859 -0.24584,-1.16736 -0.36877,-2.49434 -0.36876,-3.98092 0.0461,-1.12175 0.16133,-2.28457 0.34571,-3.48843 0.0768,-0.51071 0.16902,-1.05335 0.27657,-1.62794 0.12292,-0.58366 0.26121,-1.17647 0.41486,-1.77841 0.16901,-0.61103 0.36107,-1.22663 0.57619,-1.84682 0.21511,-0.62927 0.46095,-1.24487 0.73752,-1.84681 l 4.72477,0.42408 c -0.56852,1.66899 -1.00642,3.15556 -1.31371,4.45972 -0.30731,1.29506 -0.53011,2.43507 -0.66839,3.42003 -0.13828,0.97586 -0.22279,1.81035 -0.25352,2.50346 -0.0153,0.68402 -0.0231,1.25403 -0.0231,1.71002 0,1.11266 0.0692,2.0429 0.20743,2.79075 0.13829,0.73872 0.36107,1.33609 0.66838,1.79209 0.32267,0.44689 0.72984,0.76609 1.22153,0.95761 0.49168,0.19152 1.08323,0.28729 1.77467,0.28729 0.70679,0 1.37517,-0.12313 2.00514,-0.36937 0.64532,-0.25536 1.20615,-0.65208 1.68248,-1.19017 0.49167,-0.53808 0.87579,-1.23577 1.15238,-2.09306 0.29193,-0.85728 0.4379,-1.89697 0.43791,-3.11907 -10e-6,-0.79344 0.008,-1.65072 0.0231,-2.57186 0.0153,-0.93024 0.008,-1.88329 -0.0231,-2.85915 -0.0308,-0.98495 -0.0999,-1.97904 -0.20743,-2.98226 -0.1076,-1.0032 -0.29196,-1.98361 -0.55315,-2.94123 l 5.00134,-0.35569 c 0.21509,1.49572 0.36106,2.86829 0.43792,4.11772 0.0922,1.24947 0.13826,2.35756 0.13828,3.32427 -2e-5,0.60194 -0.008,1.13547 -0.0231,1.60057 -0.0153,0.45602 -0.0384,0.84362 -0.0692,1.16282 -0.0308,0.37393 -0.0615,0.70681 -0.0922,0.99865" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3734"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 375.89049,138.99707 c -0.0615,0.76609 -0.31501,1.4729 -0.76057,2.12041 -0.44561,0.64754 -1.02948,1.23578 -1.75162,1.76474 -0.72218,0.52897 -1.55189,0.9941 -2.48915,1.39537 -0.93729,0.40129 -1.92833,0.73874 -2.97314,1.01233 -1.02948,0.27361 -2.08967,0.47881 -3.18058,0.61561 -1.09094,0.1368 -2.14344,0.20521 -3.15753,0.2052 -0.18439,1e-5 -0.36877,1e-5 -0.55315,0 -0.18437,1e-5 -0.37644,-0.009 -0.57618,-0.0273 -0.0922,1.08529 -0.16903,2.16602 -0.23047,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13829,3.22851 l -3.45716,0 c 0.0922,-1.89698 0.16903,-3.78484 0.23048,-5.66358 0.0768,-1.88784 0.11527,-3.78938 0.11527,-5.70461 0,-1.38624 -0.0231,-2.75881 -0.0692,-4.11771 -0.0461,-1.368 -0.1076,-2.74514 -0.18438,-4.1314 0.73753,-0.17327 1.51346,-0.31007 2.32782,-0.41041 0.81435,-0.10942 1.59797,-0.1915 2.35086,-0.24624 0.76825,-0.0547 1.47504,-0.0866 2.12038,-0.0958 0.64533,-0.0182 1.16774,-0.0274 1.56725,-0.0274 1.45967,1e-5 2.84252,0.11857 4.14857,0.35568 1.32138,0.23714 2.47377,0.6293 3.45714,1.17649 0.98335,0.53811 1.75928,1.24491 2.32781,2.12042 0.58386,0.86643 0.8758,1.92892 0.87582,3.18747 m -14.2665,-4.91117 c -0.23048,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16902,1.73283 -0.33035,3.46564 -0.48399,5.19845 l 0.0461,0 c 1.69015,0 3.1191,-0.13679 4.28687,-0.4104 1.18309,-0.2736 2.15877,-0.6156 2.92705,-1.02601 0.7836,-0.4104 1.39052,-0.85272 1.82075,-1.32698 0.43022,-0.48335 0.7452,-0.9348 0.94496,-1.35433 0.2151,-0.41951 0.3457,-0.77063 0.39181,-1.05337 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -10e-6,-0.10031 -0.0154,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60647 -0.25352,-0.97128 -0.1383,-0.37391 -0.35342,-0.76152 -0.64534,-1.16282 -0.27659,-0.40127 -0.6684,-0.76606 -1.17543,-1.0944 -0.50706,-0.33743 -1.14472,-0.61559 -1.91295,-0.83449 -0.76828,-0.21887 -1.70554,-0.32831 -2.81182,-0.32833 -0.76826,2e-5 -1.62102,0.0547 -2.55829,0.16416" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3736"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 396.23472,138.99707 c -0.0615,0.76609 -0.315,1.4729 -0.76057,2.12041 -0.44561,0.64754 -1.02948,1.23578 -1.75162,1.76474 -0.72217,0.52897 -1.5519,0.9941 -2.48914,1.39537 -0.9373,0.40129 -1.92835,0.73874 -2.97316,1.01233 -1.02946,0.27361 -2.08966,0.47881 -3.18057,0.61561 -1.09093,0.1368 -2.14345,0.20521 -3.15753,0.2052 -0.18438,1e-5 -0.36877,1e-5 -0.55314,0 -0.18439,1e-5 -0.37645,-0.009 -0.5762,-0.0273 -0.0922,1.08529 -0.16902,2.16602 -0.23047,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13828,3.22851 l -3.45715,0 c 0.0922,-1.89698 0.16901,-3.78484 0.23047,-5.66358 0.0768,-1.88784 0.11526,-3.78938 0.11526,-5.70461 0,-1.38624 -0.0231,-2.75881 -0.0692,-4.11771 -0.0461,-1.368 -0.1076,-2.74514 -0.18439,-4.1314 0.73752,-0.17327 1.51346,-0.31007 2.32781,-0.41041 0.81435,-0.10942 1.59797,-0.1915 2.35086,-0.24624 0.76825,-0.0547 1.47504,-0.0866 2.12039,-0.0958 0.64533,-0.0182 1.16774,-0.0274 1.56724,-0.0274 1.45967,1e-5 2.84253,0.11857 4.14857,0.35568 1.32138,0.23714 2.47377,0.6293 3.45716,1.17649 0.98334,0.53811 1.75928,1.24491 2.32781,2.12042 0.58384,0.86643 0.87579,1.92892 0.8758,3.18747 m -14.26648,-4.91117 c -0.23049,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16903,1.73283 -0.33036,3.46564 -0.48401,5.19845 l 0.0461,0 c 1.69015,0 3.11911,-0.13679 4.28687,-0.4104 1.1831,-0.2736 2.15877,-0.6156 2.92705,-1.02601 0.7836,-0.4104 1.39053,-0.85272 1.82077,-1.32698 0.4302,-0.48335 0.74518,-0.9348 0.94494,-1.35433 0.2151,-0.41951 0.34571,-0.77063 0.39181,-1.05337 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -1e-5,-0.10031 -0.0153,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60647 -0.25352,-0.97128 -0.1383,-0.37391 -0.35341,-0.76152 -0.64533,-1.16282 -0.27658,-0.40127 -0.66839,-0.76606 -1.17544,-1.0944 -0.50705,-0.33743 -1.14471,-0.61559 -1.91295,-0.83449 -0.76826,-0.21887 -1.70553,-0.32831 -2.81181,-0.32833 -0.76827,2e-5 -1.62103,0.0547 -2.55828,0.16416" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3738"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 415.91055,142.02037 c -2e-5,0.98498 -0.11526,1.94715 -0.34572,2.88651 -0.21513,0.93026 -0.53011,1.8149 -0.94494,2.65394 -0.39952,0.83906 -0.89888,1.6097 -1.49811,2.31195 -0.59925,0.70224 -1.27531,1.30873 -2.0282,1.81945 -0.73753,0.5016 -1.55956,0.89377 -2.46609,1.17649 -0.89118,0.29185 -1.84382,0.43777 -2.85791,0.43777 -1.02947,0 -1.97442,-0.14137 -2.83486,-0.42409 -0.84509,-0.28272 -1.61333,-0.67944 -2.30476,-1.19017 -0.67608,-0.51072 -1.27531,-1.11721 -1.79771,-1.81945 -0.50706,-0.70225 -0.93729,-1.47289 -1.29068,-2.31195 -0.33803,-0.83904 -0.59923,-1.72368 -0.78361,-2.65394 -0.16903,-0.93936 -0.25354,-1.90153 -0.25354,-2.88651 0,-1.4592 0.19207,-2.79529 0.5762,-4.00827 0.38413,-1.22208 0.97568,-2.27089 1.77467,-3.14644 0.79898,-0.8755 1.8054,-1.55495 3.01924,-2.03833 1.2292,-0.48334 2.6812,-0.72503 4.356,-0.72505 1.76698,2e-5 3.26507,0.24171 4.4943,0.72505 1.22919,0.48338 2.22792,1.16283 2.99619,2.03833 0.76824,0.87555 1.32139,1.92436 1.65943,3.14644 0.35338,1.21298 0.53008,2.54907 0.5301,4.00827 m -4.28687,0.10945 c -10e-6,-1.21297 -0.0999,-2.32562 -0.29961,-3.33796 -0.18439,-1.01232 -0.4917,-1.87872 -0.92191,-2.59922 -0.43024,-0.72959 -0.99106,-1.29503 -1.68248,-1.69633 -0.67608,-0.40127 -1.50579,-0.60192 -2.48915,-0.60193 -0.92192,10e-6 -1.72857,0.20066 -2.41999,0.60193 -0.67608,0.4013 -1.2369,0.96674 -1.68249,1.69633 -0.44559,0.7205 -0.77594,1.5869 -0.99104,2.59922 -0.21512,1.01234 -0.32268,2.12499 -0.32267,3.33796 -1e-5,1.23122 0.1076,2.41227 0.32267,3.54315 0.2151,1.13089 0.53776,2.1341 0.96799,3.00962 0.43022,0.86641 0.968,1.55954 1.61334,2.07938 0.64533,0.51985 1.39054,0.77977 2.23563,0.77977 0.84506,0 1.61331,-0.25992 2.30476,-0.77977 0.70678,-0.51984 1.30601,-1.21297 1.79772,-2.07938 0.50703,-0.87552 0.89115,-1.87873 1.15238,-3.00962 0.27655,-1.13088 0.41484,-2.31193 0.41485,-3.54315" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3740"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 428.85649,152.66351 -3.9181,-6.63486 c -0.76827,0.0547 -1.51347,0.0821 -2.23563,0.0821 -0.18439,1e-5 -0.36877,1e-5 -0.55314,0 -0.18438,1e-5 -0.37644,-0.009 -0.57619,-0.0273 -0.0922,1.08529 -0.16902,2.16602 -0.23047,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13829,3.22851 l -3.45716,0 c 0.0922,-1.89698 0.16903,-3.78484 0.23049,-5.66358 0.0768,-1.88784 0.11526,-3.78938 0.11526,-5.70461 0,-1.38624 -0.0231,-2.75881 -0.0692,-4.11771 -0.0461,-1.368 -0.10761,-2.74514 -0.18438,-4.1314 0.73752,-0.17327 1.51346,-0.31007 2.32781,-0.41041 0.81435,-0.10942 1.59797,-0.1915 2.35086,-0.24624 0.76825,-0.0547 1.47504,-0.0866 2.12038,-0.0958 0.64533,-0.0182 1.16775,-0.0274 1.56725,-0.0274 1.45967,1e-5 2.84253,0.11857 4.14857,0.35568 1.32138,0.23714 2.47377,0.6293 3.45714,1.17649 0.98335,0.53811 1.75929,1.24491 2.32782,2.12042 0.58385,0.86643 0.8758,1.92892 0.87581,3.18747 -0.0768,0.83906 -0.37647,1.60971 -0.89885,2.31194 -0.52244,0.69314 -1.20619,1.31786 -2.05124,1.87418 -0.8451,0.54721 -1.80543,1.02145 -2.88096,1.42273 -1.0602,0.40129 -2.1665,0.72506 -3.31886,0.97129 0.84506,1.15826 1.75928,2.30283 2.74266,3.43371 0.98335,1.13089 2.03587,2.26634 3.15753,3.40635 l -4.90914,0.24624 m -6.10764,-18.57761 c -0.23048,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16902,1.73283 -0.33035,3.46564 -0.48399,5.19845 l 0.0461,0 c 1.69015,0 3.1191,-0.13679 4.28687,-0.4104 1.18309,-0.2736 2.15877,-0.6156 2.92705,-1.02601 0.7836,-0.4104 1.39052,-0.85272 1.82075,-1.32698 0.43022,-0.48335 0.7452,-0.9348 0.94496,-1.35433 0.2151,-0.41951 0.3457,-0.77063 0.39181,-1.05337 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -10e-6,-0.10031 -0.0153,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60647 -0.25352,-0.97128 -0.1383,-0.37391 -0.35341,-0.76152 -0.64534,-1.16282 -0.27659,-0.40127 -0.6684,-0.76606 -1.17543,-1.0944 -0.50705,-0.33743 -1.14471,-0.61559 -1.91295,-0.83449 -0.76827,-0.21887 -1.70553,-0.32831 -2.81181,-0.32833 -0.76827,2e-5 -1.62103,0.0547 -2.5583,0.16416" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3742"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 452.6348,132.93677 -0.32267,1.91522 -7.23697,0 0,17.51056 -3.06533,0 0,-17.51056 -5.64668,0 0,-1.96995 16.27165,0.0547" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3744"
 
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 472.05712,136.75353 c -0.0153,0.27361 -0.0537,0.56545 -0.11526,0.87552 -0.0615,0.2645 -0.146,0.57458 -0.25352,0.93025 -0.0923,0.3557 -0.24587,0.72506 -0.46095,1.10809 l -4.26382,-0.34201 c 0.169,-0.39214 0.29192,-0.76606 0.36876,-1.12176 0.0768,-0.36479 0.11526,-0.70679 0.11526,-1.02601 -10e-6,-0.65664 -0.14599,-1.2312 -0.4379,-1.7237 -0.29196,-0.49247 -0.68376,-0.90743 -1.17544,-1.24489 -0.49169,-0.33742 -1.06789,-0.58823 -1.72857,-0.75241 -0.64535,-0.17326 -1.3291,-0.2599 -2.05124,-0.25992 -0.86046,2e-5 -1.62102,0.13226 -2.28172,0.39672 -0.64533,0.25538 -1.19079,0.59739 -1.63638,1.02601 -0.4456,0.41954 -0.78363,0.89835 -1.0141,1.43642 -0.23048,0.52898 -0.34572,1.07162 -0.34572,1.62793 0,0.54722 0.15366,1.07163 0.46097,1.57321 0.32265,0.4925 0.75288,0.96218 1.29066,1.40906 0.55313,0.43777 1.19079,0.84818 1.91295,1.23121 0.72216,0.38305 1.49809,0.73418 2.32783,1.05337 1.42893,0.54721 2.63509,1.05338 3.61847,1.51849 0.99872,0.46514 1.80539,0.92114 2.42001,1.36802 0.61458,0.43777 1.06017,0.87553 1.33676,1.31329 0.27655,0.43777 0.41483,0.90289 0.41486,1.39537 -3e-5,0.53809 -0.15368,1.0625 -0.46096,1.57322 -0.29196,0.51072 -0.76827,0.96216 -1.42895,1.35433 -0.66071,0.39216 -1.52116,0.7068 -2.58134,0.94392 -1.04484,0.23713 -2.32782,0.35569 -3.84896,0.35569 -1.47505,0 -2.81182,-0.1368 -4.01028,-0.4104 -1.18313,-0.28273 -2.19722,-0.67033 -3.0423,-1.16282 -0.82971,-0.49248 -1.47505,-1.07616 -1.936,-1.75105 -0.44559,-0.684 -0.66839,-1.43185 -0.66839,-2.24354 l 4.33296,0.10944 c 0,0.89377 0.1767,1.60514 0.5301,2.1341 0.36875,0.52896 0.80667,0.93025 1.31372,1.20385 0.5224,0.2736 1.06018,0.45145 1.61333,0.53353 0.5685,0.073 1.0525,0.10944 1.45201,0.10944 0.46094,0 0.95261,-0.0411 1.47505,-0.12312 0.53775,-0.0912 1.02944,-0.23713 1.47504,-0.43777 0.46094,-0.20975 0.83739,-0.4788 1.12933,-0.80713 0.3073,-0.33744 0.46094,-0.7524 0.46097,-1.24489 -3e-5,-0.51072 -0.20746,-0.97584 -0.62229,-1.39537 -0.39951,-0.42864 -0.9296,-0.82992 -1.59029,-1.20385 -0.66071,-0.37392 -1.4136,-0.73416 -2.25867,-1.08073 -0.84509,-0.34655 -1.71321,-0.70224 -2.60438,-1.06705 -0.87583,-0.3648 -1.73627,-0.74784 -2.58134,-1.14913 -0.84508,-0.40128 -1.59798,-0.83904 -2.25868,-1.31329 -0.66069,-0.48336 -1.19847,-1.01688 -1.61332,-1.60058 -0.39949,-0.58367 -0.59924,-1.24031 -0.59924,-1.96994 0,-0.46511 0.0615,-0.94391 0.18438,-1.43641 0.13828,-0.49247 0.35339,-0.97127 0.64533,-1.43641 0.30729,-0.47423 0.70679,-0.91655 1.19848,-1.32697 0.50704,-0.41951 1.13701,-0.78431 1.88991,-1.09442 0.75288,-0.31006 1.63637,-0.5563 2.65047,-0.73872 1.02946,-0.18239 2.21257,-0.27358 3.54935,-0.2736 1.39821,0.0183 2.61204,0.12769 3.64152,0.32832 1.02944,0.20066 1.90525,0.45603 2.62744,0.76608 0.72213,0.30099 1.30601,0.63843 1.75161,1.01234 0.44557,0.37394 0.79129,0.75242 1.03715,1.13545 0.24581,0.37394 0.41484,0.72962 0.50704,1.06705 0.0922,0.33746 0.13826,0.62017 0.13829,0.84817" />
 
<path
 
   inkscape:connector-curvature="0"
 
   id="path3766"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 110.0279,156.9948 0,1.31917 -8.72774,0 0,5.85445 7.04059,0 0,1.4251 -7.18659,0 0,5.02636 -2.579387,0 0,-13.62508 11.453127,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3768"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 118.62103,170.79321 -2.75783,-4.67009 c -0.54076,0.0385 -1.06529,0.0578 -1.57359,0.0578 -0.12979,0 -0.25957,0 -0.38934,0 -0.12979,0 -0.26498,-0.006 -0.40557,-0.0193 -0.0649,0.76391 -0.11897,1.5246 -0.16222,2.28209 -0.0324,0.75106 -0.0649,1.50855 -0.0973,2.27245 l -2.43338,0 c 0.0649,-1.33523 0.11896,-2.66403 0.16222,-3.98642 0.0541,-1.32881 0.0811,-2.66724 0.0811,-4.01531 0,-0.97573 -0.0162,-1.94185 -0.0487,-2.89834 -0.0324,-0.9629 -0.0757,-1.93222 -0.12978,-2.90797 0.51912,-0.12195 1.06527,-0.21824 1.63847,-0.28887 0.5732,-0.0771 1.12476,-0.13479 1.65471,-0.17333 0.54074,-0.0385 1.03823,-0.0609 1.49247,-0.0674 0.45423,-0.0128 0.82194,-0.0193 1.10313,-0.0193 1.02742,2e-5 2.00078,0.0835 2.92006,0.25035 0.93009,0.16692 1.74121,0.44295 2.43339,0.8281 0.69215,0.37876 1.23831,0.87626 1.63848,1.49251 0.41095,0.60984 0.61644,1.3577 0.61645,2.24356 -0.0541,0.59058 -0.26498,1.13303 -0.63268,1.6273 -0.36772,0.48788 -0.84899,0.92761 -1.4438,1.31918 -0.59484,0.38517 -1.27078,0.71898 -2.02782,1.00142 -0.74625,0.28246 -1.52493,0.51035 -2.33605,0.68366 0.59482,0.81527 1.23831,1.6209 1.93048,2.41689 0.69215,0.796 1.43298,1.59521 2.22249,2.39764 l -3.4554,0.17332 m -4.29898,-13.07623 c -0.16223,1.23252 -0.30283,2.45862 -0.42179,3.67829 -0.11897,1.21968 -0.23252,2.43936 -0.34067,3.65903 l 0.0324,0 c 1.18965,0 2.19545,-0.0963 3.0174,-0.28887 0.83275,-0.19258 1.5195,-0.4333 2.06026,-0.72218 0.55156,-0.28887 0.97875,-0.6002 1.28158,-0.93401 0.30281,-0.34023 0.52452,-0.65798 0.66513,-0.95328 0.1514,-0.29528 0.24332,-0.54242 0.27578,-0.74143 0.0324,-0.199 0.0487,-0.30492 0.0487,-0.31777 -10e-6,-0.0706 -0.0108,-0.2054 -0.0324,-0.40441 -0.0216,-0.19899 -0.0811,-0.42688 -0.17844,-0.68366 -0.0974,-0.26319 -0.24876,-0.53601 -0.45424,-0.81847 -0.19468,-0.28244 -0.47046,-0.53922 -0.82735,-0.77032 -0.3569,-0.23751 -0.80573,-0.4333 -1.34647,-0.58738 -0.54076,-0.15405 -1.20048,-0.23108 -1.97915,-0.23109 -0.54076,1e-5 -1.14099,0.0385 -1.8007,0.11555" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3770"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 137.09371,156.97554 0,1.31918 -8.90619,0 0,5.8737 7.04058,0 0,1.4251 -7.13792,0 0,3.48572 8.63041,0 0,1.52138 -11.38824,0 0,-13.62508 11.76136,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3772"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 149.98581,156.97554 0,1.31918 -8.90617,0 0,5.8737 7.04058,0 0,1.4251 -7.13792,0 0,3.48572 8.63039,0 0,1.52138 -11.38824,0 0,-13.62508 11.76136,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3774"
 
   style="font-size:19.19739342px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 166.8614,166.62623 c -0.0162,0.48627 -0.0406,0.97013 -0.0729,1.45158 -0.0162,0.20703 -0.0324,0.42368 -0.0487,0.64997 -0.0162,0.22628 -0.0365,0.45497 -0.0609,0.68606 -0.0162,0.22629 -0.0406,0.45016 -0.0729,0.67163 -0.0244,0.22147 -0.0487,0.42849 -0.073,0.62107 l -1.66686,-0.0289 c 0.0162,-0.13962 0.0284,-0.27684 0.0365,-0.41165 0.008,-0.1348 0.0117,-0.26961 0.0117,-0.40442 -0.36502,0.2311 -0.7503,0.41165 -1.15585,0.54164 -0.40557,0.12999 -0.79086,0.22869 -1.15587,0.29609 -0.42179,0.0819 -0.83952,0.13481 -1.25318,0.15888 -0.0892,0.01 -0.1744,0.0145 -0.25551,0.0145 -0.0729,0 -0.15412,0 -0.24333,0 -0.5678,0 -1.11126,-0.0482 -1.63037,-0.14444 -0.51913,-0.0915 -0.98147,-0.2335 -1.38704,-0.42609 -0.39745,-0.19257 -0.71784,-0.4333 -0.96118,-0.72217 -0.23523,-0.29369 -0.35284,-0.63793 -0.35284,-1.03272 0,-0.34664 0.11357,-0.67162 0.34067,-0.97494 0.23523,-0.30813 0.55969,-0.57533 0.97335,-0.80162 0.4218,-0.23109 0.92875,-0.41404 1.52087,-0.54885 0.59212,-0.1348 1.24913,-0.20702 1.97104,-0.21666 0.0243,1e-5 0.16222,0.005 0.41368,0.0145 0.25144,0.01 0.55561,0.0409 0.91252,0.0939 0.365,0.0481 0.75433,0.12759 1.16803,0.23832 0.42177,0.10592 0.81112,0.25517 1.16801,0.44775 0,-0.21665 -0.008,-0.44534 -0.0243,-0.68607 -0.0162,-0.24072 -0.0567,-0.47663 -0.12162,-0.70773 -0.0568,-0.23591 -0.15008,-0.45978 -0.27985,-0.67163 -0.1298,-0.21183 -0.30823,-0.39719 -0.53534,-0.55608 -0.21901,-0.16368 -0.49885,-0.29126 -0.83952,-0.38275 -0.34068,-0.0963 -0.75435,-0.14443 -1.24102,-0.14443 -0.38123,0 -0.73001,0.0433 -1.04636,0.12999 -0.31634,0.0867 -0.59617,0.20462 -0.83951,0.35387 -0.24334,0.14925 -0.44612,0.32739 -0.60835,0.5344 -0.16223,0.20222 -0.28389,0.42128 -0.365,0.65718 l -2.04376,-0.39004 c 0.0974,-0.27442 0.23523,-0.51755 0.41368,-0.72939 0.18656,-0.21184 0.39339,-0.3972 0.62051,-0.55608 0.23522,-0.15887 0.48261,-0.29368 0.74218,-0.40442 0.26766,-0.11555 0.53128,-0.21183 0.79085,-0.28888 0.60834,-0.17813 1.26535,-0.28645 1.97104,-0.32498 0.97334,1e-5 1.79664,0.0867 2.46989,0.25999 0.67322,0.17333 1.21667,0.4285 1.63036,0.76551 0.42178,0.33702 0.72189,0.75347 0.90035,1.24937 0.18656,0.4959 0.27983,1.06883 0.27984,1.71877 m -1.89803,2.00766 c -2e-5,-0.0963 0.004,-0.19017 0.0117,-0.28164 0.008,-0.0963 0.0117,-0.18777 0.0117,-0.27444 -0.42991,-0.25998 -0.85575,-0.45737 -1.27753,-0.59218 -0.41368,-0.1348 -0.79084,-0.23591 -1.13151,-0.30332 -0.38936,-0.077 -0.76652,-0.12035 -1.13153,-0.12999 -0.5029,1e-5 -0.93685,0.0434 -1.30186,0.12999 -0.35689,0.0819 -0.65296,0.19259 -0.88818,0.3322 -0.22712,0.13963 -0.39746,0.29851 -0.51102,0.47664 -0.10539,0.17814 -0.15817,0.3635 -0.15817,0.55608 0,0.19739 0.0609,0.37553 0.18251,0.53441 0.12162,0.15889 0.29201,0.29369 0.51101,0.40442 0.22711,0.11073 0.49884,0.1974 0.81519,0.25999 0.32444,0.0578 0.6854,0.0867 1.08285,0.0867 0.38933,-0.0193 0.7949,-0.0722 1.21669,-0.15888 0.36501,-0.077 0.76651,-0.19499 1.20453,-0.35387 0.44611,-0.16369 0.90034,-0.39238 1.36269,-0.68607" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3776"
 
   style="font-size:19.19739342px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 175.44643,170.70654 c -0.0649,-0.7318 -0.1298,-1.38899 -0.19467,-1.97155 -0.0567,-0.58736 -0.10955,-1.08807 -0.15817,-1.50212 -0.0567,-0.48145 -0.11358,-0.90995 -0.17034,-1.28548 -0.0649,-0.58255 -0.19062,-1.02067 -0.37718,-1.31436 -0.17846,-0.29849 -0.40963,-0.44775 -0.69351,-0.44775 -0.28391,0 -0.57185,0.10592 -0.86386,0.31776 -0.292,0.21184 -0.57995,0.49349 -0.86384,0.84495 -0.2839,0.35146 -0.55563,0.75347 -0.81519,1.20603 -0.25145,0.44775 -0.48667,0.90995 -0.70568,1.38658 -0.2109,0.47664 -0.39746,0.94846 -0.55968,1.41547 -0.15411,0.46701 -0.27173,0.88828 -0.35284,1.26381 l -1.66687,0.0289 c 0.0487,-0.79921 0.0731,-1.55749 0.0731,-2.27485 0,-0.75107 -0.0203,-1.43713 -0.0609,-2.05821 -0.0406,-0.62588 -0.0851,-1.16511 -0.13383,-1.61768 -0.0568,-0.52959 -0.1176,-1.00622 -0.18251,-1.42991 l 2.34821,0.0578 0,2.90316 c 0.18656,-0.31776 0.35285,-0.58497 0.49884,-0.80162 0.146,-0.21665 0.26767,-0.39238 0.36501,-0.52719 0.11357,-0.15887 0.20683,-0.28405 0.27984,-0.37553 0.21089,-0.23591 0.44207,-0.44534 0.69352,-0.6283 0.25144,-0.18776 0.51101,-0.34423 0.77868,-0.46942 0.27578,-0.12998 0.55156,-0.22867 0.82736,-0.29609 0.28388,-0.0674 0.55561,-0.10109 0.81517,-0.1011 0.25956,1e-5 0.5029,0.0337 0.73002,0.1011 0.22711,0.0674 0.42583,0.17333 0.59618,0.31776 0.17844,0.14445 0.32849,0.3298 0.45018,0.55608 0.1298,0.22147 0.2271,0.48868 0.292,0.80162 0.1298,0.51997 0.24334,1.08808 0.34067,1.70434 0.0892,0.5296 0.17034,1.14826 0.24335,1.85599 0.0729,0.70774 0.11759,1.46843 0.13383,2.28208 l -1.66686,0.0578" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3778"
 
   style="font-size:19.19739342px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 188.01003,160.24941 0,10.29825 -1.66687,0 0,-1.12659 c -0.16223,0.17332 -0.34068,0.32498 -0.53534,0.45497 -0.18657,0.12999 -0.38124,0.24313 -0.58401,0.33942 -0.2028,0.0963 -0.40963,0.17814 -0.62052,0.24554 -0.20279,0.0626 -0.40151,0.11555 -0.59618,0.15888 -0.44612,0.10111 -0.90847,0.15888 -1.38703,0.17333 -0.75436,0 -1.45598,-0.0987 -2.10488,-0.2961 -0.6489,-0.19739 -1.21264,-0.47905 -1.69119,-0.84495 -0.47047,-0.3659 -0.83952,-0.80884 -1.10719,-1.32881 -0.26768,-0.52477 -0.40152,-1.10973 -0.40152,-1.75488 0,-0.54886 0.10137,-1.06642 0.30418,-1.55269 0.21089,-0.48626 0.511,-0.91234 0.90035,-1.27826 0.39745,-0.36589 0.87602,-0.65476 1.43569,-0.8666 0.56779,-0.21665 1.20858,-0.32498 1.92238,-0.32499 0.60022,0.0145 1.17612,0.0795 1.7277,0.19499 0.23522,0.0482 0.4745,0.11074 0.71785,0.18777 0.25144,0.077 0.49478,0.17333 0.73001,0.28887 0.23522,0.11074 0.45423,0.24073 0.65703,0.38998 0.21088,0.14925 0.39337,0.32258 0.5475,0.51997 l 0,-3.83477 1.75204,-0.0434 m -1.84938,6.49237 c -0.0244,-0.39959 -0.1054,-0.75346 -0.24333,-1.06159 -0.1298,-0.31294 -0.29607,-0.58496 -0.49884,-0.81606 -0.2028,-0.2311 -0.43397,-0.42367 -0.69353,-0.57774 -0.25955,-0.15888 -0.52317,-0.28646 -0.79084,-0.38276 -0.26769,-0.0963 -0.53535,-0.16369 -0.80301,-0.20221 -0.26768,-0.0433 -0.51103,-0.065 -0.73002,-0.065 -0.57591,1e-5 -1.0707,0.077 -1.48436,0.2311 -0.41368,0.15407 -0.75436,0.37072 -1.02203,0.64996 -0.26767,0.27924 -0.46639,0.61385 -0.59618,1.00382 -0.12162,0.38998 -0.18251,0.82088 -0.18249,1.2927 -2e-5,0.55849 0.12162,1.03272 0.365,1.4227 0.25145,0.38516 0.55968,0.6981 0.92468,0.93882 0.37312,0.23592 0.77462,0.40683 1.20453,0.51275 0.438,0.10592 0.84357,0.15888 1.21669,0.15888 0.40556,0 0.80707,-0.0578 1.20452,-0.17332 0.39744,-0.12037 0.75435,-0.30572 1.07069,-0.55608 0.31634,-0.25517 0.57184,-0.57774 0.76651,-0.96772 0.19468,-0.38997 0.29201,-0.85939 0.29201,-1.40825" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3780"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 209.5131,163.30182 c -1e-5,0.69329 -0.0811,1.37053 -0.24333,2.03172 -0.15143,0.65478 -0.37314,1.27746 -0.66512,1.86803 -0.28121,0.59058 -0.6327,1.13303 -1.05447,1.62731 -0.4218,0.49429 -0.89767,0.92118 -1.4276,1.28066 -0.51912,0.35307 -1.09773,0.6291 -1.7358,0.8281 -0.62729,0.20542 -1.29781,0.30813 -2.0116,0.30813 -0.72462,0 -1.38975,-0.0995 -1.99537,-0.2985 -0.59484,-0.199 -1.13559,-0.47824 -1.62226,-0.83773 -0.47586,-0.35948 -0.89765,-0.78637 -1.26536,-1.28066 -0.3569,-0.49428 -0.65972,-1.03673 -0.90847,-1.62731 -0.23793,-0.59057 -0.42178,-1.21325 -0.55156,-1.86803 -0.1189,-0.66119 -0.17845,-1.33843 -0.17845,-2.03172 0,-1.0271 0.13519,-1.96753 0.40557,-2.82132 0.27037,-0.86018 0.68675,-1.5984 1.24914,-2.21467 0.56237,-0.61625 1.27076,-1.09449 2.12514,-1.43473 0.86521,-0.34021 1.88723,-0.51033 3.06607,-0.51033 1.24372,0 2.29819,0.17012 3.1634,0.51033 0.86519,0.34024 1.56816,0.81848 2.10893,1.43473 0.54074,0.61627 0.93008,1.35449 1.16803,2.21467 0.24873,0.85379 0.3731,1.79422 0.37311,2.82132 m -3.01739,0.077 c -1e-5,-0.85377 -0.0703,-1.63693 -0.21089,-2.34948 -0.1298,-0.71255 -0.3461,-1.32238 -0.6489,-1.82952 -0.30283,-0.51354 -0.69759,-0.91154 -1.18425,-1.194 -0.47587,-0.28244 -1.05988,-0.42367 -1.75204,-0.42368 -0.6489,1e-5 -1.21669,0.14124 -1.70337,0.42368 -0.47587,0.28246 -0.87062,0.68046 -1.18425,1.194 -0.31363,0.50714 -0.54615,1.11697 -0.69756,1.82952 -0.15143,0.71255 -0.22712,1.49571 -0.22712,2.34948 0,0.86662 0.0757,1.69793 0.22712,2.49392 0.15141,0.796 0.37851,1.50213 0.68135,2.11839 0.3028,0.60984 0.68133,1.09771 1.13557,1.46361 0.45423,0.36591 0.97876,0.54886 1.57358,0.54885 0.59483,1e-5 1.13558,-0.18294 1.62226,-0.54885 0.49749,-0.3659 0.91927,-0.85377 1.26536,-1.46361 0.3569,-0.61626 0.62726,-1.32239 0.81114,-2.11839 0.19465,-0.79599 0.29199,-1.6273 0.292,-2.49392" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3782"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 224.36814,161.1738 c -0.0432,0.53923 -0.22173,1.03673 -0.53535,1.4925 -0.31364,0.45578 -0.72462,0.86983 -1.23291,1.24214 -0.50832,0.37233 -1.09233,0.69972 -1.75204,0.98217 -0.65973,0.28245 -1.35729,0.51997 -2.09271,0.71254 -0.72461,0.19259 -1.47085,0.33703 -2.23871,0.43331 -0.76787,0.0963 -1.5087,0.14444 -2.22249,0.14444 -0.1298,0 -0.25957,0 -0.38934,0 -0.1298,0 -0.26497,-0.006 -0.40557,-0.0193 -0.0649,0.76391 -0.11902,1.52459 -0.16222,2.28208 -0.0325,0.75107 -0.0649,1.50855 -0.0974,2.27245 l -2.43339,0 c 0.0649,-1.33523 0.11903,-2.66403 0.16224,-3.98642 0.0541,-1.3288 0.0811,-2.66724 0.0811,-4.01531 0,-0.97573 -0.0162,-1.94184 -0.0487,-2.89834 -0.0325,-0.96289 -0.0757,-1.93221 -0.1298,-2.90797 0.51911,-0.12195 1.06528,-0.21824 1.63848,-0.28887 0.57319,-0.077 1.12475,-0.13479 1.65469,-0.17332 0.54075,-0.0385 1.03824,-0.0609 1.49248,-0.0674 0.45422,-0.0128 0.82194,-0.0193 1.10313,-0.0193 1.02742,2e-5 2.00077,0.0835 2.92007,0.25035 0.93008,0.16693 1.7412,0.44295 2.43337,0.82811 0.69215,0.37875 1.23832,0.87625 1.63848,1.4925 0.41096,0.60985 0.61644,1.3577 0.61647,2.24356 m -10.04177,-3.45682 c -0.16223,1.23253 -0.30283,2.45862 -0.42179,3.67829 -0.11902,1.21968 -0.23252,2.43936 -0.34067,3.65903 l 0.0325,0 c 1.18965,0 2.19546,-0.0963 3.01741,-0.28887 0.83274,-0.19257 1.5195,-0.4333 2.06026,-0.72218 0.55156,-0.28886 0.97875,-0.6002 1.28158,-0.93401 0.30281,-0.34022 0.52452,-0.65798 0.66513,-0.95328 0.15139,-0.29528 0.24332,-0.54242 0.27578,-0.74143 0.0324,-0.199 0.0487,-0.30491 0.0487,-0.31776 0,-0.0706 -0.0104,-0.20541 -0.0324,-0.40442 -0.0217,-0.19899 -0.0811,-0.42688 -0.17844,-0.68366 -0.0974,-0.26318 -0.24876,-0.53601 -0.45424,-0.81847 -0.19468,-0.28244 -0.47046,-0.53921 -0.82735,-0.77032 -0.35691,-0.23751 -0.80573,-0.4333 -1.34647,-0.58737 -0.54077,-0.15406 -1.20048,-0.23109 -1.97915,-0.2311 -0.54077,1e-5 -1.14099,0.0385 -1.8007,0.11555" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3784"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 237.09803,156.97554 0,1.31918 -8.90619,0 0,5.8737 7.0406,0 0,1.4251 -7.13794,0 0,3.48572 8.63041,0 0,1.52138 -11.38824,0 0,-13.62508 11.76136,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3786"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 251.41773,156.93702 c -0.44343,2.29172 -0.78951,4.58022 -1.03825,6.86551 -0.23794,2.27887 -0.39475,4.577 -0.47045,6.89438 l -2.57939,0 -6.08345,-9.60015 c -0.25957,3.18401 -0.40557,6.37122 -0.43802,9.56164 l -2.61182,0.0193 c 0.0217,-0.68046 0.0325,-1.36091 0.0325,-2.04136 0,-0.68045 0,-1.36732 0,-2.06061 0,-3.184 -0.0811,-6.36479 -0.24333,-9.54238 l 3.61763,0.0385 5.79144,10.35122 c 0.0432,-0.51355 0.0811,-1.07524 0.11358,-1.68508 0.0325,-0.61626 0.0594,-1.25819 0.0811,-1.92581 0.0325,-0.6676 0.0541,-1.35126 0.0649,-2.05098 0.0215,-0.6997 0.0324,-1.38978 0.0324,-2.07025 -1e-5,-0.48144 -0.005,-0.95326 -0.0162,-1.41547 -0.0104,-0.46859 -0.027,-0.92437 -0.0487,-1.36732 l 3.79607,0.0289" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3788"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 272.66123,159.59464 c -0.0104,0.19259 -0.0379,0.39801 -0.0811,0.61625 -0.0432,0.18618 -0.1028,0.40443 -0.17845,0.65477 -0.0649,0.25037 -0.17306,0.51036 -0.32445,0.77996 l -3.00117,-0.24073 c 0.1189,-0.27602 0.20547,-0.53921 0.25956,-0.78958 0.0541,-0.25677 0.0811,-0.49749 0.0811,-0.72217 -10e-6,-0.46219 -0.1028,-0.86661 -0.30823,-1.21326 -0.2055,-0.34663 -0.48128,-0.63872 -0.82735,-0.87625 -0.34609,-0.2375 -0.75166,-0.41403 -1.21668,-0.52959 -0.45425,-0.12196 -0.93552,-0.18294 -1.44381,-0.18295 -0.60565,1e-5 -1.14101,0.0931 -1.60605,0.27924 -0.45422,0.17975 -0.83817,0.42048 -1.15179,0.72217 -0.31364,0.29531 -0.55157,0.63232 -0.71379,1.01106 -0.16224,0.37233 -0.24335,0.75428 -0.24334,1.14585 -1e-5,0.38517 0.10812,0.75428 0.32445,1.10734 0.2271,0.34665 0.52994,0.67725 0.90847,0.99179 0.38933,0.30814 0.83815,0.59701 1.34647,0.86661 0.50829,0.26962 1.05445,0.51677 1.63847,0.74144 1.00579,0.38516 1.85477,0.74144 2.54695,1.06882 0.70296,0.32739 1.27075,0.64836 1.70336,0.9629 0.43259,0.30813 0.74622,0.61627 0.94091,0.92439 0.19466,0.30813 0.29199,0.63552 0.29201,0.98217 -2e-5,0.37874 -0.10813,0.74785 -0.32446,1.10733 -0.2055,0.35949 -0.54077,0.67725 -1.00579,0.95327 -0.46506,0.27604 -1.07071,0.49751 -1.81693,0.66441 -0.73544,0.1669 -1.63849,0.25035 -2.70917,0.25035 -1.03824,0 -1.97915,-0.0963 -2.82272,-0.28887 -0.83276,-0.199 -1.54656,-0.47182 -2.14138,-0.81846 -0.58402,-0.34665 -1.03824,-0.75749 -1.3627,-1.23252 -0.31363,-0.48145 -0.47045,-1.00784 -0.47045,-1.57916 l 3.04985,0.077 c -10e-6,0.6291 0.12435,1.12981 0.37312,1.50212 0.25955,0.37233 0.56777,0.65478 0.92468,0.84736 0.3677,0.19258 0.74623,0.31776 1.13558,0.37554 0.40015,0.0514 0.74082,0.077 1.02201,0.077 0.32445,0 0.67053,-0.0289 1.03826,-0.0867 0.37851,-0.0642 0.7246,-0.1669 1.03824,-0.30813 0.32443,-0.14764 0.5894,-0.33701 0.7949,-0.56811 0.21629,-0.23751 0.32444,-0.52959 0.32445,-0.87624 -1e-5,-0.35948 -0.14601,-0.68687 -0.438,-0.98216 -0.28121,-0.30171 -0.65433,-0.58416 -1.11937,-0.84736 -0.46505,-0.26318 -0.99499,-0.51675 -1.5898,-0.76069 -0.59484,-0.24393 -1.20589,-0.49429 -1.83315,-0.75106 -0.61647,-0.25677 -1.22211,-0.52638 -1.81693,-0.80885 -0.59483,-0.28244 -1.12477,-0.59057 -1.58981,-0.92439 -0.46505,-0.34021 -0.84358,-0.71575 -1.13557,-1.12659 -0.2812,-0.41083 -0.4218,-0.87302 -0.4218,-1.38658 0,-0.32738 0.0432,-0.66439 0.1298,-1.01105 0.0974,-0.34663 0.24875,-0.68365 0.45423,-1.01105 0.2163,-0.3338 0.49749,-0.64513 0.84357,-0.93401 0.35689,-0.29528 0.80031,-0.55205 1.33025,-0.77033 0.52994,-0.21824 1.1518,-0.39156 1.8656,-0.51997 0.7246,-0.12837 1.55736,-0.19256 2.49826,-0.19258 0.98417,0.0129 1.83855,0.0899 2.56318,0.2311 0.7246,0.14124 1.34105,0.32099 1.84936,0.53922 0.5083,0.21186 0.91927,0.44937 1.23291,0.71256 0.31363,0.2632 0.55697,0.5296 0.73003,0.79921 0.17302,0.2632 0.29199,0.51356 0.35689,0.75106 0.0649,0.23753 0.0974,0.43653 0.0974,0.597" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3790"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 286.59159,163.30182 c -10e-6,0.69329 -0.0811,1.37053 -0.24334,2.03172 -0.15143,0.65478 -0.37314,1.27746 -0.66513,1.86803 -0.28121,0.59058 -0.63269,1.13303 -1.05447,1.62731 -0.42179,0.49429 -0.89765,0.92118 -1.42758,1.28066 -0.51913,0.35307 -1.09773,0.6291 -1.73582,0.8281 -0.62727,0.20542 -1.29781,0.30813 -2.01159,0.30813 -0.72461,0 -1.38974,-0.0995 -1.99538,-0.2985 -0.59482,-0.199 -1.13557,-0.47824 -1.62225,-0.83773 -0.47587,-0.35948 -0.89765,-0.78637 -1.26536,-1.28066 -0.3569,-0.49428 -0.65972,-1.03673 -0.90846,-1.62731 -0.23793,-0.59057 -0.42179,-1.21325 -0.55156,-1.86803 -0.11903,-0.66119 -0.17845,-1.33843 -0.17845,-2.03172 0,-1.0271 0.13518,-1.96753 0.40555,-2.82132 0.27039,-0.86018 0.68676,-1.5984 1.24914,-2.21467 0.56238,-0.61625 1.27076,-1.09449 2.12516,-1.43473 0.86519,-0.34021 1.88721,-0.51033 3.06606,-0.51033 1.24373,0 2.29819,0.17012 3.1634,0.51033 0.8652,0.34024 1.56817,0.81848 2.10894,1.43473 0.54073,0.61627 0.93008,1.35449 1.16802,2.21467 0.24874,0.85379 0.37311,1.79422 0.37312,2.82132 m -3.0174,0.077 c -2e-5,-0.85377 -0.0703,-1.63693 -0.21089,-2.34948 -0.12979,-0.71255 -0.34609,-1.32238 -0.64891,-1.82952 -0.30283,-0.51354 -0.69757,-0.91154 -1.18424,-1.194 -0.47588,-0.28244 -1.05989,-0.42367 -1.75204,-0.42368 -0.64891,1e-5 -1.2167,0.14124 -1.70336,0.42368 -0.47587,0.28246 -0.87062,0.68046 -1.18425,1.194 -0.31365,0.50714 -0.54617,1.11697 -0.69758,1.82952 -0.15141,0.71255 -0.22711,1.49571 -0.22711,2.34948 0,0.86662 0.0757,1.69793 0.22711,2.49392 0.15141,0.796 0.37853,1.50213 0.68135,2.11839 0.30282,0.60984 0.68135,1.09771 1.13558,1.46361 0.45423,0.36591 0.97875,0.54886 1.57359,0.54885 0.59483,1e-5 1.13557,-0.18294 1.62226,-0.54885 0.49747,-0.3659 0.91927,-0.85377 1.26536,-1.46361 0.35688,-0.61626 0.62726,-1.32239 0.81112,-2.11839 0.19466,-0.79599 0.29199,-1.6273 0.29201,-2.49392" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3792"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 300.6193,164.48619 c -0.14061,1.08487 -0.37855,2.0253 -0.7138,2.8213 -0.33528,0.78958 -0.79492,1.44436 -1.37892,1.96432 -0.57321,0.51355 -1.28159,0.89551 -2.12515,1.14586 -0.83277,0.25036 -1.82235,0.37554 -2.96873,0.37554 -1.16804,0 -2.13598,-0.15086 -2.90384,-0.45257 -0.75706,-0.30171 -1.35729,-0.73502 -1.8007,-1.29992 -0.44342,-0.57132 -0.75706,-1.26782 -0.94091,-2.0895 -0.17305,-0.82167 -0.25957,-1.75569 -0.25957,-2.80205 0.0325,-0.78958 0.11357,-1.60804 0.24335,-2.4554 0.0541,-0.35948 0.11889,-0.74143 0.19467,-1.14586 0.0866,-0.41083 0.18384,-0.82809 0.292,-1.25178 0.11903,-0.43008 0.25415,-0.86338 0.40557,-1.29992 0.1514,-0.44291 0.32445,-0.87623 0.51912,-1.29991 l 3.32562,0.2985 c -0.40016,1.17475 -0.70839,2.2211 -0.92468,3.13906 -0.21631,0.91156 -0.37312,1.71398 -0.47046,2.40726 -0.0974,0.68687 -0.15682,1.27425 -0.17844,1.76211 -0.0104,0.48146 -0.0162,0.88267 -0.0162,1.20363 0,0.78317 0.0487,1.43795 0.146,1.96432 0.0973,0.51997 0.25416,0.94044 0.47046,1.26141 0.22711,0.31455 0.51371,0.53923 0.8598,0.67403 0.34607,0.13481 0.76245,0.20222 1.24913,0.20221 0.49749,10e-6 0.96794,-0.0867 1.41137,-0.25998 0.45421,-0.17974 0.84897,-0.45898 1.18424,-0.83773 0.34608,-0.37874 0.61645,-0.86982 0.81113,-1.47324 0.20547,-0.60341 0.30822,-1.33522 0.30823,-2.19542 -1e-5,-0.55848 0.005,-1.1619 0.0162,-1.81026 0.0104,-0.65477 0.005,-1.32559 -0.0162,-2.01247 -0.0217,-0.69328 -0.0704,-1.39299 -0.14601,-2.09913 -0.0757,-0.70612 -0.20549,-1.3962 -0.38934,-2.07024 l 3.52029,-0.25035 c 0.1514,1.05278 0.25415,2.01889 0.30823,2.89834 0.0649,0.87946 0.0974,1.65941 0.0974,2.33985 -10e-6,0.42369 -0.005,0.79922 -0.0162,1.12659 -0.0104,0.32098 -0.027,0.5938 -0.0487,0.81847 -0.0217,0.26321 -0.0432,0.49751 -0.0649,0.70293" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3794"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 310.21823,170.79321 -2.75785,-4.67009 c -0.54075,0.0385 -1.06528,0.0578 -1.57358,0.0578 -0.1298,0 -0.25957,0 -0.38934,0 -0.1298,0 -0.26497,-0.006 -0.40557,-0.0193 -0.0649,0.76391 -0.11902,1.5246 -0.16222,2.28209 -0.0324,0.75106 -0.0649,1.50855 -0.0974,2.27245 l -2.43339,0 c 0.0649,-1.33523 0.11903,-2.66403 0.16224,-3.98642 0.0541,-1.32881 0.0811,-2.66724 0.0811,-4.01531 0,-0.97573 -0.0162,-1.94185 -0.0487,-2.89834 -0.0324,-0.9629 -0.0757,-1.93222 -0.1298,-2.90797 0.51911,-0.12195 1.06528,-0.21824 1.63848,-0.28887 0.57319,-0.0771 1.12475,-0.13479 1.65469,-0.17333 0.54075,-0.0385 1.03824,-0.0609 1.49248,-0.0674 0.45422,-0.0128 0.82194,-0.0193 1.10313,-0.0193 1.02742,2e-5 2.00077,0.0835 2.92007,0.25035 0.93008,0.16692 1.7412,0.44295 2.43338,0.8281 0.69214,0.37876 1.23831,0.87626 1.63848,1.49251 0.41095,0.60984 0.61643,1.3577 0.61646,2.24356 -0.0541,0.59058 -0.265,1.13303 -0.63269,1.6273 -0.36772,0.48788 -0.84899,0.92761 -1.44381,1.31918 -0.59484,0.38517 -1.27077,0.71898 -2.02782,1.00142 -0.74625,0.28246 -1.52492,0.51035 -2.33604,0.68366 0.59481,0.81527 1.23831,1.6209 1.93049,2.41689 0.69214,0.796 1.43297,1.59521 2.22248,2.39764 l -3.4554,0.17332 m -4.29897,-13.07623 c -0.16224,1.23252 -0.30284,2.45862 -0.4218,3.67829 -0.11902,1.21968 -0.23253,2.43936 -0.34066,3.65903 l 0.0324,0 c 1.18965,0 2.19544,-0.0963 3.0174,-0.28887 0.83274,-0.19258 1.51949,-0.4333 2.06026,-0.72218 0.55156,-0.28887 0.97875,-0.6002 1.28158,-0.93401 0.30281,-0.34023 0.52452,-0.65798 0.66513,-0.95328 0.1514,-0.29528 0.24332,-0.54242 0.27578,-0.74143 0.0324,-0.199 0.0487,-0.30492 0.0487,-0.31777 -2e-5,-0.0706 -0.0104,-0.2054 -0.0324,-0.40441 -0.0217,-0.19899 -0.0811,-0.42688 -0.17845,-0.68366 -0.0974,-0.26319 -0.24876,-0.53601 -0.45424,-0.81847 -0.19469,-0.28244 -0.47047,-0.53922 -0.82735,-0.77032 -0.3569,-0.23751 -0.80573,-0.4333 -1.34647,-0.58738 -0.54077,-0.15405 -1.20048,-0.23108 -1.97915,-0.23109 -0.54076,1e-5 -1.14099,0.0385 -1.8007,0.11555" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3796"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 328.0582,161.38563 c -2e-5,-0.59057 -0.0866,-1.08806 -0.25956,-1.49249 -0.17306,-0.41083 -0.39477,-0.74785 -0.66513,-1.01106 -0.25958,-0.26318 -0.54617,-0.46538 -0.85979,-0.60662 -0.30283,-0.14763 -0.58944,-0.25355 -0.8598,-0.31776 -0.27039,-0.0706 -0.4975,-0.10912 -0.68135,-0.11555 -0.17304,-0.0128 -0.26498,-0.0193 -0.27578,-0.0193 -0.74625,2e-5 -1.42759,0.12198 -2.04404,0.36591 -0.61647,0.23752 -1.14641,0.60343 -1.58981,1.0977 -0.43262,0.48788 -0.77329,1.10415 -1.02203,1.84878 -0.23793,0.73823 -0.35689,1.60485 -0.35689,2.59984 0,0.99501 0.10812,1.86804 0.32445,2.6191 0.22711,0.75107 0.54074,1.38017 0.94091,1.88729 0.40015,0.50713 0.88142,0.88908 1.44381,1.14585 0.57319,0.25678 1.21127,0.38517 1.91426,0.38517 0.52993,-0.0257 1.022,-0.14123 1.47625,-0.34665 0.19465,-0.0834 0.38933,-0.19258 0.58401,-0.32739 0.20547,-0.1348 0.39474,-0.30171 0.56779,-0.50071 0.18384,-0.19899 0.35148,-0.43009 0.5029,-0.69329 0.1514,-0.2696 0.27037,-0.58095 0.35689,-0.93401 l 2.59561,0.11555 c -0.11902,0.48145 -0.29743,0.90834 -0.53533,1.28065 -0.23795,0.36591 -0.51373,0.68688 -0.82736,0.96291 -0.30284,0.26962 -0.63269,0.4975 -0.98957,0.68366 -0.34609,0.18616 -0.69218,0.34023 -1.03824,0.46219 -0.82196,0.28246 -1.70879,0.44294 -2.66051,0.48146 -1.26537,0 -2.39553,-0.15086 -3.39051,-0.45257 -0.98418,-0.30813 -1.81693,-0.76069 -2.49828,-1.35769 -0.67053,-0.60342 -1.18425,-1.35127 -1.54114,-2.24357 -0.34608,-0.89228 -0.51913,-1.92259 -0.51912,-3.09091 -1e-5,-2.43294 0.69757,-4.26887 2.09271,-5.50781 1.39514,-1.24535 3.54732,-1.86803 6.45658,-1.86804 0.0324,1e-5 0.14058,0.003 0.32445,0.01 0.19466,0.006 0.43799,0.0289 0.73001,0.0674 0.292,0.0385 0.62185,0.0995 0.98958,0.18295 0.36769,0.077 0.74081,0.19259 1.11936,0.34665 0.37851,0.15407 0.74622,0.34665 1.10312,0.57774 0.3569,0.23111 0.67594,0.51998 0.95713,0.86661 0.28119,0.34024 0.50289,0.74145 0.66514,1.20363 0.17302,0.4622 0.25955,0.99501 0.25956,1.59842 l -2.79028,0.0963" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3798"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 343.65948,156.97554 0,1.31918 -8.90618,0 0,5.8737 7.0406,0 0,1.4251 -7.13794,0 0,3.48572 8.63041,0 0,1.52138 -11.38824,0 0,-13.62508 11.76135,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3800"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 364.57855,159.59464 c -0.0104,0.19259 -0.0379,0.39801 -0.0811,0.61625 -0.0432,0.18618 -0.1028,0.40443 -0.17844,0.65477 -0.0649,0.25037 -0.17306,0.51036 -0.32446,0.77996 l -3.00116,-0.24073 c 0.11889,-0.27602 0.20547,-0.53921 0.25955,-0.78958 0.0541,-0.25677 0.0811,-0.49749 0.0811,-0.72217 -2e-5,-0.46219 -0.1028,-0.86661 -0.30823,-1.21326 -0.2055,-0.34663 -0.48128,-0.63872 -0.82735,-0.87625 -0.34609,-0.2375 -0.75166,-0.41403 -1.21669,-0.52959 -0.45424,-0.12196 -0.93552,-0.18294 -1.44381,-0.18295 -0.60565,1e-5 -1.141,0.0931 -1.60603,0.27924 -0.45424,0.17975 -0.83817,0.42048 -1.1518,0.72217 -0.31364,0.29531 -0.55158,0.63232 -0.7138,1.01106 -0.16223,0.37233 -0.24334,0.75428 -0.24333,1.14585 -10e-6,0.38517 0.10812,0.75428 0.32444,1.10734 0.22711,0.34665 0.52994,0.67725 0.90847,0.99179 0.38933,0.30814 0.83816,0.59701 1.34647,0.86661 0.50829,0.26962 1.05446,0.51677 1.63847,0.74144 1.00579,0.38516 1.85478,0.74144 2.54695,1.06882 0.70296,0.32739 1.27075,0.64836 1.70337,0.9629 0.43259,0.30813 0.74622,0.61627 0.9409,0.92439 0.19466,0.30813 0.292,0.63552 0.29201,0.98217 -1e-5,0.37874 -0.10812,0.74785 -0.32446,1.10733 -0.20549,0.35949 -0.54076,0.67725 -1.00579,0.95327 -0.46505,0.27604 -1.0707,0.49751 -1.81692,0.66441 -0.73544,0.1669 -1.6385,0.25035 -2.70918,0.25035 -1.03824,0 -1.97914,-0.0963 -2.82271,-0.28887 -0.83276,-0.199 -1.54656,-0.47182 -2.14139,-0.81846 -0.58401,-0.34665 -1.03824,-0.75749 -1.36268,-1.23252 -0.31365,-0.48145 -0.47047,-1.00784 -0.47047,-1.57916 l 3.04985,0.077 c -10e-6,0.6291 0.12435,1.12981 0.37312,1.50212 0.25956,0.37233 0.56778,0.65478 0.92468,0.84736 0.36771,0.19258 0.74624,0.31776 1.13558,0.37554 0.40015,0.0514 0.74082,0.077 1.02202,0.077 0.32444,0 0.67052,-0.0289 1.03825,-0.0867 0.37852,-0.0642 0.7246,-0.1669 1.03824,-0.30813 0.32445,-0.14764 0.5894,-0.33701 0.7949,-0.56811 0.2163,-0.23751 0.32444,-0.52959 0.32446,-0.87624 -2e-5,-0.35948 -0.14601,-0.68687 -0.43801,-0.98216 -0.2812,-0.30171 -0.65432,-0.58416 -1.11936,-0.84736 -0.46506,-0.26318 -0.995,-0.51675 -1.58981,-0.76069 -0.59484,-0.24393 -1.20589,-0.49429 -1.83315,-0.75106 -0.61646,-0.25677 -1.2221,-0.52638 -1.81693,-0.80885 -0.59482,-0.28244 -1.12476,-0.59057 -1.5898,-0.92439 -0.46506,-0.34021 -0.84359,-0.71575 -1.13558,-1.12659 -0.28119,-0.41083 -0.42179,-0.87302 -0.42179,-1.38658 0,-0.32738 0.0432,-0.66439 0.1298,-1.01105 0.0974,-0.34663 0.24874,-0.68365 0.45423,-1.01105 0.21629,-0.3338 0.49749,-0.64513 0.84357,-0.93401 0.35689,-0.29528 0.80031,-0.55205 1.33024,-0.77033 0.52994,-0.21824 1.15181,-0.39156 1.86561,-0.51997 0.72459,-0.12837 1.55735,-0.19256 2.49827,-0.19258 0.98416,0.0129 1.83854,0.0899 2.56316,0.2311 0.7246,0.14124 1.34105,0.32099 1.84937,0.53922 0.5083,0.21186 0.91926,0.44937 1.23291,0.71256 0.31363,0.2632 0.55696,0.5296 0.73002,0.79921 0.17302,0.2632 0.292,0.51356 0.35689,0.75106 0.0649,0.23753 0.0974,0.43653 0.0974,0.597" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3802"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 378.50889,163.30182 c -1e-5,0.69329 -0.0811,1.37053 -0.24333,2.03172 -0.15144,0.65478 -0.37314,1.27746 -0.66512,1.86803 -0.28121,0.59058 -0.6327,1.13303 -1.05447,1.62731 -0.42181,0.49429 -0.89767,0.92118 -1.4276,1.28066 -0.51913,0.35307 -1.09773,0.6291 -1.7358,0.8281 -0.62729,0.20542 -1.29781,0.30813 -2.0116,0.30813 -0.72462,0 -1.38975,-0.0995 -1.99537,-0.2985 -0.59484,-0.199 -1.13559,-0.47824 -1.62226,-0.83773 -0.47586,-0.35948 -0.89765,-0.78637 -1.26536,-1.28066 -0.3569,-0.49428 -0.65972,-1.03673 -0.90847,-1.62731 -0.23793,-0.59057 -0.42178,-1.21325 -0.55156,-1.86803 -0.1189,-0.66119 -0.17845,-1.33843 -0.17845,-2.03172 0,-1.0271 0.13519,-1.96753 0.40557,-2.82132 0.27037,-0.86018 0.68675,-1.5984 1.24914,-2.21467 0.56237,-0.61625 1.27076,-1.09449 2.12514,-1.43473 0.86521,-0.34021 1.88723,-0.51033 3.06607,-0.51033 1.24372,0 2.29819,0.17012 3.16339,0.51033 0.8652,0.34024 1.56817,0.81848 2.10894,1.43473 0.54074,0.61627 0.93008,1.35449 1.16803,2.21467 0.24873,0.85379 0.3731,1.79422 0.37311,2.82132 m -3.01739,0.077 c -10e-6,-0.85377 -0.0703,-1.63693 -0.21089,-2.34948 -0.1298,-0.71255 -0.3461,-1.32238 -0.6489,-1.82952 -0.30283,-0.51354 -0.69759,-0.91154 -1.18425,-1.194 -0.47587,-0.28244 -1.05988,-0.42367 -1.75204,-0.42368 -0.6489,1e-5 -1.21671,0.14124 -1.70337,0.42368 -0.47587,0.28246 -0.87062,0.68046 -1.18425,1.194 -0.31363,0.50714 -0.54615,1.11697 -0.69756,1.82952 -0.15143,0.71255 -0.22712,1.49571 -0.22712,2.34948 0,0.86662 0.0757,1.69793 0.22712,2.49392 0.15141,0.796 0.37851,1.50213 0.68135,2.11839 0.3028,0.60984 0.68133,1.09771 1.13557,1.46361 0.45423,0.36591 0.97876,0.54886 1.57358,0.54885 0.59483,1e-5 1.13558,-0.18294 1.62226,-0.54885 0.49749,-0.3659 0.91927,-0.85377 1.26536,-1.46361 0.35689,-0.61626 0.62726,-1.32239 0.81114,-2.11839 0.19465,-0.79599 0.29199,-1.6273 0.292,-2.49392" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3804"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 391.46591,156.9948 0,1.31917 -8.72774,0 0,5.85445 7.0406,0 0,1.4251 -7.1866,0 0,5.02636 -2.57938,0 0,-13.62508 11.45312,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3806"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 402.47619,156.90813 -0.22711,1.34806 -5.09389,0 0,12.32517 -2.15759,0 0,-12.32517 -3.97454,0 0,-1.38657 11.45313,0.0385" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3808"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 419.31039,156.60001 -2.62806,13.98135 -3.5203,0 -2.53072,-10.49565 -1.97915,10.45714 -3.89341,0 -2.75783,-13.71175 3.29317,0 1.46003,12.07481 2.28738,-11.32375 3.09852,0 2.67672,10.98674 1.13558,-11.96889 3.35807,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3810"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 429.96379,170.81246 -0.7949,-2.58058 c -0.51914,-0.0129 -1.03286,-0.0225 -1.54115,-0.0289 -0.50831,-0.006 -1.02203,-0.01 -1.54114,-0.01 -0.55158,10e-6 -1.10855,0.003 -1.67093,0.01 -0.56239,0.006 -1.12477,0.016 -1.68714,0.0289 -0.1406,0.43652 -0.2758,0.86662 -0.40557,1.29029 -0.11902,0.42368 -0.23793,0.84736 -0.35689,1.27104 l -3.03362,0.0193 c 0.47586,-1.13623 0.91927,-2.28208 1.33025,-3.43757 0.42178,-1.15547 0.82735,-2.31417 1.21669,-3.47608 0.38934,-1.1619 0.77327,-2.3238 1.1518,-3.48571 0.37852,-1.16189 0.76246,-2.31417 1.15181,-3.45683 l 4.18541,-0.0481 c 0.77867,2.3174 1.59521,4.64442 2.4496,6.98105 0.8652,2.33666 1.80071,4.64441 2.80651,6.92328 l -3.26073,0 m -3.97453,-12.14221 c -0.51912,1.35449 -1.01121,2.7154 -1.47625,4.08271 -0.46506,1.36091 -0.91929,2.72823 -1.3627,4.10197 0.47586,0.0129 0.94632,0.016 1.41137,0.01 0.46504,-0.006 0.94089,-0.01 1.42758,-0.01 0.46504,0 0.91927,0.003 1.3627,0.01 0.44341,0.006 0.89222,0.003 1.34646,-0.01 -0.4326,-1.38016 -0.87062,-2.75069 -1.31402,-4.1116 -0.44342,-1.36089 -0.90847,-2.71859 -1.39514,-4.07308" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3812"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 441.33096,170.79321 -2.75784,-4.67009 c -0.54075,0.0385 -1.06528,0.0578 -1.57358,0.0578 -0.1298,0 -0.25957,0 -0.38934,0 -0.1298,0 -0.26498,-0.006 -0.40557,-0.0193 -0.0649,0.76391 -0.11902,1.5246 -0.16222,2.28209 -0.0325,0.75106 -0.0649,1.50855 -0.0974,2.27245 l -2.43339,0 c 0.0649,-1.33523 0.11903,-2.66403 0.16222,-3.98642 0.0541,-1.32881 0.0811,-2.66724 0.0811,-4.01531 -10e-6,-0.97573 -0.0162,-1.94185 -0.0487,-2.89834 -0.0325,-0.9629 -0.0757,-1.93222 -0.12979,-2.90797 0.51912,-0.12195 1.06527,-0.21824 1.63848,-0.28887 0.5732,-0.0771 1.12476,-0.13479 1.6547,-0.17333 0.54075,-0.0385 1.03824,-0.0609 1.49247,-0.0674 0.45423,-0.0128 0.82195,-0.0193 1.10314,-0.0193 1.02742,2e-5 2.00077,0.0835 2.92006,0.25035 0.93008,0.16692 1.74121,0.44295 2.43339,0.8281 0.69214,0.37876 1.23831,0.87626 1.63848,1.49251 0.41095,0.60984 0.61643,1.3577 0.61645,2.24356 -0.0541,0.59058 -0.26499,1.13303 -0.63268,1.6273 -0.36773,0.48788 -0.84899,0.92761 -1.44381,1.31918 -0.59484,0.38517 -1.27077,0.71898 -2.02782,1.00142 -0.74625,0.28246 -1.52493,0.51035 -2.33604,0.68366 0.59481,0.81527 1.23831,1.6209 1.93047,2.41689 0.69216,0.796 1.43299,1.59521 2.2225,2.39764 l -3.45541,0.17332 m -4.29898,-13.07623 c -0.16222,1.23252 -0.30282,2.45862 -0.42178,3.67829 -0.11902,1.21968 -0.23253,2.43936 -0.34068,3.65903 l 0.0324,0 c 1.18965,0 2.19545,-0.0963 3.01739,-0.28887 0.83276,-0.19258 1.51951,-0.4333 2.06027,-0.72218 0.55156,-0.28887 0.97875,-0.6002 1.28158,-0.93401 0.30282,-0.34023 0.52453,-0.65798 0.66512,-0.95328 0.15141,-0.29528 0.24334,-0.54242 0.2758,-0.74143 0.0324,-0.199 0.0487,-0.30492 0.0487,-0.31777 -1e-5,-0.0706 -0.0104,-0.2054 -0.0325,-0.40441 -0.0217,-0.19899 -0.0811,-0.42688 -0.17844,-0.68366 -0.0974,-0.26319 -0.24876,-0.53601 -0.45423,-0.81847 -0.19469,-0.28244 -0.47047,-0.53922 -0.82735,-0.77032 -0.3569,-0.23751 -0.80573,-0.4333 -1.34647,-0.58738 -0.54077,-0.15405 -1.20048,-0.23108 -1.97916,-0.23109 -0.54075,1e-5 -1.14099,0.0385 -1.8007,0.11555" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3814"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 459.80364,156.97554 0,1.31918 -8.90619,0 0,5.8737 7.04059,0 0,1.4251 -7.13792,0 0,3.48572 8.6304,0 0,1.52138 -11.38824,0 0,-13.62508 11.76136,0" />
 
<path
 
   inkscape:connector-curvature="0"
 
   id="path3842"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 185.22417,194.40963 c 0,0.11555 -0.0379,0.22468 -0.11357,0.32738 -0.0757,0.10272 -0.18386,0.19259 -0.32445,0.26962 -0.12979,0.077 -0.28119,0.13802 -0.45424,0.18295 -0.17303,0.0449 -0.35689,0.0674 -0.55156,0.0674 -0.40016,0 -0.74082,-0.0802 -1.02202,-0.24073 -0.27038,-0.1669 -0.40557,-0.36911 -0.40557,-0.60663 0,-0.11554 0.0379,-0.22146 0.11358,-0.31775 0.0757,-0.10271 0.17844,-0.18937 0.30823,-0.25999 0.1298,-0.077 0.28118,-0.13801 0.45423,-0.18295 0.17303,-0.0449 0.35689,-0.0674 0.55156,-0.0674 0.19467,0 0.37853,0.0225 0.55157,0.0674 0.17304,0.0449 0.32445,0.10592 0.45424,0.18295 0.14058,0.0707 0.24874,0.15728 0.32444,0.25999 0.0757,0.0963 0.11357,0.20221 0.11357,0.31775" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3844"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 189.96116,194.40963 c -1e-5,0.11555 -0.0379,0.22468 -0.11357,0.32738 -0.0757,0.10272 -0.18386,0.19259 -0.32446,0.26962 -0.12979,0.077 -0.28119,0.13802 -0.45422,0.18295 -0.17305,0.0449 -0.35691,0.0674 -0.55157,0.0674 -0.40016,0 -0.74083,-0.0802 -1.02203,-0.24073 -0.27037,-0.1669 -0.40555,-0.36911 -0.40555,-0.60663 0,-0.11554 0.0379,-0.22146 0.11357,-0.31775 0.0757,-0.10271 0.17846,-0.18937 0.30823,-0.25999 0.1298,-0.077 0.2812,-0.13801 0.45423,-0.18295 0.17305,-0.0449 0.35691,-0.0674 0.55158,-0.0674 0.19466,0 0.37852,0.0225 0.55156,0.0674 0.17304,0.0449 0.32445,0.10592 0.45423,0.18295 0.1406,0.0707 0.24875,0.15728 0.32446,0.25999 0.0757,0.0963 0.11357,0.20221 0.11357,0.31775" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3846"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 194.69815,194.40963 c 0,0.11555 -0.0379,0.22468 -0.11358,0.32738 -0.0757,0.10272 -0.18386,0.19259 -0.32444,0.26962 -0.1298,0.077 -0.2812,0.13802 -0.45424,0.18295 -0.17304,0.0449 -0.3569,0.0674 -0.55157,0.0674 -0.40015,0 -0.74083,-0.0802 -1.02201,-0.24073 -0.27039,-0.1669 -0.40557,-0.36911 -0.40557,-0.60663 0,-0.11554 0.0379,-0.22146 0.11357,-0.31775 0.0757,-0.10271 0.17845,-0.18937 0.30823,-0.25999 0.1298,-0.077 0.28119,-0.13801 0.45423,-0.18295 0.17304,-0.0449 0.3569,-0.0674 0.55157,-0.0674 0.19467,0 0.37853,0.0225 0.55156,0.0674 0.17305,0.0449 0.32446,0.10592 0.45424,0.18295 0.14059,0.0707 0.24873,0.15728 0.32445,0.25999 0.0757,0.0963 0.11357,0.20221 0.11357,0.31775" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3848"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 201.2845,181.41043 -0.0649,3.19684 3.22829,0 0,1.22288 -3.26074,0 -0.2271,9.44609 -1.99538,0 -0.12979,-9.44609 -3.65008,0 0,-1.22288 3.65008,0 -0.0325,-3.29313 2.48205,0.0963" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3850"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 214.3006,195.19921 c -0.0866,-0.97574 -0.17306,-1.84236 -0.25957,-2.59984 -0.0757,-0.7639 -0.14601,-1.40904 -0.21088,-1.93544 -0.0757,-0.61625 -0.15142,-1.15548 -0.22712,-1.61767 -0.0973,-0.77674 -0.26498,-1.3609 -0.5029,-1.75249 -0.23794,-0.39799 -0.54617,-0.59699 -0.92469,-0.597 -0.3569,1e-5 -0.73002,0.13802 -1.11935,0.41405 -0.37854,0.27604 -0.75706,0.64194 -1.13558,1.09771 -0.37854,0.45578 -0.74624,0.97895 -1.10314,1.56953 -0.34608,0.58416 -0.66512,1.18759 -0.95713,1.81026 -0.28119,0.62268 -0.52994,1.23573 -0.74623,1.83914 -0.21631,0.60342 -0.37853,1.15228 -0.48668,1.64657 l -2.1576,0.0481 c -1e-5,-2.28529 -0.027,-4.28491 -0.0811,-5.99889 -0.0432,-1.71396 -0.0919,-3.14226 -0.146,-4.28491 -0.0541,-1.14264 -0.10812,-1.99963 -0.16222,-2.57096 -0.0432,-0.57131 -0.0703,-0.85697 -0.0811,-0.85698 l 2.79028,0.077 0,8.03061 c 0.23793,-0.39157 0.47045,-0.73501 0.69757,-1.03031 0.22711,-0.29528 0.4272,-0.54242 0.60024,-0.74143 0.19466,-0.23109 0.38393,-0.43009 0.56779,-0.597 0.32444,-0.30812 0.66511,-0.58415 1.02202,-0.82809 0.35689,-0.24394 0.7192,-0.44936 1.08691,-0.61627 0.37852,-0.17331 0.74623,-0.3049 1.10313,-0.39479 0.36771,-0.0899 0.7246,-0.13479 1.07069,-0.1348 0.68134,1e-5 1.23832,0.18938 1.67092,0.56811 0.43259,0.37233 0.75164,0.96613 0.95713,1.78137 0.17304,0.65479 0.32444,1.38017 0.45424,2.17616 0.1189,0.68046 0.2271,1.48288 0.32445,2.40727 0.0973,0.92439 0.15681,1.92901 0.17844,3.01388 l -2.22248,0.077" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3852"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 230.31787,189.91287 c -0.0217,0.64836 -0.0541,1.2935 -0.0974,1.93543 -0.0217,0.27604 -0.0432,0.56491 -0.0649,0.86662 -0.0217,0.30171 -0.0487,0.60662 -0.0811,0.91476 -0.0217,0.3017 -0.0541,0.60021 -0.0974,0.8955 -0.0324,0.29529 -0.0649,0.57132 -0.0974,0.82809 l -2.22248,-0.0385 c 0.0215,-0.18616 0.0378,-0.36911 0.0487,-0.54885 0.0104,-0.17975 0.0162,-0.35949 0.0162,-0.53923 -0.48669,0.30813 -1.00041,0.54886 -1.54115,0.72218 -0.54076,0.17332 -1.05448,0.30492 -1.54114,0.39479 -0.56239,0.10912 -1.11937,0.17974 -1.67092,0.21184 -0.11902,0.0129 -0.23253,0.0193 -0.34068,0.0193 -0.0974,-1e-5 -0.20548,-1e-5 -0.32444,0 -0.75706,-1e-5 -1.48167,-0.0642 -2.17384,-0.19259 -0.69216,-0.12196 -1.30861,-0.31133 -1.84936,-0.56811 -0.52994,-0.25678 -0.95713,-0.57774 -1.28159,-0.9629 -0.31363,-0.39158 -0.47045,-0.85056 -0.47045,-1.37696 0,-0.46218 0.15141,-0.8955 0.45423,-1.29992 0.31364,-0.41083 0.74623,-0.7671 1.29781,-1.06882 0.56238,-0.30812 1.23831,-0.55206 2.02782,-0.7318 0.78949,-0.17975 1.66551,-0.27603 2.62805,-0.28888 0.0325,1e-5 0.2163,0.006 0.55157,0.0193 0.33526,0.0129 0.74082,0.0546 1.2167,0.12518 0.48666,0.0642 1.00578,0.17011 1.55735,0.31776 0.56238,0.14123 1.08149,0.34023 1.55737,0.597 -1e-5,-0.28887 -0.0104,-0.59379 -0.0324,-0.91476 -0.0217,-0.32096 -0.0757,-0.63551 -0.16222,-0.94365 -0.0757,-0.31454 -0.20008,-0.61304 -0.37312,-0.8955 -0.17304,-0.28244 -0.41098,-0.52959 -0.7138,-0.74143 -0.292,-0.21826 -0.66512,-0.38837 -1.11935,-0.51034 -0.45424,-0.12838 -1.0058,-0.19258 -1.6547,-0.19258 -0.5083,0 -0.97336,0.0578 -1.39514,0.17332 -0.42179,0.11556 -0.79491,0.27283 -1.11935,0.47182 -0.32446,0.19901 -0.59484,0.43653 -0.81113,0.71255 -0.21631,0.26963 -0.37853,0.5617 -0.48668,0.87624 l -2.72539,-0.51996 c 0.1298,-0.3659 0.31364,-0.69008 0.55157,-0.97254 0.24874,-0.28244 0.52453,-0.52958 0.82734,-0.74143 0.31365,-0.21183 0.6435,-0.39157 0.98959,-0.53923 0.35689,-0.15405 0.70838,-0.28244 1.05446,-0.38516 0.81112,-0.2375 1.68714,-0.38194 2.62806,-0.43331 1.29779,2e-5 2.39552,0.11556 3.29317,0.34665 0.89764,0.2311 1.62225,0.57133 2.17382,1.02068 0.56238,0.44936 0.96253,1.00463 1.20048,1.66582 0.24873,0.6612 0.3731,1.4251 0.37312,2.29171 m -2.53073,2.67687 c -1e-5,-0.12838 0.005,-0.25356 0.0162,-0.37553 0.0104,-0.12838 0.0162,-0.25035 0.0162,-0.36591 -0.57321,-0.34663 -1.141,-0.60983 -1.70336,-0.78958 -0.55158,-0.17973 -1.05448,-0.31454 -1.5087,-0.40442 -0.51914,-0.1027 -1.02203,-0.16048 -1.50871,-0.17332 -0.67053,10e-6 -1.24913,0.0578 -1.7358,0.17332 -0.47588,0.10914 -0.87062,0.25679 -1.18425,0.44294 -0.30283,0.18616 -0.52994,0.39801 -0.68135,0.63552 -0.1406,0.23752 -0.2109,0.48466 -0.2109,0.74143 0,0.2632 0.0811,0.50072 0.24335,0.71256 0.16222,0.21183 0.38933,0.39157 0.68135,0.53922 0.3028,0.14764 0.66511,0.26319 1.0869,0.34664 0.43261,0.0771 0.91387,0.11555 1.44381,0.11555 0.51911,-0.0257 1.05987,-0.0963 1.62226,-0.21183 0.48666,-0.10272 1.02201,-0.25999 1.60603,-0.47183 0.59482,-0.21825 1.20046,-0.52317 1.81692,-0.91476" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3854"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 235.80669,181.41043 -0.0649,3.19684 3.22829,0 0,1.22288 -3.26074,0 -0.22712,9.44609 -1.99537,0 -0.1298,-9.44609 -3.65008,0 0,-1.22288 3.65008,0 -0.0324,-3.29313 2.48205,0.0963" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3856"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 240.38706,186.26347 -1.5736,0 -0.69756,-5.0071 2.27116,0 0,5.0071" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3858"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 250.53175,188.35297 c 0.0217,-0.0578 0.0325,-0.11555 0.0325,-0.17333 -1e-5,-0.0642 -1e-5,-0.13159 0,-0.20221 -1e-5,-0.32738 -0.0811,-0.6323 -0.24333,-0.91475 -0.15143,-0.28887 -0.37313,-0.53923 -0.66513,-0.75107 -0.2812,-0.21825 -0.62729,-0.38836 -1.03825,-0.51034 -0.41098,-0.12837 -0.86521,-0.19257 -1.36269,-0.19258 -0.57321,1e-5 -1.09233,0.0449 -1.55737,0.13481 -0.46505,0.0835 -0.8652,0.20864 -1.20046,0.37553 -0.32446,0.16691 -0.57861,0.37554 -0.76247,0.62588 -0.18386,0.24395 -0.27578,0.52961 -0.27578,0.85699 0,0.18617 0.0757,0.37875 0.22712,0.57774 0.16222,0.19259 0.40015,0.37554 0.71379,0.54886 0.31364,0.17333 0.69757,0.32739 1.15179,0.46219 0.46504,0.13481 1.0058,0.2311 1.62227,0.28887 1.15719,0.11556 2.09811,0.28567 2.82272,0.51034 0.73541,0.21826 1.30861,0.46541 1.71959,0.74144 0.42178,0.27603 0.70837,0.56169 0.8598,0.85698 0.15139,0.29529 0.2271,0.57133 0.22712,0.8281 -2e-5,0.16048 -0.0325,0.34344 -0.0974,0.54886 -0.0541,0.20541 -0.16225,0.41725 -0.32446,0.63551 -0.16223,0.21826 -0.38935,0.43331 -0.68135,0.64514 -0.28119,0.20542 -0.64891,0.39158 -1.10312,0.55849 -0.45425,0.16048 -1.00041,0.29208 -1.63848,0.39479 -0.62729,0.10271 -1.37353,0.15406 -2.23872,0.15406 -0.0866,0 -0.2812,-0.006 -0.58402,-0.0193 -0.292,-0.0129 -0.6435,-0.0546 -1.05446,-0.12518 -0.40016,-0.0706 -0.83276,-0.17654 -1.2978,-0.31776 -0.45424,-0.14122 -0.88683,-0.34022 -1.2978,-0.597 -0.41098,-0.25678 -0.77329,-0.58095 -1.08692,-0.97253 -0.30282,-0.39158 -0.5029,-0.86982 -0.60024,-1.43472 l 2.6605,-0.0867 c 0.0757,0.37233 0.2109,0.68366 0.40557,0.93402 0.20548,0.25035 0.438,0.45898 0.69757,0.62589 0.27037,0.16048 0.54615,0.28566 0.82735,0.37553 0.29201,0.0899 0.56238,0.15727 0.81113,0.2022 0.25955,0.0385 0.47586,0.061 0.6489,0.0674 0.18385,0.006 0.292,0.01 0.32446,0.01 0.45421,-0.006 0.86519,-0.0514 1.23291,-0.13481 0.37852,-0.0899 0.69756,-0.20221 0.95713,-0.33702 0.25955,-0.1348 0.45963,-0.28886 0.60023,-0.46219 0.14058,-0.17974 0.21088,-0.36269 0.21089,-0.54886 -1e-5,-0.16048 -0.0487,-0.31775 -0.14599,-0.47182 -0.0974,-0.15406 -0.28121,-0.2985 -0.55158,-0.4333 -0.25957,-0.14122 -0.62186,-0.26962 -1.0869,-0.38516 -0.45424,-0.11555 -1.04367,-0.21826 -1.76827,-0.30814 -1.16802,-0.1348 -2.13056,-0.3338 -2.88762,-0.59699 -0.74623,-0.26961 -1.34106,-0.56169 -1.78447,-0.87625 -0.44342,-0.32096 -0.75165,-0.64514 -0.92468,-0.97253 -0.17305,-0.32738 -0.25957,-0.62267 -0.25956,-0.88587 -1e-5,-0.39157 0.11357,-0.78957 0.34067,-1.194 0.2271,-0.41083 0.59482,-0.78316 1.10312,-1.11697 0.51913,-0.34022 1.19507,-0.61625 2.02783,-0.8281 0.83276,-0.21825 1.86019,-0.32737 3.08229,-0.32738 1.1572,0.0449 2.19003,0.20222 3.09851,0.47182 0.38933,0.11556 0.76785,0.2632 1.13558,0.44293 0.3785,0.17334 0.71377,0.38838 1.00579,0.64515 0.29199,0.25679 0.52451,0.55849 0.69757,0.90513 0.18385,0.34023 0.27577,0.73502 0.27579,1.18437 -2e-5,0.0963 -0.0104,0.19901 -0.0324,0.30813 -0.0104,0.10272 -0.027,0.20864 -0.0487,0.31776 l -2.92007,-0.0578" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3860"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 276.6594,189.29661 c -1e-5,0.48145 -0.0324,0.96933 -0.0974,1.46361 -0.0541,0.4943 -0.14601,0.97254 -0.27578,1.43473 -0.1298,0.46219 -0.30283,0.8955 -0.51911,1.29992 -0.21632,0.40442 -0.48129,0.76069 -0.79491,1.06882 -0.31366,0.30171 -0.68678,0.53923 -1.11935,0.71255 -0.43262,0.17333 -0.92471,0.25998 -1.47626,0.25998 -0.61647,0 -1.15182,-0.11555 -1.60603,-0.34664 -0.45424,-0.2311 -0.83817,-0.52318 -1.15181,-0.87624 -0.31364,-0.35306 -0.5678,-0.74144 -0.76246,-1.16512 -0.19468,-0.43009 -0.34068,-0.84414 -0.438,-1.24214 -0.14061,0.44294 -0.31906,0.88266 -0.53535,1.31918 -0.21631,0.4301 -0.47587,0.81847 -0.77869,1.16511 -0.30281,0.34022 -0.65431,0.61626 -1.05446,0.8281 -0.40016,0.21183 -0.84899,0.31775 -1.34648,0.31775 -0.91928,0 -1.67091,-0.17974 -2.25493,-0.53922 -0.58401,-0.35949 -1.04365,-0.84094 -1.37892,-1.44436 -0.32444,-0.60983 -0.55156,-1.31275 -0.68134,-2.10876 -0.11902,-0.79599 -0.17845,-1.63051 -0.17845,-2.50355 0,-0.25034 0.005,-0.52958 0.0162,-0.83772 0.0104,-0.31454 0.027,-0.6323 0.0487,-0.95328 0.0217,-0.32737 0.0432,-0.64514 0.0649,-0.95327 0.0324,-0.31454 0.0649,-0.59378 0.0974,-0.83772 l 3.22829,-0.077 c -0.0974,0.43011 -0.19467,0.89231 -0.29201,1.38658 -0.0866,0.48788 -0.16222,0.98539 -0.22711,1.4925 -0.0649,0.50714 -0.11902,1.00785 -0.16223,1.50214 -0.0324,0.49429 -0.0487,0.9597 -0.0487,1.3962 0,0.0835 0.0104,0.21827 0.0325,0.40442 0.0324,0.18617 0.0757,0.39801 0.1298,0.63552 0.0649,0.2311 0.1406,0.47183 0.22712,0.72218 0.0866,0.24394 0.18926,0.47182 0.30823,0.68366 0.1298,0.20542 0.27577,0.37554 0.43801,0.51034 0.16222,0.12839 0.34608,0.19258 0.55156,0.19258 0.22711,0 0.43801,-0.0995 0.63269,-0.2985 0.20547,-0.199 0.39474,-0.4654 0.56779,-0.79921 0.17303,-0.3338 0.32984,-0.71576 0.47045,-1.14586 0.1514,-0.43651 0.2866,-0.88586 0.40557,-1.34806 0.11889,-0.46219 0.22711,-0.92438 0.32444,-1.38658 0.0974,-0.46219 0.17845,-0.88908 0.24335,-1.28066 0.0649,-0.398 0.11357,-0.74143 0.14599,-1.03031 0.0432,-0.28886 0.0702,-0.49428 0.0811,-0.61626 l 2.57938,-0.077 c -0.0217,0.17333 -0.0379,0.37875 -0.0487,0.61626 -0.0104,0.23753 -0.0217,0.48146 -0.0324,0.73181 -1e-5,0.24394 -0.005,0.48467 -0.0162,0.72218 -2e-5,0.2311 -2e-5,0.43331 0,0.60662 -2e-5,0.13482 0.0162,0.35629 0.0487,0.6644 0.0324,0.30172 0.0811,0.64195 0.146,1.02068 0.0649,0.37233 0.15681,0.76071 0.27578,1.16512 0.11902,0.40442 0.25956,0.77353 0.42179,1.10733 0.16221,0.3274 0.35688,0.60022 0.58401,0.81848 0.2271,0.21183 0.48667,0.31776 0.77869,0.31775 0.19466,-0.0257 0.3731,-0.11875 0.53534,-0.27924 0.16221,-0.16048 0.3028,-0.35627 0.42179,-0.58737 0.1189,-0.23109 0.2217,-0.48145 0.30822,-0.75106 0.0866,-0.27603 0.15681,-0.53602 0.21089,-0.77995 0.0541,-0.25035 0.0919,-0.47183 0.11358,-0.66441 0.0325,-0.19258 0.0487,-0.32418 0.0487,-0.39479 -2e-5,-0.41083 -0.0162,-0.85056 -0.0487,-1.31917 -0.0324,-0.46862 -0.0757,-0.94365 -0.1298,-1.4251 -0.0541,-0.48145 -0.11902,-0.95648 -0.19467,-1.4251 -0.0757,-0.46861 -0.15142,-0.90512 -0.22711,-1.30955 l 2.98495,-0.11555 c 0.0649,0.30814 0.1189,0.65157 0.16223,1.03031 0.0541,0.37233 0.0973,0.75428 0.12979,1.14585 0.0325,0.38517 0.0595,0.76712 0.0811,1.14585 0.0215,0.37234 0.0324,0.71577 0.0324,1.03031" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3862"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 288.05325,195.19921 c -0.0866,-0.97574 -0.17305,-1.84236 -0.25956,-2.59984 -0.0757,-0.7639 -0.14602,-1.40904 -0.2109,-1.93544 -0.0757,-0.61625 -0.15142,-1.15548 -0.22712,-1.61767 -0.0973,-0.77674 -0.26497,-1.3609 -0.50289,-1.75249 -0.23794,-0.39799 -0.54617,-0.59699 -0.92469,-0.597 -0.35691,1e-5 -0.73002,0.13802 -1.11935,0.41405 -0.37853,0.27604 -0.75706,0.64194 -1.13558,1.09771 -0.37853,0.45578 -0.74625,0.97895 -1.10314,1.56953 -0.34608,0.58416 -0.66513,1.18759 -0.95713,1.81026 -0.2812,0.62268 -0.52994,1.23573 -0.74624,1.83914 -0.21629,0.60342 -0.37853,1.15228 -0.48668,1.64657 l -2.15759,0.0481 c 0,-2.28529 -0.027,-4.28491 -0.0811,-5.99889 -0.0432,-1.71396 -0.0919,-3.14226 -0.14601,-4.28491 -0.0541,-1.14264 -0.10813,-1.99963 -0.16223,-2.57096 -0.0432,-0.57131 -0.0703,-0.85697 -0.0811,-0.85698 l 2.79028,0.077 0,8.03061 c 0.23792,-0.39157 0.47044,-0.73501 0.69756,-1.03031 0.22712,-0.29528 0.42719,-0.54242 0.60024,-0.74143 0.19467,-0.23109 0.38393,-0.43009 0.56779,-0.597 0.32444,-0.30812 0.66512,-0.58415 1.02202,-0.82809 0.35689,-0.24394 0.7192,-0.44936 1.08691,-0.61627 0.37852,-0.17331 0.74624,-0.3049 1.10314,-0.39479 0.3677,-0.0899 0.7246,-0.13479 1.07068,-0.1348 0.68134,1e-5 1.23832,0.18938 1.67093,0.56811 0.43259,0.37233 0.75164,0.96613 0.95713,1.78137 0.17302,0.65479 0.32443,1.38017 0.45423,2.17616 0.1189,0.68046 0.22711,1.48288 0.32446,2.40727 0.0974,0.92439 0.15679,1.92901 0.17844,3.01388 l -2.22249,0.077" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3864"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 303.82718,185.2139 c -0.0649,0.44936 -0.1298,0.93723 -0.19467,1.46361 -0.0649,0.51998 -0.12435,1.05278 -0.17845,1.59842 -0.0432,0.54566 -0.0866,1.09451 -0.1298,1.64657 -0.0432,0.55207 -0.0811,1.08166 -0.11357,1.58879 -0.0866,1.194 -0.15683,2.39763 -0.2109,3.61088 -0.0541,0.66762 -0.22712,1.28387 -0.51911,1.84878 -0.28121,0.5649 -0.69217,1.05278 -1.23291,1.46361 -0.52996,0.41084 -1.18967,0.73181 -1.97916,0.96291 -0.7895,0.23751 -1.7142,0.35627 -2.77406,0.35627 -0.68135,-0.0129 -1.34648,-0.0642 -1.99537,-0.15406 -0.2812,-0.0385 -0.56779,-0.0899 -0.8598,-0.15407 -0.29201,-0.0578 -0.58401,-0.1316 -0.87602,-0.22147 -0.2812,-0.0834 -0.55698,-0.18616 -0.82735,-0.30812 -0.25955,-0.11556 -0.49209,-0.25036 -0.69757,-0.40442 l 1.26536,-1.08808 c 0.3569,0.24393 0.74082,0.4333 1.1518,0.56811 0.41097,0.1348 0.80031,0.2343 1.16803,0.2985 0.37852,0.0642 0.71379,0.10271 1.00579,0.11555 0.29201,0.0193 0.49208,0.0289 0.60024,0.0289 0.70298,0 1.3032,-0.0834 1.8007,-0.25035 0.50831,-0.16049 0.93008,-0.38517 1.26537,-0.67404 0.33525,-0.28245 0.60022,-0.62267 0.79491,-1.02068 0.19465,-0.39157 0.34065,-0.81526 0.438,-1.27102 0.10812,-0.4622 0.17303,-0.94686 0.19467,-1.45399 0.0324,-0.51355 0.0487,-1.0303 0.0487,-1.55027 l 0,-0.11555 c -0.32445,0.59058 -0.68134,1.09129 -1.07067,1.50212 -0.37855,0.40442 -0.76248,0.74144 -1.15181,1.01105 -0.38935,0.26962 -0.76788,0.48146 -1.13557,0.63552 -0.36772,0.14764 -0.69759,0.25677 -0.98958,0.32739 -0.29202,0.0706 -0.54077,0.11234 -0.74624,0.12517 -0.19468,0.0193 -0.31364,0.0289 -0.3569,0.0289 -0.81113,0 -1.49247,-0.13481 -2.04404,-0.40442 -0.55158,-0.26319 -0.99499,-0.64514 -1.33025,-1.14585 -0.33527,-0.50071 -0.57861,-1.11055 -0.73002,-1.82952 -0.1406,-0.71896 -0.21088,-1.53101 -0.21088,-2.43615 0,-0.72538 0.0379,-1.49891 0.11357,-2.32059 0.0757,-0.82167 0.18386,-1.69791 0.32446,-2.62873 l 2.9525,0.13481 c -0.28119,1.13623 -0.48668,2.13123 -0.61645,2.985 -0.11903,0.84736 -0.17846,1.58879 -0.17846,2.2243 0,0.64195 0.0432,1.18438 0.1298,1.62732 0.0974,0.44293 0.21629,0.81204 0.35689,1.10733 0.1406,0.2953 0.29201,0.52639 0.45424,0.69329 0.17304,0.16049 0.33526,0.28246 0.48668,0.3659 0.1514,0.077 0.28658,0.12518 0.40555,0.14444 0.1189,0.0129 0.19468,0.0193 0.22713,0.0193 0.41096,0 0.8003,-0.11234 1.16802,-0.33701 0.37852,-0.22468 0.73,-0.52319 1.05447,-0.89551 0.33525,-0.37232 0.64349,-0.7992 0.92468,-1.28066 0.29199,-0.48786 0.55696,-0.995 0.79491,-1.52138 0.23792,-0.52639 0.44882,-1.05278 0.63267,-1.57916 0.19466,-0.52639 0.35688,-1.01747 0.48668,-1.47325 0.1298,-0.45577 0.23251,-0.85377 0.30823,-1.194 0.0757,-0.34664 0.12435,-0.60341 0.146,-0.77032 l 2.44962,0" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3866"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 317.69057,195.16069 -7.10548,0 0.0325,-1.50213 c 0.34608,0.0129 0.69216,0.0225 1.03824,0.0289 0.34608,0.006 0.68676,0.01 1.02203,0.01 0.0541,-1.29029 0.0919,-2.58058 0.11358,-3.87087 0.0324,-1.29029 0.0487,-2.5902 0.0487,-3.89976 0,-0.51354 0,-1.02709 0,-1.54065 0,-0.51353 -0.0104,-1.0303 -0.0324,-1.55027 l -2.06026,0.17332 -0.16223,-1.73323 c 0.64891,0.0129 1.29781,0.0193 1.94671,0.0193 0.6489,1e-5 1.2978,1e-5 1.94671,0 0.63807,1e-5 1.27076,1e-5 1.89804,0 0.63807,1e-5 1.27616,-0.006 1.91426,-0.0193 l -0.0324,1.2614 c -0.36772,0.0129 -0.73542,0.0289 -1.10313,0.0482 -0.3569,0.0129 -0.71921,0.0289 -1.08691,0.0481 -0.23794,1.8552 -0.45425,3.70076 -0.6489,5.53669 -0.18386,1.82952 -0.3461,3.67187 -0.48668,5.52707 0.47585,0 0.93549,-0.006 1.37892,-0.0193 0.45422,-0.0193 0.91386,-0.0449 1.37891,-0.077 l 0,1.5599" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3868"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 322.00578,186.26347 -1.5736,0 -0.69757,-5.0071 2.27117,0 0,5.0071" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3870"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 338.861,195.03551 c 0.1298,-0.51996 0.23792,-1.02388 0.32446,-1.51175 0.0865,-0.48787 0.1514,-0.94686 0.19467,-1.37696 0.0432,-0.43009 0.0702,-0.82167 0.0811,-1.17474 0.0215,-0.35948 0.0325,-0.66761 0.0325,-0.92439 -3e-5,-0.95006 -0.11903,-1.66902 -0.35691,-2.1569 -0.23795,-0.49428 -0.61646,-0.74143 -1.13558,-0.74144 -0.40017,1e-5 -0.85439,0.1926 -1.36268,0.57775 -0.49752,0.37875 -0.99501,0.96933 -1.49249,1.77174 0.0217,0.18617 0.0379,0.38517 0.0487,0.597 0.0104,0.20543 0.0162,0.42689 0.0162,0.6644 -1e-5,0.61626 -0.0379,1.28708 -0.11357,2.01247 -0.0757,0.72539 -0.21632,1.49892 -0.42179,2.3206 l -2.38472,0.0867 c 0.1514,-0.90512 0.24873,-1.71718 0.29201,-2.43615 0.0432,-0.71896 0.0649,-1.34164 0.0649,-1.86803 0,-0.74464 -0.0325,-1.36732 -0.0974,-1.86803 -0.0649,-0.5007 -0.15141,-0.90191 -0.25956,-1.20363 -0.0974,-0.30812 -0.21089,-0.52638 -0.34067,-0.65478 -0.12979,-0.12837 -0.25957,-0.19257 -0.38934,-0.19258 -0.23794,1e-5 -0.51913,0.14766 -0.84357,0.44294 -0.31364,0.2953 -0.69759,0.73182 -1.1518,1.30954 -0.45424,0.58417 -0.80032,1.14587 -1.03826,1.68509 -0.23793,0.53923 -0.42719,1.06882 -0.56778,1.58879 -0.1298,0.51997 -0.23252,1.03352 -0.30822,1.54065 -0.0757,0.50712 -0.16765,1.01746 -0.2758,1.53102 l -2.22248,0.0385 c 0.0217,-0.4622 0.0325,-0.91797 0.0325,-1.36733 0,-0.44935 0,-0.88587 0,-1.30955 0,-1.02067 -0.0162,-1.95469 -0.0487,-2.80204 -0.0324,-0.84736 -0.0649,-1.58237 -0.0974,-2.20506 -0.0432,-0.72537 -0.0866,-1.37694 -0.1298,-1.95469 l 2.9525,0.077 0,3.10055 c 0.0866,-0.17973 0.20009,-0.38515 0.34069,-0.61626 0.14058,-0.2375 0.30281,-0.47823 0.48667,-0.72218 0.18385,-0.25034 0.39475,-0.49428 0.63268,-0.73181 0.24874,-0.24392 0.51911,-0.45897 0.81113,-0.64514 0.292,-0.19257 0.61104,-0.34664 0.95713,-0.46219 0.34607,-0.11554 0.7246,-0.17332 1.13558,-0.17332 0.57319,0 1.09772,0.17974 1.57358,0.53922 0.48667,0.35308 0.83816,0.89551 1.05447,1.62731 0.40014,-0.44935 0.80571,-0.7992 1.2167,-1.04957 0.41095,-0.25034 0.78407,-0.4333 1.11935,-0.54885 0.34607,-0.12196 0.63266,-0.19578 0.8598,-0.22147 0.22709,-0.0257 0.36769,-0.0385 0.42178,-0.0385 0.4434,2e-5 0.87059,0.061 1.28158,0.18295 0.41096,0.12199 0.77326,0.35629 1.08692,0.70293 0.32443,0.34023 0.57859,0.81526 0.76246,1.42509 0.19465,0.60985 0.29198,1.39943 0.29201,2.36874 -3e-5,0.63552 -0.0432,1.35128 -0.1298,2.14728 -0.0866,0.78959 -0.22172,1.68187 -0.40557,2.67687 l -2.49827,-0.0578" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3872"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 362.39306,189.91287 c -0.0217,0.64836 -0.0541,1.2935 -0.0974,1.93543 -0.0217,0.27604 -0.0432,0.56491 -0.0649,0.86662 -0.0217,0.30171 -0.0487,0.60662 -0.0811,0.91476 -0.0217,0.3017 -0.0541,0.60021 -0.0974,0.8955 -0.0325,0.29529 -0.0649,0.57132 -0.0974,0.82809 l -2.22249,-0.0385 c 0.0217,-0.18616 0.0379,-0.36911 0.0487,-0.54885 0.0104,-0.17975 0.0162,-0.35949 0.0162,-0.53923 -0.48669,0.30813 -1.00041,0.54886 -1.54115,0.72218 -0.54076,0.17332 -1.05446,0.30492 -1.54114,0.39479 -0.56239,0.10912 -1.11937,0.17974 -1.67092,0.21184 -0.11902,0.0129 -0.23253,0.0193 -0.34068,0.0193 -0.0974,-1e-5 -0.20548,-1e-5 -0.32444,0 -0.75706,-1e-5 -1.48167,-0.0642 -2.17384,-0.19259 -0.69216,-0.12196 -1.30861,-0.31133 -1.84936,-0.56811 -0.52994,-0.25678 -0.95713,-0.57774 -1.28159,-0.9629 -0.31363,-0.39158 -0.47045,-0.85056 -0.47045,-1.37696 0,-0.46218 0.15141,-0.8955 0.45423,-1.29992 0.31364,-0.41083 0.74623,-0.7671 1.29781,-1.06882 0.56238,-0.30812 1.23831,-0.55206 2.02782,-0.7318 0.78949,-0.17975 1.66551,-0.27603 2.62805,-0.28888 0.0325,1e-5 0.2163,0.006 0.55156,0.0193 0.33527,0.0129 0.74083,0.0546 1.21671,0.12518 0.48666,0.0642 1.00578,0.17011 1.55735,0.31776 0.56238,0.14123 1.08149,0.34023 1.55737,0.597 -10e-6,-0.28887 -0.0104,-0.59379 -0.0324,-0.91476 -0.0217,-0.32096 -0.0757,-0.63551 -0.16222,-0.94365 -0.0757,-0.31454 -0.20008,-0.61304 -0.37312,-0.8955 -0.17304,-0.28244 -0.41098,-0.52959 -0.7138,-0.74143 -0.292,-0.21826 -0.66512,-0.38837 -1.11935,-0.51034 -0.45424,-0.12838 -1.0058,-0.19258 -1.6547,-0.19258 -0.50831,0 -0.97336,0.0578 -1.39514,0.17332 -0.42179,0.11556 -0.79491,0.27283 -1.11935,0.47182 -0.32446,0.19901 -0.59484,0.43653 -0.81113,0.71255 -0.2163,0.26963 -0.37853,0.5617 -0.48668,0.87624 l -2.72539,-0.51996 c 0.1298,-0.3659 0.31364,-0.69008 0.55157,-0.97254 0.24874,-0.28244 0.52453,-0.52958 0.82734,-0.74143 0.31365,-0.21183 0.6435,-0.39157 0.98958,-0.53923 0.3569,-0.15405 0.70839,-0.28244 1.05447,-0.38516 0.81112,-0.2375 1.68714,-0.38194 2.62806,-0.43331 1.29779,2e-5 2.39552,0.11556 3.29317,0.34665 0.89765,0.2311 1.62225,0.57133 2.17382,1.02068 0.56238,0.44936 0.96253,1.00463 1.20048,1.66582 0.24873,0.6612 0.3731,1.4251 0.37312,2.29171 m -2.53073,2.67687 c -10e-6,-0.12838 0.005,-0.25356 0.0162,-0.37553 0.0104,-0.12838 0.0162,-0.25035 0.0162,-0.36591 -0.5732,-0.34663 -1.14099,-0.60983 -1.70336,-0.78958 -0.55158,-0.17973 -1.05448,-0.31454 -1.5087,-0.40442 -0.51914,-0.1027 -1.02203,-0.16048 -1.50871,-0.17332 -0.67053,10e-6 -1.24914,0.0578 -1.7358,0.17332 -0.47587,0.10914 -0.87062,0.25679 -1.18425,0.44294 -0.30282,0.18616 -0.52994,0.39801 -0.68135,0.63552 -0.1406,0.23752 -0.2109,0.48466 -0.2109,0.74143 0,0.2632 0.0811,0.50072 0.24335,0.71256 0.16222,0.21183 0.38933,0.39157 0.68135,0.53922 0.3028,0.14764 0.66511,0.26319 1.0869,0.34664 0.4326,0.0771 0.91387,0.11555 1.44381,0.11555 0.51911,-0.0257 1.05987,-0.0963 1.62226,-0.21183 0.48666,-0.10272 1.02201,-0.25999 1.60603,-0.47183 0.59482,-0.21825 1.20046,-0.52317 1.81692,-0.91476" /><path
 
   inkscape:connector-curvature="0"
 
   id="path3874"
 
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
 
   d="m 373.80313,195.35327 c -0.0866,-0.97574 -0.17306,-1.85198 -0.25957,-2.62872 -0.0757,-0.78316 -0.14601,-1.45078 -0.21088,-2.00284 -0.0757,-0.64193 -0.15143,-1.21326 -0.22713,-1.71397 -0.0866,-0.77673 -0.25415,-1.36089 -0.5029,-1.75249 -0.23793,-0.39798 -0.54616,-0.59699 -0.92468,-0.59699 -0.37853,0 -0.76247,0.14123 -1.1518,0.42367 -0.38936,0.28246 -0.77329,0.65799 -1.1518,1.1266 -0.37853,0.46862 -0.74084,1.00463 -1.08692,1.60805 -0.33527,0.597 -0.6489,1.21326 -0.94091,1.84877 -0.28119,0.63552 -0.52994,1.26462 -0.74623,1.88729 -0.20549,0.62268 -0.36231,1.18437 -0.47045,1.68508 l -2.2225,0.0385 c 0.0649,-1.06561 0.0974,-2.07666 0.0974,-3.03315 0,-1.00141 -0.027,-1.91617 -0.0811,-2.74427 -0.0541,-0.83451 -0.11358,-1.55348 -0.17845,-2.1569 -0.0757,-0.70613 -0.15682,-1.34164 -0.24335,-1.90656 l 3.13097,0.077 0,3.87087 c 0.24873,-0.42367 0.47044,-0.77995 0.66512,-1.06883 0.19466,-0.28886 0.35689,-0.52316 0.48668,-0.70291 0.1514,-0.21183 0.27577,-0.37874 0.37312,-0.50071 0.28118,-0.31454 0.58941,-0.59379 0.92468,-0.83773 0.33525,-0.25035 0.68134,-0.45898 1.03824,-0.62589 0.36771,-0.17331 0.73542,-0.30491 1.10314,-0.39479 0.37852,-0.0899 0.74082,-0.1348 1.08691,-0.1348 0.34608,0 0.67052,0.0449 0.97335,0.1348 0.30281,0.0899 0.56778,0.23111 0.79491,0.42368 0.23792,0.19259 0.43799,0.43974 0.60024,0.74144 0.17302,0.29529 0.3028,0.65157 0.38934,1.06882 0.17302,0.6933 0.32443,1.45078 0.45423,2.27245 0.11889,0.70614 0.22709,1.53102 0.32444,2.47466 0.0974,0.94365 0.15681,1.95791 0.17846,3.04278 l -2.22249,0.077" />
 

	
 

	
 
<g
 
   transform="matrix(1.8842212,0,0,1.1183954,409.57002,-905.98818)"
 
   id="g4480-0" /><g
 
   id="g5539-5"
 
   transform="matrix(2.1910821,0,0,1.3005353,-703.58095,-489.37937)"
 
   style="fill:#577632" /><g
 
   transform="matrix(1.8842212,0,0,1.1183954,-1334.0412,-1196.6312)"
 
   id="g4480-1-0" /><g
 
   transform="matrix(0.7084153,0,0,0.42048588,23.09391,-194.90992)"
 
   id="g4615"><g
 
     id="g4365-7"
 
     transform="matrix(0.38392529,0,0,0.38392529,-41.98858,941.57365)"><path
 
       inkscape:connector-curvature="0"
 
       style="fill:#afe478;fill-opacity:1;fill-rule:evenodd;stroke:none"
 
       d="m 294.8728,344.65416 c -17.99591,0.20347 -32.91812,12.38231 -34.16415,28.45216 -0.13622,1.75558 -0.0824,3.47227 0.1076,5.17312 -5.89428,-1.88791 -12.25439,-3.14371 -18.9681,-3.66429 -29.235,-2.26687 -54.66561,10.5136 -60.46085,29.31434 -19.33453,6.26155 -34.68239,18.44021 -42.24714,34.05638 -17.1699,-0.89371 -32.07025,12.14704 -33.40974,29.42212 -1.36074,17.54933 11.69211,32.91384 29.20658,34.27192 5.54251,0.42975 10.89952,-0.64981 15.62713,-2.80211 13.6788,14.40097 34.76181,24.52877 58.95201,26.40447 21.79146,1.68968 42.02271,-3.65691 57.33542,-13.57944 6.04955,10.00137 17.2846,17.40024 30.7154,19.3992 l 0,0.32315 c 0.40102,-0.0393 0.78811,-0.16657 1.18551,-0.21555 0.40533,0.05 0.77641,0.1752 1.1855,0.21555 l 0,-0.32315 c 13.45167,-1.98865 24.65882,-9.38618 30.7154,-19.3992 15.31272,9.92253 35.65177,15.26916 57.44319,13.57944 24.1902,-1.87567 45.16545,-12.0035 58.84425,-26.40447 4.72765,2.1523 10.08465,3.23189 15.62714,2.80211 17.51446,-1.35805 30.67508,-16.72263 29.31434,-34.27192 -1.33949,-17.27508 -16.23983,-30.31583 -33.40973,-29.42212 -7.56476,-15.61617 -23.02039,-27.79483 -42.35493,-34.05638 -5.79524,-18.80074 -31.11807,-31.58121 -60.35307,-29.31434 -6.71371,0.52058 -13.07382,1.77638 -18.96811,3.66429 0.19003,-1.70085 0.24418,-3.41754 0.1076,-5.17312 -1.24603,-16.06985 -16.27601,-28.24858 -34.27192,-28.45216 -1.19975,-0.0138 -2.44085,0.0138 -3.66429,0.1076 -0.0724,0.007 -0.14381,-0.007 -0.21555,0 -0.0717,-0.007 -0.14312,0.007 -0.21554,0 -1.22345,-0.0948 -2.46455,-0.12174 -3.6643,-0.1076 z m 3.44874,21.55467 0.53887,0 c 3.05373,0 5.82187,0.85901 7.86746,2.37101 2.04558,1.512 3.34097,3.66581 3.34097,6.03531 0,0.6994 -0.21658,1.38874 -0.43109,2.04769 l 9.05296,6.68195 c 1.88349,-1.05553 4.06897,-1.72438 6.57417,-1.72438 3.0528,0 5.82159,0.86702 7.86745,2.37102 2.04587,1.504 3.44875,3.66591 3.44875,6.0353 0,1.55932 -0.75038,2.95413 -1.72437,4.20316 l 12.71725,9.26851 c 1.61046,-0.67375 3.41978,-1.07773 5.38867,-1.07773 3.05372,0 5.92967,0.85898 7.97522,2.37101 2.04556,1.51203 3.34098,3.66581 3.34098,6.03531 0,1.33808 -0.56249,2.55383 -1.29328,3.66429 l 12.07061,8.72964 c 1.62936,-0.69337 3.49886,-1.18551 5.49644,-1.18551 3.05373,0 5.8219,0.85898 7.86746,2.37102 2.04555,1.51203 3.34097,3.66591 3.34097,6.03531 0,2.36949 -1.29542,4.5233 -3.34097,6.0353 -2.04556,1.512 -4.81373,2.37102 -7.86746,2.37102 -3.05372,0 -5.82186,-0.85902 -7.86745,-2.37102 -2.04559,-1.512 -3.44875,-3.66581 -3.44875,-6.0353 0,-1.82915 0.96593,-3.48283 2.26324,-4.84981 l -11.3162,-8.29854 c -1.96037,1.23744 -4.48534,2.04769 -7.22081,2.04769 -2.494,0 -4.69747,-0.67813 -6.57418,-1.72437 l -9.05296,6.57417 c 0.78087,0.95272 1.4531,1.98296 1.72438,3.12543 0.0904,0.38081 0.1076,0.78066 0.1076,1.1855 0,2.3694 -1.29542,4.52328 -3.34098,6.03531 -1.02276,0.756 -2.22706,1.4284 -3.55652,1.83215 -0.66471,0.20175 -1.3268,0.32694 -2.04769,0.43109 -0.72089,0.10415 -1.49983,0.1076 -2.26324,0.1076 -2.40153,0 -4.63011,-0.5329 -6.4664,-1.50882 l -12.71725,9.37628 c 1.31083,1.10508 2.28555,2.56007 2.69433,4.09538 0.13623,0.51176 0.21555,0.96755 0.21555,1.50883 0,2.36939 -1.29542,4.4155 -3.34098,5.92753 -0.51138,0.37802 -1.02172,0.77449 -1.6166,1.07774 -1.18978,0.60653 -2.54579,1.06476 -3.98761,1.29328 -0.72089,0.11415 -1.49983,0.1076 -2.26324,0.1076 -3.05373,0 -5.8219,-0.96675 -7.86745,-2.47879 -1.02276,-0.75603 -1.89923,-1.58987 -2.47879,-2.58656 -0.28969,-0.49834 -0.49324,-1.06794 -0.64664,-1.6166 -0.15347,-0.54866 -0.21555,-1.13202 -0.21555,-1.72437 0,-2.36939 1.29542,-4.52331 3.34098,-6.03531 2.04555,-1.512 4.81372,-2.47879 7.86745,-2.47879 1.52445,0 2.98303,0.33729 4.31093,0.75442 l 13.68722,-9.91515 c -0.48897,-0.62305 -0.87667,-1.24051 -1.18551,-1.93992 -0.30901,-0.69941 -0.53887,-1.48068 -0.53887,-2.26324 0,-2.3695 1.29511,-4.53134 3.34098,-6.03531 0.51145,-0.37598 1.02162,-0.67719 1.6166,-0.96996 1.78493,-0.87832 3.96126,-1.40105 6.25085,-1.40105 2.29569,0 4.35028,0.60977 6.14308,1.50883 l 9.26851,-6.68195 c -0.4521,-0.60405 -0.89437,-1.25462 -1.18551,-1.93992 -0.29107,-0.6853 -0.43109,-1.40533 -0.43109,-2.15547 0,-1.85332 1.04193,-3.47037 2.37101,-4.8498 l -12.50171,-9.16073 c -1.82535,0.95168 -3.99116,1.6166 -6.35862,1.6166 -2.6873,0 -5.06063,-0.74203 -7.00527,-1.93992 l -10.45401,7.65191 c 0.93402,1.00872 1.62556,2.1785 1.93992,3.44874 0.10484,0.42341 0.21554,0.84567 0.21554,1.29328 0,2.36946 -1.29542,4.52328 -3.34097,6.03531 -0.51138,0.37802 -1.11939,0.78459 -1.72437,1.07773 -1.21,0.58632 -2.52559,0.97721 -3.98762,1.18551 -0.73099,0.10415 -1.49982,0.1076 -2.26324,0.1076 -3.05372,0 -5.82189,-0.85898 -7.86745,-2.37101 -2.04555,-1.51204 -3.34097,-3.66585 -3.34097,-6.03531 0,-2.3695 1.29511,-4.53134 3.34097,-6.03531 2.04587,-1.50396 4.81466,-2.37101 7.86745,-2.37101 2.10463,0 4.12867,0.4214 5.81976,1.18551 l 10.88511,-7.97523 c -0.73538,-1.11546 -1.29328,-2.32311 -1.29328,-3.66429 0,-0.36526 0.0345,-0.72717 0.1076,-1.07774 0.22313,-1.05169 0.75704,-2.029 1.40105,-2.90988 l -8.19077,-6.0353 c -2.0807,1.86639 -5.07473,3.12542 -8.51409,3.12542 -2.86333,0 -5.43564,-1.02534 -7.43636,-2.37101 l -8.083,5.60421 c 0.7142,1.10319 1.18551,2.34581 1.18551,3.6643 0,2.36949 -1.29542,4.41553 -3.34098,5.92753 -2.04555,1.512 -4.81376,2.47879 -7.86745,2.47879 -2.03866,0 -3.94916,-0.46465 -5.60422,-1.18551 l -12.71725,8.62187 c 1.41637,1.40302 2.58656,3.03669 2.58656,4.95757 0,0.38629 -0.0207,0.81611 -0.1076,1.18551 -0.26038,1.10822 -0.89788,2.08576 -1.6166,3.01765 l 9.26851,6.68195 c 1.36953,-0.45024 2.83104,-0.75442 4.4187,-0.75442 3.0537,0 5.82187,0.96683 7.86746,2.47879 2.04559,1.51197 3.34097,3.55804 3.34097,5.92753 0,2.3695 -1.29538,4.52331 -3.34097,6.03531 -2.04559,1.512 -4.81373,2.47879 -7.86746,2.47879 -3.05369,0 -5.82955,-0.96634 -7.86745,-2.47879 -2.0379,-1.51245 -3.34097,-3.66705 -3.34097,-6.03531 0,-1.0858 0.24693,-2.09973 0.75441,-3.01765 0.25383,-0.45896 0.61467,-0.87836 0.96996,-1.29328 0.35529,-0.41492 0.74565,-0.81604 1.18551,-1.18551 l -8.5141,-6.25085 c -1.83083,0.96448 -3.97337,1.72437 -6.35862,1.72437 -2.95613,0 -5.63088,-1.05386 -7.65191,-2.47878 l -11.85507,8.19077 c 1.43175,1.12157 2.55573,2.5966 3.01766,4.20316 0.15381,0.53552 0.21554,1.04725 0.21554,1.6166 0,1.02966 -0.41388,1.90002 -0.86218,2.80211 l 10.45401,7.54413 c 1.40633,-0.47644 2.89084,-0.75441 4.52648,-0.75441 3.05369,0 5.92967,0.85901 7.97523,2.37101 2.04555,1.512 3.34097,3.66592 3.34097,6.03531 0,2.36949 -1.29511,4.53134 -3.34097,6.03531 -2.04587,1.50396 -4.92247,2.37101 -7.97523,2.37101 -1.52638,0 -2.98141,-0.13416 -4.31093,-0.53887 -0.66478,-0.20244 -1.34495,-0.46165 -1.93992,-0.75441 -0.59498,-0.2928 -1.10515,-0.70175 -1.6166,-1.07773 -2.04587,-1.50397 -3.34098,-3.66582 -3.34098,-6.03531 0,-2.11177 1.34074,-3.92095 3.01766,-5.38867 l -9.48406,-6.78972 c -2.04141,1.50652 -4.71109,2.58656 -7.75968,2.58656 -3.48785,0 -6.54434,-1.21427 -8.62187,-3.12543 l -11.20842,7.75968 c 0.54266,0.64482 1.05173,1.41916 1.40105,2.15547 0.17451,0.36816 0.33384,0.68654 0.43109,1.07774 0.0973,0.39119 0.1076,0.7712 0.1076,1.1855 0,2.36957 -1.2951,4.53131 -3.34097,6.03531 -0.51145,0.37598 -1.02162,0.78493 -1.6166,1.07773 -1.18995,0.58556 -2.54593,0.97593 -3.98761,1.18551 -0.72082,0.10484 -1.50007,0.1076 -2.26324,0.1076 -3.0528,0 -5.92936,-0.86702 -7.97523,-2.37101 -2.04586,-1.504 -3.34097,-3.66575 -3.34097,-6.03531 0,-2.36939 1.29542,-4.52331 3.34097,-6.03531 2.04556,-1.512 4.9215,-2.37101 7.97523,-2.37101 2.12794,0 4.00527,0.51238 5.71198,1.29328 l 12.60949,-8.62187 c -0.17899,-0.5718 -0.4311,-1.0906 -0.4311,-1.72437 0,-2.36939 1.29542,-4.52327 3.34098,-6.03531 2.04555,-1.51203 4.81376,-2.47879 7.86745,-2.47879 1.30211,0 2.60235,0.22969 3.77207,0.53887 l 1.72437,-1.29328 0.21555,-0.1076 11.42397,-7.75968 c -0.45327,-0.91357 -0.86219,-1.87557 -0.86219,-2.90988 0,-2.36939 1.29542,-4.52327 3.34098,-6.03531 2.04555,-1.51203 4.9215,-2.37101 7.97522,-2.37101 1.7331,0 3.26976,0.33073 4.74203,0.86219 l 1.50883,-0.96996 11.42397,-7.86746 c -1.10108,-1.29669 -2.04769,-2.74806 -2.04769,-4.4187 0,-2.3695 1.40288,-4.53135 3.44874,-6.03531 2.04587,-1.50396 4.81466,-2.37101 7.86746,-2.37101 2.61925,0 4.96937,0.68699 6.89749,1.83214 l 8.29855,-5.60421 c -0.54221,-0.98531 -0.96996,-2.09511 -0.96996,-3.2332 0,-2.36939 1.29542,-4.52327 3.34097,-6.03531 1.91102,-1.41257 4.61842,-2.1515 7.43636,-2.26324 l 0,-0.1076 z m 0.53887,3.55652 c -2.08904,0 -4.01627,0.6785 -5.28089,1.6166 -0.95272,0.70661 -1.58425,1.50965 -1.83215,2.37101 -0.0828,0.28728 -0.1076,0.5549 -0.1076,0.86219 0,0.92216 0.3535,1.80255 1.07774,2.58656 0.24141,0.26141 0.54462,0.51883 0.86218,0.75441 0.94847,0.70347 2.28945,1.274 3.77207,1.50883 0.4942,0.0783 0.98658,0.1076 1.50882,0.1076 2.08925,0 3.89857,-0.67599 5.17312,-1.6166 1.28032,-0.94499 1.93992,-2.12046 1.93992,-3.34098 0,-1.22013 -0.65967,-2.28841 -1.93992,-3.2332 -1.27455,-0.94075 -3.08387,-1.6166 -5.17312,-1.6166 z m -25.54228,15.41158 c -2.09014,0 -4.01537,0.5766 -5.28089,1.50883 -0.95365,0.70265 -1.5071,1.58587 -1.72437,2.47879 -0.0724,0.29762 -0.1076,0.55487 -0.1076,0.86218 0,0.92189 0.27589,1.80253 0.96996,2.58656 0.23141,0.26142 0.54462,0.51887 0.86218,0.75442 1.26462,0.93809 3.19182,1.50882 5.2809,1.50882 2.08918,0 3.89853,-0.56807 5.17312,-1.50882 1.28024,-0.94482 1.93992,-2.12071 1.93992,-3.34098 0,-1.22016 -0.6584,-2.40153 -1.93992,-3.34097 -1.27549,-0.93489 -3.08287,-1.50883 -5.17312,-1.50883 z m 51.94675,0 c -2.09008,0 -3.9076,0.5766 -5.17312,1.50883 -0.95365,0.70265 -1.58456,1.58587 -1.83215,2.47879 -0.0824,0.29762 -0.1076,0.55487 -0.1076,0.86218 0,0.92189 0.3535,1.80253 1.07773,2.58656 0.24142,0.26142 0.54463,0.51887 0.86219,0.75442 1.26462,0.93809 3.08408,1.50882 5.17312,1.50882 2.08925,0 4.00631,-0.56807 5.2809,-1.50882 1.28024,-0.94482 1.93992,-2.12071 1.93992,-3.34098 0,-1.22016 -0.6584,-2.40153 -1.93992,-3.34097 -1.27549,-0.93489 -3.19061,-1.50883 -5.2809,-1.50883 z m -26.62002,18.86034 c -2.09025,0 -3.8976,0.68161 -5.17311,1.6166 -0.9611,0.70444 -1.58691,1.51024 -1.83215,2.37101 -0.0817,0.28694 -0.1076,0.55715 -0.1076,0.86219 0,0.91536 0.35208,1.80011 1.07773,2.58656 0.24176,0.2621 0.54215,0.51821 0.86219,0.75441 0.95596,0.70558 2.2143,1.27466 3.66429,1.50883 0.48334,0.0779 0.98651,0.1076 1.50883,0.1076 2.08904,0 4.0163,-0.67847 5.28089,-1.6166 1.27028,-0.94213 1.93992,-2.11163 1.93992,-3.34097 0,-1.22903 -0.6684,-2.29653 -1.93992,-3.23321 -1.26552,-0.93236 -3.19078,-1.6166 -5.28089,-1.6166 z m -52.27006,1.93992 c -2.09011,0 -4.01545,0.68423 -5.28089,1.6166 -0.95365,0.70247 -1.58457,1.5858 -1.83215,2.47878 -0.0824,0.29763 -0.1076,0.55487 -0.1076,0.86219 0,0.92199 0.35349,1.83287 1.07773,2.58656 0.24141,0.25141 0.54463,0.41109 0.86219,0.64664 0.94847,0.70348 2.28945,1.274 3.77206,1.50883 0.49421,0.0783 0.98655,0.1076 1.50883,0.1076 2.08922,0 3.89853,-0.67589 5.17312,-1.6166 1.28031,-0.94499 1.93992,-2.01286 1.93992,-3.2332 0,-1.22017 -0.6584,-2.40154 -1.93992,-3.34097 -1.27552,-0.93489 -3.08287,-1.61661 -5.17312,-1.61661 z m 106.58783,0 c -2.09025,0 -3.8976,0.68171 -5.17312,1.6166 -0.96113,0.70458 -1.58691,1.58773 -1.83215,2.47878 -0.0817,0.29694 -0.1076,0.55715 -0.1076,0.86219 0,0.91523 0.35208,1.83035 1.07773,2.58656 0.24176,0.2521 0.54211,0.4104 0.86219,0.64664 0.95596,0.70555 2.2143,1.27462 3.66429,1.50883 0.48334,0.0779 0.98652,0.1076 1.50883,0.1076 2.08904,0 4.01624,-0.67865 5.28089,-1.6166 1.27028,-0.94216 1.93992,-2.00386 1.93992,-3.2332 0,-1.2292 -0.66843,-2.40433 -1.93992,-3.34097 -1.26548,-0.93241 -3.19078,-1.61661 -5.28089,-1.61661 z m -25.00342,17.67482 c -2.09014,0 -4.01541,0.68424 -5.28089,1.6166 -0.95365,0.70262 -1.5071,1.50838 -1.72437,2.37102 -0.0724,0.28762 -0.10761,0.5549 -0.10761,0.86218 0,0.92199 0.2759,1.80253 0.96996,2.58657 0.23142,0.26141 0.54463,0.51882 0.86219,0.75441 0.94848,0.70347 2.28945,1.274 3.77207,1.50883 0.4942,0.0783 0.98655,0.1076 1.50883,0.1076 2.08925,0 4.0063,-0.67603 5.28089,-1.6166 1.28031,-0.945 1.83215,-2.12064 1.83215,-3.34098 0,-1.22016 -0.55063,-2.29376 -1.83215,-3.2332 -1.27549,-0.93488 -3.19061,-1.6166 -5.28089,-1.6166 z m -58.41314,0.86219 c -2.08905,0 -3.90854,0.67865 -5.17312,1.6166 -0.95272,0.70679 -1.58429,1.58711 -1.83215,2.47879 -0.0828,0.29728 -0.1076,0.55483 -0.1076,0.86219 0,1.22916 0.66964,2.39881 1.93992,3.34097 0.94847,0.70358 2.21199,1.19658 3.66429,1.40105 0.4841,0.0683 0.98658,0.1076 1.50883,0.1076 2.08925,0 4.0063,-0.56807 5.28089,-1.50882 1.28025,-0.94482 1.93992,-2.12067 1.93992,-3.34098 0,-1.2203 -0.65964,-2.39601 -1.93992,-3.34097 -1.27459,-0.94075 -3.19164,-1.6166 -5.28089,-1.6166 z m 111.00653,1.07773 c -2.09011,0 -4.01541,0.68441 -5.28089,1.6166 -0.95365,0.70265 -1.5071,1.50842 -1.72438,2.37102 -0.0724,0.28762 -0.1076,0.55494 -0.1076,0.86219 0,0.92216 0.2759,1.80252 0.96996,2.58656 0.23141,0.26141 0.5446,0.51876 0.86219,0.75441 0.94844,0.70347 2.28942,1.274 3.77207,1.50883 0.4942,0.0783 0.98655,0.1076 1.50883,0.1076 2.08904,0 3.90849,-0.67861 5.17312,-1.6166 1.27041,-0.94258 1.93992,-2.11143 1.93992,-3.34098 0,-1.22896 -0.66841,-2.29635 -1.93992,-3.2332 -1.26552,-0.93223 -3.08301,-1.6166 -5.17312,-1.6166 z m -161.76778,0.32315 c -2.08904,0 -3.90849,0.67847 -5.17312,1.6166 -0.95271,0.70662 -1.58425,1.58712 -1.83214,2.47879 -0.0828,0.29728 -0.1076,0.55487 -0.1076,0.86219 0,0.92188 0.35332,1.83359 1.07773,2.58656 0.24141,0.25106 0.54432,0.41247 0.86219,0.64664 0.94909,0.6993 2.21202,1.27269 3.66429,1.50882 0.4841,0.0786 0.98631,0.1076 1.50883,0.1076 2.09014,0 4.01541,-0.68419 5.28089,-1.6166 1.27152,-0.93668 1.93992,-2.00403 1.93992,-3.2332 0,-1.2292 -0.66964,-2.39881 -1.93992,-3.34097 -1.26462,-0.93813 -3.19181,-1.6166 -5.28089,-1.6166 z m -29.0988,17.56706 c -2.08908,0 -4.01624,0.67861 -5.28089,1.6166 -0.95268,0.70658 -1.58425,1.58708 -1.83215,2.47878 -0.0828,0.29729 -0.1076,0.55487 -0.1076,0.86219 0,0.92161 0.35333,1.83349 1.07774,2.58656 0.24141,0.25107 0.54431,0.41244 0.86218,0.64664 0.94917,0.69916 2.28952,1.27266 3.77207,1.50883 0.49417,0.0786 0.98631,0.1076 1.50883,0.1076 2.09004,0 3.90756,-0.68437 5.17312,-1.6166 1.27151,-0.93685 1.93992,-2.00438 1.93992,-3.2332 0,-1.22934 -0.66968,-2.39885 -1.93992,-3.34098 -1.26466,-0.93799 -3.08408,-1.6166 -5.17312,-1.6166 z m 54.53331,0.53886 c -2.08908,0 -3.9085,0.67848 -5.17312,1.6166 -0.95271,0.70662 -1.58425,1.50966 -1.83215,2.37102 -0.0828,0.28728 -0.1076,0.55487 -0.1076,0.86218 0,0.61467 0.21279,1.26766 0.53887,1.83215 0.16313,0.28211 0.29728,0.49334 0.53887,0.75441 0.24141,0.26107 0.54431,0.52025 0.86218,0.75442 0.94913,0.69926 2.21203,1.27269 3.6643,1.50882 0.4841,0.0786 0.9863,0.1076 1.50882,0.1076 2.09022,0 4.00541,-0.68161 5.2809,-1.6166 1.28152,-0.9393 1.93992,-2.12066 1.93992,-3.34097 0,-1.22013 -0.65971,-2.28845 -1.93992,-3.2332 -1.27459,-0.94078 -3.19168,-1.6166 -5.2809,-1.6166 z m 56.25768,1.50883 c -2.09025,0 -3.8976,0.57394 -5.17312,1.50883 -0.9611,0.7044 -1.5869,1.5877 -1.83214,2.47878 -0.0817,0.29694 -0.1076,0.55718 -0.1076,0.86219 0,0.91537 0.35208,1.80007 1.07773,2.58656 0.24175,0.2621 0.54211,0.51817 0.86218,0.75441 1.27459,0.94072 3.08391,1.50883 5.17312,1.50883 2.08908,0 4.01631,-0.57087 5.2809,-1.50883 1.27027,-0.94216 1.83214,-2.11163 1.83214,-3.34097 0,-1.22882 -0.56059,-2.40416 -1.83214,-3.34097 -1.26549,-0.93227 -3.19082,-1.50883 -5.2809,-1.50883 z"
 
       id="path4367-32" /><path
 
       inkscape:connector-curvature="0"
 
       style="fill:#577632;fill-opacity:1;stroke:none"
 
       d="M 242.96875,155.625 272.625,178.84375 245.8125,179 230.9375,167.59375 216.28125,167.5 l 26.375,20.6875 0.3125,-0.21875 0,0.0625 41.09375,-0.21875 0.8125,0.625 -15.0625,82.59375 57.96875,0.4375 L 311.75,189.25 l 1.78125,-1.40625 41.125,0.21875 0,-0.0625 0.28125,0.21875 26.375,-20.6875 -14.65625,0.0937 -14.875,11.40625 -26.8125,-0.15625 29.6875,-23.21875 -15.90625,0.1875 -29.09375,22.6875 -2.09375,-10.8125 -18.875,-0.1875 -1.84375,10.09375 -27.96875,-21.8125 -15.90625,-0.1875 z"
 
       id="path4369-2"
 
       transform="translate(0,308.2677)" /></g><g
 
     id="g3443-9"
 
     transform="translate(-663.6704,546.47495)"><path
 
       inkscape:connector-curvature="0"
 
       id="flowRoot3023-5-6-2-5-9-7-4-5-9"
 
       transform="translate(0,308.2677)"
 
       d="m 790.28125,287.1875 c -2.67365,2e-5 -4.62784,0.93059 -5.90625,2.8125 -1.27842,1.88195 -1.9375,4.71548 -1.9375,8.53125 0,3.64706 0.68145,6.43057 2.03125,8.3125 1.3498,1.88193 3.32345,2.8125 5.90625,2.8125 1.6483,0 3.13721,-0.40637 4.5,-1.25 l 0,-4.5625 c -1.41471,0.90852 -2.76463,1.34375 -4.0625,1.34375 -1.09023,0 -1.86354,-0.54655 -2.34375,-1.65625 -0.48022,-1.10968 -0.71876,-2.7859 -0.71875,-5.03125 -10e-6,-2.29724 0.23204,-4.00761 0.71875,-5.15625 0.4867,-1.14861 1.27179,-1.71873 2.375,-1.71875 0.83064,2e-5 1.79774,0.30155 2.875,0.9375 l 1.46875,-4.03125 c -0.70087,-0.44126 -1.49245,-0.76636 -2.375,-1 -0.88257,-0.2336 -1.72657,-0.34373 -2.53125,-0.34375 z m 15.40625,0 c -2.64769,2e-5 -4.72619,0.9895 -6.21875,2.96875 -1.49257,1.97929 -2.21875,4.7015 -2.21875,8.21875 0,2.28429 0.34337,4.29329 1.03125,6 0.68788,1.70672 1.66557,3.02898 2.9375,3.9375 1.27192,0.90852 2.74495,1.34375 4.40625,1.34375 2.62171,0 4.68194,-0.98948 6.1875,-2.96875 1.50553,-1.97927 2.24998,-4.75629 2.25,-8.3125 -2e-5,-3.43938 -0.76923,-6.16927 -2.28125,-8.1875 -1.51205,-2.01819 -3.53693,-2.99998 -6.09375,-3 z m 22.125,0 c -1.16811,2e-5 -2.16168,0.27919 -3.03125,0.84375 -0.82163,0.53346 -1.47507,1.26593 -1.9375,2.1875 l 0,-2.65625 -5.125,0 0,0.0312 -0.0312,0 0,21.6875 5.1875,0 0,-10.4375 c -10e-6,-2.63469 0.26209,-4.48404 0.78125,-5.59375 0.51915,-1.10967 1.35256,-1.68748 2.46875,-1.6875 0.84361,2e-5 1.4361,0.41408 1.8125,1.21875 0.37637,0.8047 0.56249,1.99207 0.5625,3.5625 l 0,12.9375 5.21875,0 0,-14.15625 c -2e-5,-2.59575 -0.48886,-4.58768 -1.46875,-5.9375 -0.97992,-1.34978 -2.46473,-1.99998 -4.4375,-2 z m 15.4375,0 c -1.82769,0.11784 -3.299,0.65118 -4.40625,1.59375 -1.26544,1.07726 -1.90625,2.53202 -1.90625,4.375 0,1.44067 0.34986,2.69224 1.03125,3.75 0.68139,1.05779 1.80456,2.06553 3.375,3 1.18107,0.71385 1.99621,1.31931 2.4375,1.8125 0.44127,0.4932 0.65624,1.05684 0.65625,1.71875 -10e-6,0.64895 -0.23445,1.1979 -0.65625,1.59375 -0.42182,0.39586 -1.00782,0.59375 -1.8125,0.59375 -0.72682,0 -1.57731,-0.17552 -2.53125,-0.5 -0.95395,-0.32447 -1.78617,-0.72555 -2.5,-1.21875 l 0,4.5 c 1.40171,0.84363 3.17099,1.25 5.3125,1.25 2.41406,0 4.22926,-0.59369 5.46875,-1.78125 1.23947,-1.18756 1.87499,-2.82194 1.875,-4.9375 -10e-6,-0.97341 -0.17025,-1.83568 -0.46875,-2.5625 -0.29853,-0.72681 -0.7049,-1.36642 -1.25,-1.9375 -0.54512,-0.57106 -1.49396,-1.27607 -2.84375,-2.09375 -1.11619,-0.67489 -1.87242,-1.23323 -2.28125,-1.6875 -0.40884,-0.45424 -0.62501,-0.97844 -0.625,-1.5625 -10e-6,-0.50616 0.16903,-0.9308 0.5,-1.28125 0.33095,-0.35041 0.83807,-0.53123 1.5,-0.53125 1.05128,2e-5 2.2675,0.37224 3.65625,1.125 l 1.6875,-3.71875 c -1.70024,-1.01233 -3.51664,-1.49998 -5.4375,-1.5 -0.2758,0 -0.52015,-0.0168 -0.78125,0 z m 16.9375,0 c -2.53088,2e-5 -4.52281,0.9883 -5.9375,3 -1.4147,2.01174 -2.125,4.8241 -2.125,8.40625 0,3.53025 0.81105,6.26015 2.375,8.1875 1.56395,1.92736 3.69366,2.875 6.40625,2.875 2.3232,0 4.30744,-0.50063 5.96875,-1.5 l 0,-4.25 c -1.76514,1.05129 -3.50026,1.5625 -5.1875,1.5625 -1.32385,0 -2.34099,-0.46528 -3.09375,-1.40625 -0.75278,-0.94096 -1.14857,-2.37864 -1.1875,-4.3125 l 10.40625,0 0,-2.75 c -2e-5,-3.10193 -0.66849,-5.53028 -2.03125,-7.25 -1.36279,-1.71968 -3.23161,-2.56248 -5.59375,-2.5625 z m 20.34375,0 c -0.89555,2e-5 -1.70011,0.29097 -2.375,0.875 -0.67491,0.58407 -1.27269,1.54349 -1.84375,2.90625 l -0.1875,0 -0.59375,-3.375 -4.25,0 0,21.6875 5.1875,0 0,-11.15625 c -10e-6,-1.8949 0.32509,-3.35085 1,-4.34375 0.67489,-0.99287 1.64729,-1.49998 2.90625,-1.5 0.58404,2e-5 1.04283,0.089 1.40625,0.21875 l 0.625,-5.03125 c -0.61002,-0.19466 -1.23905,-0.28123 -1.875,-0.28125 z m -20.40625,3.96875 c 0.7917,2e-5 1.42073,0.43235 1.875,1.25 0.45425,0.81768 0.69278,2.01035 0.71875,3.59375 l -5.25,0 c 0.0779,-1.6483 0.36353,-2.87101 0.84375,-3.65625 0.48021,-0.7852 1.0727,-1.18748 1.8125,-1.1875 z M 805.25,291.625 c 0.12695,-0.0175 0.26997,0 0.40625,0 1.07723,2e-5 1.84405,0.56485 2.34375,1.6875 0.49967,1.12269 0.74999,2.79121 0.75,5.0625 -10e-6,4.56856 -1.01715,6.875 -3.09375,6.875 -1.09023,0 -1.88181,-0.59488 -2.375,-1.75 -0.4932,-1.15511 -0.75001,-2.86667 -0.75,-5.125 -10e-6,-2.27129 0.2568,-3.93981 0.75,-5.0625 0.43154,-0.98232 1.0801,-1.5647 1.96875,-1.6875 z"
 
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'" /><path
 
       inkscape:connector-curvature="0"
 
       id="flowRoot3023-5-6-2-5-9-7-1-4-1-8"
 
       transform="translate(0,308.2677)"
 
       d="m 912.25,287.1875 c -2.53088,2e-5 -4.87677,0.66849 -7.03125,2.03125 L 907,292.8125 c 1.68724,-1.01233 3.17086,-1.53123 4.46875,-1.53125 1.75213,2e-5 2.65624,1.00657 2.65625,3.03125 l 0,1.5625 -2.90625,0.125 c -2.49194,0.11682 -4.3413,0.73407 -5.59375,1.84375 -1.25246,1.1097 -1.875,2.80948 -1.875,5.09375 0,2.12854 0.42874,3.7747 1.34375,4.96875 0.91501,1.19405 2.18485,1.78125 3.78125,1.78125 1.24596,0 2.27607,-0.23853 3.09375,-0.71875 0.81766,-0.48022 1.60924,-1.35307 2.375,-2.625 l 0.125,0 1.03125,2.96875 3.78125,0 0,-14.5625 c -2e-5,-2.41405 -0.58072,-4.27638 -1.78125,-5.59375 -1.20056,-1.31733 -2.95276,-1.96873 -5.25,-1.96875 z m 21.34375,0.0312 c -1.16811,2e-5 -2.19293,0.27919 -3.0625,0.84375 -0.85122,0.55267 -1.50307,1.31201 -1.96875,2.28125 l 0,-2.78125 -5.125,0 0,11.65625 0.0312,0 0,10.09375 5.1875,0 0,-10.40625 c -10e-6,-2.63469 0.26209,-4.51529 0.78125,-5.625 0.51915,-1.10967 1.32131,-1.65623 2.4375,-1.65625 0.84361,2e-5 1.46735,0.38283 1.84375,1.1875 0.37637,0.8047 0.56249,1.99207 0.5625,3.5625 l 0,12.9375 5.21875,0 0,-14.15625 c -2e-5,-2.59575 -0.48886,-4.55643 -1.46875,-5.90625 -0.97992,-1.34978 -2.46473,-2.03123 -4.4375,-2.03125 z m 17.21875,0 c -2.67365,2e-5 -4.65909,0.93059 -5.9375,2.8125 -1.27842,1.88195 -1.90625,4.74673 -1.90625,8.5625 0,3.64706 0.68145,6.39932 2.03125,8.28125 1.3498,1.88193 3.2922,2.8125 5.875,2.8125 1.6483,0 3.16846,-0.40637 4.53125,-1.25 l 0,-4.5625 c -1.41471,0.90852 -2.76463,1.375 -4.0625,1.375 -1.09023,0 -1.89479,-0.5778 -2.375,-1.6875 -0.48022,-1.10968 -0.71876,-2.7859 -0.71875,-5.03125 -10e-6,-2.29724 0.26329,-4.00761 0.75,-5.15625 0.4867,-1.14861 1.27179,-1.71873 2.375,-1.71875 0.83064,2e-5 1.79774,0.30155 2.875,0.9375 l 1.46875,-4.03125 c -0.70087,-0.44126 -1.49245,-0.76636 -2.375,-1 -0.88257,-0.2336 -1.72657,-0.34373 -2.53125,-0.34375 z m -65.90625,0.40625 5.65625,21.6875 6.4375,0 5.6875,-21.6875 -5.375,0 c -1.89492,8.63095 -2.89618,13.23375 -3,13.84375 -0.10384,0.61001 -0.21517,1.30444 -0.3125,2.03125 -0.0974,0.72682 -0.14328,1.26689 -0.15625,1.65625 l -0.0625,0 c -0.0389,-0.49319 -0.15027,-1.28357 -0.3125,-2.40625 -0.16224,-1.12266 -0.3207,-1.97844 -0.4375,-2.5625 l -2.75,-12.5625 -5.375,0 z m 29.21875,11.53125 0,1.8125 c -10e-6,1.4147 -0.31043,2.55614 -0.875,3.40625 -0.56459,0.85012 -1.30255,1.28125 -2.25,1.28125 -1.27193,0 -1.90626,-0.89641 -1.90625,-2.6875 -10e-6,-1.20703 0.26089,-2.10874 0.8125,-2.71875 0.55159,-0.61 1.41267,-0.96635 2.59375,-1.03125 l 1.625,-0.0625 z"
 
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'" /><g
 
       transform="matrix(0.8306463,0,0,0.8306463,1795.7434,-128.90577)"
 
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
 
       id="flowRoot3023-5-6-2-5-9-7-1-5-1-3-0"><path
 
         inkscape:connector-curvature="0"
 
         d="m -1008.5625,872.02908 6.4688,0 3.60933,14.74219 c 0.35936,1.31251 0.64842,3.14845 0.86718,5.50781 l 0.14063,0 c 0.0156,-0.37499 0.0859,-1.04296 0.21094,-2.0039 0.12498,-0.96093 0.22655,-1.71484 0.30468,-2.26172 0.0781,-0.54687 1.15624,-5.87499 3.23438,-15.98438 l 6.5625,0 -7.47656,27.98438 c -0.90627,3.43749 -2.10939,5.90624 -3.60938,7.40625 -1.50001,1.49999 -3.5,2.24999 -6,2.25 -1.2344,-10e-6 -2.3359,-0.13283 -3.3047,-0.39844 l 0,-5.22656 c 0.6406,0.18749 1.3594,0.28124 2.1563,0.28125 2.0937,-10e-6 3.4687,-1.37501 4.125,-4.125 l 0.4453,-1.64063 z"
 
         id="path3407-6" /></g></g><g
 
     transform="matrix(0.57050433,0,0,0.57050433,753.8774,701.67324)"
 
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed Light;-inkscape-font-specification:'Open Sans Condensed Light, Light'"
 
     id="flowRoot3013-0-3-7-9-7-8-1-7-38"><path
 
       inkscape:connector-curvature="0"
 
       d="m -1032.3359,754.60721 c -10e-5,2.14063 -0.5626,3.81641 -1.6875,5.02734 -1.125,1.21094 -2.75,1.81641 -4.875,1.81641 -1.1563,0 -2.1719,-0.14844 -3.0469,-0.44531 -0.875,-0.29688 -1.5547,-0.625 -2.0391,-0.98438 l 0,-2.60156 c 0.5781,0.57813 1.3438,1.04297 2.2969,1.39453 0.9531,0.35156 1.9297,0.52734 2.9297,0.52734 1.3125,0 2.3437,-0.42968 3.0937,-1.28906 0.75,-0.85937 1.125,-2.00781 1.125,-3.44531 0,-1.12499 -0.2695,-2.07421 -0.8086,-2.84766 -0.539,-0.77343 -1.5664,-1.65233 -3.082,-2.63672 -1.7344,-1.09373 -2.918,-1.96873 -3.5508,-2.625 -0.6328,-0.65623 -1.125,-1.39061 -1.4765,-2.20312 -0.3516,-0.81248 -0.5274,-1.78123 -0.5274,-2.90625 0,-1.82811 0.6172,-3.33982 1.8516,-4.53516 1.2344,-1.19529 2.8047,-1.79294 4.7109,-1.79297 2.0469,3e-5 3.7578,0.4844 5.1328,1.45313 l -1.1484,1.94531 c -1.2813,-0.85935 -2.6406,-1.28904 -4.0781,-1.28906 -1.3125,2e-5 -2.3594,0.38674 -3.1407,1.16015 -0.7812,0.77346 -1.1718,1.79299 -1.1718,3.0586 0,1.12502 0.2656,2.06642 0.7968,2.82422 0.5313,0.75783 1.6563,1.67579 3.375,2.7539 1.6875,1.10939 2.8438,1.99611 3.4688,2.66016 0.625,0.66407 1.0898,1.39845 1.3945,2.20312 0.3047,0.8047 0.457,1.73048 0.4571,2.77735 z"
 
       id="path3376-8" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -1012.9062,748.20877 c -10e-5,4.28126 -0.6758,7.5586 -2.0274,9.83203 -1.3516,2.27344 -3.2852,3.41016 -5.8008,3.41016 -2.4844,0 -4.3867,-1.13672 -5.707,-3.41016 -1.3203,-2.27343 -1.9805,-5.55077 -1.9805,-9.83203 0,-8.7656 2.5938,-13.14841 7.7813,-13.14844 2.4375,3e-5 4.3359,1.14847 5.6953,3.44532 1.3593,2.29689 2.039,5.53126 2.0391,9.70312 z m -13.1954,0 c 0,3.67188 0.4375,6.44532 1.3125,8.32031 0.875,1.87501 2.2422,2.8125 4.1016,2.8125 3.6406,0 5.4609,-3.71093 5.4609,-11.13281 0,-7.35935 -1.8203,-11.03904 -5.4609,-11.03906 -1.9063,2e-5 -3.2852,0.9219 -4.1367,2.76562 -0.8516,1.84377 -1.2774,4.60158 -1.2774,8.27344 z"
 
       id="path3378-16" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -1000.7656,737.52127 -3.9844,0 0,23.46094 -2.2031,0 0,-23.46094 -3.2344,0 0,-1.26562 3.2344,-0.96094 0,-1.92188 c 0,-3.23434 0.3828,-5.56246 1.1484,-6.98437 0.7656,-1.42184 2.0938,-2.13278 3.9844,-2.13281 1.0937,3e-5 2.08591,0.19534 2.97655,0.58593 l -0.77344,2.0625 c -0.82811,-0.39059 -1.57811,-0.5859 -2.25001,-0.58593 -0.7656,3e-5 -1.3437,0.22659 -1.7344,0.67968 -0.3906,0.45316 -0.6797,1.18754 -0.8671,2.20313 -0.1876,1.01565 -0.2813,2.4219 -0.2813,4.21875 l 0,2.13281 3.9844,0 z"
 
       id="path3380-0" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -992,759.38846 c 0.68749,0 1.29687,-0.0937 1.82813,-0.28125 l 0,1.875 c -0.68751,0.3125 -1.57033,0.46875 -2.64844,0.46875 -2.62501,0 -3.93751,-1.96094 -3.9375,-5.88281 l 0,-18.04688 -2.29688,0 0,-1.3125 2.25,-0.65625 0.72657,-6.04687 1.54687,0 0,6.04687 4.03125,0 0,1.96875 -4.03125,0 0,17.41406 c -10e-6,1.71876 0.18749,2.89063 0.5625,3.51563 0.37499,0.625 1.03124,0.9375 1.96875,0.9375 z"
 
       id="path3382-2" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -972.03125,760.98221 -3.51562,-17.22656 c -0.0313,-0.12499 -0.0586,-0.2578 -0.082,-0.39844 -0.0235,-0.14061 -0.26954,-1.64061 -0.73828,-4.5 l -0.0469,0 -0.32813,1.99219 -0.53906,2.90625 -3.63281,17.22656 -2.64844,0 -5.53125,-25.42969 2.22656,0 3.16407,14.8125 1.47656,7.73438 0.14062,0 c 0.28124,-2.23437 0.73437,-4.82812 1.35938,-7.78125 l 3.16406,-14.76563 2.34375,0 3.1875,14.8125 c 0.24998,1.10939 0.69529,3.68751 1.33594,7.73438 l 0.14062,0 c 0.0469,-0.51563 0.27733,-1.8125 0.69141,-3.89063 0.41404,-2.07812 1.73826,-8.29686 3.97266,-18.65625 l 2.20312,0 -5.71875,25.42969 z"
 
       id="path3384-7" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -949.97656,760.98221 -0.28125,-3.5625 -0.0937,0 c -1.21876,2.6875 -3.06251,4.03125 -5.53125,4.03125 -1.65626,0 -2.98829,-0.66016 -3.9961,-1.98047 -1.00781,-1.32031 -1.51172,-3.08984 -1.51171,-5.30859 -10e-6,-2.42187 0.72655,-4.33984 2.17968,-5.75391 1.45312,-1.41405 3.49218,-2.18358 6.11719,-2.30859 l 2.74219,-0.14063 0,-2.10937 c -2e-5,-2.37498 -0.29689,-4.10545 -0.89063,-5.19141 -0.59376,-1.08591 -1.57813,-1.62888 -2.95312,-1.62891 -1.45314,3e-5 -2.93751,0.47659 -4.45313,1.42969 l -0.96093,-1.75781 c 1.76561,-1.09373 3.61718,-1.6406 5.55468,-1.64063 2.09374,3e-5 3.60155,0.66018 4.52344,1.98047 0.92186,1.32034 1.3828,3.52737 1.38281,6.6211 l 0,17.32031 z m -5.41406,-1.42969 c 1.59374,0 2.83202,-0.78515 3.71484,-2.35547 0.8828,-1.57031 1.3242,-3.79296 1.32422,-6.66797 l 0,-2.64843 -2.64844,0.14062 c -2.04688,0.10939 -3.56641,0.67579 -4.55859,1.69922 -0.9922,1.02345 -1.48829,2.51954 -1.48828,4.48828 -10e-6,1.84376 0.32812,3.19532 0.98437,4.05469 0.65624,0.85937 1.54687,1.28906 2.67188,1.28906 z"
 
       id="path3386-9" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -934.39062,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z"
 
       id="path3388-2" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -921.10156,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
 
       id="path3390-83" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -893.98437,737.52127 -3.98438,0 0,23.46094 -2.20312,0 0,-23.46094 -3.23438,0 0,-1.26562 3.23438,-0.96094 0,-1.92188 c -10e-6,-3.23434 0.3828,-5.56246 1.14843,-6.98437 0.76562,-1.42184 2.09375,-2.13278 3.98438,-2.13281 1.09374,3e-5 2.08592,0.19534 2.97656,0.58593 l -0.77344,2.0625 c -0.82813,-0.39059 -1.57813,-0.5859 -2.25,-0.58593 -0.76563,3e-5 -1.34375,0.22659 -1.73437,0.67968 -0.39063,0.45316 -0.6797,1.18754 -0.86719,2.20313 -0.18751,1.01565 -0.28126,2.4219 -0.28125,4.21875 l 0,2.13281 3.98438,0 z"
 
       id="path3392-4" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -882.82812,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z"
 
       id="path3394-0" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -869.53906,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
 
       id="path3396-5" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -850.69531,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
 
       id="path3398-4" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -832.85937,761.45096 c -4.93751,0 -7.40626,-4.38281 -7.40625,-13.14844 -10e-6,-4.31248 0.61718,-7.59764 1.85156,-9.85547 1.23437,-2.25779 3.05468,-3.38669 5.46094,-3.38672 1.14061,3e-5 2.22264,0.32815 3.24609,0.98438 1.02342,0.65627 1.83983,1.56252 2.44922,2.71875 l 0.1875,0 -0.0937,-2.83594 0,-11.41406 2.22656,0 0,36.46875 -1.82812,0 -0.1875,-3.5625 -0.21094,0 c -0.60939,1.29688 -1.39845,2.29297 -2.36719,2.98828 -0.96876,0.69531 -2.07814,1.04297 -3.32812,1.04297 z m 0.14062,-1.94531 c 1.78124,0 3.15233,-0.82422 4.11328,-2.47266 0.96092,-1.64843 1.44139,-4.07421 1.44141,-7.27734 l 0,-1.45313 c -2e-5,-3.84373 -0.46486,-6.66014 -1.39453,-8.44922 -0.9297,-1.78904 -2.34767,-2.68357 -4.25391,-2.68359 -1.82813,2e-5 -3.14063,0.95705 -3.9375,2.87109 -0.79688,1.91408 -1.19532,4.68361 -1.19531,8.3086 -1e-5,3.65625 0.41406,6.42969 1.24219,8.32031 0.82811,1.89063 2.15624,2.83594 3.98437,2.83594 z"
 
       id="path3400-2" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -803.84375,748.20877 c -2e-5,4.28126 -0.6758,7.5586 -2.02734,9.83203 -1.35158,2.27344 -3.28517,3.41016 -5.80078,3.41016 -2.48439,0 -4.38673,-1.13672 -5.70704,-3.41016 -1.32031,-2.27343 -1.98047,-5.55077 -1.98046,-9.83203 -10e-6,-8.7656 2.59374,-13.14841 7.78125,-13.14844 2.43748,3e-5 4.33592,1.14847 5.69531,3.44532 1.35936,2.29689 2.03904,5.53126 2.03906,9.70312 z m -13.19531,0 c -1e-5,3.67188 0.43749,6.44532 1.3125,8.32031 0.87499,1.87501 2.24218,2.8125 4.10156,2.8125 3.64061,0 5.46092,-3.71093 5.46094,-11.13281 -2e-5,-7.35935 -1.82033,-11.03904 -5.46094,-11.03906 -1.90626,2e-5 -3.28516,0.9219 -4.13672,2.76562 -0.85157,1.84377 -1.27735,4.60158 -1.27734,8.27344 z"
 
       id="path3402-7" /><path
 
       inkscape:connector-curvature="0"
 
       d="m -776.58594,760.98221 0,-17.32031 c -2e-5,-4.26561 -1.25002,-6.39842 -3.75,-6.39844 -1.71877,2e-5 -2.95705,0.74611 -3.71484,2.23828 -0.75783,1.49221 -1.13674,3.69142 -1.13672,6.59766 l 0,14.88281 -2.20312,0 0,-17.32031 c -2e-5,-2.15623 -0.30471,-3.7617 -0.91407,-4.81641 -0.60939,-1.05467 -1.5547,-1.58201 -2.83593,-1.58203 -1.68751,2e-5 -2.91408,0.76565 -3.67969,2.29687 -0.76563,1.53127 -1.14845,4.01565 -1.14844,7.45313 l 0,13.96875 -2.22656,0 0,-25.42969 1.875,0 0.1875,3.53906 0.21094,0 c 1.01561,-2.68747 2.74217,-4.03122 5.17968,-4.03125 1.40624,3e-5 2.51561,0.37503 3.32813,1.125 0.81248,0.75003 1.39842,1.84378 1.75781,3.28125 0.60936,-1.56247 1.35936,-2.68747 2.25,-3.375 0.89061,-0.68747 2.04685,-1.03122 3.46875,-1.03125 1.92185,3e-5 3.3281,0.73831 4.21875,2.21485 0.8906,1.47658 1.33591,3.83986 1.33594,7.08984 l 0,16.61719 z"
 
       id="path3404-2" /></g></g><rect
 
   y="256.32147"
 
   x="-574.19415"
 
   height="43.704079"
 
   width="63.72105"
 
   id="rect6748"
 
   style="fill:#ffffff;fill-opacity:1;stroke:none"
 
   transform="scale(-1,1)" /><path
 
   style="fill:#cccccc;fill-opacity:1;stroke:none"
 
   d="M 3.46875 3.625 L 3.46875 176.375 L 311.53125 176.375 L 311.53125 3.625 L 3.46875 3.625 z M 8.03125 7.5625 L 306.96875 7.5625 L 306.96875 172.4375 L 8.03125 172.4375 L 8.03125 7.5625 z "
 
   transform="matrix(1.8842212,0,0,1.1183954,-17.575647,112.68656)"
 
   id="rect7536" /><path
 
   style="fill:#afe478;fill-opacity:1;stroke:none"
 
   d="M 0 0 L 0 180 L 315 180 L 315 0 L 0 0 z M 3.46875 3.625 L 311.53125 3.625 L 311.53125 176.375 L 3.46875 176.375 L 3.46875 3.625 z "
 
   transform="matrix(1.8842212,0,0,1.1183954,-17.575647,112.68656)"
 
   id="rect7534" /></g></g></g></svg>
...
 
\ No newline at end of file
 
   id="rect7534" /></g></g></g></svg>
conservancy/static/js/supporter-page.js
Show inline comments
 
/* Copyright (C) 2012-2013 Denver Gingerich, 
 
/* Copyright (C) 2012-2013 Denver Gingerich,
 
** Copyright (C) 2013-2014, 2020 Bradley M. Kuhn,
 
** Copyright (C) 2016, 2020 Brett Smith.
 
** License: GPLv3-or-later
 
**  Find a copy of GPL at https://sfconservancy.org/GPLv3
 
*/
 

	
 
"use strict";
 

	
 
var flipClass = function(elem, byeClass, hiClass) {
 
    var classList = elem.classList;
 
    classList.remove(byeClass);
 
    classList.add(hiClass);
 
}
 

	
 
var buildAmountData = function(amountInput) {
 
    var amountData = {
 
        minAmount: parseFloat(amountInput.min),
 
        newAmount: parseFloat(amountInput.value),
 
    }
 
    if (amountInput.dataset.oldAmount !== undefined) {
 
        amountData.oldAmount = parseFloat(amountInput.dataset.oldAmount);
 
    }
 
    return amountData;
 
}
 

	
 
/* We've sometimes published links that say #renew instead of #renewal.
 
Rewrite that to work as intended. */
 
if (window.location.hash === "#renew") {
 
    window.location.hash = "#renewal";
 
}
 

	
 
var formCorrectionNeeded = qs('#form-correction-needed');
 

	
 
function new_amount(amountData, amountInput, amountError) {
 
    var isValid = amountData.newAmount >= amountData.minAmount;
 
    if (amountData.oldAmount === undefined) {
 
        if (isValid) {
 
            hide(amountError);
 
        } else {
 
            flipClass(amountInput, 'valid', 'invalid');
 
            show(amountError);
 
        }
 
    } else if (isValid) {
 
        flipClass(amountInput, 'invalid', 'valid');
 
        hide(amountError);
 
    } else if (amountData.oldAmount >= amountData.minAmount) {
 
        flipClass(amountInput, 'valid', 'invalid');
 
        show(amountError);
 
    }
 
}
 

	
 
function init_sustainer_form_validation () {
 
    // Forms start in "invalid" form, with the errors shown, so that
 
    // non-Javascript users see the errors by default and know what they must
 
    // enter.  Now we hide those for JavaScript users:
 
    formCorrectionNeeded.classList.add('hidden');
 

	
 
    qsa('form.supporter-form').forEach(function(form) {
 
        var amountInput = qs('input[type=number]', form);
 
        var amountError = qs('.supporter-form-input .form-error', form);
 

	
 
        function amount_change_handler () {
 
            var amountData = buildAmountData(amountInput);
 
            new_amount(amountData, amountInput, amountError);
 
            amountInput.dataset.oldAmount = amountData.newAmount;
 
        }
 

	
 
        amountInput.addEventListener('input', function() {
 
            amountInput.classList.remove('invalid');
 
        })
 
        amountInput.addEventListener('focusout', amount_change_handler);
 
        amount_change_handler();
 

	
 
        form.addEventListener('submit', function(event) {
 
            var amountData = buildAmountData(amountInput);
 
            if (amountData.newAmount >= amountData.minAmount) {
 
                formCorrectionNeeded.classList.add('hidden');
 
            } else {
 
                formCorrectionNeeded.classList.remove('hidden')
 
                    .css("font-weight", "bold").css("font-size", "150%");
 
                event.preventDefault();
 
            }
 
        });
 
    });
 
}
 

	
 
function init_sustainer_type_switching () {
 
    function selectSupportType(selectedLink) {
 
        qsa(".supporter-type-selector a").forEach(function(el) {
 
            el.classList.remove("supporter-type-selector-selected");
 
        });
 
        selectedLink.classList.add("supporter-type-selector-selected");
 
        qsa(".supporter-type-selection").forEach(function(el) { hide(el); });
 
        let hash = window.location.hash !== '' ? window.location.hash : '#annual';
 
        show(qs(hash));
 
        formCorrectionNeeded.classList.add('hidden');
 
        return false;
 
    };
 
    qsa(".supporter-type-selector a").forEach(function(el) {
 
        el.addEventListener("click", () => selectSupportType(el));
 
    });
 

	
 
    let el = qs(window.location.hash !== '' ? window.location.hash + 'Selector' : '#annualSelector');
 
    selectSupportType(el);
 

	
 
    window.addEventListener("hashchange", function () {
 
        let el = qs(window.location.hash !== '' ? window.location.hash + 'Selector' : '#annualSelector');
 
        selectSupportType(el);
 
    });
 
};
 

	
 
function init_expanders () {
 
    // To avoid hitting visitors with a wall of text, we initially hide the
 
    // "Year in Review" and similar text inside expandable <details>
 
    // sections. If the URL fragment references one of these sections, we open
 
    // that section.
 
    let details = qs('details' + window.location.hash)  // eg. #WritingAndSpeaking
 
    if (window.location.hash && details) {
 
        details.open = true;
 
        details.scrollIntoView();
 
    }
 
    // Exable convenient "expand all" link to expand/hide all sections at once.
 
    qsa('.expander').forEach(function(expander) {
 
        expander.innerHTML = expander.dataset['expandLinkText'];
 
        expander.addEventListener('click', function() {
 
            let details_elements = qsa('.expandable-section details');
 
            let some_closed = Array.from(details_elements).some(el => !el.open);
 
            details_elements.forEach(function(el) {
 
                el.open = some_closed;
 
            });
 
        });
 
    });
 
}
 

	
 
init_sustainer_form_validation();
 
init_sustainer_type_switching();
 
init_expanders();
conservancy/supporters/admin.py
Show inline comments
 
from django.contrib import admin
 

	
 
from .models import Supporter
 

	
 

	
 
@admin.register(Supporter)
 
class SupporterAdmin(admin.ModelAdmin):
 
    list_display = ('display_name', 'display_until_date')
 

	
conservancy/worldmap/admin.py
Show inline comments
 
from django.contrib import admin
 

	
 
from .models import EarthLocation
 

	
 

	
 
@admin.register(EarthLocation)
 
class EarthLocationAdmin(admin.ModelAdmin):
 
    list_display = ("label", "html_map_link")
 

	
conservancy/worldmap/models.py
Show inline comments
 
from django.db import models
 

	
 

	
 
class EarthLocation(models.Model):
 
    """Represents latitude and longitude, with a label"""
 

	
 
    label = models.CharField(max_length=300, unique=True)
 
    latitude = models.DecimalField(max_digits=9, decimal_places=6)
 
    longitude = models.DecimalField(max_digits=9, decimal_places=6)
 

	
 
    date_created = models.DateTimeField(auto_now_add=True)
 
    date_last_modified = models.DateTimeField(auto_now=True)
 

	
 
    class Meta:
 
        unique_together = (("latitude", "longitude"),)
 

	
 
    def __str__(self):
 
        return self.label
 

	
 
    def google_maps_link(self):
 
        return ("http://maps.google.com/maps?ll=%s,%s&z=15"
 
                % (self.latitude, self.longitude))
 

	
 
    default_map_link = google_maps_link
 

	
 
    def html_map_link(self): # for Admin, fixme: fix_ampersands
 
        return '<a href="%s">map link</a>' % self.default_map_link()
 
    html_map_link.allow_tags = True
 

	
deploy/install.yml
Show inline comments
 
# Ansible playbook for basic web server configuration.
 
#
 
# Run with:
 
# ANSIBLE_STDOUT_CALLBACK=debug ansible-playbook deploy/install.yml -i deploy/inventory.ini --verbose
 

	
 
# Notes:
 
#
 
# /etc/apache2 uses OS defaults aside from "site-available", "sites-enabled" and
 
# "conservancy.conf".
 
#
 
# Current site does not use "django.contrib.staticfiles", so no need to run
 
# `collectstatic`.
 
#
 
# SQLite database lives at /var/lib/www/database.
 
#
 
# Disabled Rackspace CDN videos.
 

	
 
 - name: Configure web server
 
   hosts: web
 
   become: true
 
   vars:
 
     ansible_ssh_pipelining: true
 
   tasks:
 
     - name: Install unattended upgrades
 
       apt:
 
         name: unattended-upgrades
 

	
 
     - name: Configure unattended upgrades overrides
 
       # See defaults in 50unattended-upgrades.
 
       copy:
 
         dest: /etc/apt/apt.conf.d/20auto-upgrades
 
         content: |
 
           APT::Periodic::Update-Package-Lists "1";
 
           APT::Periodic::Unattended-Upgrade "1";
 
           Unattended-Upgrade::Automatic-Reboot "true";
 
           Unattended-Upgrade::Automatic-Reboot-Time "02:00";
 
           Unattended-Upgrade::Mail "root";
 

	
 
     - name: Add extensive history logging
 
       blockinfile:
 
         path: /etc/bash.bashrc
 
         block: |
 
           # Write to history file immediately (rather than only when shell is
 
           # closed). For setting history length see HISTSIZE and HISTFILESIZE in
 
           # bash(1).
 
           shopt -s histappend
 
           PROMPT_COMMAND='history -a'
 
           HISTSIZE=1000000
 
           HISTFILESIZE=1000000
 
         insertafter: EOF
 

	
 
     - name: Mount the media volume
 
       # OSUOSL VMs come with fixed storage that's tied to the cores and RAM
 
       # selection. Easier to put this data on an external volume.
 
       ansible.posix.mount:
 
         src: /dev/sdb1
 
         path: /var/www/media
 
         fstype: ext4
 
         state: mounted
 
         boot: false
 

	
 
     - name: Install Apache
 
       apt:
 
         name: apache2,libapache2-mod-wsgi-py3
 

	
 
     - apache2_module:
 
         state: present
 
         name: ssl
 

	
 
     - apache2_module:
 
         state: present
 
         name: rewrite
 

	
 
     # The proxy and proxy-http modules are required to rewrite /.well-known/
 
     # requests to the mail server if the file doesn't exist. This is use to
 
     # renew Let's Encrypt certificates.
 
     - apache2_module:
 
         state: present
 
         name: proxy
 

	
 
     - apache2_module:
 
         state: present
 
         name: proxy-http
 

	
 
     - name: Install Postfix
 
       apt:
 
         pkg:
 
           - postfix
 
           # libsasl2-modules fixes "SASL authentication failure: No worthy mechs found"
 
           - libsasl2-modules
 
           - mailutils
 

	
 
     # # Commented because you only want this on first run ever.
 
     # - name: Add file for SMTP credentials
 
     #   copy:
 
     #     dest: /etc/postfix/sasl_passwd
 
     #     content: |-
 
     #       # After updating, run `sudo postmap hash:/etc/postfix/sasl_passwd`.
 
     #       [mail.sfconservancy.org]:587 conference@sfconservancy.org:PASSWORD
 
           
 

 
     - name: Configure Postfix for relaying
 
       copy:
 
         src: postfix/main.cf
 
         dest: /etc/postfix/main.cf
 
       notify:
 
         - restart postfix
 

	
 
     - name: Alias mail to root
 
       copy:
 
         dest: /etc/aliases
 
         content: |-
 
           postmaster: root
 
           root: sysadmin@sfconservancy.org, sysadmin@sturm.com.au
 
       notify:
 
         - restart postfix
 

	
 
     - name: Install Certbot
 
       apt:
 
         name: certbot, python3-certbot-apache
 

	
 
     - name: Install Python dependencies
 
       apt:
 
         name: python3-django,python3-bs4,python3-html5lib,python3-django-countries
 

	
 
     - name: Install Python essentials
 
       apt:
 
         name: python3-venv,python3-pip,python3-wheel
 

	
 
     - name: Install Python build dependencies
 
       apt:
 
         name: build-essential,python3-dev,libffi-dev
 

	
 
     - name: Security settings
 
       apt:
 
         name: fail2ban
 

	
 
     - name: Disable SSH password authentication
 
       lineinfile:
 
         path: /etc/ssh/sshd_config
 
         line: 'PasswordAuthentication no'
 
         regexp: 'PasswordAuthentication '
 
       notify:
 
         - restart sshd
 

	
 
     - name: Install utilities
 
       apt:
 
         name: tmux,curl,git,magic-wormhole,htop,rsync
 

	
 
     - name: Create the project directory
 
       file:
 
         path: /var/www/website
 
         state: directory
 
         owner: www-data
 
         group: www-data
 
         mode: '0755'
 

	
 
     # TODO: Needs to force owner to www-data:www-data
 
     - name: Git checkout
 
       ansible.builtin.git:
 
         repo: 'https://k.sfconservancy.org/website'
 
         dest: /var/www/website
 
         version: master
 
         remote: upstream
 

	
 
     - name: Create the database directory
 
       file:
 
         path: /var/lib/www/database
 
         state: directory
 
         owner: www-data
 
         group: www-data
 
         mode: '0755'
 

	
 
     - name: Create static dir
 
       file:
 
         path: /var/www/website/conservancy/static
 
         state: directory
 
         owner: www-data
 
         group: www-data
 
         mode: '0755'
 

	
 
     - name: Install `netfilter-persistent` && `iptables-persistent` packages
 
       apt:
 
         pkg:
 
           - iptables-persistent
 
           - netfilter-persistent
 

	
 
     - name: Install iptables  # May need kernel reload/reboot
 
       apt:
 
         name: iptables,iptables-netflow-dkms
 

	
 
     - name: Flush existing firewall rules
 
       iptables:
 
         flush: true
 

	
 
     - name: Firewall rule - allow all loopback traffic
 
       iptables:
 
         action: append
 
         chain: INPUT
 
         in_interface: lo
 
         jump: ACCEPT
 

	
 
     - name: Firewall rule - allow established connections
 
       iptables:
 
         chain: INPUT
 
         ctstate: ESTABLISHED,RELATED
 
         jump: ACCEPT
 

	
 
     - name: Firewall rule - allow port ping traffic
 
       iptables:
 
         chain: INPUT
 
         jump: ACCEPT
 
         protocol: icmp
 

	
 
     - name: Firewall rule - allow port 22/SSH traffic
 
       iptables:
 
         chain: INPUT
 
         destination_port: '22'
 
         jump: ACCEPT
 
         protocol: tcp
 

	
 
     - name: Firewall rule - allow port 80/HTTP traffic
 
       iptables:
 
         chain: INPUT
 
         destination_port: '80'
 
         jump: ACCEPT
 
         protocol: tcp
 

	
 
     - name: Firewall rule - allow port 443/HTTPS traffic
 
       iptables:
 
         chain: INPUT
 
         destination_port: '443'
 
         jump: ACCEPT
 
         protocol: tcp
 

	
 
     - name: Firewall rule - drop any traffic without rule
 
       iptables:
 
         chain: INPUT
 
         jump: DROP
 

	
 
     - name: Flush existing firewall rules
 
       iptables:
 
         ip_version: ipv6
 
         flush: true
 

	
 
     - name: Firewall rule - allow all loopback traffic v6
 
       iptables:
 
         ip_version: ipv6
 
         action: append
 
         chain: INPUT
 
         in_interface: lo
 
         jump: ACCEPT
 

	
 
     - name: Firewall rule - allow established connections v6
 
       iptables:
 
         ip_version: ipv6
 
         chain: INPUT
 
         ctstate: ESTABLISHED,RELATED
 
         jump: ACCEPT
 

	
 
     - name: Firewall rule - allow port ping traffic v6
 
       iptables:
 
         ip_version: ipv6
 
         chain: INPUT
 
         jump: ACCEPT
 
         protocol: icmp
 

	
 
     - name: Firewall rule - allow port 22/SSH traffic v6
 
       iptables:
 
         ip_version: ipv6
 
         chain: INPUT
 
         destination_port: '22'
 
         jump: ACCEPT
 
         protocol: tcp
 

	
 
     - name: Firewall rule - allow port 80/HTTP traffic v6
 
       iptables:
 
         ip_version: ipv6
 
         chain: INPUT
 
         destination_port: '80'
 
         jump: ACCEPT
 
         protocol: tcp
 

	
 
     - name: Firewall rule - allow port 443/HTTPS traffic v6
 
       iptables:
 
         ip_version: ipv6
 
         chain: INPUT
 
         destination_port: '443'
 
         jump: ACCEPT
 
         protocol: tcp
 

	
 
     - name: Firewall rule - drop any traffic without rule v6
 
       iptables:
 
         ip_version: ipv6
 
         chain: INPUT
 
         jump: DROP
 

	
 
   handlers:
 
     - name: restart sshd
 
       service:
 
         name: ssh
 
         state: reloaded
 

	
 
     - name: restart postfix
 
       service:
 
         name: postfix
 
         state: reloaded
deploy/postfix/main.cf
Show inline comments
 
# See /usr/share/postfix/main.cf.dist for a commented, more complete version
 

	
 

	
 
# Debian specific:  Specifying a file name will cause the first
 
# line of that file to be used as the name.  The Debian default
 
# is /etc/mailname.
 
#myorigin = /etc/mailname
 

	
 
smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
 
biff = no
 

	
 
# appending .domain is the MUA's job.
 
append_dot_mydomain = no
 

	
 
# Uncomment the next line to generate "delayed mail" warnings
 
#delay_warning_time = 4h
 

	
 
readme_directory = no
 

	
 
# See http://www.postfix.org/COMPATIBILITY_README.html -- default to 3.6 on
 
# fresh installs.
 
compatibility_level = 3.6
 

	
 

	
 

	
 
# TLS parameters
 
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
 
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
 
smtpd_tls_security_level=may
 

	
 
smtp_tls_CApath=/etc/ssl/certs
 
smtp_tls_security_level=secure
 
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
 

	
 

	
 
smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
 
myhostname = hickory.sfconservancy.org
 
alias_maps = hash:/etc/aliases
 
alias_database = hash:/etc/aliases
 
myorigin = /etc/mailname
 
mydestination = $myhostname, hickory, localhost
 
relayhost = [mail.sfconservancy.org]:587
 
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
 
mailbox_size_limit = 0
 
recipient_delimiter = +
 
inet_interfaces = loopback-only
 
inet_protocols = all
 

	
 
# Relay authentication
 
smtp_sasl_auth_enable = yes
 
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
 
smtp_sasl_security_options = noanonymous
...
 
\ No newline at end of file
 
smtp_sasl_security_options = noanonymous
pyproject.toml
Show inline comments
 
[tool.black]
 
skip-string-normalization = true
 
line-length = 90
 

	
 
[tool.isort]
 
profile = "black"
 
force_sort_within_sections = true
 
line_length = 90
 
sections = "FUTURE,STDLIB,THIRDPARTY,LOCALFOLDER,FIRSTPARTY"
 
no_lines_before = "FIRSTPARTY"
 

	
 
[tool.pytest.ini_options]
 
DJANGO_SETTINGS_MODULE = 'conservancy.settings.dev'
 
python_files = ['test*.py']
 
# pytest-django will default to running tests with DEBUG = False, regardless of
 
# the settings you provide it. This fails due to the
 
# `ManifestStaticFilesStorage` without explicitly running `collectstatic` first.
 
django_debug_mode = true
...
 
\ No newline at end of file
 
django_debug_mode = true
requirements.txt
Show inline comments
 
# Installed in virtualenv
 
Django==4.2.11
 
# Provided by Debian Bookworm.
 
beautifulsoup4==4.11.2
 
html5lib==1.1
 
django-countries==7.3.2
 
Pillow==9.4.0
...
 
\ No newline at end of file
 
Pillow==9.4.0
0 comments (0 inline, 0 general)