Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,022

Downloads of v 3.4:

200

Last Update:

01 Aug 2020

Package Maintainer(s):

Software Author(s):

  • The Golly Gang

Tags:

golly game-of-life mathematics

Golly Game of Life

This is not the latest version of Golly Game of Life available.

  • 1
  • 2
  • 3

3.4 | Updated: 01 Aug 2020

Downloads:

2,022

Downloads of v 3.4:

200

Maintainer(s):

Software Author(s):

  • The Golly Gang

Golly Game of Life 3.4

This is not the latest version of Golly Game of Life available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Golly Game of Life, run the following command from the command line or from PowerShell:

>

To upgrade Golly Game of Life, run the following command from the command line or from PowerShell:

>

To uninstall Golly Game of Life, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade golly -y --source="'INTERNAL REPO URL'" --version="'3.4'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade golly -y --source="'INTERNAL REPO URL'" --version="'3.4'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install golly
  win_chocolatey:
    name: golly
    version: '3.4'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'golly' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '3.4'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller golly
{
    Name     = "golly"
    Version  = "3.4"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'golly':
  ensure   => '3.4',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator gep13 on 31 Aug 2020.

Description

Golly is an open source, cross-platform application for exploring Conway's Game of Life and many other types of cellular automata. The primary authors are Andrew Trevorrow and Tom Rokicki, with code contributions by Tim Hutton, Dave Greene, Jason Summers, Maks Verver, Robert Munafo, Brenton Bostick and Chris Rowett.

Key Features

  • Supports bounded and unbounded universes, with cells of up to 256 states.
  • Supports multiple algorithms, including Bill Gosper's super fast hashlife algorithm.
  • Many different types of CA are included: John von Neumann's 29-state CA, Wolfram's 1D rules, WireWorld, Generations, Paterson's Worms, Larger than Life, etc.
  • The RuleLoader algorithm lets you plug in new rules.
  • Responsive even while generating or garbage collecting.
  • Reads RLE, macrocell, Life 1.05/1.06, dblife, and MCell files.
  • Can also read common graphic formats: BMP, PNG, GIF, TIFF.
    Can extract patterns, rules and scripts from zip files.
  • Can download patterns, rules and scripts from online archives.
  • Includes a state-of-the-art pattern collection.
  • Can paste in patterns from the clipboard.
  • Unlimited undo/redo.
  • Configurable keyboard shortcuts.
  • Auto fit option keeps patterns sized to the window.
  • Full screen option (no menu/status/tool/scroll bars).
  • Supports multiple layers, including cloned layers.
  • HTML-based help with an integrated Life Lexicon.
  • Scriptable via Lua or Python.
  • Runs on Windows (XP+), Mac OS X (10.6+) and Linux (with GTK+ 2.x).

legal\LICENSE.txt

<!DOCTYPE html>
<!-- Server: sfs-forge-6 -->


    





















<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]>    <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]>    <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]>    <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]>-->
<html lang="en" class="no-js"> <!--<![endif]-->
<head>
    <meta content="text/html; charset=UTF-8" http-equiv="content-type"/>
    <title>
  Golly / Code /
  [a4cf10]
  /docs/License.html
</title>
    

<meta name="viewport" content="width=1100">


<link rel="icon" sizes="180x180" href="https://a.fsdn.com/allura/nf/1596141324/_ew_/theme/sftheme/images/sandiego/logo-180x180.png" type="image/png">
<link rel="icon" sizes="any" href="https://a.fsdn.com/allura/nf/1596141324/_ew_/theme/sftheme/images/sandiego/svg/originals/sf-icon-orange-no_sf.svg" type="image/svg+xml">
<link rel="apple-touch-icon" sizes="180x180" href="https://a.fsdn.com/allura/nf/1596141324/_ew_/theme/sftheme/images/sandiego/logo-180x180.png">
<link rel="mask-icon" href="https://a.fsdn.com/allura/nf/1596141324/_ew_/theme/sftheme/images/sandiego/svg/originals/sf-icon-orange-no_sf.svg" color="#FF6600">

<!--[if lt IE 7 ]>
  <script src="https://a.fsdn.com/allura/nf/1596141324/_ew_/theme/sftheme/js/sftheme/vendor/dd_belatedpng.js"></script>
  <script> DD_belatedPNG.fix('img, .png_bg'); //fix any <img> or .png_bg background-images </script>
<![endif]-->
<link href='//fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet'>
<script>
if (!window.SF) { window.SF = {}; }
SF.sandiego = false;
SF.sandiego_chrome = true;
SF.cdn = "https://a.fsdn.com/con";
</script>
    
        <!-- ew:head_css -->

    
        <link rel="stylesheet"
                type="text/css"
                href="https://a.fsdn.com/allura/nf/1596141324/_ew_/_slim/css?href=allura%2Fcss%2Fforge%2Fhilite.css%3Ballura%2Fcss%2Fforge%2Ftooltipster.css"
                >
    
        <link rel="stylesheet"
                type="text/css"
                href="https://a.fsdn.com/allura/nf/1596141324/_ew_/allura/css/font-awesome.min.css"
                >
    
        <link rel="stylesheet"
                type="text/css"
                href="https://a.fsdn.com/allura/nf/1596141324/_ew_/theme/sftheme/css/forge.css"
                >
    
        
<!-- /ew:head_css -->

    
    
        <!-- ew:head_js -->

    
        <script type="text/javascript" src="https://a.fsdn.com/allura/nf/1596141324/_ew_/_slim/js?href=allura%2Fjs%2Fjquery-base.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Fpromise.polyfill.min.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fcmp3.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Fmodernizr.3.3.1.custom.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fshared_head.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Ftypescript%2Fcompliance.js"></script>
    
        
<!-- /ew:head_js -->

    

    
        <style type="text/css">
            /* make URL & Project custom fields in support tickets not get hidden as much */
.project-forge.mountpoint-site-support .view_holder .grid-4:nth-child(5),
.project-forge.mountpoint-site-support .view_holder .grid-4:nth-child(6) {
  overflow: visible;
  font-size: 22px;
  width: 340px;
  line-height: 1;
  margin-bottom: 5px;
}
.project-forge.mountpoint-site-support .view_holder .grid-4:nth-child(5) label, .project-forge.mountpoint-site-support .view_holder .grid-4:nth-child(6) label {
  font-size: 14px;
}
        </style>
    
    
    <link rel="alternate" type="application/rss+xml" title="RSS" href="/p/golly/code/feed.rss"/>
    <link rel="alternate" type="application/atom+xml" title="Atom" href="/p/golly/code/feed.atom"/>
    <style type="text/css">
        #access_urls .btn-set {
            
            min-width: 14em;
        }
    </style>

    <style>.XwrCuHDtMOwwpIdwrFDwEqwqtHwCvsOOkdg {
        display: none
    }</style>

    
    
    
    


<script type="text/javascript">
    
    (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
            (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
        ga('create', "UA-36130941-1", {cookieDomain: 'auto', 'name': 'sfnt1','sampleRate': 9});
          
            ga('sfnt1.set', 'dimension9', 'golly');
            ga('sfnt1.set', 'dimension10', 'git');
            
          ga('sfnt1.set', 'dimension13', 'Logged Out');
        ga('sfnt1.send', 'pageview');
    
    

</script>
    






<script>
    function initPiwik(){
      var _paq = window._paq = window._paq || [];
      _paq.push(['trackPageView', document.title, {
            dimension1: 'golly',
            dimension2: 'git'
      }]);
      _paq.push(['enableLinkTracking']);
      (function() {
        var u="//analytics.slashdotmedia.com/";
        _paq.push(['setTrackerUrl', u+'sf.php']);
        _paq.push(['setSiteId', 39]);
        var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
        g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'sf.js'; s.parentNode.insertBefore(g,s);
      })();
    }
    bizx.cmp.ifConsent('publisher', ['storage', 'measurement'], initPiwik);
</script>



</head>

<body class="
body_class sandiego_chrome  legacy_chrome  l-allow-natural-width 
no-cmp
" id="forge">

    
        <!-- ew:body_top_js -->

    
        
<!-- /ew:body_top_js -->

    





<div class="off-canvas position-right" id="offCanvas" data-off-canvas>
    <!-- Menu -->
    <ul class="header-nav-menulist">
        <li class="highlight search">
            <form method="get" action="/directory/">
    
        <input type="text" placeholder="Search for software or solutions" autocomplete="off" name="q" >
        
        <label>
        <input type="submit" class="bt" value="">
            

<svg  viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1216 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zm512 832q0 52-38 90t-90 38q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z"/></svg>
        </label>
    
    </form>
        </li>
        
        <li class="highlight"><a href="">Join/Login</a></li>
        
        <li><a href="/directory/">Open Source Software</a></li>
        <li><a href="/software/">Business Software</a></li>
        <li><a href="/blog" title="Blog">Blog</a></li>
        <li><a href="/about">About</a></li>
        <li><a href="/support">Help</a></li>
        <li class="social row">
            <span class="social-label">Connect</span>
            <span class="social-icons">
                
<span></span>
<a href="https://twitter.com/sourceforge" class="twitter" rel="nofollow" target="_blank">

<svg  viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1684 408q-67 98-162 167 1 14 1 42 0 130-38 259.5t-115.5 248.5-184.5 210.5-258 146-323 54.5q-271 0-496-145 35 4 78 4 225 0 401-138-105-2-188-64.5t-114-159.5q33 5 61 5 43 0 85-11-112-23-185.5-111.5t-73.5-205.5v-4q68 38 146 41-66-44-105-115t-39-154q0-88 44-163 121 149 294.5 238.5t371.5 99.5q-8-38-8-74 0-134 94.5-228.5t228.5-94.5q140 0 236 102 109-21 205-78-37 115-142 178 93-10 186-50z"/></svg></a>
<a href="https://www.facebook.com/sourceforgenet/" class="facebook" rel="nofollow" target="_blank">

<svg  viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1343 12v264h-157q-86 0-116 36t-30 108v189h293l-39 296h-254v759h-306v-759h-255v-296h255v-218q0-186 104-288.5t277-102.5q147 0 228 12z"/></svg></a>
<a href="https://www.linkedin.com/company/sourceforge.net" class="linkedin" rel="nofollow" target="_blank">

<svg  viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M477 625v991h-330v-991h330zm21-306q1 73-50.5 122t-135.5 49h-2q-82 0-132-49t-50-122q0-74 51.5-122.5t134.5-48.5 133 48.5 51 122.5zm1166 729v568h-329v-530q0-105-40.5-164.5t-126.5-59.5q-63 0-105.5 34.5t-63.5 85.5q-11 30-11 81v553h-329q2-399 2-647t-1-296l-1-48h329v144h-2q20-32 41-56t56.5-52 87-43.5 114.5-15.5q171 0 275 113.5t104 332.5z"/></svg></a>
<a href="/user/newsletters" rel=nofollow class="newsletter" title="Subscribe to our newsletter">

<svg  version="1.1"  xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 42 42" enable-background="new 0 0 42 42" xml:space="preserve"><path fill="#FFFFFF" d="M0,6v30h42V6H0z M24.2,21.2c-0.8,0.8-2.3,2-3.2,2c-0.9,0-2.4-1.2-3.2-2L5.8,9.7h30.3L24.2,21.2z M13.7,21l-9.9,9.4V11.6L13.7,21z M15.7,23L15.7,23c0.5,0.5,2.9,2.9,5.3,2.9c2.4,0,4.8-2.4,5.2-2.8l0.1-0.1l9.8,9.4H5.8L15.7,23z M28.3,21l9.9-9.5v18.9L28.3,21z"/></svg></a>
<span></span>
            </span>
        </li>
        <li><a href="https://slashdotmedia.com/privacy-statement/" rel="nofollow">Privacy</a></li>
        <li><a id="header-nav-more" data-toggle="header-nav-more header-nav-more-content" data-toggler=".toggled">More</a></li>
        <li>
            <ul id="header-nav-more-content" class="toggled" data-toggler=".toggled">
                

    

    
    
    
        <li><a href="/articles/">Articles</a></li>
    
    
        <li><a href="/business-voip/">Business VoIP</a></li>
    
    

    
 
                
                <li><a href="/create">Create</a></li>
                
                <li><a href="/top">Top Downloaded Projects</a></li>
                <li><a href="https://deals.sourceforge.net/?utm_source=sourceforge&utm_medium=navbar&utm_campaign=homepage">Deals</a></li>
                <li><a href="/blog/category/sitestatus/">Site Status</a></li>
                <li><a href="https://twitter.com/sfnet_ops" rel="nofollow">@sfnet_ops</a></li>
                <li><a href="https://twitter.com/sourceforge" rel="nofollow">@sourceforge</a></li>
                <li><a href="https://p.sf.net/sourceforge/docs">Site Documentation</a></li>
                <li><a href="/support">Support Request</a></li>
                <li><a href="https://slashdotmedia.com/terms-of-use/" rel="nofollow">Terms</a></li>
                <li><a href="https://slashdotmedia.com/opt-out-choices/" rel="nofollow">Opt Out</a></li>
                <li><a href="https://slashdotmedia.com/" rel="nofollow">Advertise</a></li>
            </ul>
        </li>
    </ul>
</div>
<div class="off-canvas-content" data-off-canvas-content>

    


<script>
    SF.linkout_icon = '<svg  version="1.1"  xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve"><polygon class="st0" points="243.2,243.2 56.8,243.2 56.8,56.8 123,56.8 123,9 9,9 9,291 291,291 291,179.4 243.2,179 "/><polygon class="st0" points="128.5,213 155,186.5 176,165.5 206.7,196.3 235.5,132.5 248.9,102.6 290.6,9.8 291,9 290.6,9.2 197.4,51.1 169.1,63.8 103.7,93.3 137,126.5 115.9,147.5 89.5,174 "/></svg>';
</script>


<div class="l-header-nav  sandiego">

    <section class="sandiego l-header-nav-top show-for-large">
        <div class="row">
            <a href="/" title="Home" class="sf-logo">
                

<svg  version="1.1"  xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"     viewBox="0 0 653 102.6" style="enable-background:new 0 0 653 102.6;" xml:space="preserve"><path class="st0" d="M66.9,54.5c0-19.1-6.8-27.8-10.4-31.1c-0.7-0.6-1.8-0.1-1.7,0.9c0.7,10.8-12.9,13.5-12.9,30.4h0    c0,0,0,0.1,0,0.1c0,10.3,7.8,18.7,17.4,18.7c9.6,0,17.4-8.4,17.4-18.7c0,0,0-0.1,0-0.1h0c0-4.8-1.8-9.4-3.6-12.8    c-0.4-0.7-1.4-0.4-1.3,0.2C75.1,56.7,66.9,65.7,66.9,54.5z"/><g>    <path class="st0" d="M46.2,94.8c-0.4,0-0.9-0.2-1.2-0.5L0.5,49.8c-0.6-0.6-0.6-1.7,0-2.4l47-47C47.8,0.2,48.2,0,48.6,0h13.5        c0.8,0,1.3,0.5,1.5,1c0.2,0.5,0.2,1.2-0.4,1.8L19.1,47c-0.9,0.9-0.9,2.3,0,3.2L54,85.2c0.6,0.6,0.6,1.7,0,2.4l-6.7,6.8        C47,94.6,46.6,94.8,46.2,94.8z"/></g><g>    <path class="st0" d="M55.1,102.6c-0.8,0-1.3-0.5-1.5-1c-0.2-0.5-0.2-1.2,0.4-1.8l44.2-44.2c0.4-0.4,0.7-1,0.7-1.6        c0-0.6-0.2-1.2-0.7-1.6L63.2,17.4c-0.6-0.6-0.6-1.7,0-2.4l6.8-6.8c0.3-0.3,0.7-0.5,1.2-0.5S72,8,72.3,8.3l44.4,44.5        c0.3,0.3,0.5,0.7,0.5,1.2s-0.2,0.9-0.5,1.2l-47,47c-0.3,0.3-0.7,0.5-1.2,0.5H55.1z"/></g><g>    <g>        <path class="st1" d="M167.2,32c-0.2,0.4-0.5,0.6-1,0.6c-0.3,0-0.7-0.2-1.2-0.7c-0.5-0.5-1.2-1-2-1.5c-0.9-0.6-1.9-1.1-3.2-1.5            c-1.3-0.5-2.9-0.7-4.8-0.7c-1.9,0-3.5,0.3-5,0.8c-1.4,0.5-2.6,1.3-3.6,2.2s-1.7,2-2.2,3.2c-0.5,1.2-0.8,2.5-0.8,3.8            c0,1.8,0.4,3.2,1.1,4.4c0.7,1.1,1.7,2.1,3,2.9c1.2,0.8,2.6,1.5,4.2,2c1.6,0.6,3.2,1.1,4.8,1.6c1.6,0.5,3.2,1.1,4.8,1.8            c1.6,0.6,2.9,1.5,4.2,2.4s2.2,2.2,3,3.6c0.7,1.4,1.1,3.2,1.1,5.3c0,2.2-0.4,4.2-1.1,6.1c-0.7,1.9-1.8,3.6-3.2,5            c-1.4,1.4-3.2,2.5-5.2,3.4c-2.1,0.8-4.4,1.2-7,1.2c-3.4,0-6.4-0.6-8.8-1.8c-2.5-1.2-4.6-2.9-6.5-5l1-1.6c0.3-0.4,0.6-0.5,1-0.5            c0.2,0,0.5,0.1,0.8,0.4c0.3,0.3,0.8,0.7,1.2,1.1c0.5,0.4,1.1,0.9,1.8,1.4c0.7,0.5,1.5,1,2.4,1.4c0.9,0.4,1.9,0.8,3.1,1.1            c1.2,0.3,2.5,0.4,4,0.4c2.1,0,3.9-0.3,5.5-0.9c1.6-0.6,3-1.5,4.1-2.5s2-2.4,2.6-3.8c0.6-1.5,0.9-3.1,0.9-4.7            c0-1.8-0.4-3.3-1.1-4.5c-0.7-1.2-1.7-2.2-3-3c-1.2-0.8-2.6-1.5-4.2-2c-1.6-0.5-3.2-1.1-4.8-1.6c-1.6-0.5-3.2-1.1-4.8-1.7            c-1.6-0.6-2.9-1.4-4.2-2.4c-1.2-1-2.2-2.2-3-3.7c-0.7-1.5-1.1-3.3-1.1-5.6c0-1.7,0.3-3.4,1-5c0.7-1.6,1.6-3,2.9-4.3            c1.3-1.2,2.8-2.2,4.7-3c1.9-0.7,4-1.1,6.4-1.1c2.7,0,5.1,0.4,7.3,1.3c2.1,0.9,4.1,2.2,5.9,3.9L167.2,32z"/>        <path class="st2" d="M152.9,78.8c-3.5,0-6.6-0.6-9.1-1.9c-2.5-1.2-4.8-3-6.7-5.1l-0.3-0.3l1.3-2c0.6-0.7,1.1-0.8,1.5-0.8            c0.4,0,0.8,0.2,1.2,0.6c0.3,0.3,0.8,0.7,1.3,1.1c0.5,0.4,1.1,0.9,1.7,1.4c0.7,0.5,1.4,0.9,2.3,1.3c0.9,0.4,1.9,0.8,3,1            c1.1,0.3,2.4,0.4,3.9,0.4c2,0,3.8-0.3,5.3-0.9c1.5-0.6,2.8-1.4,3.9-2.4c1-1,1.9-2.2,2.4-3.6c0.6-1.4,0.8-2.9,0.8-4.5            c0-1.7-0.3-3.1-1-4.2c-0.7-1.1-1.6-2-2.8-2.8c-1.2-0.8-2.5-1.4-4-1.9c-1.5-0.5-3.1-1.1-4.8-1.6c-1.7-0.5-3.3-1.1-4.8-1.7            c-1.6-0.7-3.1-1.5-4.3-2.5c-1.3-1-2.3-2.4-3.1-3.9c-0.8-1.6-1.2-3.5-1.2-5.8c0-1.8,0.3-3.6,1-5.3c0.7-1.7,1.7-3.2,3-4.5            c1.3-1.3,3-2.3,4.9-3.1c1.9-0.8,4.2-1.2,6.6-1.2c2.8,0,5.3,0.4,7.5,1.3c2.2,0.9,4.2,2.3,6.1,4.1l0.3,0.3l-1.1,2.1            c-0.6,1.1-1.7,1.4-3.1,0.1c-0.5-0.4-1.1-0.9-2-1.4c-0.8-0.5-1.9-1-3.1-1.5c-1.2-0.4-2.7-0.7-4.6-0.7c-1.8,0-3.4,0.3-4.8,0.8            c-1.3,0.5-2.5,1.2-3.4,2.1c-0.9,0.9-1.6,1.9-2.1,3c-0.5,1.1-0.7,2.4-0.7,3.6c0,1.6,0.3,3,1,4c0.7,1.1,1.6,2,2.8,2.8            c1.2,0.8,2.5,1.4,4,2c1.5,0.5,3.1,1.1,4.8,1.6c1.6,0.5,3.3,1.1,4.8,1.8c1.6,0.7,3.1,1.5,4.3,2.5c1.3,1,2.3,2.3,3.1,3.8            c0.8,1.5,1.2,3.4,1.2,5.6c0,2.2-0.4,4.4-1.2,6.4c-0.8,2-1.9,3.7-3.4,5.2c-1.5,1.5-3.3,2.6-5.4,3.5            C158.1,78.3,155.6,78.8,152.9,78.8z M138.4,71.3c1.7,1.9,3.7,3.4,6,4.5c2.4,1.2,5.3,1.8,8.6,1.8c2.5,0,4.8-0.4,6.8-1.2            c2-0.8,3.6-1.9,5-3.2c1.3-1.3,2.4-3,3.1-4.8c0.7-1.8,1.1-3.8,1.1-5.9c0-2-0.4-3.7-1-5.1c-0.7-1.3-1.6-2.5-2.8-3.4            c-1.2-0.9-2.5-1.7-4-2.4c-1.5-0.6-3.1-1.2-4.7-1.8c-1.6-0.5-3.2-1.1-4.8-1.6c-1.6-0.6-3-1.3-4.3-2.1c-1.3-0.8-2.3-1.9-3.1-3.1            c-0.8-1.2-1.2-2.8-1.2-4.7c0-1.4,0.3-2.8,0.8-4.1c0.5-1.3,1.3-2.5,2.3-3.4c1-1,2.3-1.8,3.8-2.3c1.5-0.6,3.3-0.8,5.2-0.8            c1.9,0,3.6,0.2,5,0.7c1.3,0.5,2.5,1,3.3,1.6c0.9,0.6,1.6,1.1,2.1,1.6c0.6,0.5,0.8,0.5,0.8,0.5c0.1,0,0.3,0,0.4-0.3l0.7-1.3            c-1.6-1.5-3.4-2.7-5.3-3.5c-2.1-0.8-4.4-1.2-7-1.2c-2.3,0-4.4,0.4-6.2,1.1c-1.8,0.7-3.3,1.7-4.5,2.8c-1.2,1.2-2.1,2.5-2.8,4.1            c-0.6,1.5-0.9,3.1-0.9,4.8c0,2.1,0.4,3.9,1.1,5.3c0.7,1.4,1.6,2.6,2.8,3.5c1.2,0.9,2.5,1.7,4,2.3c1.5,0.6,3.1,1.2,4.7,1.7            c1.6,0.5,3.2,1,4.8,1.6c1.6,0.6,3,1.2,4.3,2.1c1.3,0.8,2.4,1.9,3.1,3.2c0.8,1.3,1.2,2.9,1.2,4.9c0,1.8-0.3,3.4-0.9,5            c-0.6,1.6-1.5,2.9-2.7,4c-1.2,1.1-2.6,2-4.3,2.7c-1.7,0.6-3.6,1-5.7,1c-1.5,0-2.9-0.2-4.2-0.5c-1.2-0.3-2.3-0.7-3.2-1.1            c-0.9-0.4-1.8-0.9-2.5-1.5c-0.7-0.5-1.3-1-1.8-1.4c-0.5-0.4-0.9-0.8-1.2-1.1c-0.3-0.3-0.5-0.3-0.5-0.3c-0.1,0-0.3,0-0.5,0.3            L138.4,71.3z"/>    </g>    <g>        <path class="st1" d="M226.7,51.6c0,4-0.6,7.6-1.8,10.9c-1.2,3.3-2.9,6.1-5.1,8.4c-2.2,2.3-4.8,4.1-7.8,5.4            c-3,1.3-6.4,1.9-10.1,1.9c-3.6,0-7-0.6-10-1.9c-3-1.3-5.6-3-7.8-5.4c-2.2-2.3-3.9-5.1-5.1-8.4c-1.2-3.3-1.8-6.9-1.8-10.9            c0-4,0.6-7.6,1.8-10.9c1.2-3.3,2.9-6.1,5.1-8.4c2.2-2.3,4.8-4.1,7.8-5.4c3-1.3,6.4-1.9,10-1.9c3.7,0,7.1,0.6,10.1,1.9            c3,1.3,5.6,3,7.8,5.4c2.2,2.3,3.9,5.1,5.1,8.4C226.1,44,226.7,47.6,226.7,51.6z M222.8,51.6c0-3.6-0.5-6.9-1.5-9.8            c-1-2.9-2.4-5.3-4.2-7.3c-1.8-2-4-3.5-6.6-4.6c-2.6-1.1-5.4-1.6-8.5-1.6c-3.1,0-5.9,0.5-8.5,1.6c-2.6,1.1-4.8,2.6-6.6,4.6            c-1.8,2-3.3,4.4-4.3,7.3c-1,2.9-1.5,6.1-1.5,9.8c0,3.6,0.5,6.9,1.5,9.8c1,2.9,2.4,5.3,4.3,7.3c1.8,2,4,3.5,6.6,4.6            c2.6,1.1,5.4,1.6,8.5,1.6c3.1,0,6-0.5,8.5-1.6c2.6-1,4.8-2.6,6.6-4.6c1.8-2,3.2-4.4,4.2-7.3C222.3,58.5,222.8,55.3,222.8,51.6z"/>        <path class="st2" d="M202,78.7c-3.7,0-7.2-0.7-10.2-1.9c-3.1-1.3-5.8-3.1-8-5.5c-2.2-2.4-4-5.2-5.2-8.6c-1.2-3.3-1.9-7.1-1.9-11.1            c0-4,0.6-7.8,1.9-11.1c1.2-3.3,3-6.2,5.2-8.6c2.2-2.4,4.9-4.2,8-5.5c3.1-1.3,6.5-2,10.2-2c3.8,0,7.2,0.7,10.3,1.9            c3.1,1.3,5.8,3.1,8,5.5c2.2,2.4,4,5.3,5.2,8.6c1.2,3.3,1.8,7,1.8,11.1c0,4.1-0.6,7.8-1.8,11.1c-1.2,3.3-3,6.2-5.2,8.6            c-2.2,2.4-4.9,4.2-8,5.5C209.2,78.1,205.7,78.7,202,78.7z M202,25.7c-3.5,0-6.8,0.6-9.8,1.9c-2.9,1.2-5.5,3-7.6,5.2            c-2.1,2.2-3.8,5-4.9,8.2c-1.2,3.2-1.8,6.8-1.8,10.7c0,3.9,0.6,7.5,1.8,10.7c1.2,3.2,2.8,5.9,4.9,8.2c2.1,2.2,4.7,4,7.6,5.2            c2.9,1.2,6.2,1.8,9.8,1.8c3.6,0,6.9-0.6,9.8-1.8c2.9-1.2,5.5-3,7.6-5.2c2.1-2.2,3.8-5,4.9-8.1c1.2-3.2,1.8-6.8,1.8-10.7            c0-3.9-0.6-7.5-1.8-10.7c-1.2-3.2-2.8-5.9-4.9-8.2c-2.1-2.2-4.7-4-7.6-5.2C208.9,26.3,205.6,25.7,202,25.7z"/>    </g>    <g>        <path class="st1" d="M256.4,74.9c2.5,0,4.7-0.4,6.7-1.3c2-0.9,3.6-2.1,5-3.6c1.4-1.5,2.4-3.4,3.1-5.4c0.7-2.1,1.1-4.3,1.1-6.8            V25.7h3.7v32.1c0,2.9-0.5,5.5-1.4,8c-0.9,2.5-2.2,4.6-3.9,6.5c-1.7,1.8-3.8,3.3-6.2,4.3c-2.4,1-5.2,1.6-8.2,1.6            c-3,0-5.8-0.5-8.2-1.6c-2.4-1.1-4.5-2.5-6.2-4.3c-1.7-1.8-3-4-3.9-6.5c-0.9-2.5-1.4-5.2-1.4-8V25.7h3.8v32c0,2.4,0.4,4.7,1.1,6.8            c0.7,2.1,1.8,3.9,3.1,5.4c1.4,1.5,3,2.7,5,3.6C251.6,74.5,253.9,74.9,256.4,74.9z"/>        <path class="st2" d="M256.4,78.8c-3.1,0-5.9-0.5-8.4-1.6c-2.5-1.1-4.7-2.6-6.4-4.5c-1.7-1.9-3.1-4.2-4-6.7            c-0.9-2.5-1.4-5.3-1.4-8.2V25.1h5v32.7c0,2.3,0.4,4.5,1,6.6c0.7,2,1.7,3.8,3,5.2c1.3,1.5,2.9,2.6,4.8,3.5c1.9,0.8,4,1.3,6.4,1.3            c2.4,0,4.6-0.4,6.4-1.2c1.9-0.8,3.5-2,4.8-3.5c1.3-1.5,2.3-3.2,3-5.2c0.7-2,1-4.2,1-6.6V25.1h5v32.7c0,2.9-0.5,5.7-1.4,8.2            c-0.9,2.5-2.3,4.8-4,6.7c-1.7,1.9-3.9,3.4-6.4,4.5C262.3,78.3,259.5,78.8,256.4,78.8z M237.3,26.3v31.5c0,2.8,0.4,5.4,1.3,7.8            c0.9,2.4,2.1,4.5,3.8,6.3c1.6,1.8,3.6,3.2,6,4.2c2.3,1,5,1.5,8,1.5c2.9,0,5.6-0.5,8-1.5c2.3-1,4.4-2.4,6-4.2            c1.6-1.8,2.9-3.9,3.8-6.3c0.9-2.4,1.3-5,1.3-7.8V26.3h-2.5v31.5c0,2.5-0.4,4.8-1.1,7c-0.7,2.2-1.8,4.1-3.3,5.7            c-1.4,1.6-3.2,2.9-5.2,3.8c-2,0.9-4.4,1.4-6.9,1.4c-2.6,0-4.9-0.5-6.9-1.4c-2-0.9-3.8-2.2-5.2-3.8c-1.4-1.6-2.5-3.5-3.2-5.7            c-0.7-2.1-1.1-4.5-1.1-7V26.3H237.3z"/>    </g>    <g>        <path class="st1" d="M297.5,51.3c1,0,0.9,0,0.9,0l2.2,0c2.3,0,4.4-0.3,6.2-0.8c1.8-0.6,3.4-1.3,4.6-2.4c1.3-1,2.2-2.3,2.9-3.7            c0.7-1.4,1-3.1,1-4.9c0-3.7-1.2-6.4-3.6-8.2c-2.4-1.8-5.9-2.7-10.6-2.7h-9.5v22.7v2.8v23.5h-3.7V25.7h13.2c6,0,10.5,1.2,13.4,3.5            c3,2.3,4.4,5.7,4.4,10.2c0,2-0.3,3.8-1,5.4c-0.7,1.6-1.7,3.1-3,4.3c-1.3,1.2-2.8,2.3-4.6,3c-1.8,0.8-3.9,1.3-6.1,1.6            c0.6,0.4,1.1,0.9,1.6,1.5l17.9,22.4h-3.3c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.4-0.8-0.7l-16.6-21c-0.4-0.5-0.9-0.9-1.3-1.1            c-0.5-0.2-3.4-0.3-4.4-0.3C296.3,51.6,296.7,51.3,297.5,51.3z"/>        <path class="st2" d="M325,78.2h-4.5c-0.5,0-0.9-0.1-1.3-0.3c-0.4-0.2-0.7-0.5-1-0.9l-16.6-21c-0.4-0.5-0.7-0.8-1.1-1            c-0.4-0.1-2.8-0.3-4.1-0.3h-0.6v-2.6c0-0.9,0.2-1.4,1.8-1.4c0.9,0,1,0,1,0l2.2,0c2.2,0,4.2-0.3,6-0.8c1.7-0.5,3.2-1.3,4.4-2.3            c1.2-1,2.1-2.1,2.7-3.5c0.6-1.4,0.9-2.9,0.9-4.6c0-3.5-1.1-6-3.4-7.7c-2.3-1.7-5.7-2.6-10.2-2.6h-8.9v48.9h-5V25.1h13.9            c6.1,0,10.7,1.2,13.8,3.6c3.1,2.4,4.7,6,4.7,10.7c0,2.1-0.4,4-1.1,5.7c-0.7,1.7-1.8,3.2-3.1,4.5c-1.3,1.3-3,2.3-4.8,3.2            c-1.5,0.6-3.1,1.1-4.9,1.4c0.2,0.2,0.4,0.4,0.6,0.7L325,78.2z M296.9,53.5c1.1,0,3.4,0.1,4,0.4c0.6,0.3,1.1,0.7,1.6,1.3l16.6,21            c0.2,0.3,0.4,0.5,0.6,0.6c0.2,0.1,0.4,0.2,0.7,0.2h2l-17.1-21.4c-0.4-0.6-0.9-1-1.4-1.3l-1.5-0.9l1.8-0.2c2.2-0.2,4.2-0.7,5.9-1.5            c1.7-0.8,3.2-1.7,4.5-2.9c1.2-1.2,2.2-2.5,2.8-4.1c0.6-1.6,1-3.3,1-5.2c0-4.3-1.4-7.5-4.2-9.7c-2.8-2.2-7.2-3.3-13-3.3h-12.6V77            h2.5V28h10.1c4.7,0,8.4,0.9,10.9,2.8c2.6,1.9,3.9,4.8,3.9,8.7c0,1.9-0.4,3.6-1,5.1c-0.7,1.5-1.7,2.8-3.1,3.9            c-1.3,1.1-2.9,1.9-4.8,2.5c-1.9,0.6-4,0.9-6.4,0.9l-2.2,0c-0.1,0-0.2,0-0.9,0C297.3,51.9,297,51.9,296.9,53.5z"/>    </g>    <g>        <path class="st1" d="M367.6,68.8c0.2,0,0.5,0.1,0.6,0.3l1.5,1.6c-1.1,1.1-2.2,2.2-3.5,3.1c-1.3,0.9-2.7,1.7-4.2,2.3            c-1.5,0.6-3.2,1.1-4.9,1.5c-1.8,0.4-3.8,0.5-5.9,0.5c-3.6,0-6.9-0.6-9.9-1.9c-3-1.3-5.6-3-7.7-5.4c-2.1-2.3-3.8-5.1-5-8.4            c-1.2-3.3-1.8-6.9-1.8-10.9c0-3.9,0.6-7.5,1.9-10.8c1.2-3.3,3-6,5.2-8.4c2.2-2.3,4.9-4.1,8-5.4c3.1-1.3,6.6-1.9,10.3-1.9            c1.9,0,3.6,0.1,5.2,0.4c1.6,0.3,3,0.7,4.4,1.2c1.4,0.5,2.6,1.2,3.8,2c1.2,0.8,2.4,1.7,3.5,2.7l-1.1,1.6c-0.2,0.3-0.5,0.4-0.9,0.4            c-0.2,0-0.5-0.1-0.8-0.4c-0.3-0.3-0.8-0.6-1.3-1c-0.5-0.4-1.2-0.8-1.9-1.2c-0.7-0.5-1.6-0.9-2.7-1.2c-1-0.4-2.2-0.7-3.6-1            c-1.3-0.3-2.9-0.4-4.6-0.4c-3.2,0-6.1,0.5-8.7,1.6c-2.6,1.1-4.9,2.6-6.8,4.7c-1.9,2-3.4,4.5-4.5,7.3s-1.6,6.1-1.6,9.7            c0,3.7,0.5,6.9,1.6,9.8c1.1,2.9,2.5,5.3,4.4,7.3c1.9,2,4.1,3.5,6.6,4.6c2.5,1.1,5.3,1.6,8.2,1.6c1.9,0,3.5-0.1,5-0.4            c1.5-0.2,2.8-0.6,4-1.1c1.2-0.5,2.4-1.1,3.4-1.8c1.1-0.7,2.1-1.5,3.1-2.5c0.1-0.1,0.2-0.2,0.3-0.2            C367.3,68.9,367.5,68.8,367.6,68.8z"/>        <path class="st2" d="M351.1,78.8c-3.7,0-7.1-0.7-10.1-1.9c-3.1-1.3-5.7-3.1-7.9-5.5c-2.2-2.4-3.9-5.2-5.1-8.6            c-1.2-3.3-1.8-7.1-1.8-11.1c0-4,0.6-7.7,1.9-11c1.3-3.3,3.1-6.2,5.3-8.6c2.3-2.4,5.1-4.3,8.2-5.6c3.2-1.3,6.7-2,10.6-2            c1.9,0,3.7,0.1,5.3,0.4c1.6,0.3,3.1,0.7,4.5,1.2c1.4,0.5,2.7,1.2,3.9,2c1.2,0.8,2.4,1.7,3.6,2.8l0.4,0.4l-1.4,2.1            c-0.2,0.3-0.6,0.7-1.4,0.7c-0.4,0-0.7-0.2-1.2-0.5c-0.3-0.3-0.8-0.6-1.3-0.9c-0.5-0.4-1.1-0.8-1.9-1.2c-0.7-0.4-1.6-0.8-2.6-1.2            c-1-0.4-2.2-0.7-3.5-0.9c-1.3-0.2-2.8-0.4-4.5-0.4c-3.1,0-5.9,0.5-8.5,1.6c-2.5,1.1-4.8,2.6-6.6,4.5c-1.8,1.9-3.3,4.3-4.3,7.1            c-1,2.8-1.6,6-1.6,9.4c0,3.6,0.5,6.8,1.5,9.6c1,2.8,2.4,5.2,4.2,7.1c1.8,1.9,3.9,3.4,6.4,4.4c2.4,1,5.1,1.5,8,1.5            c1.8,0,3.5-0.1,4.9-0.4c1.4-0.2,2.7-0.6,3.9-1.1c1.2-0.5,2.3-1.1,3.3-1.7c1-0.7,2-1.5,3-2.4c0.2-0.2,0.3-0.2,0.5-0.3            c0.5-0.3,1.3-0.2,1.7,0.3l1.9,2l-0.4,0.4c-1.1,1.2-2.3,2.2-3.6,3.2c-1.3,0.9-2.7,1.8-4.3,2.4c-1.5,0.7-3.2,1.2-5.1,1.5            C355.3,78.6,353.3,78.8,351.1,78.8z M352.2,25.7c-3.7,0-7.1,0.6-10.1,1.9c-3,1.2-5.7,3-7.8,5.3c-2.2,2.3-3.9,5-5.1,8.2            c-1.2,3.2-1.8,6.7-1.8,10.6c0,3.9,0.6,7.5,1.8,10.7c1.2,3.2,2.8,5.9,4.9,8.2c2.1,2.2,4.6,4,7.5,5.2c2.9,1.2,6.1,1.8,9.6,1.8            c2.1,0,4-0.2,5.8-0.5c1.7-0.3,3.4-0.8,4.8-1.5c1.5-0.6,2.8-1.4,4-2.3c1.1-0.8,2.1-1.7,3-2.6l-1.1-1.2c-0.1-0.1-0.2-0.1-0.3,0            c-0.1,0-0.2,0.1-0.3,0.2c-1,0.9-2.1,1.8-3.2,2.5c-1.1,0.7-2.3,1.4-3.5,1.9c-1.3,0.5-2.7,0.9-4.1,1.1c-1.5,0.2-3.2,0.4-5.1,0.4            c-3,0-5.9-0.6-8.5-1.6c-2.6-1.1-4.9-2.7-6.8-4.7c-1.9-2-3.4-4.6-4.5-7.5c-1.1-2.9-1.6-6.3-1.6-10c0-3.6,0.5-6.9,1.6-9.9            c1.1-2.9,2.6-5.5,4.6-7.5c2-2.1,4.3-3.7,7-4.8c2.7-1.1,5.7-1.7,8.9-1.7c1.7,0,3.3,0.1,4.7,0.4c1.4,0.3,2.6,0.6,3.7,1            c1.1,0.4,2,0.8,2.8,1.3c0.8,0.5,1.4,0.9,1.9,1.3c0.5,0.4,1,0.7,1.3,1c0.3,0.3,0.5,0.3,0.5,0.3c0.3,0,0.4-0.1,0.4-0.2l0.8-1.2            c-1-0.9-2-1.6-3-2.3c-1.2-0.8-2.4-1.4-3.7-1.9c-1.3-0.5-2.8-0.9-4.3-1.2C355.7,25.9,354,25.7,352.2,25.7z"/>    </g>    <g>        <path class="st1" d="M410.3,25.7v3.1H383v21h22.7v3H383v21.6h27.3v3.1h-31.1V25.7H410.3z"/>        <path class="st2" d="M410.9,78.2h-32.3V25.1h32.3v4.3h-27.3v19.7h22.7v4.3h-22.7v20.4h27.3V78.2z M379.8,77h29.9v-1.9h-27.3V52.2            h22.7v-1.8h-22.7V28.2h27.3v-1.9h-29.9V77z"/>    </g>    <g>        <path class="st1" d="M456.8,25.1V33h-23.5v15.7h19.8v7.9h-19.8v21.6h-9.9v-53H456.8z"/>    </g>    <g>        <path class="st1" d="M514.3,51.6c0,3.9-0.6,7.5-1.9,10.8c-1.3,3.3-3.1,6.2-5.5,8.6c-2.3,2.4-5.2,4.3-8.5,5.7c-3.3,1.4-7,2-11,2            c-4,0-7.7-0.7-11-2c-3.3-1.4-6.1-3.2-8.5-5.7c-2.4-2.4-4.2-5.3-5.5-8.6s-1.9-6.9-1.9-10.8s0.6-7.5,1.9-10.8            c1.3-3.3,3.1-6.2,5.5-8.6c2.4-2.4,5.2-4.3,8.5-5.7c3.3-1.4,7-2,11-2c4,0,7.7,0.7,11,2.1c3.3,1.4,6.1,3.3,8.5,5.7            c2.3,2.4,4.2,5.3,5.5,8.6C513.6,44.1,514.3,47.7,514.3,51.6z M504.2,51.6c0-2.9-0.4-5.5-1.2-7.8c-0.8-2.3-1.9-4.3-3.3-5.9            c-1.4-1.6-3.2-2.8-5.3-3.7c-2.1-0.9-4.4-1.3-7-1.3c-2.6,0-4.9,0.4-7,1.3c-2.1,0.9-3.8,2.1-5.3,3.7c-1.5,1.6-2.6,3.6-3.4,5.9            c-0.8,2.3-1.2,4.9-1.2,7.8s0.4,5.5,1.2,7.8c0.8,2.3,1.9,4.3,3.4,5.9c1.5,1.6,3.2,2.8,5.3,3.7c2.1,0.9,4.4,1.3,7,1.3            c2.6,0,4.9-0.4,7-1.3c2.1-0.9,3.8-2.1,5.3-3.7c1.4-1.6,2.5-3.6,3.3-5.9C503.8,57.1,504.2,54.5,504.2,51.6z"/>    </g>    <g>        <path class="st1" d="M534.9,50.4l2.3,0c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.4-1.9c0.9-0.8,1.6-1.8,2-2.9            c0.4-1.1,0.7-2.4,0.7-3.7c0-2.7-0.9-4.8-2.7-6.2c-1.8-1.4-4.5-2.2-8.1-2.2H531v17.6v7.1v20.7h-9.9v-53h16.2c3.6,0,6.7,0.4,9.3,1.1            c2.6,0.7,4.7,1.8,6.3,3.1c1.6,1.3,2.9,3,3.6,4.8c0.8,1.9,1.2,3.9,1.2,6.2c0,1.8-0.3,3.5-0.8,5.1c-0.5,1.6-1.3,3-2.3,4.3            c-1,1.3-2.2,2.4-3.7,3.4c-1.5,1-3.1,1.8-5,2.3c1.2,0.7,2.3,1.7,3.2,3l13.3,19.6h-8.9c-0.9,0-1.6-0.2-2.2-0.5            c-0.6-0.3-1.1-0.8-1.5-1.5c0,0-11.1-17-11.1-17c-0.3-0.4-0.9-1.3-1.5-1.4c-1.2,0-2.4,0-3.5,0c0,0,0-6,0-6.4            C533.8,50.4,534.9,50.4,534.9,50.4z"/>    </g>    <g>        <path class="st1" d="M591.4,70.9c2.2,0,4.2-0.2,5.8-0.6c1.6-0.4,3.2-1,4.7-1.7v-12h-6.6c-0.6,0-1.1-0.2-1.5-0.5            c-0.4-0.4-0.6-0.8-0.6-1.3v-5.6h17.6V73c-1.3,1-2.7,1.8-4.2,2.5c-1.5,0.7-3,1.3-4.7,1.8c-1.7,0.5-3.4,0.8-5.3,1            c-1.9,0.2-3.9,0.3-6.1,0.3c-3.9,0-7.4-0.7-10.7-2c-3.3-1.3-6.1-3.2-8.4-5.6c-2.4-2.4-4.2-5.3-5.6-8.6c-1.3-3.3-2-7-2-10.9            c0-4,0.6-7.6,1.9-11c1.3-3.3,3.1-6.2,5.5-8.6c2.4-2.4,5.3-4.3,8.7-5.6c3.4-1.3,7.2-2,11.4-2c4.3,0,8.1,0.6,11.2,1.9            c3.2,1.3,5.8,3,8,5l-2.9,4.5c-0.6,0.9-1.3,1.4-2.2,1.4c-0.6,0-1.2-0.2-1.8-0.6c-0.8-0.5-1.6-0.9-2.4-1.4c-0.8-0.5-1.7-0.9-2.7-1.2            c-1-0.3-2.1-0.6-3.3-0.8c-1.2-0.2-2.7-0.3-4.3-0.3c-2.6,0-5,0.4-7.1,1.3c-2.1,0.9-3.9,2.1-5.4,3.8c-1.5,1.6-2.6,3.6-3.4,5.9            c-0.8,2.3-1.2,4.9-1.2,7.7c0,3.1,0.4,5.8,1.3,8.2c0.9,2.4,2.1,4.4,3.6,6s3.4,2.9,5.5,3.8S588.9,70.9,591.4,70.9z"/>    </g>    <g>        <path class="st1" d="M645.7,56.8h-16.1v13.4H653v7.9h-33.4v-53H653V33h-23.5v16.3H648v5.8C648,55.1,647.9,56.8,645.7,56.8z"/>    </g></g></svg>
            </a>
            <nav class="links">

                <a href="/support" title="Help">Help</a>
                
                <a href="/create" title="Create">Create</a>
                

                
                <a href="/user/registration/" title="Join" >Join</a>
                <a href="/auth/" title="Login">Login</a>
                
            </nav>
        </div>
    </section>

    <section class="sandiego l-header-nav-top hide-for-large">
        <div class="row">
            <a href="/" title="Home" class="sf-logo">
                

<svg  version="1.1"  xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"     viewBox="0 0 653 102.6" style="enable-background:new 0 0 653 102.6;" xml:space="preserve"><path class="st0" d="M66.9,54.5c0-19.1-6.8-27.8-10.4-31.1c-0.7-0.6-1.8-0.1-1.7,0.9c0.7,10.8-12.9,13.5-12.9,30.4h0    c0,0,0,0.1,0,0.1c0,10.3,7.8,18.7,17.4,18.7c9.6,0,17.4-8.4,17.4-18.7c0,0,0-0.1,0-0.1h0c0-4.8-1.8-9.4-3.6-12.8    c-0.4-0.7-1.4-0.4-1.3,0.2C75.1,56.7,66.9,65.7,66.9,54.5z"/><g>    <path class="st0" d="M46.2,94.8c-0.4,0-0.9-0.2-1.2-0.5L0.5,49.8c-0.6-0.6-0.6-1.7,0-2.4l47-47C47.8,0.2,48.2,0,48.6,0h13.5        c0.8,0,1.3,0.5,1.5,1c0.2,0.5,0.2,1.2-0.4,1.8L19.1,47c-0.9,0.9-0.9,2.3,0,3.2L54,85.2c0.6,0.6,0.6,1.7,0,2.4l-6.7,6.8        C47,94.6,46.6,94.8,46.2,94.8z"/></g><g>    <path class="st0" d="M55.1,102.6c-0.8,0-1.3-0.5-1.5-1c-0.2-0.5-0.2-1.2,0.4-1.8l44.2-44.2c0.4-0.4,0.7-1,0.7-1.6        c0-0.6-0.2-1.2-0.7-1.6L63.2,17.4c-0.6-0.6-0.6-1.7,0-2.4l6.8-6.8c0.3-0.3,0.7-0.5,1.2-0.5S72,8,72.3,8.3l44.4,44.5        c0.3,0.3,0.5,0.7,0.5,1.2s-0.2,0.9-0.5,1.2l-47,47c-0.3,0.3-0.7,0.5-1.2,0.5H55.1z"/></g><g>    <g>        <path class="st1" d="M167.2,32c-0.2,0.4-0.5,0.6-1,0.6c-0.3,0-0.7-0.2-1.2-0.7c-0.5-0.5-1.2-1-2-1.5c-0.9-0.6-1.9-1.1-3.2-1.5            c-1.3-0.5-2.9-0.7-4.8-0.7c-1.9,0-3.5,0.3-5,0.8c-1.4,0.5-2.6,1.3-3.6,2.2s-1.7,2-2.2,3.2c-0.5,1.2-0.8,2.5-0.8,3.8            c0,1.8,0.4,3.2,1.1,4.4c0.7,1.1,1.7,2.1,3,2.9c1.2,0.8,2.6,1.5,4.2,2c1.6,0.6,3.2,1.1,4.8,1.6c1.6,0.5,3.2,1.1,4.8,1.8            c1.6,0.6,2.9,1.5,4.2,2.4s2.2,2.2,3,3.6c0.7,1.4,1.1,3.2,1.1,5.3c0,2.2-0.4,4.2-1.1,6.1c-0.7,1.9-1.8,3.6-3.2,5            c-1.4,1.4-3.2,2.5-5.2,3.4c-2.1,0.8-4.4,1.2-7,1.2c-3.4,0-6.4-0.6-8.8-1.8c-2.5-1.2-4.6-2.9-6.5-5l1-1.6c0.3-0.4,0.6-0.5,1-0.5            c0.2,0,0.5,0.1,0.8,0.4c0.3,0.3,0.8,0.7,1.2,1.1c0.5,0.4,1.1,0.9,1.8,1.4c0.7,0.5,1.5,1,2.4,1.4c0.9,0.4,1.9,0.8,3.1,1.1            c1.2,0.3,2.5,0.4,4,0.4c2.1,0,3.9-0.3,5.5-0.9c1.6-0.6,3-1.5,4.1-2.5s2-2.4,2.6-3.8c0.6-1.5,0.9-3.1,0.9-4.7            c0-1.8-0.4-3.3-1.1-4.5c-0.7-1.2-1.7-2.2-3-3c-1.2-0.8-2.6-1.5-4.2-2c-1.6-0.5-3.2-1.1-4.8-1.6c-1.6-0.5-3.2-1.1-4.8-1.7            c-1.6-0.6-2.9-1.4-4.2-2.4c-1.2-1-2.2-2.2-3-3.7c-0.7-1.5-1.1-3.3-1.1-5.6c0-1.7,0.3-3.4,1-5c0.7-1.6,1.6-3,2.9-4.3            c1.3-1.2,2.8-2.2,4.7-3c1.9-0.7,4-1.1,6.4-1.1c2.7,0,5.1,0.4,7.3,1.3c2.1,0.9,4.1,2.2,5.9,3.9L167.2,32z"/>        <path class="st2" d="M152.9,78.8c-3.5,0-6.6-0.6-9.1-1.9c-2.5-1.2-4.8-3-6.7-5.1l-0.3-0.3l1.3-2c0.6-0.7,1.1-0.8,1.5-0.8            c0.4,0,0.8,0.2,1.2,0.6c0.3,0.3,0.8,0.7,1.3,1.1c0.5,0.4,1.1,0.9,1.7,1.4c0.7,0.5,1.4,0.9,2.3,1.3c0.9,0.4,1.9,0.8,3,1            c1.1,0.3,2.4,0.4,3.9,0.4c2,0,3.8-0.3,5.3-0.9c1.5-0.6,2.8-1.4,3.9-2.4c1-1,1.9-2.2,2.4-3.6c0.6-1.4,0.8-2.9,0.8-4.5            c0-1.7-0.3-3.1-1-4.2c-0.7-1.1-1.6-2-2.8-2.8c-1.2-0.8-2.5-1.4-4-1.9c-1.5-0.5-3.1-1.1-4.8-1.6c-1.7-0.5-3.3-1.1-4.8-1.7            c-1.6-0.7-3.1-1.5-4.3-2.5c-1.3-1-2.3-2.4-3.1-3.9c-0.8-1.6-1.2-3.5-1.2-5.8c0-1.8,0.3-3.6,1-5.3c0.7-1.7,1.7-3.2,3-4.5            c1.3-1.3,3-2.3,4.9-3.1c1.9-0.8,4.2-1.2,6.6-1.2c2.8,0,5.3,0.4,7.5,1.3c2.2,0.9,4.2,2.3,6.1,4.1l0.3,0.3l-1.1,2.1            c-0.6,1.1-1.7,1.4-3.1,0.1c-0.5-0.4-1.1-0.9-2-1.4c-0.8-0.5-1.9-1-3.1-1.5c-1.2-0.4-2.7-0.7-4.6-0.7c-1.8,0-3.4,0.3-4.8,0.8            c-1.3,0.5-2.5,1.2-3.4,2.1c-0.9,0.9-1.6,1.9-2.1,3c-0.5,1.1-0.7,2.4-0.7,3.6c0,1.6,0.3,3,1,4c0.7,1.1,1.6,2,2.8,2.8            c1.2,0.8,2.5,1.4,4,2c1.5,0.5,3.1,1.1,4.8,1.6c1.6,0.5,3.3,1.1,4.8,1.8c1.6,0.7,3.1,1.5,4.3,2.5c1.3,1,2.3,2.3,3.1,3.8            c0.8,1.5,1.2,3.4,1.2,5.6c0,2.2-0.4,4.4-1.2,6.4c-0.8,2-1.9,3.7-3.4,5.2c-1.5,1.5-3.3,2.6-5.4,3.5            C158.1,78.3,155.6,78.8,152.9,78.8z M138.4,71.3c1.7,1.9,3.7,3.4,6,4.5c2.4,1.2,5.3,1.8,8.6,1.8c2.5,0,4.8-0.4,6.8-1.2            c2-0.8,3.6-1.9,5-3.2c1.3-1.3,2.4-3,3.1-4.8c0.7-1.8,1.1-3.8,1.1-5.9c0-2-0.4-3.7-1-5.1c-0.7-1.3-1.6-2.5-2.8-3.4            c-1.2-0.9-2.5-1.7-4-2.4c-1.5-0.6-3.1-1.2-4.7-1.8c-1.6-0.5-3.2-1.1-4.8-1.6c-1.6-0.6-3-1.3-4.3-2.1c-1.3-0.8-2.3-1.9-3.1-3.1            c-0.8-1.2-1.2-2.8-1.2-4.7c0-1.4,0.3-2.8,0.8-4.1c0.5-1.3,1.3-2.5,2.3-3.4c1-1,2.3-1.8,3.8-2.3c1.5-0.6,3.3-0.8,5.2-0.8            c1.9,0,3.6,0.2,5,0.7c1.3,0.5,2.5,1,3.3,1.6c0.9,0.6,1.6,1.1,2.1,1.6c0.6,0.5,0.8,0.5,0.8,0.5c0.1,0,0.3,0,0.4-0.3l0.7-1.3            c-1.6-1.5-3.4-2.7-5.3-3.5c-2.1-0.8-4.4-1.2-7-1.2c-2.3,0-4.4,0.4-6.2,1.1c-1.8,0.7-3.3,1.7-4.5,2.8c-1.2,1.2-2.1,2.5-2.8,4.1            c-0.6,1.5-0.9,3.1-0.9,4.8c0,2.1,0.4,3.9,1.1,5.3c0.7,1.4,1.6,2.6,2.8,3.5c1.2,0.9,2.5,1.7,4,2.3c1.5,0.6,3.1,1.2,4.7,1.7            c1.6,0.5,3.2,1,4.8,1.6c1.6,0.6,3,1.2,4.3,2.1c1.3,0.8,2.4,1.9,3.1,3.2c0.8,1.3,1.2,2.9,1.2,4.9c0,1.8-0.3,3.4-0.9,5            c-0.6,1.6-1.5,2.9-2.7,4c-1.2,1.1-2.6,2-4.3,2.7c-1.7,0.6-3.6,1-5.7,1c-1.5,0-2.9-0.2-4.2-0.5c-1.2-0.3-2.3-0.7-3.2-1.1            c-0.9-0.4-1.8-0.9-2.5-1.5c-0.7-0.5-1.3-1-1.8-1.4c-0.5-0.4-0.9-0.8-1.2-1.1c-0.3-0.3-0.5-0.3-0.5-0.3c-0.1,0-0.3,0-0.5,0.3            L138.4,71.3z"/>    </g>    <g>        <path class="st1" d="M226.7,51.6c0,4-0.6,7.6-1.8,10.9c-1.2,3.3-2.9,6.1-5.1,8.4c-2.2,2.3-4.8,4.1-7.8,5.4            c-3,1.3-6.4,1.9-10.1,1.9c-3.6,0-7-0.6-10-1.9c-3-1.3-5.6-3-7.8-5.4c-2.2-2.3-3.9-5.1-5.1-8.4c-1.2-3.3-1.8-6.9-1.8-10.9            c0-4,0.6-7.6,1.8-10.9c1.2-3.3,2.9-6.1,5.1-8.4c2.2-2.3,4.8-4.1,7.8-5.4c3-1.3,6.4-1.9,10-1.9c3.7,0,7.1,0.6,10.1,1.9            c3,1.3,5.6,3,7.8,5.4c2.2,2.3,3.9,5.1,5.1,8.4C226.1,44,226.7,47.6,226.7,51.6z M222.8,51.6c0-3.6-0.5-6.9-1.5-9.8            c-1-2.9-2.4-5.3-4.2-7.3c-1.8-2-4-3.5-6.6-4.6c-2.6-1.1-5.4-1.6-8.5-1.6c-3.1,0-5.9,0.5-8.5,1.6c-2.6,1.1-4.8,2.6-6.6,4.6            c-1.8,2-3.3,4.4-4.3,7.3c-1,2.9-1.5,6.1-1.5,9.8c0,3.6,0.5,6.9,1.5,9.8c1,2.9,2.4,5.3,4.3,7.3c1.8,2,4,3.5,6.6,4.6            c2.6,1.1,5.4,1.6,8.5,1.6c3.1,0,6-0.5,8.5-1.6c2.6-1,4.8-2.6,6.6-4.6c1.8-2,3.2-4.4,4.2-7.3C222.3,58.5,222.8,55.3,222.8,51.6z"/>        <path class="st2" d="M202,78.7c-3.7,0-7.2-0.7-10.2-1.9c-3.1-1.3-5.8-3.1-8-5.5c-2.2-2.4-4-5.2-5.2-8.6c-1.2-3.3-1.9-7.1-1.9-11.1            c0-4,0.6-7.8,1.9-11.1c1.2-3.3,3-6.2,5.2-8.6c2.2-2.4,4.9-4.2,8-5.5c3.1-1.3,6.5-2,10.2-2c3.8,0,7.2,0.7,10.3,1.9            c3.1,1.3,5.8,3.1,8,5.5c2.2,2.4,4,5.3,5.2,8.6c1.2,3.3,1.8,7,1.8,11.1c0,4.1-0.6,7.8-1.8,11.1c-1.2,3.3-3,6.2-5.2,8.6            c-2.2,2.4-4.9,4.2-8,5.5C209.2,78.1,205.7,78.7,202,78.7z M202,25.7c-3.5,0-6.8,0.6-9.8,1.9c-2.9,1.2-5.5,3-7.6,5.2            c-2.1,2.2-3.8,5-4.9,8.2c-1.2,3.2-1.8,6.8-1.8,10.7c0,3.9,0.6,7.5,1.8,10.7c1.2,3.2,2.8,5.9,4.9,8.2c2.1,2.2,4.7,4,7.6,5.2            c2.9,1.2,6.2,1.8,9.8,1.8c3.6,0,6.9-0.6,9.8-1.8c2.9-1.2,5.5-3,7.6-5.2c2.1-2.2,3.8-5,4.9-8.1c1.2-3.2,1.8-6.8,1.8-10.7            c0-3.9-0.6-7.5-1.8-10.7c-1.2-3.2-2.8-5.9-4.9-8.2c-2.1-2.2-4.7-4-7.6-5.2C208.9,26.3,205.6,25.7,202,25.7z"/>    </g>    <g>        <path class="st1" d="M256.4,74.9c2.5,0,4.7-0.4,6.7-1.3c2-0.9,3.6-2.1,5-3.6c1.4-1.5,2.4-3.4,3.1-5.4c0.7-2.1,1.1-4.3,1.1-6.8            V25.7h3.7v32.1c0,2.9-0.5,5.5-1.4,8c-0.9,2.5-2.2,4.6-3.9,6.5c-1.7,1.8-3.8,3.3-6.2,4.3c-2.4,1-5.2,1.6-8.2,1.6            c-3,0-5.8-0.5-8.2-1.6c-2.4-1.1-4.5-2.5-6.2-4.3c-1.7-1.8-3-4-3.9-6.5c-0.9-2.5-1.4-5.2-1.4-8V25.7h3.8v32c0,2.4,0.4,4.7,1.1,6.8            c0.7,2.1,1.8,3.9,3.1,5.4c1.4,1.5,3,2.7,5,3.6C251.6,74.5,253.9,74.9,256.4,74.9z"/>        <path class="st2" d="M256.4,78.8c-3.1,0-5.9-0.5-8.4-1.6c-2.5-1.1-4.7-2.6-6.4-4.5c-1.7-1.9-3.1-4.2-4-6.7            c-0.9-2.5-1.4-5.3-1.4-8.2V25.1h5v32.7c0,2.3,0.4,4.5,1,6.6c0.7,2,1.7,3.8,3,5.2c1.3,1.5,2.9,2.6,4.8,3.5c1.9,0.8,4,1.3,6.4,1.3            c2.4,0,4.6-0.4,6.4-1.2c1.9-0.8,3.5-2,4.8-3.5c1.3-1.5,2.3-3.2,3-5.2c0.7-2,1-4.2,1-6.6V25.1h5v32.7c0,2.9-0.5,5.7-1.4,8.2            c-0.9,2.5-2.3,4.8-4,6.7c-1.7,1.9-3.9,3.4-6.4,4.5C262.3,78.3,259.5,78.8,256.4,78.8z M237.3,26.3v31.5c0,2.8,0.4,5.4,1.3,7.8            c0.9,2.4,2.1,4.5,3.8,6.3c1.6,1.8,3.6,3.2,6,4.2c2.3,1,5,1.5,8,1.5c2.9,0,5.6-0.5,8-1.5c2.3-1,4.4-2.4,6-4.2            c1.6-1.8,2.9-3.9,3.8-6.3c0.9-2.4,1.3-5,1.3-7.8V26.3h-2.5v31.5c0,2.5-0.4,4.8-1.1,7c-0.7,2.2-1.8,4.1-3.3,5.7            c-1.4,1.6-3.2,2.9-5.2,3.8c-2,0.9-4.4,1.4-6.9,1.4c-2.6,0-4.9-0.5-6.9-1.4c-2-0.9-3.8-2.2-5.2-3.8c-1.4-1.6-2.5-3.5-3.2-5.7            c-0.7-2.1-1.1-4.5-1.1-7V26.3H237.3z"/>    </g>    <g>        <path class="st1" d="M297.5,51.3c1,0,0.9,0,0.9,0l2.2,0c2.3,0,4.4-0.3,6.2-0.8c1.8-0.6,3.4-1.3,4.6-2.4c1.3-1,2.2-2.3,2.9-3.7            c0.7-1.4,1-3.1,1-4.9c0-3.7-1.2-6.4-3.6-8.2c-2.4-1.8-5.9-2.7-10.6-2.7h-9.5v22.7v2.8v23.5h-3.7V25.7h13.2c6,0,10.5,1.2,13.4,3.5            c3,2.3,4.4,5.7,4.4,10.2c0,2-0.3,3.8-1,5.4c-0.7,1.6-1.7,3.1-3,4.3c-1.3,1.2-2.8,2.3-4.6,3c-1.8,0.8-3.9,1.3-6.1,1.6            c0.6,0.4,1.1,0.9,1.6,1.5l17.9,22.4h-3.3c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.4-0.8-0.7l-16.6-21c-0.4-0.5-0.9-0.9-1.3-1.1            c-0.5-0.2-3.4-0.3-4.4-0.3C296.3,51.6,296.7,51.3,297.5,51.3z"/>        <path class="st2" d="M325,78.2h-4.5c-0.5,0-0.9-0.1-1.3-0.3c-0.4-0.2-0.7-0.5-1-0.9l-16.6-21c-0.4-0.5-0.7-0.8-1.1-1            c-0.4-0.1-2.8-0.3-4.1-0.3h-0.6v-2.6c0-0.9,0.2-1.4,1.8-1.4c0.9,0,1,0,1,0l2.2,0c2.2,0,4.2-0.3,6-0.8c1.7-0.5,3.2-1.3,4.4-2.3            c1.2-1,2.1-2.1,2.7-3.5c0.6-1.4,0.9-2.9,0.9-4.6c0-3.5-1.1-6-3.4-7.7c-2.3-1.7-5.7-2.6-10.2-2.6h-8.9v48.9h-5V25.1h13.9            c6.1,0,10.7,1.2,13.8,3.6c3.1,2.4,4.7,6,4.7,10.7c0,2.1-0.4,4-1.1,5.7c-0.7,1.7-1.8,3.2-3.1,4.5c-1.3,1.3-3,2.3-4.8,3.2            c-1.5,0.6-3.1,1.1-4.9,1.4c0.2,0.2,0.4,0.4,0.6,0.7L325,78.2z M296.9,53.5c1.1,0,3.4,0.1,4,0.4c0.6,0.3,1.1,0.7,1.6,1.3l16.6,21            c0.2,0.3,0.4,0.5,0.6,0.6c0.2,0.1,0.4,0.2,0.7,0.2h2l-17.1-21.4c-0.4-0.6-0.9-1-1.4-1.3l-1.5-0.9l1.8-0.2c2.2-0.2,4.2-0.7,5.9-1.5            c1.7-0.8,3.2-1.7,4.5-2.9c1.2-1.2,2.2-2.5,2.8-4.1c0.6-1.6,1-3.3,1-5.2c0-4.3-1.4-7.5-4.2-9.7c-2.8-2.2-7.2-3.3-13-3.3h-12.6V77            h2.5V28h10.1c4.7,0,8.4,0.9,10.9,2.8c2.6,1.9,3.9,4.8,3.9,8.7c0,1.9-0.4,3.6-1,5.1c-0.7,1.5-1.7,2.8-3.1,3.9            c-1.3,1.1-2.9,1.9-4.8,2.5c-1.9,0.6-4,0.9-6.4,0.9l-2.2,0c-0.1,0-0.2,0-0.9,0C297.3,51.9,297,51.9,296.9,53.5z"/>    </g>    <g>        <path class="st1" d="M367.6,68.8c0.2,0,0.5,0.1,0.6,0.3l1.5,1.6c-1.1,1.1-2.2,2.2-3.5,3.1c-1.3,0.9-2.7,1.7-4.2,2.3            c-1.5,0.6-3.2,1.1-4.9,1.5c-1.8,0.4-3.8,0.5-5.9,0.5c-3.6,0-6.9-0.6-9.9-1.9c-3-1.3-5.6-3-7.7-5.4c-2.1-2.3-3.8-5.1-5-8.4            c-1.2-3.3-1.8-6.9-1.8-10.9c0-3.9,0.6-7.5,1.9-10.8c1.2-3.3,3-6,5.2-8.4c2.2-2.3,4.9-4.1,8-5.4c3.1-1.3,6.6-1.9,10.3-1.9            c1.9,0,3.6,0.1,5.2,0.4c1.6,0.3,3,0.7,4.4,1.2c1.4,0.5,2.6,1.2,3.8,2c1.2,0.8,2.4,1.7,3.5,2.7l-1.1,1.6c-0.2,0.3-0.5,0.4-0.9,0.4            c-0.2,0-0.5-0.1-0.8-0.4c-0.3-0.3-0.8-0.6-1.3-1c-0.5-0.4-1.2-0.8-1.9-1.2c-0.7-0.5-1.6-0.9-2.7-1.2c-1-0.4-2.2-0.7-3.6-1            c-1.3-0.3-2.9-0.4-4.6-0.4c-3.2,0-6.1,0.5-8.7,1.6c-2.6,1.1-4.9,2.6-6.8,4.7c-1.9,2-3.4,4.5-4.5,7.3s-1.6,6.1-1.6,9.7            c0,3.7,0.5,6.9,1.6,9.8c1.1,2.9,2.5,5.3,4.4,7.3c1.9,2,4.1,3.5,6.6,4.6c2.5,1.1,5.3,1.6,8.2,1.6c1.9,0,3.5-0.1,5-0.4            c1.5-0.2,2.8-0.6,4-1.1c1.2-0.5,2.4-1.1,3.4-1.8c1.1-0.7,2.1-1.5,3.1-2.5c0.1-0.1,0.2-0.2,0.3-0.2            C367.3,68.9,367.5,68.8,367.6,68.8z"/>        <path class="st2" d="M351.1,78.8c-3.7,0-7.1-0.7-10.1-1.9c-3.1-1.3-5.7-3.1-7.9-5.5c-2.2-2.4-3.9-5.2-5.1-8.6            c-1.2-3.3-1.8-7.1-1.8-11.1c0-4,0.6-7.7,1.9-11c1.3-3.3,3.1-6.2,5.3-8.6c2.3-2.4,5.1-4.3,8.2-5.6c3.2-1.3,6.7-2,10.6-2            c1.9,0,3.7,0.1,5.3,0.4c1.6,0.3,3.1,0.7,4.5,1.2c1.4,0.5,2.7,1.2,3.9,2c1.2,0.8,2.4,1.7,3.6,2.8l0.4,0.4l-1.4,2.1            c-0.2,0.3-0.6,0.7-1.4,0.7c-0.4,0-0.7-0.2-1.2-0.5c-0.3-0.3-0.8-0.6-1.3-0.9c-0.5-0.4-1.1-0.8-1.9-1.2c-0.7-0.4-1.6-0.8-2.6-1.2            c-1-0.4-2.2-0.7-3.5-0.9c-1.3-0.2-2.8-0.4-4.5-0.4c-3.1,0-5.9,0.5-8.5,1.6c-2.5,1.1-4.8,2.6-6.6,4.5c-1.8,1.9-3.3,4.3-4.3,7.1            c-1,2.8-1.6,6-1.6,9.4c0,3.6,0.5,6.8,1.5,9.6c1,2.8,2.4,5.2,4.2,7.1c1.8,1.9,3.9,3.4,6.4,4.4c2.4,1,5.1,1.5,8,1.5            c1.8,0,3.5-0.1,4.9-0.4c1.4-0.2,2.7-0.6,3.9-1.1c1.2-0.5,2.3-1.1,3.3-1.7c1-0.7,2-1.5,3-2.4c0.2-0.2,0.3-0.2,0.5-0.3            c0.5-0.3,1.3-0.2,1.7,0.3l1.9,2l-0.4,0.4c-1.1,1.2-2.3,2.2-3.6,3.2c-1.3,0.9-2.7,1.8-4.3,2.4c-1.5,0.7-3.2,1.2-5.1,1.5            C355.3,78.6,353.3,78.8,351.1,78.8z M352.2,25.7c-3.7,0-7.1,0.6-10.1,1.9c-3,1.2-5.7,3-7.8,5.3c-2.2,2.3-3.9,5-5.1,8.2            c-1.2,3.2-1.8,6.7-1.8,10.6c0,3.9,0.6,7.5,1.8,10.7c1.2,3.2,2.8,5.9,4.9,8.2c2.1,2.2,4.6,4,7.5,5.2c2.9,1.2,6.1,1.8,9.6,1.8            c2.1,0,4-0.2,5.8-0.5c1.7-0.3,3.4-0.8,4.8-1.5c1.5-0.6,2.8-1.4,4-2.3c1.1-0.8,2.1-1.7,3-2.6l-1.1-1.2c-0.1-0.1-0.2-0.1-0.3,0            c-0.1,0-0.2,0.1-0.3,0.2c-1,0.9-2.1,1.8-3.2,2.5c-1.1,0.7-2.3,1.4-3.5,1.9c-1.3,0.5-2.7,0.9-4.1,1.1c-1.5,0.2-3.2,0.4-5.1,0.4            c-3,0-5.9-0.6-8.5-1.6c-2.6-1.1-4.9-2.7-6.8-4.7c-1.9-2-3.4-4.6-4.5-7.5c-1.1-2.9-1.6-6.3-1.6-10c0-3.6,0.5-6.9,1.6-9.9            c1.1-2.9,2.6-5.5,4.6-7.5c2-2.1,4.3-3.7,7-4.8c2.7-1.1,5.7-1.7,8.9-1.7c1.7,0,3.3,0.1,4.7,0.4c1.4,0.3,2.6,0.6,3.7,1            c1.1,0.4,2,0.8,2.8,1.3c0.8,0.5,1.4,0.9,1.9,1.3c0.5,0.4,1,0.7,1.3,1c0.3,0.3,0.5,0.3,0.5,0.3c0.3,0,0.4-0.1,0.4-0.2l0.8-1.2            c-1-0.9-2-1.6-3-2.3c-1.2-0.8-2.4-1.4-3.7-1.9c-1.3-0.5-2.8-0.9-4.3-1.2C355.7,25.9,354,25.7,352.2,25.7z"/>    </g>    <g>        <path class="st1" d="M410.3,25.7v3.1H383v21h22.7v3H383v21.6h27.3v3.1h-31.1V25.7H410.3z"/>        <path class="st2" d="M410.9,78.2h-32.3V25.1h32.3v4.3h-27.3v19.7h22.7v4.3h-22.7v20.4h27.3V78.2z M379.8,77h29.9v-1.9h-27.3V52.2            h22.7v-1.8h-22.7V28.2h27.3v-1.9h-29.9V77z"/>    </g>    <g>        <path class="st1" d="M456.8,25.1V33h-23.5v15.7h19.8v7.9h-19.8v21.6h-9.9v-53H456.8z"/>    </g>    <g>        <path class="st1" d="M514.3,51.6c0,3.9-0.6,7.5-1.9,10.8c-1.3,3.3-3.1,6.2-5.5,8.6c-2.3,2.4-5.2,4.3-8.5,5.7c-3.3,1.4-7,2-11,2            c-4,0-7.7-0.7-11-2c-3.3-1.4-6.1-3.2-8.5-5.7c-2.4-2.4-4.2-5.3-5.5-8.6s-1.9-6.9-1.9-10.8s0.6-7.5,1.9-10.8            c1.3-3.3,3.1-6.2,5.5-8.6c2.4-2.4,5.2-4.3,8.5-5.7c3.3-1.4,7-2,11-2c4,0,7.7,0.7,11,2.1c3.3,1.4,6.1,3.3,8.5,5.7            c2.3,2.4,4.2,5.3,5.5,8.6C513.6,44.1,514.3,47.7,514.3,51.6z M504.2,51.6c0-2.9-0.4-5.5-1.2-7.8c-0.8-2.3-1.9-4.3-3.3-5.9            c-1.4-1.6-3.2-2.8-5.3-3.7c-2.1-0.9-4.4-1.3-7-1.3c-2.6,0-4.9,0.4-7,1.3c-2.1,0.9-3.8,2.1-5.3,3.7c-1.5,1.6-2.6,3.6-3.4,5.9            c-0.8,2.3-1.2,4.9-1.2,7.8s0.4,5.5,1.2,7.8c0.8,2.3,1.9,4.3,3.4,5.9c1.5,1.6,3.2,2.8,5.3,3.7c2.1,0.9,4.4,1.3,7,1.3            c2.6,0,4.9-0.4,7-1.3c2.1-0.9,3.8-2.1,5.3-3.7c1.4-1.6,2.5-3.6,3.3-5.9C503.8,57.1,504.2,54.5,504.2,51.6z"/>    </g>    <g>        <path class="st1" d="M534.9,50.4l2.3,0c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.4-1.9c0.9-0.8,1.6-1.8,2-2.9            c0.4-1.1,0.7-2.4,0.7-3.7c0-2.7-0.9-4.8-2.7-6.2c-1.8-1.4-4.5-2.2-8.1-2.2H531v17.6v7.1v20.7h-9.9v-53h16.2c3.6,0,6.7,0.4,9.3,1.1            c2.6,0.7,4.7,1.8,6.3,3.1c1.6,1.3,2.9,3,3.6,4.8c0.8,1.9,1.2,3.9,1.2,6.2c0,1.8-0.3,3.5-0.8,5.1c-0.5,1.6-1.3,3-2.3,4.3            c-1,1.3-2.2,2.4-3.7,3.4c-1.5,1-3.1,1.8-5,2.3c1.2,0.7,2.3,1.7,3.2,3l13.3,19.6h-8.9c-0.9,0-1.6-0.2-2.2-0.5            c-0.6-0.3-1.1-0.8-1.5-1.5c0,0-11.1-17-11.1-17c-0.3-0.4-0.9-1.3-1.5-1.4c-1.2,0-2.4,0-3.5,0c0,0,0-6,0-6.4            C533.8,50.4,534.9,50.4,534.9,50.4z"/>    </g>    <g>        <path class="st1" d="M591.4,70.9c2.2,0,4.2-0.2,5.8-0.6c1.6-0.4,3.2-1,4.7-1.7v-12h-6.6c-0.6,0-1.1-0.2-1.5-0.5            c-0.4-0.4-0.6-0.8-0.6-1.3v-5.6h17.6V73c-1.3,1-2.7,1.8-4.2,2.5c-1.5,0.7-3,1.3-4.7,1.8c-1.7,0.5-3.4,0.8-5.3,1            c-1.9,0.2-3.9,0.3-6.1,0.3c-3.9,0-7.4-0.7-10.7-2c-3.3-1.3-6.1-3.2-8.4-5.6c-2.4-2.4-4.2-5.3-5.6-8.6c-1.3-3.3-2-7-2-10.9            c0-4,0.6-7.6,1.9-11c1.3-3.3,3.1-6.2,5.5-8.6c2.4-2.4,5.3-4.3,8.7-5.6c3.4-1.3,7.2-2,11.4-2c4.3,0,8.1,0.6,11.2,1.9            c3.2,1.3,5.8,3,8,5l-2.9,4.5c-0.6,0.9-1.3,1.4-2.2,1.4c-0.6,0-1.2-0.2-1.8-0.6c-0.8-0.5-1.6-0.9-2.4-1.4c-0.8-0.5-1.7-0.9-2.7-1.2            c-1-0.3-2.1-0.6-3.3-0.8c-1.2-0.2-2.7-0.3-4.3-0.3c-2.6,0-5,0.4-7.1,1.3c-2.1,0.9-3.9,2.1-5.4,3.8c-1.5,1.6-2.6,3.6-3.4,5.9            c-0.8,2.3-1.2,4.9-1.2,7.7c0,3.1,0.4,5.8,1.3,8.2c0.9,2.4,2.1,4.4,3.6,6s3.4,2.9,5.5,3.8S588.9,70.9,591.4,70.9z"/>    </g>    <g>        <path class="st1" d="M645.7,56.8h-16.1v13.4H653v7.9h-33.4v-53H653V33h-23.5v16.3H648v5.8C648,55.1,647.9,56.8,645.7,56.8z"/>    </g></g></svg>
            </a>
            <div class="title-bar-right">
                <button type="button" class="menu-icon" data-toggle="offCanvas"></button>
            </div>
        </div>
    </section>
    <section class="sandiego l-header-nav-bottom">
        <nav class="row">
            <a href="/" title="Home" class="sf-logo">
                

<svg  version="1.1"  xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"     viewBox="0 0 653 102.6" style="enable-background:new 0 0 653 102.6;" xml:space="preserve"><path class="st0" d="M66.9,54.5c0-19.1-6.8-27.8-10.4-31.1c-0.7-0.6-1.8-0.1-1.7,0.9c0.7,10.8-12.9,13.5-12.9,30.4h0    c0,0,0,0.1,0,0.1c0,10.3,7.8,18.7,17.4,18.7c9.6,0,17.4-8.4,17.4-18.7c0,0,0-0.1,0-0.1h0c0-4.8-1.8-9.4-3.6-12.8    c-0.4-0.7-1.4-0.4-1.3,0.2C75.1,56.7,66.9,65.7,66.9,54.5z"/><g>    <path class="st0" d="M46.2,94.8c-0.4,0-0.9-0.2-1.2-0.5L0.5,49.8c-0.6-0.6-0.6-1.7,0-2.4l47-47C47.8,0.2,48.2,0,48.6,0h13.5        c0.8,0,1.3,0.5,1.5,1c0.2,0.5,0.2,1.2-0.4,1.8L19.1,47c-0.9,0.9-0.9,2.3,0,3.2L54,85.2c0.6,0.6,0.6,1.7,0,2.4l-6.7,6.8        C47,94.6,46.6,94.8,46.2,94.8z"/></g><g>    <path class="st0" d="M55.1,102.6c-0.8,0-1.3-0.5-1.5-1c-0.2-0.5-0.2-1.2,0.4-1.8l44.2-44.2c0.4-0.4,0.7-1,0.7-1.6        c0-0.6-0.2-1.2-0.7-1.6L63.2,17.4c-0.6-0.6-0.6-1.7,0-2.4l6.8-6.8c0.3-0.3,0.7-0.5,1.2-0.5S72,8,72.3,8.3l44.4,44.5        c0.3,0.3,0.5,0.7,0.5,1.2s-0.2,0.9-0.5,1.2l-47,47c-0.3,0.3-0.7,0.5-1.2,0.5H55.1z"/></g><g>    <g>        <path class="st1" d="M167.2,32c-0.2,0.4-0.5,0.6-1,0.6c-0.3,0-0.7-0.2-1.2-0.7c-0.5-0.5-1.2-1-2-1.5c-0.9-0.6-1.9-1.1-3.2-1.5            c-1.3-0.5-2.9-0.7-4.8-0.7c-1.9,0-3.5,0.3-5,0.8c-1.4,0.5-2.6,1.3-3.6,2.2s-1.7,2-2.2,3.2c-0.5,1.2-0.8,2.5-0.8,3.8            c0,1.8,0.4,3.2,1.1,4.4c0.7,1.1,1.7,2.1,3,2.9c1.2,0.8,2.6,1.5,4.2,2c1.6,0.6,3.2,1.1,4.8,1.6c1.6,0.5,3.2,1.1,4.8,1.8            c1.6,0.6,2.9,1.5,4.2,2.4s2.2,2.2,3,3.6c0.7,1.4,1.1,3.2,1.1,5.3c0,2.2-0.4,4.2-1.1,6.1c-0.7,1.9-1.8,3.6-3.2,5            c-1.4,1.4-3.2,2.5-5.2,3.4c-2.1,0.8-4.4,1.2-7,1.2c-3.4,0-6.4-0.6-8.8-1.8c-2.5-1.2-4.6-2.9-6.5-5l1-1.6c0.3-0.4,0.6-0.5,1-0.5            c0.2,0,0.5,0.1,0.8,0.4c0.3,0.3,0.8,0.7,1.2,1.1c0.5,0.4,1.1,0.9,1.8,1.4c0.7,0.5,1.5,1,2.4,1.4c0.9,0.4,1.9,0.8,3.1,1.1            c1.2,0.3,2.5,0.4,4,0.4c2.1,0,3.9-0.3,5.5-0.9c1.6-0.6,3-1.5,4.1-2.5s2-2.4,2.6-3.8c0.6-1.5,0.9-3.1,0.9-4.7            c0-1.8-0.4-3.3-1.1-4.5c-0.7-1.2-1.7-2.2-3-3c-1.2-0.8-2.6-1.5-4.2-2c-1.6-0.5-3.2-1.1-4.8-1.6c-1.6-0.5-3.2-1.1-4.8-1.7            c-1.6-0.6-2.9-1.4-4.2-2.4c-1.2-1-2.2-2.2-3-3.7c-0.7-1.5-1.1-3.3-1.1-5.6c0-1.7,0.3-3.4,1-5c0.7-1.6,1.6-3,2.9-4.3            c1.3-1.2,2.8-2.2,4.7-3c1.9-0.7,4-1.1,6.4-1.1c2.7,0,5.1,0.4,7.3,1.3c2.1,0.9,4.1,2.2,5.9,3.9L167.2,32z"/>        <path class="st2" d="M152.9,78.8c-3.5,0-6.6-0.6-9.1-1.9c-2.5-1.2-4.8-3-6.7-5.1l-0.3-0.3l1.3-2c0.6-0.7,1.1-0.8,1.5-0.8            c0.4,0,0.8,0.2,1.2,0.6c0.3,0.3,0.8,0.7,1.3,1.1c0.5,0.4,1.1,0.9,1.7,1.4c0.7,0.5,1.4,0.9,2.3,1.3c0.9,0.4,1.9,0.8,3,1            c1.1,0.3,2.4,0.4,3.9,0.4c2,0,3.8-0.3,5.3-0.9c1.5-0.6,2.8-1.4,3.9-2.4c1-1,1.9-2.2,2.4-3.6c0.6-1.4,0.8-2.9,0.8-4.5            c0-1.7-0.3-3.1-1-4.2c-0.7-1.1-1.6-2-2.8-2.8c-1.2-0.8-2.5-1.4-4-1.9c-1.5-0.5-3.1-1.1-4.8-1.6c-1.7-0.5-3.3-1.1-4.8-1.7            c-1.6-0.7-3.1-1.5-4.3-2.5c-1.3-1-2.3-2.4-3.1-3.9c-0.8-1.6-1.2-3.5-1.2-5.8c0-1.8,0.3-3.6,1-5.3c0.7-1.7,1.7-3.2,3-4.5            c1.3-1.3,3-2.3,4.9-3.1c1.9-0.8,4.2-1.2,6.6-1.2c2.8,0,5.3,0.4,7.5,1.3c2.2,0.9,4.2,2.3,6.1,4.1l0.3,0.3l-1.1,2.1            c-0.6,1.1-1.7,1.4-3.1,0.1c-0.5-0.4-1.1-0.9-2-1.4c-0.8-0.5-1.9-1-3.1-1.5c-1.2-0.4-2.7-0.7-4.6-0.7c-1.8,0-3.4,0.3-4.8,0.8            c-1.3,0.5-2.5,1.2-3.4,2.1c-0.9,0.9-1.6,1.9-2.1,3c-0.5,1.1-0.7,2.4-0.7,3.6c0,1.6,0.3,3,1,4c0.7,1.1,1.6,2,2.8,2.8            c1.2,0.8,2.5,1.4,4,2c1.5,0.5,3.1,1.1,4.8,1.6c1.6,0.5,3.3,1.1,4.8,1.8c1.6,0.7,3.1,1.5,4.3,2.5c1.3,1,2.3,2.3,3.1,3.8            c0.8,1.5,1.2,3.4,1.2,5.6c0,2.2-0.4,4.4-1.2,6.4c-0.8,2-1.9,3.7-3.4,5.2c-1.5,1.5-3.3,2.6-5.4,3.5            C158.1,78.3,155.6,78.8,152.9,78.8z M138.4,71.3c1.7,1.9,3.7,3.4,6,4.5c2.4,1.2,5.3,1.8,8.6,1.8c2.5,0,4.8-0.4,6.8-1.2            c2-0.8,3.6-1.9,5-3.2c1.3-1.3,2.4-3,3.1-4.8c0.7-1.8,1.1-3.8,1.1-5.9c0-2-0.4-3.7-1-5.1c-0.7-1.3-1.6-2.5-2.8-3.4            c-1.2-0.9-2.5-1.7-4-2.4c-1.5-0.6-3.1-1.2-4.7-1.8c-1.6-0.5-3.2-1.1-4.8-1.6c-1.6-0.6-3-1.3-4.3-2.1c-1.3-0.8-2.3-1.9-3.1-3.1            c-0.8-1.2-1.2-2.8-1.2-4.7c0-1.4,0.3-2.8,0.8-4.1c0.5-1.3,1.3-2.5,2.3-3.4c1-1,2.3-1.8,3.8-2.3c1.5-0.6,3.3-0.8,5.2-0.8            c1.9,0,3.6,0.2,5,0.7c1.3,0.5,2.5,1,3.3,1.6c0.9,0.6,1.6,1.1,2.1,1.6c0.6,0.5,0.8,0.5,0.8,0.5c0.1,0,0.3,0,0.4-0.3l0.7-1.3            c-1.6-1.5-3.4-2.7-5.3-3.5c-2.1-0.8-4.4-1.2-7-1.2c-2.3,0-4.4,0.4-6.2,1.1c-1.8,0.7-3.3,1.7-4.5,2.8c-1.2,1.2-2.1,2.5-2.8,4.1            c-0.6,1.5-0.9,3.1-0.9,4.8c0,2.1,0.4,3.9,1.1,5.3c0.7,1.4,1.6,2.6,2.8,3.5c1.2,0.9,2.5,1.7,4,2.3c1.5,0.6,3.1,1.2,4.7,1.7            c1.6,0.5,3.2,1,4.8,1.6c1.6,0.6,3,1.2,4.3,2.1c1.3,0.8,2.4,1.9,3.1,3.2c0.8,1.3,1.2,2.9,1.2,4.9c0,1.8-0.3,3.4-0.9,5            c-0.6,1.6-1.5,2.9-2.7,4c-1.2,1.1-2.6,2-4.3,2.7c-1.7,0.6-3.6,1-5.7,1c-1.5,0-2.9-0.2-4.2-0.5c-1.2-0.3-2.3-0.7-3.2-1.1            c-0.9-0.4-1.8-0.9-2.5-1.5c-0.7-0.5-1.3-1-1.8-1.4c-0.5-0.4-0.9-0.8-1.2-1.1c-0.3-0.3-0.5-0.3-0.5-0.3c-0.1,0-0.3,0-0.5,0.3            L138.4,71.3z"/>    </g>    <g>        <path class="st1" d="M226.7,51.6c0,4-0.6,7.6-1.8,10.9c-1.2,3.3-2.9,6.1-5.1,8.4c-2.2,2.3-4.8,4.1-7.8,5.4            c-3,1.3-6.4,1.9-10.1,1.9c-3.6,0-7-0.6-10-1.9c-3-1.3-5.6-3-7.8-5.4c-2.2-2.3-3.9-5.1-5.1-8.4c-1.2-3.3-1.8-6.9-1.8-10.9            c0-4,0.6-7.6,1.8-10.9c1.2-3.3,2.9-6.1,5.1-8.4c2.2-2.3,4.8-4.1,7.8-5.4c3-1.3,6.4-1.9,10-1.9c3.7,0,7.1,0.6,10.1,1.9            c3,1.3,5.6,3,7.8,5.4c2.2,2.3,3.9,5.1,5.1,8.4C226.1,44,226.7,47.6,226.7,51.6z M222.8,51.6c0-3.6-0.5-6.9-1.5-9.8            c-1-2.9-2.4-5.3-4.2-7.3c-1.8-2-4-3.5-6.6-4.6c-2.6-1.1-5.4-1.6-8.5-1.6c-3.1,0-5.9,0.5-8.5,1.6c-2.6,1.1-4.8,2.6-6.6,4.6            c-1.8,2-3.3,4.4-4.3,7.3c-1,2.9-1.5,6.1-1.5,9.8c0,3.6,0.5,6.9,1.5,9.8c1,2.9,2.4,5.3,4.3,7.3c1.8,2,4,3.5,6.6,4.6            c2.6,1.1,5.4,1.6,8.5,1.6c3.1,0,6-0.5,8.5-1.6c2.6-1,4.8-2.6,6.6-4.6c1.8-2,3.2-4.4,4.2-7.3C222.3,58.5,222.8,55.3,222.8,51.6z"/>        <path class="st2" d="M202,78.7c-3.7,0-7.2-0.7-10.2-1.9c-3.1-1.3-5.8-3.1-8-5.5c-2.2-2.4-4-5.2-5.2-8.6c-1.2-3.3-1.9-7.1-1.9-11.1            c0-4,0.6-7.8,1.9-11.1c1.2-3.3,3-6.2,5.2-8.6c2.2-2.4,4.9-4.2,8-5.5c3.1-1.3,6.5-2,10.2-2c3.8,0,7.2,0.7,10.3,1.9            c3.1,1.3,5.8,3.1,8,5.5c2.2,2.4,4,5.3,5.2,8.6c1.2,3.3,1.8,7,1.8,11.1c0,4.1-0.6,7.8-1.8,11.1c-1.2,3.3-3,6.2-5.2,8.6            c-2.2,2.4-4.9,4.2-8,5.5C209.2,78.1,205.7,78.7,202,78.7z M202,25.7c-3.5,0-6.8,0.6-9.8,1.9c-2.9,1.2-5.5,3-7.6,5.2            c-2.1,2.2-3.8,5-4.9,8.2c-1.2,3.2-1.8,6.8-1.8,10.7c0,3.9,0.6,7.5,1.8,10.7c1.2,3.2,2.8,5.9,4.9,8.2c2.1,2.2,4.7,4,7.6,5.2            c2.9,1.2,6.2,1.8,9.8,1.8c3.6,0,6.9-0.6,9.8-1.8c2.9-1.2,5.5-3,7.6-5.2c2.1-2.2,3.8-5,4.9-8.1c1.2-3.2,1.8-6.8,1.8-10.7            c0-3.9-0.6-7.5-1.8-10.7c-1.2-3.2-2.8-5.9-4.9-8.2c-2.1-2.2-4.7-4-7.6-5.2C208.9,26.3,205.6,25.7,202,25.7z"/>    </g>    <g>        <path class="st1" d="M256.4,74.9c2.5,0,4.7-0.4,6.7-1.3c2-0.9,3.6-2.1,5-3.6c1.4-1.5,2.4-3.4,3.1-5.4c0.7-2.1,1.1-4.3,1.1-6.8            V25.7h3.7v32.1c0,2.9-0.5,5.5-1.4,8c-0.9,2.5-2.2,4.6-3.9,6.5c-1.7,1.8-3.8,3.3-6.2,4.3c-2.4,1-5.2,1.6-8.2,1.6            c-3,0-5.8-0.5-8.2-1.6c-2.4-1.1-4.5-2.5-6.2-4.3c-1.7-1.8-3-4-3.9-6.5c-0.9-2.5-1.4-5.2-1.4-8V25.7h3.8v32c0,2.4,0.4,4.7,1.1,6.8            c0.7,2.1,1.8,3.9,3.1,5.4c1.4,1.5,3,2.7,5,3.6C251.6,74.5,253.9,74.9,256.4,74.9z"/>        <path class="st2" d="M256.4,78.8c-3.1,0-5.9-0.5-8.4-1.6c-2.5-1.1-4.7-2.6-6.4-4.5c-1.7-1.9-3.1-4.2-4-6.7            c-0.9-2.5-1.4-5.3-1.4-8.2V25.1h5v32.7c0,2.3,0.4,4.5,1,6.6c0.7,2,1.7,3.8,3,5.2c1.3,1.5,2.9,2.6,4.8,3.5c1.9,0.8,4,1.3,6.4,1.3            c2.4,0,4.6-0.4,6.4-1.2c1.9-0.8,3.5-2,4.8-3.5c1.3-1.5,2.3-3.2,3-5.2c0.7-2,1-4.2,1-6.6V25.1h5v32.7c0,2.9-0.5,5.7-1.4,8.2            c-0.9,2.5-2.3,4.8-4,6.7c-1.7,1.9-3.9,3.4-6.4,4.5C262.3,78.3,259.5,78.8,256.4,78.8z M237.3,26.3v31.5c0,2.8,0.4,5.4,1.3,7.8            c0.9,2.4,2.1,4.5,3.8,6.3c1.6,1.8,3.6,3.2,6,4.2c2.3,1,5,1.5,8,1.5c2.9,0,5.6-0.5,8-1.5c2.3-1,4.4-2.4,6-4.2            c1.6-1.8,2.9-3.9,3.8-6.3c0.9-2.4,1.3-5,1.3-7.8V26.3h-2.5v31.5c0,2.5-0.4,4.8-1.1,7c-0.7,2.2-1.8,4.1-3.3,5.7            c-1.4,1.6-3.2,2.9-5.2,3.8c-2,0.9-4.4,1.4-6.9,1.4c-2.6,0-4.9-0.5-6.9-1.4c-2-0.9-3.8-2.2-5.2-3.8c-1.4-1.6-2.5-3.5-3.2-5.7            c-0.7-2.1-1.1-4.5-1.1-7V26.3H237.3z"/>    </g>    <g>        <path class="st1" d="M297.5,51.3c1,0,0.9,0,0.9,0l2.2,0c2.3,0,4.4-0.3,6.2-0.8c1.8-0.6,3.4-1.3,4.6-2.4c1.3-1,2.2-2.3,2.9-3.7            c0.7-1.4,1-3.1,1-4.9c0-3.7-1.2-6.4-3.6-8.2c-2.4-1.8-5.9-2.7-10.6-2.7h-9.5v22.7v2.8v23.5h-3.7V25.7h13.2c6,0,10.5,1.2,13.4,3.5            c3,2.3,4.4,5.7,4.4,10.2c0,2-0.3,3.8-1,5.4c-0.7,1.6-1.7,3.1-3,4.3c-1.3,1.2-2.8,2.3-4.6,3c-1.8,0.8-3.9,1.3-6.1,1.6            c0.6,0.4,1.1,0.9,1.6,1.5l17.9,22.4h-3.3c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.4-0.8-0.7l-16.6-21c-0.4-0.5-0.9-0.9-1.3-1.1            c-0.5-0.2-3.4-0.3-4.4-0.3C296.3,51.6,296.7,51.3,297.5,51.3z"/>        <path class="st2" d="M325,78.2h-4.5c-0.5,0-0.9-0.1-1.3-0.3c-0.4-0.2-0.7-0.5-1-0.9l-16.6-21c-0.4-0.5-0.7-0.8-1.1-1            c-0.4-0.1-2.8-0.3-4.1-0.3h-0.6v-2.6c0-0.9,0.2-1.4,1.8-1.4c0.9,0,1,0,1,0l2.2,0c2.2,0,4.2-0.3,6-0.8c1.7-0.5,3.2-1.3,4.4-2.3            c1.2-1,2.1-2.1,2.7-3.5c0.6-1.4,0.9-2.9,0.9-4.6c0-3.5-1.1-6-3.4-7.7c-2.3-1.7-5.7-2.6-10.2-2.6h-8.9v48.9h-5V25.1h13.9            c6.1,0,10.7,1.2,13.8,3.6c3.1,2.4,4.7,6,4.7,10.7c0,2.1-0.4,4-1.1,5.7c-0.7,1.7-1.8,3.2-3.1,4.5c-1.3,1.3-3,2.3-4.8,3.2            c-1.5,0.6-3.1,1.1-4.9,1.4c0.2,0.2,0.4,0.4,0.6,0.7L325,78.2z M296.9,53.5c1.1,0,3.4,0.1,4,0.4c0.6,0.3,1.1,0.7,1.6,1.3l16.6,21            c0.2,0.3,0.4,0.5,0.6,0.6c0.2,0.1,0.4,0.2,0.7,0.2h2l-17.1-21.4c-0.4-0.6-0.9-1-1.4-1.3l-1.5-0.9l1.8-0.2c2.2-0.2,4.2-0.7,5.9-1.5            c1.7-0.8,3.2-1.7,4.5-2.9c1.2-1.2,2.2-2.5,2.8-4.1c0.6-1.6,1-3.3,1-5.2c0-4.3-1.4-7.5-4.2-9.7c-2.8-2.2-7.2-3.3-13-3.3h-12.6V77            h2.5V28h10.1c4.7,0,8.4,0.9,10.9,2.8c2.6,1.9,3.9,4.8,3.9,8.7c0,1.9-0.4,3.6-1,5.1c-0.7,1.5-1.7,2.8-3.1,3.9            c-1.3,1.1-2.9,1.9-4.8,2.5c-1.9,0.6-4,0.9-6.4,0.9l-2.2,0c-0.1,0-0.2,0-0.9,0C297.3,51.9,297,51.9,296.9,53.5z"/>    </g>    <g>        <path class="st1" d="M367.6,68.8c0.2,0,0.5,0.1,0.6,0.3l1.5,1.6c-1.1,1.1-2.2,2.2-3.5,3.1c-1.3,0.9-2.7,1.7-4.2,2.3            c-1.5,0.6-3.2,1.1-4.9,1.5c-1.8,0.4-3.8,0.5-5.9,0.5c-3.6,0-6.9-0.6-9.9-1.9c-3-1.3-5.6-3-7.7-5.4c-2.1-2.3-3.8-5.1-5-8.4            c-1.2-3.3-1.8-6.9-1.8-10.9c0-3.9,0.6-7.5,1.9-10.8c1.2-3.3,3-6,5.2-8.4c2.2-2.3,4.9-4.1,8-5.4c3.1-1.3,6.6-1.9,10.3-1.9            c1.9,0,3.6,0.1,5.2,0.4c1.6,0.3,3,0.7,4.4,1.2c1.4,0.5,2.6,1.2,3.8,2c1.2,0.8,2.4,1.7,3.5,2.7l-1.1,1.6c-0.2,0.3-0.5,0.4-0.9,0.4            c-0.2,0-0.5-0.1-0.8-0.4c-0.3-0.3-0.8-0.6-1.3-1c-0.5-0.4-1.2-0.8-1.9-1.2c-0.7-0.5-1.6-0.9-2.7-1.2c-1-0.4-2.2-0.7-3.6-1            c-1.3-0.3-2.9-0.4-4.6-0.4c-3.2,0-6.1,0.5-8.7,1.6c-2.6,1.1-4.9,2.6-6.8,4.7c-1.9,2-3.4,4.5-4.5,7.3s-1.6,6.1-1.6,9.7            c0,3.7,0.5,6.9,1.6,9.8c1.1,2.9,2.5,5.3,4.4,7.3c1.9,2,4.1,3.5,6.6,4.6c2.5,1.1,5.3,1.6,8.2,1.6c1.9,0,3.5-0.1,5-0.4            c1.5-0.2,2.8-0.6,4-1.1c1.2-0.5,2.4-1.1,3.4-1.8c1.1-0.7,2.1-1.5,3.1-2.5c0.1-0.1,0.2-0.2,0.3-0.2            C367.3,68.9,367.5,68.8,367.6,68.8z"/>        <path class="st2" d="M351.1,78.8c-3.7,0-7.1-0.7-10.1-1.9c-3.1-1.3-5.7-3.1-7.9-5.5c-2.2-2.4-3.9-5.2-5.1-8.6            c-1.2-3.3-1.8-7.1-1.8-11.1c0-4,0.6-7.7,1.9-11c1.3-3.3,3.1-6.2,5.3-8.6c2.3-2.4,5.1-4.3,8.2-5.6c3.2-1.3,6.7-2,10.6-2            c1.9,0,3.7,0.1,5.3,0.4c1.6,0.3,3.1,0.7,4.5,1.2c1.4,0.5,2.7,1.2,3.9,2c1.2,0.8,2.4,1.7,3.6,2.8l0.4,0.4l-1.4,2.1            c-0.2,0.3-0.6,0.7-1.4,0.7c-0.4,0-0.7-0.2-1.2-0.5c-0.3-0.3-0.8-0.6-1.3-0.9c-0.5-0.4-1.1-0.8-1.9-1.2c-0.7-0.4-1.6-0.8-2.6-1.2            c-1-0.4-2.2-0.7-3.5-0.9c-1.3-0.2-2.8-0.4-4.5-0.4c-3.1,0-5.9,0.5-8.5,1.6c-2.5,1.1-4.8,2.6-6.6,4.5c-1.8,1.9-3.3,4.3-4.3,7.1            c-1,2.8-1.6,6-1.6,9.4c0,3.6,0.5,6.8,1.5,9.6c1,2.8,2.4,5.2,4.2,7.1c1.8,1.9,3.9,3.4,6.4,4.4c2.4,1,5.1,1.5,8,1.5            c1.8,0,3.5-0.1,4.9-0.4c1.4-0.2,2.7-0.6,3.9-1.1c1.2-0.5,2.3-1.1,3.3-1.7c1-0.7,2-1.5,3-2.4c0.2-0.2,0.3-0.2,0.5-0.3            c0.5-0.3,1.3-0.2,1.7,0.3l1.9,2l-0.4,0.4c-1.1,1.2-2.3,2.2-3.6,3.2c-1.3,0.9-2.7,1.8-4.3,2.4c-1.5,0.7-3.2,1.2-5.1,1.5            C355.3,78.6,353.3,78.8,351.1,78.8z M352.2,25.7c-3.7,0-7.1,0.6-10.1,1.9c-3,1.2-5.7,3-7.8,5.3c-2.2,2.3-3.9,5-5.1,8.2            c-1.2,3.2-1.8,6.7-1.8,10.6c0,3.9,0.6,7.5,1.8,10.7c1.2,3.2,2.8,5.9,4.9,8.2c2.1,2.2,4.6,4,7.5,5.2c2.9,1.2,6.1,1.8,9.6,1.8            c2.1,0,4-0.2,5.8-0.5c1.7-0.3,3.4-0.8,4.8-1.5c1.5-0.6,2.8-1.4,4-2.3c1.1-0.8,2.1-1.7,3-2.6l-1.1-1.2c-0.1-0.1-0.2-0.1-0.3,0            c-0.1,0-0.2,0.1-0.3,0.2c-1,0.9-2.1,1.8-3.2,2.5c-1.1,0.7-2.3,1.4-3.5,1.9c-1.3,0.5-2.7,0.9-4.1,1.1c-1.5,0.2-3.2,0.4-5.1,0.4            c-3,0-5.9-0.6-8.5-1.6c-2.6-1.1-4.9-2.7-6.8-4.7c-1.9-2-3.4-4.6-4.5-7.5c-1.1-2.9-1.6-6.3-1.6-10c0-3.6,0.5-6.9,1.6-9.9            c1.1-2.9,2.6-5.5,4.6-7.5c2-2.1,4.3-3.7,7-4.8c2.7-1.1,5.7-1.7,8.9-1.7c1.7,0,3.3,0.1,4.7,0.4c1.4,0.3,2.6,0.6,3.7,1            c1.1,0.4,2,0.8,2.8,1.3c0.8,0.5,1.4,0.9,1.9,1.3c0.5,0.4,1,0.7,1.3,1c0.3,0.3,0.5,0.3,0.5,0.3c0.3,0,0.4-0.1,0.4-0.2l0.8-1.2            c-1-0.9-2-1.6-3-2.3c-1.2-0.8-2.4-1.4-3.7-1.9c-1.3-0.5-2.8-0.9-4.3-1.2C355.7,25.9,354,25.7,352.2,25.7z"/>    </g>    <g>        <path class="st1" d="M410.3,25.7v3.1H383v21h22.7v3H383v21.6h27.3v3.1h-31.1V25.7H410.3z"/>        <path class="st2" d="M410.9,78.2h-32.3V25.1h32.3v4.3h-27.3v19.7h22.7v4.3h-22.7v20.4h27.3V78.2z M379.8,77h29.9v-1.9h-27.3V52.2            h22.7v-1.8h-22.7V28.2h27.3v-1.9h-29.9V77z"/>    </g>    <g>        <path class="st1" d="M456.8,25.1V33h-23.5v15.7h19.8v7.9h-19.8v21.6h-9.9v-53H456.8z"/>    </g>    <g>        <path class="st1" d="M514.3,51.6c0,3.9-0.6,7.5-1.9,10.8c-1.3,3.3-3.1,6.2-5.5,8.6c-2.3,2.4-5.2,4.3-8.5,5.7c-3.3,1.4-7,2-11,2            c-4,0-7.7-0.7-11-2c-3.3-1.4-6.1-3.2-8.5-5.7c-2.4-2.4-4.2-5.3-5.5-8.6s-1.9-6.9-1.9-10.8s0.6-7.5,1.9-10.8            c1.3-3.3,3.1-6.2,5.5-8.6c2.4-2.4,5.2-4.3,8.5-5.7c3.3-1.4,7-2,11-2c4,0,7.7,0.7,11,2.1c3.3,1.4,6.1,3.3,8.5,5.7            c2.3,2.4,4.2,5.3,5.5,8.6C513.6,44.1,514.3,47.7,514.3,51.6z M504.2,51.6c0-2.9-0.4-5.5-1.2-7.8c-0.8-2.3-1.9-4.3-3.3-5.9            c-1.4-1.6-3.2-2.8-5.3-3.7c-2.1-0.9-4.4-1.3-7-1.3c-2.6,0-4.9,0.4-7,1.3c-2.1,0.9-3.8,2.1-5.3,3.7c-1.5,1.6-2.6,3.6-3.4,5.9            c-0.8,2.3-1.2,4.9-1.2,7.8s0.4,5.5,1.2,7.8c0.8,2.3,1.9,4.3,3.4,5.9c1.5,1.6,3.2,2.8,5.3,3.7c2.1,0.9,4.4,1.3,7,1.3            c2.6,0,4.9-0.4,7-1.3c2.1-0.9,3.8-2.1,5.3-3.7c1.4-1.6,2.5-3.6,3.3-5.9C503.8,57.1,504.2,54.5,504.2,51.6z"/>    </g>    <g>        <path class="st1" d="M534.9,50.4l2.3,0c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.4-1.9c0.9-0.8,1.6-1.8,2-2.9            c0.4-1.1,0.7-2.4,0.7-3.7c0-2.7-0.9-4.8-2.7-6.2c-1.8-1.4-4.5-2.2-8.1-2.2H531v17.6v7.1v20.7h-9.9v-53h16.2c3.6,0,6.7,0.4,9.3,1.1            c2.6,0.7,4.7,1.8,6.3,3.1c1.6,1.3,2.9,3,3.6,4.8c0.8,1.9,1.2,3.9,1.2,6.2c0,1.8-0.3,3.5-0.8,5.1c-0.5,1.6-1.3,3-2.3,4.3            c-1,1.3-2.2,2.4-3.7,3.4c-1.5,1-3.1,1.8-5,2.3c1.2,0.7,2.3,1.7,3.2,3l13.3,19.6h-8.9c-0.9,0-1.6-0.2-2.2-0.5            c-0.6-0.3-1.1-0.8-1.5-1.5c0,0-11.1-17-11.1-17c-0.3-0.4-0.9-1.3-1.5-1.4c-1.2,0-2.4,0-3.5,0c0,0,0-6,0-6.4            C533.8,50.4,534.9,50.4,534.9,50.4z"/>    </g>    <g>        <path class="st1" d="M591.4,70.9c2.2,0,4.2-0.2,5.8-0.6c1.6-0.4,3.2-1,4.7-1.7v-12h-6.6c-0.6,0-1.1-0.2-1.5-0.5            c-0.4-0.4-0.6-0.8-0.6-1.3v-5.6h17.6V73c-1.3,1-2.7,1.8-4.2,2.5c-1.5,0.7-3,1.3-4.7,1.8c-1.7,0.5-3.4,0.8-5.3,1            c-1.9,0.2-3.9,0.3-6.1,0.3c-3.9,0-7.4-0.7-10.7-2c-3.3-1.3-6.1-3.2-8.4-5.6c-2.4-2.4-4.2-5.3-5.6-8.6c-1.3-3.3-2-7-2-10.9            c0-4,0.6-7.6,1.9-11c1.3-3.3,3.1-6.2,5.5-8.6c2.4-2.4,5.3-4.3,8.7-5.6c3.4-1.3,7.2-2,11.4-2c4.3,0,8.1,0.6,11.2,1.9            c3.2,1.3,5.8,3,8,5l-2.9,4.5c-0.6,0.9-1.3,1.4-2.2,1.4c-0.6,0-1.2-0.2-1.8-0.6c-0.8-0.5-1.6-0.9-2.4-1.4c-0.8-0.5-1.7-0.9-2.7-1.2            c-1-0.3-2.1-0.6-3.3-0.8c-1.2-0.2-2.7-0.3-4.3-0.3c-2.6,0-5,0.4-7.1,1.3c-2.1,0.9-3.9,2.1-5.4,3.8c-1.5,1.6-2.6,3.6-3.4,5.9            c-0.8,2.3-1.2,4.9-1.2,7.7c0,3.1,0.4,5.8,1.3,8.2c0.9,2.4,2.1,4.4,3.6,6s3.4,2.9,5.5,3.8S588.9,70.9,591.4,70.9z"/>    </g>    <g>        <path class="st1" d="M645.7,56.8h-16.1v13.4H653v7.9h-33.4v-53H653V33h-23.5v16.3H648v5.8C648,55.1,647.9,56.8,645.7,56.8z"/>    </g></g></svg>
            </a>
            <div class="links">
                

    
        <div class="nav-dropdown">
            <a href="/directory/" title="Browse">Open Source Software</a>

            <ul class="nav-dropdown-menu">
                <li><a href="/directory/business-enterprise/financial/accounting/">Accounting</a></li>
                <li><a href="/directory/business-enterprise/enterprise/crm/">CRM</a></li>
                <li><a href="/directory/business-enterprise/enterprise/enterprisebi/">Business Intelligence</a></li>
                <li><a href="/directory/graphics/graphics/3dmodeling/">CAD</a></li>
                <li><a href="/directory/business-enterprise/enterprise/plm/">PLM</a></li>
                <li><a href="/directory/business-enterprise/enterprise/processmanagement/">BPM</a></li>
                <li><a href="/directory/business-enterprise/project-management/">Project Management</a></li>
                <li><a href="/directory/business-enterprise/knowledgemanagement/">Knowledge Management</a></li>
                <li><a href="/directory/development/">Development</a></li>
                <li><a href="/directory/business-enterprise/enterprise/sales/">Sales</a></li>
                <li><a href="/directory/business-enterprise/ecommerce/">E-Commerce</a></li>
                <li><a href="/directory/business-enterprise/enterprise/erp/">ERP</a></li>
                <li><a href="/directory/business-enterprise/enterprise/humanresources/">HR</a></li>
                <li><a href="/directory/system-administration/">IT Management</a></li>
                <li><a href="/directory/security-utilities/">IT Security</a></li>
                <li><a href="/directory/business-enterprise/suites/">Office</a></li>
                <li><a href="/directory/science-engineering/">Science & Engineering</a></li>
                <li><a href="/directory/games/games/">Games</a></li>
                <li><a href="/directory/">All Software</a></li>
            </ul>
        </div>

        <div class="nav-dropdown">
            <a href="/software/">Business Software</a>
            <ul class="nav-dropdown-menu  dropdown-with-pane">
                
                <li class="pane-parent">
                    <a href="/software/crm/">CRM</a>
                    <div class="sub-pane">
                        
                        <div class="heading">CRM</div>
                        

                        
                            <a href="/software/customer-service/">Customer Service</a>
                        
                            <a href="/software/customer-experience/">Customer Experience</a>
                        
                            <a href="/software/point-of-sale/">Point of Sale</a>
                        
                            <a href="/software/lead-management/">Lead Management</a>
                        
                            <a href="/software/event-management/">Event Management</a>
                        
                            <a href="/software/survey/">Survey</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/finance/">Finance</a>
                    <div class="sub-pane">
                        
                        <div class="heading">Finance</div>
                        

                        
                            <a href="/software/accounting/">Accounting</a>
                        
                            <a href="/software/billing-and-invoicing/">Billing and Invoicing</a>
                        
                            <a href="/software/budgeting/">Budgeting</a>
                        
                            <a href="/software/payment-processing/">Payment Processing</a>
                        
                            <a href="/software/expense-report/">Expense Report</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/business-intelligence/">Analytics</a>
                    <div class="sub-pane">
                        
                        <div class="heading">Analytics</div>
                        

                        
                            <a href="/software/big-data/">Big Data</a>
                        
                            <a href="/software/business-intelligence/">Business Intelligence</a>
                        
                            <a href="/software/predictive-analytics/">Predictive Analytics</a>
                        
                            <a href="/software/reporting/">Reporting</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/collaboration/">Collaboration</a>
                    <div class="sub-pane">
                        
                        <div class="heading">Collaboration</div>
                        

                        
                            <a href="/software/collaboration/">Team Collaboration</a>
                        
                            <a href="/software/idea-management/">Idea Management</a>
                        
                            <a href="/software/web-conferencing/">Web Conferencing</a>
                        
                            <a href="/software/employee-communication-tools/">Employee Communication Tools</a>
                        
                            <a href="/software/screen-sharing/">Screen Sharing</a>
                        
                            <a href="/software/cad/">CAD</a>
                        
                            <a href="/software/webinar/">Webinar</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/communications/">Communications</a>
                    <div class="sub-pane">
                        
                        <div class="heading">Communications</div>
                        

                        
                            <a href="/software/call-center/">Call Center</a>
                        
                            <a href="/software/call-recording/">Call Recording</a>
                        
                            <a href="/software/call-tracking/">Call Tracking</a>
                        
                            <a href="/software/ivr/">IVR</a>
                        
                            <a href="/software/predictive-dialer/">Predictive Dialer</a>
                        
                            <a href="/software/telephony/">Telephony</a>
                        
                            <a href="/software/voip/">VoIP</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/marketing/">Marketing</a>
                    <div class="sub-pane">
                        
                        <div class="heading">Marketing</div>
                        

                        
                            <a href="/software/brand-management/">Brand Management</a>
                        
                            <a href="/software/campaign-management/">Campaign Management</a>
                        
                            <a href="/software/digital-asset-management/">Digital Asset Management</a>
                        
                            <a href="/software/email-marketing/">Email Marketing</a>
                        
                            <a href="/software/lead-generation/">Lead Generation</a>
                        
                            <a href="/software/marketing-automation/">Marketing Automation</a>
                        
                            <a href="/software/seo/">SEO</a>
                        
                            <a href="/software/digital-signage/">Digital Signage</a>
                        
                            <a href="/software/virtual-event-platforms/">Virtual Event Platforms</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/sales/">Sales</a>
                    <div class="sub-pane">
                        
                        <div class="heading">Sales</div>
                        

                        
                            <a href="/software/sales-force-automation/">Sales Force Automation</a>
                        
                            <a href="/software/sales-intelligence/">Sales Intelligence</a>
                        
                            <a href="/software/inside-sales/">Inside Sales</a>
                        
                            <a href="/software/sales-enablement/">Sales Enablement</a>
                        
                            <a href="/software/sales-engagement/">Sales Engagement</a>
                        
                            <a href="/software/contact-management/">Contact Management</a>
                        
                            <a href="/software/cpq/">CPQ</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/operations-management/">Operations Management</a>
                    <div class="sub-pane">
                        
                        <div class="heading">Operations Management</div>
                        

                        
                            <a href="/software/erp/">ERP</a>
                        
                            <a href="/software/product-lifecycle-management/">PLM</a>
                        
                            <a href="/software/business-process-management/">Business Process Management</a>
                        
                            <a href="/software/ehs-management/">EHS Management</a>
                        
                            <a href="/software/supply-chain-management/">Supply Chain Management</a>
                        
                            <a href="/software/ecommerce/">eCommerce</a>
                        
                            <a href="/software/quality-management/">Quality Management</a>
                        
                            <a href="/software/cmms/">CMMS</a>
                        
                            <a href="/software/manufacturing/">Manufacturing</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/human-resources/">HR</a>
                    <div class="sub-pane">
                        
                        <div class="heading">HR</div>
                        

                        
                            <a href="/software/360-degree-feedback/">360 Degree Feedback</a>
                        
                            <a href="/software/human-resources/">Human Resource Management</a>
                        
                            <a href="/software/employee-engagement/">Employee Engagement</a>
                        
                            <a href="/software/applicant-tracking/">Applicant Tracking</a>
                        
                            <a href="/software/time-clock/">Time Clock</a>
                        
                            <a href="/software/workforce-management/">Workforce Management</a>
                        
                            <a href="/software/recruiting/">Recruiting</a>
                        
                            <a href="/software/performance-appraisal/">Performance Appraisal</a>
                        
                            <a href="/software/training/">Training</a>
                        
                            <a href="/software/employee-monitoring/">Employee Monitoring</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/it-management/">IT Management</a>
                    <div class="sub-pane">
                        
                        <div class="heading">IT Management</div>
                        

                        
                            <a href="/software/application-performance-management/">Application Performance Management</a>
                        
                            <a href="/software/it-asset-management/">IT Asset Management</a>
                        
                            <a href="/software/database-management/">Database Management</a>
                        
                            <a href="/software/network-monitoring/">Network Monitoring</a>
                        
                            <a href="/software/help-desk/">Help Desk</a>
                        
                            <a href="/software/issue-tracking/">Issue Tracking</a>
                        
                            <a href="/software/devops/">DevOps</a>
                        
                            <a href="/software/compliance/">Compliance</a>
                        
                            <a href="/software/remote-desktop/">Remote Desktop</a>
                        
                            <a href="/software/remote-support/">Remote Support</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/it-security/">Security</a>
                    <div class="sub-pane">
                        
                        <div class="heading">Security</div>
                        

                        
                            <a href="/software/it-security/">IT Security</a>
                        
                            <a href="/software/endpoint-protection/">Endpoint Protection</a>
                        
                            <a href="/software/identity-management/">Identity Management</a>
                        
                            <a href="/software/network-security/">Network Security</a>
                        
                            <a href="/software/email-security/">Email Security</a>
                        
                            <a href="/software/risk-management/">Risk Management</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/project-management/">Project Management</a>
                    <div class="sub-pane">
                        
                        <div class="heading">Project Management</div>
                        

                        
                            <a href="/software/content-management/">Content Management System (CMS)</a>
                        
                            <a href="/software/task-management/">Task Management</a>
                        
                            <a href="/software/project-portfolio-management/">Project Portfolio Management</a>
                        
                            <a href="/software/time-tracking/">Time Tracking</a>
                        
                            <a href="/software/pdf/">PDF</a>
                        

                    </div>
                </li>
                
                <li class="pane-parent">
                    <a href="/software/education/">Education</a>
                    <div class="sub-pane">
                        
                        <div class="heading">Education</div>
                        

                        
                            <a href="/software/learning-management-system/">Learning Management Systems</a>
                        
                            <a href="/software/learning-experience-platforms/">Learning Experience Platforms</a>
                        
                            <a href="/software/virtual-classroom/">Virtual Classroom</a>
                        
                            <a href="/software/course-authoring/">Course Authoring</a>
                        
                            <a href="/software/school-administration/">School Administration</a>
                        
                            <a href="/software/student-information-system/">Student Information Systems</a>
                        

                    </div>
                </li>
                
                 <li>
                    <a href="/software/">All Software</a>
                 </li>
            </ul>
        </div>

        <div class="nav-dropdown">
            <a href="#">Services</a>
            <ul class="nav-dropdown-menu">
                
                <li><a href="/business-voip/">Business VoIP</a></li>
                
            </ul>
        </div>

        <div class="nav-dropdown">
            <a href="#">Resources</a>
            <ul class="nav-dropdown-menu">
                  <li><a href="/blog">Blog</a></li>
                  <li><a href="/articles">Articles</a></li>
                  <li><a href="https://deals.sourceforge.net/?utm_source=sourceforge&utm_medium=navbar&utm_campaign=homepage">Deals</a></li>
            </ul>
        </div>
    

                <div class="dev-menu-when-stuck">
                    Menu
                    <ul class="dev-menu-dropdown header-nav-menulist">
                        <li><a href="/support">Help</a></li>
                        <li><a href="/create">Create</a></li>
                        <li><a href="/user/registration/" title="Join" >Join</a></li>
                        <li><a href="/auth/" title="Login">Login</a></li>
                    </ul>
                </div>
                <div class="search-toggle-when-stuck">
                    <a class="search-toggle">
                        

<svg  viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1216 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zm512 832q0 52-38 90t-90 38q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z"/></svg>
                    </a>
                </div>
            </div>

            <div class="search">
                <div class="social-icons">
                    
<span></span>
<a href="https://twitter.com/sourceforge" class="twitter" rel="nofollow" target="_blank">

<svg  viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1684 408q-67 98-162 167 1 14 1 42 0 130-38 259.5t-115.5 248.5-184.5 210.5-258 146-323 54.5q-271 0-496-145 35 4 78 4 225 0 401-138-105-2-188-64.5t-114-159.5q33 5 61 5 43 0 85-11-112-23-185.5-111.5t-73.5-205.5v-4q68 38 146 41-66-44-105-115t-39-154q0-88 44-163 121 149 294.5 238.5t371.5 99.5q-8-38-8-74 0-134 94.5-228.5t228.5-94.5q140 0 236 102 109-21 205-78-37 115-142 178 93-10 186-50z"/></svg></a>
<a href="https://www.facebook.com/sourceforgenet/" class="facebook" rel="nofollow" target="_blank">

<svg  viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1343 12v264h-157q-86 0-116 36t-30 108v189h293l-39 296h-254v759h-306v-759h-255v-296h255v-218q0-186 104-288.5t277-102.5q147 0 228 12z"/></svg></a>
<a href="https://www.linkedin.com/company/sourceforge.net" class="linkedin" rel="nofollow" target="_blank">

<svg  viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M477 625v991h-330v-991h330zm21-306q1 73-50.5 122t-135.5 49h-2q-82 0-132-49t-50-122q0-74 51.5-122.5t134.5-48.5 133 48.5 51 122.5zm1166 729v568h-329v-530q0-105-40.5-164.5t-126.5-59.5q-63 0-105.5 34.5t-63.5 85.5q-11 30-11 81v553h-329q2-399 2-647t-1-296l-1-48h329v144h-2q20-32 41-56t56.5-52 87-43.5 114.5-15.5q171 0 275 113.5t104 332.5z"/></svg></a>
<a href="/user/newsletters" rel=nofollow class="newsletter" title="Subscribe to our newsletter">

<svg  version="1.1"  xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 42 42" enable-background="new 0 0 42 42" xml:space="preserve"><path fill="#FFFFFF" d="M0,6v30h42V6H0z M24.2,21.2c-0.8,0.8-2.3,2-3.2,2c-0.9,0-2.4-1.2-3.2-2L5.8,9.7h30.3L24.2,21.2z M13.7,21l-9.9,9.4V11.6L13.7,21z M15.7,23L15.7,23c0.5,0.5,2.9,2.9,5.3,2.9c2.4,0,4.8-2.4,5.2-2.8l0.1-0.1l9.8,9.4H5.8L15.7,23z M28.3,21l9.9-9.5v18.9L28.3,21z"/></svg></a>
<span></span>
                </div>
                
                    
                
                <form method="get" action="/directory/">
    
    <div class="typeahead__container">
      <div class="typeahead__field">
        <div class="typeahead__query">
        
        <input type="text" placeholder="Search for software or solutions" autocomplete="off" name="q" >
        
        </div>
        
        <label>
        <input type="submit" class="bt" value="">
            

<svg  viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1216 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zm512 832q0 52-38 90t-90 38q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z"/></svg>
        </label>
    
      </div>
    </div>
    
    </form>
            </div>
        </nav>
    </section>
    
</div>
    
    
    <div class="notification-on-project-page">
    
        
    
    
    
    </div>
    
    


    <section id="page-body" class=" neighborhood-Projects project-golly mountpoint-code 

">
        <div id="nav_menu_holder">
            
                
                    
    
        
        <div class="sandiego"> 
          
<section class="project-masthead"> 
    
<div class="backdrop" style="box-sizing: content-box; padding-bottom: 24px"></div>

    <div class="content">
    
        
    <nav id="breadcrumbs" class="breadcrumbs rtl">
        <ul>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="/">Home</a></li>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="/directory/">Browse</a></li>
            
            
                
                
            
            
                
            
            
            
                <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="/p/golly/">Golly</a></li>
                
            
            
                <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">Code</li>
                
            
        </ul>
    </nav>
    
    

<div class="overview">

    
<div class="project-icon   " >
    
    
    <img itemprop="image" alt="Golly Icon" 
    
    
    src="https://a.fsdn.com/allura/p/golly/icon?1370439578"
    /></div>


    <div class="title">
        
        
        
        
        <h1 itemprop="name"><a href="/p/golly/" itemprop="url">Golly</a></h1>
        
        <h3 class="summary">
            For exploring cellular automata like the Game of Life.
        </h3>
        
            
            
           
        
            
            
            <h3 class="brought-by">

                

                Brought to you by:
                
                    
                        <a href="/u/andykt/">andykt</a>,
                    
                
                    
                        <a href="/u/apgoucher/">apgoucher</a>,
                    
                
                    
                        <a href="/u/dvgrn/">dvgrn</a>,
                    
                
                    
                        <a href="/u/maksverver/">maksverver</a>,
                    
                
                    
                        and <a href="/p/golly/_members/">2 others</a>
                    
                
            </h3>
            
        

        
    </div>

    
</div>

    
    
    
  
    </div>
</section>

        </div>
    

                
            
        </div>
        <div id="top_nav" class="">
            
                
<div id="top_nav_admin">
<ul class="dropdown">
  
  
    <li class="">
        <a href="/projects/golly/" class="tool-summary-32" >
            Summary
        </a>
        
        
    </li>
  
    <li class="">
        <a href="/projects/golly/files/" class="tool-files-32" >
            Files
        </a>
        
        
    </li>
  
    <li class="">
        <a href="/projects/golly/reviews" class="tool-reviews-32" >
            Reviews
        </a>
        
        
    </li>
  
    <li class="">
        <a href="/projects/golly/support" class="tool-support-32" >
            Support
        </a>
        
        
    </li>
  
    <li class="">
        <a href="/p/golly/wiki/" class="tool-wiki-32" >
            Wiki
        </a>
        
        
    </li>
  
    <li class="">
        <a href="/p/golly/mailman/" class="tool-mailman-32" >
            Mailing Lists
        </a>
        
        
    </li>
  
    <li class="">
        <a href="/p/golly/_list/tickets" class="tool-tickets-32" >
            Tickets â–¾
        </a>
        
        
            <ul>
                
                    <li class=""><a href="/p/golly/patches/" >Patches</a></li>
                
                    <li class=""><a href="/p/golly/bugs/" >Bugs</a></li>
                
                    <li class=""><a href="/p/golly/support-requests/" >Support Requests</a></li>
                
                    <li class=""><a href="/p/golly/feature-requests/" >Feature Requests</a></li>
                
            </ul>
        
    </li>
  
    <li class="">
        <a href="/p/golly/news/" class="tool-blog-32" >
            News
        </a>
        
        
    </li>
  
    <li class="">
        <a href="/p/golly/discussion/" class="tool-discussion-32" >
            Discussion
        </a>
        
        
    </li>
  
    <li class="selected">
        <a href="/p/golly/code/" class="tool-git-32" >
            Code
        </a>
        
        
    </li>
  
  
</ul>
</div>


            
        </div>
        <div id="content_base">
            

    
                
                    
<a id="sidebar-activate" href="#">
    <span class="btn-label">Menu</span>
    <span class="btn-arrow-down">â–¾</span>
    <span class="btn-arrow-up">â–´</span>
</a>

                        


<div id="sidebar">
  
    <div class="placeholder-no-searchbox">&nbsp;</div>
  
    
    
      
      
        
    
      <ul class="sidebarmenu">
      
    
  <li>
      
        <a class="icon" href="/p/golly/code/commit_browser" title="Browse Commits"><i class="fa fa-list"></i>
      
      <span>Browse Commits</span>
      </a>
  </li>
  
      
        
    
  <li>
      
        <a class="icon" href="/p/golly/code/fork" title="Fork"><i class="fa fa-code-fork"></i>
      
      <span>Fork</span>
      </a>
  </li>
  
      
        
    
  <li>
      
        <a href="/p/golly/code/merge-requests/"  >
      
      <span class="has_small">Merge Requests</span>
      <small>0</small></a>
  </li>
  
      
        
    
  <li>
      
        <a href="/p/golly/code/forks/"  >
      
      <span class="has_small">Forks</span>
      <small>7</small></a>
  </li>
  
      
        
    
      </ul>
      
    
    
      <h3 class="">Branches</h3>
    
  
      
        
    
      <ul class="sidebarmenu">
      
    
  <li>
      
        <a href="/p/golly/code/ci/master/tree/"  >
      
      <span>master</span>
      </a>
  </li>
  
      
        
    
  <li>
      
        <a href="/p/golly/code/ci/qlifealternatebug/tree/"  >
      
      <span>qlifealternatebug</span>
      </a>
  </li>
  
      
    
    
      </ul>
      
    
    
</div>
                    

                    
                
                
                    
                
                <div class="grid-20 pad">
                    <h2 class="dark title">
<a href="/p/golly/code/ci/a4cf101805e27c15d87dbbeaead7b76198fc31ac/">[a4cf10]</a>:

  
      <a href="./../"><b class="fa fa-folder-open-o" title="Root directory"></b></a> /
  
  
    <a href="./">docs</a> /
  
 License.html

                        <!-- actions -->
                        <small>
                            

    
    <a class="icon" href="#" id="maximize-content" title="Maximize"><i class="fa fa-expand"></i>&nbsp;Maximize</a>
    <a class="icon" href="#" id="restore-content" title="Restore"><i class="fa fa-compress"></i>&nbsp;Restore</a>
<a class="icon" href="/p/golly/code/ci/a4cf101805e27c15d87dbbeaead7b76198fc31ac/log/?path=/docs/License.html" title="History"><i class="fa fa-calendar"></i>&nbsp;History</a>

                        </small>
                        <!-- /actions -->
                    </h2>
                    
                    <div>
                        
  

                        
  
    <p><a rel="nofollow" href="?format=raw">Download this file</a></p>
    <div class="clip grid-19 codebrowser">
      <h3>
        643 lines (527 with data), 32.7 kB
      </h3>
      
        <table class="codehilitetable"><tr><td class="linenos"><div class="linenodiv"><pre>  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642</pre></div></td><td class="code"><div class="codehilite"><pre><div id="l1" class="code_block"><span class="p">&lt;</span><span class="nt">html</span><span class="p">&gt;</span>
</div><div id="l2" class="code_block"><span class="p">&lt;</span><span class="nt">title</span><span class="p">&gt;</span>License info for Golly<span class="p">&lt;/</span><span class="nt">title</span><span class="p">&gt;</span>
</div><div id="l3" class="code_block"><span class="p">&lt;</span><span class="nt">body</span> <span class="na">bgcolor</span><span class="o">=</span><span class="s">&quot;#FFFFCE&quot;</span><span class="p">&gt;</span>
</div><div id="l4" class="code_block"><span class="p">&lt;</span><span class="nt">center</span><span class="p">&gt;&lt;</span><span class="nt">table</span> <span class="na">border</span><span class="o">=</span><span class="s">0</span><span class="p">&gt;&lt;</span><span class="nt">tr</span><span class="p">&gt;&lt;</span><span class="nt">td</span><span class="p">&gt;</span>
</div><div id="l5" class="code_block"><span class="p">&lt;</span><span class="nt">pre</span><span class="p">&gt;</span>
</div><div id="l6" class="code_block">
</div><div id="l7" class="code_block">Golly is an open source, cross-platform application for exploring
</div><div id="l8" class="code_block">John Conway&#39;s Game of Life and many other types of cellular automata.
</div><div id="l9" class="code_block">
</div><div id="l10" class="code_block">Copyright (C) 2005-2020 The Golly Gang (Andrew Trevorrow, Tomas Rokicki,
</div><div id="l11" class="code_block">Tim Hutton, Dave Greene, Jason Summers, Maks Verver, Robert Munafo,
</div><div id="l12" class="code_block">Brenton Bostick, Chris Rowett).
</div><div id="l13" class="code_block">
</div><div id="l14" class="code_block">This program is free software; you can redistribute it and/or
</div><div id="l15" class="code_block">modify it under the terms of the GNU General Public License
</div><div id="l16" class="code_block">as published by the Free Software Foundation; either version 2
</div><div id="l17" class="code_block">of the License (see below), or (at your option) any later version.
</div><div id="l18" class="code_block">
</div><div id="l19" class="code_block">This program is distributed in the hope that it will be useful,
</div><div id="l20" class="code_block">but WITHOUT ANY WARRANTY; without even the implied warranty of
</div><div id="l21" class="code_block">MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
</div><div id="l22" class="code_block">
</div><div id="l23" class="code_block">Web site:  http://sourceforge.net/projects/golly
</div><div id="l24" class="code_block">Contacts:  [email protected]  [email protected]
</div><div id="l25" class="code_block">
</div><div id="l26" class="code_block">======================================================================
</div><div id="l27" class="code_block">
</div><div id="l28" class="code_block">		    GNU GENERAL PUBLIC LICENSE
</div><div id="l29" class="code_block">		       Version 2, June 1991
</div><div id="l30" class="code_block">
</div><div id="l31" class="code_block"> Copyright (C) 1989, 1991 Free Software Foundation, Inc.
</div><div id="l32" class="code_block"> 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
</div><div id="l33" class="code_block"> Everyone is permitted to copy and distribute verbatim copies
</div><div id="l34" class="code_block"> of this license document, but changing it is not allowed.
</div><div id="l35" class="code_block">
</div><div id="l36" class="code_block">			    Preamble
</div><div id="l37" class="code_block">
</div><div id="l38" class="code_block">  The licenses for most software are designed to take away your
</div><div id="l39" class="code_block">freedom to share and change it.  By contrast, the GNU General Public
</div><div id="l40" class="code_block">License is intended to guarantee your freedom to share and change free
</div><div id="l41" class="code_block">software--to make sure the software is free for all its users.  This
</div><div id="l42" class="code_block">General Public License applies to most of the Free Software
</div><div id="l43" class="code_block">Foundation&#39;s software and to any other program whose authors commit to
</div><div id="l44" class="code_block">using it.  (Some other Free Software Foundation software is covered by
</div><div id="l45" class="code_block">the GNU Library General Public License instead.)  You can apply it to
</div><div id="l46" class="code_block">your programs, too.
</div><div id="l47" class="code_block">
</div><div id="l48" class="code_block">  When we speak of free software, we are referring to freedom, not
</div><div id="l49" class="code_block">price.  Our General Public Licenses are designed to make sure that you
</div><div id="l50" class="code_block">have the freedom to distribute copies of free software (and charge for
</div><div id="l51" class="code_block">this service if you wish), that you receive source code or can get it
</div><div id="l52" class="code_block">if you want it, that you can change the software or use pieces of it
</div><div id="l53" class="code_block">in new free programs; and that you know you can do these things.
</div><div id="l54" class="code_block">
</div><div id="l55" class="code_block">  To protect your rights, we need to make restrictions that forbid
</div><div id="l56" class="code_block">anyone to deny you these rights or to ask you to surrender the rights.
</div><div id="l57" class="code_block">These restrictions translate to certain responsibilities for you if you
</div><div id="l58" class="code_block">distribute copies of the software, or if you modify it.
</div><div id="l59" class="code_block">
</div><div id="l60" class="code_block">  For example, if you distribute copies of such a program, whether
</div><div id="l61" class="code_block">gratis or for a fee, you must give the recipients all the rights that
</div><div id="l62" class="code_block">you have.  You must make sure that they, too, receive or can get the
</div><div id="l63" class="code_block">source code.  And you must show them these terms so they know their
</div><div id="l64" class="code_block">rights.
</div><div id="l65" class="code_block">
</div><div id="l66" class="code_block">  We protect your rights with two steps: (1) copyright the software, and
</div><div id="l67" class="code_block">(2) offer you this license which gives you legal permission to copy,
</div><div id="l68" class="code_block">distribute and/or modify the software.
</div><div id="l69" class="code_block">
</div><div id="l70" class="code_block">  Also, for each author&#39;s protection and ours, we want to make certain
</div><div id="l71" class="code_block">that everyone understands that there is no warranty for this free
</div><div id="l72" class="code_block">software.  If the software is modified by someone else and passed on, we
</div><div id="l73" class="code_block">want its recipients to know that what they have is not the original, so
</div><div id="l74" class="code_block">that any problems introduced by others will not reflect on the original
</div><div id="l75" class="code_block">authors&#39; reputations.
</div><div id="l76" class="code_block">
</div><div id="l77" class="code_block">  Finally, any free program is threatened constantly by software
</div><div id="l78" class="code_block">patents.  We wish to avoid the danger that redistributors of a free
</div><div id="l79" class="code_block">program will individually obtain patent licenses, in effect making the
</div><div id="l80" class="code_block">program proprietary.  To prevent this, we have made it clear that any
</div><div id="l81" class="code_block">patent must be licensed for everyone&#39;s free use or not licensed at all.
</div><div id="l82" class="code_block">
</div><div id="l83" class="code_block">  The precise terms and conditions for copying, distribution and
</div><div id="l84" class="code_block">modification follow.
</div><div id="l85" class="code_block">
</div><div id="l86" class="code_block">		    GNU GENERAL PUBLIC LICENSE
</div><div id="l87" class="code_block">   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
</div><div id="l88" class="code_block">
</div><div id="l89" class="code_block">  0. This License applies to any program or other work which contains
</div><div id="l90" class="code_block">a notice placed by the copyright holder saying it may be distributed
</div><div id="l91" class="code_block">under the terms of this General Public License.  The &quot;Program&quot;, below,
</div><div id="l92" class="code_block">refers to any such program or work, and a &quot;work based on the Program&quot;
</div><div id="l93" class="code_block">means either the Program or any derivative work under copyright law:
</div><div id="l94" class="code_block">that is to say, a work containing the Program or a portion of it,
</div><div id="l95" class="code_block">either verbatim or with modifications and/or translated into another
</div><div id="l96" class="code_block">language.  (Hereinafter, translation is included without limitation in
</div><div id="l97" class="code_block">the term &quot;modification&quot;.)  Each licensee is addressed as &quot;you&quot;.
</div><div id="l98" class="code_block">
</div><div id="l99" class="code_block">Activities other than copying, distribution and modification are not
</div><div id="l100" class="code_block">covered by this License; they are outside its scope.  The act of
</div><div id="l101" class="code_block">running the Program is not restricted, and the output from the Program
</div><div id="l102" class="code_block">is covered only if its contents constitute a work based on the
</div><div id="l103" class="code_block">Program (independent of having been made by running the Program).
</div><div id="l104" class="code_block">Whether that is true depends on what the Program does.
</div><div id="l105" class="code_block">
</div><div id="l106" class="code_block">  1. You may copy and distribute verbatim copies of the Program&#39;s
</div><div id="l107" class="code_block">source code as you receive it, in any medium, provided that you
</div><div id="l108" class="code_block">conspicuously and appropriately publish on each copy an appropriate
</div><div id="l109" class="code_block">copyright notice and disclaimer of warranty; keep intact all the
</div><div id="l110" class="code_block">notices that refer to this License and to the absence of any warranty;
</div><div id="l111" class="code_block">and give any other recipients of the Program a copy of this License
</div><div id="l112" class="code_block">along with the Program.
</div><div id="l113" class="code_block">
</div><div id="l114" class="code_block">You may charge a fee for the physical act of transferring a copy, and
</div><div id="l115" class="code_block">you may at your option offer warranty protection in exchange for a fee.
</div><div id="l116" class="code_block">
</div><div id="l117" class="code_block">  2. You may modify your copy or copies of the Program or any portion
</div><div id="l118" class="code_block">of it, thus forming a work based on the Program, and copy and
</div><div id="l119" class="code_block">distribute such modifications or work under the terms of Section 1
</div><div id="l120" class="code_block">above, provided that you also meet all of these conditions:
</div><div id="l121" class="code_block">
</div><div id="l122" class="code_block">    a) You must cause the modified files to carry prominent notices
</div><div id="l123" class="code_block">    stating that you changed the files and the date of any change.
</div><div id="l124" class="code_block">
</div><div id="l125" class="code_block">    b) You must cause any work that you distribute or publish, that in
</div><div id="l126" class="code_block">    whole or in part contains or is derived from the Program or any
</div><div id="l127" class="code_block">    part thereof, to be licensed as a whole at no charge to all third
</div><div id="l128" class="code_block">    parties under the terms of this License.
</div><div id="l129" class="code_block">
</div><div id="l130" class="code_block">    c) If the modified program normally reads commands interactively
</div><div id="l131" class="code_block">    when run, you must cause it, when started running for such
</div><div id="l132" class="code_block">    interactive use in the most ordinary way, to print or display an
</div><div id="l133" class="code_block">    announcement including an appropriate copyright notice and a
</div><div id="l134" class="code_block">    notice that there is no warranty (or else, saying that you provide
</div><div id="l135" class="code_block">    a warranty) and that users may redistribute the program under
</div><div id="l136" class="code_block">    these conditions, and telling the user how to view a copy of this
</div><div id="l137" class="code_block">    License.  (Exception: if the Program itself is interactive but
</div><div id="l138" class="code_block">    does not normally print such an announcement, your work based on
</div><div id="l139" class="code_block">    the Program is not required to print an announcement.)
</div><div id="l140" class="code_block">
</div><div id="l141" class="code_block">These requirements apply to the modified work as a whole.  If
</div><div id="l142" class="code_block">identifiable sections of that work are not derived from the Program,
</div><div id="l143" class="code_block">and can be reasonably considered independent and separate works in
</div><div id="l144" class="code_block">themselves, then this License, and its terms, do not apply to those
</div><div id="l145" class="code_block">sections when you distribute them as separate works.  But when you
</div><div id="l146" class="code_block">distribute the same sections as part of a whole which is a work based
</div><div id="l147" class="code_block">on the Program, the distribution of the whole must be on the terms of
</div><div id="l148" class="code_block">this License, whose permissions for other licensees extend to the
</div><div id="l149" class="code_block">entire whole, and thus to each and every part regardless of who wrote it.
</div><div id="l150" class="code_block">
</div><div id="l151" class="code_block">Thus, it is not the intent of this section to claim rights or contest
</div><div id="l152" class="code_block">your rights to work written entirely by you; rather, the intent is to
</div><div id="l153" class="code_block">exercise the right to control the distribution of derivative or
</div><div id="l154" class="code_block">collective works based on the Program.
</div><div id="l155" class="code_block">
</div><div id="l156" class="code_block">In addition, mere aggregation of another work not based on the Program
</div><div id="l157" class="code_block">with the Program (or with a work based on the Program) on a volume of
</div><div id="l158" class="code_block">a storage or distribution medium does not bring the other work under
</div><div id="l159" class="code_block">the scope of this License.
</div><div id="l160" class="code_block">
</div><div id="l161" class="code_block">  3. You may copy and distribute the Program (or a work based on it,
</div><div id="l162" class="code_block">under Section 2) in object code or executable form under the terms of
</div><div id="l163" class="code_block">Sections 1 and 2 above provided that you also do one of the following:
</div><div id="l164" class="code_block">
</div><div id="l165" class="code_block">    a) Accompany it with the complete corresponding machine-readable
</div><div id="l166" class="code_block">    source code, which must be distributed under the terms of Sections
</div><div id="l167" class="code_block">    1 and 2 above on a medium customarily used for software interchange; or,
</div><div id="l168" class="code_block">
</div><div id="l169" class="code_block">    b) Accompany it with a written offer, valid for at least three
</div><div id="l170" class="code_block">    years, to give any third party, for a charge no more than your
</div><div id="l171" class="code_block">    cost of physically performing source distribution, a complete
</div><div id="l172" class="code_block">    machine-readable copy of the corresponding source code, to be
</div><div id="l173" class="code_block">    distributed under the terms of Sections 1 and 2 above on a medium
</div><div id="l174" class="code_block">    customarily used for software interchange; or,
</div><div id="l175" class="code_block">
</div><div id="l176" class="code_block">    c) Accompany it with the information you received as to the offer
</div><div id="l177" class="code_block">    to distribute corresponding source code.  (This alternative is
</div><div id="l178" class="code_block">    allowed only for noncommercial distribution and only if you
</div><div id="l179" class="code_block">    received the program in object code or executable form with such
</div><div id="l180" class="code_block">    an offer, in accord with Subsection b above.)
</div><div id="l181" class="code_block">
</div><div id="l182" class="code_block">The source code for a work means the preferred form of the work for
</div><div id="l183" class="code_block">making modifications to it.  For an executable work, complete source
</div><div id="l184" class="code_block">code means all the source code for all modules it contains, plus any
</div><div id="l185" class="code_block">associated interface definition files, plus the scripts used to
</div><div id="l186" class="code_block">control compilation and installation of the executable.  However, as a
</div><div id="l187" class="code_block">special exception, the source code distributed need not include
</div><div id="l188" class="code_block">anything that is normally distributed (in either source or binary
</div><div id="l189" class="code_block">form) with the major components (compiler, kernel, and so on) of the
</div><div id="l190" class="code_block">operating system on which the executable runs, unless that component
</div><div id="l191" class="code_block">itself accompanies the executable.
</div><div id="l192" class="code_block">
</div><div id="l193" class="code_block">If distribution of executable or object code is made by offering
</div><div id="l194" class="code_block">access to copy from a designated place, then offering equivalent
</div><div id="l195" class="code_block">access to copy the source code from the same place counts as
</div><div id="l196" class="code_block">distribution of the source code, even though third parties are not
</div><div id="l197" class="code_block">compelled to copy the source along with the object code.
</div><div id="l198" class="code_block">
</div><div id="l199" class="code_block">  4. You may not copy, modify, sublicense, or distribute the Program
</div><div id="l200" class="code_block">except as expressly provided under this License.  Any attempt
</div><div id="l201" class="code_block">otherwise to copy, modify, sublicense or distribute the Program is
</div><div id="l202" class="code_block">void, and will automatically terminate your rights under this License.
</div><div id="l203" class="code_block">However, parties who have received copies, or rights, from you under
</div><div id="l204" class="code_block">this License will not have their licenses terminated so long as such
</div><div id="l205" class="code_block">parties remain in full compliance.
</div><div id="l206" class="code_block">
</div><div id="l207" class="code_block">  5. You are not required to accept this License, since you have not
</div><div id="l208" class="code_block">signed it.  However, nothing else grants you permission to modify or
</div><div id="l209" class="code_block">distribute the Program or its derivative works.  These actions are
</div><div id="l210" class="code_block">prohibited by law if you do not accept this License.  Therefore, by
</div><div id="l211" class="code_block">modifying or distributing the Program (or any work based on the
</div><div id="l212" class="code_block">Program), you indicate your acceptance of this License to do so, and
</div><div id="l213" class="code_block">all its terms and conditions for copying, distributing or modifying
</div><div id="l214" class="code_block">the Program or works based on it.
</div><div id="l215" class="code_block">
</div><div id="l216" class="code_block">  6. Each time you redistribute the Program (or any work based on the
</div><div id="l217" class="code_block">Program), the recipient automatically receives a license from the
</div><div id="l218" class="code_block">original licensor to copy, distribute or modify the Program subject to
</div><div id="l219" class="code_block">these terms and conditions.  You may not impose any further
</div><div id="l220" class="code_block">restrictions on the recipients&#39; exercise of the rights granted herein.
</div><div id="l221" class="code_block">You are not responsible for enforcing compliance by third parties to
</div><div id="l222" class="code_block">this License.
</div><div id="l223" class="code_block">
</div><div id="l224" class="code_block">  7. If, as a consequence of a court judgment or allegation of patent
</div><div id="l225" class="code_block">infringement or for any other reason (not limited to patent issues),
</div><div id="l226" class="code_block">conditions are imposed on you (whether by court order, agreement or
</div><div id="l227" class="code_block">otherwise) that contradict the conditions of this License, they do not
</div><div id="l228" class="code_block">excuse you from the conditions of this License.  If you cannot
</div><div id="l229" class="code_block">distribute so as to satisfy simultaneously your obligations under this
</div><div id="l230" class="code_block">License and any other pertinent obligations, then as a consequence you
</div><div id="l231" class="code_block">may not distribute the Program at all.  For example, if a patent
</div><div id="l232" class="code_block">license would not permit royalty-free redistribution of the Program by
</div><div id="l233" class="code_block">all those who receive copies directly or indirectly through you, then
</div><div id="l234" class="code_block">the only way you could satisfy both it and this License would be to
</div><div id="l235" class="code_block">refrain entirely from distribution of the Program.
</div><div id="l236" class="code_block">
</div><div id="l237" class="code_block">If any portion of this section is held invalid or unenforceable under
</div><div id="l238" class="code_block">any particular circumstance, the balance of the section is intended to
</div><div id="l239" class="code_block">apply and the section as a whole is intended to apply in other
</div><div id="l240" class="code_block">circumstances.
</div><div id="l241" class="code_block">
</div><div id="l242" class="code_block">It is not the purpose of this section to induce you to infringe any
</div><div id="l243" class="code_block">patents or other property right claims or to contest validity of any
</div><div id="l244" class="code_block">such claims; this section has the sole purpose of protecting the
</div><div id="l245" class="code_block">integrity of the free software distribution system, which is
</div><div id="l246" class="code_block">implemented by public license practices.  Many people have made
</div><div id="l247" class="code_block">generous contributions to the wide range of software distributed
</div><div id="l248" class="code_block">through that system in reliance on consistent application of that
</div><div id="l249" class="code_block">system; it is up to the author/donor to decide if he or she is willing
</div><div id="l250" class="code_block">to distribute software through any other system and a licensee cannot
</div><div id="l251" class="code_block">impose that choice.
</div><div id="l252" class="code_block">
</div><div id="l253" class="code_block">This section is intended to make thoroughly clear what is believed to
</div><div id="l254" class="code_block">be a consequence of the rest of this License.
</div><div id="l255" class="code_block">
</div><div id="l256" class="code_block">  8. If the distribution and/or use of the Program is restricted in
</div><div id="l257" class="code_block">certain countries either by patents or by copyrighted interfaces, the
</div><div id="l258" class="code_block">original copyright holder who places the Program under this License
</div><div id="l259" class="code_block">may add an explicit geographical distribution limitation excluding
</div><div id="l260" class="code_block">those countries, so that distribution is permitted only in or among
</div><div id="l261" class="code_block">countries not thus excluded.  In such case, this License incorporates
</div><div id="l262" class="code_block">the limitation as if written in the body of this License.
</div><div id="l263" class="code_block">
</div><div id="l264" class="code_block">  9. The Free Software Foundation may publish revised and/or new versions
</div><div id="l265" class="code_block">of the General Public License from time to time.  Such new versions will
</div><div id="l266" class="code_block">be similar in spirit to the present version, but may differ in detail to
</div><div id="l267" class="code_block">address new problems or concerns.
</div><div id="l268" class="code_block">
</div><div id="l269" class="code_block">Each version is given a distinguishing version number.  If the Program
</div><div id="l270" class="code_block">specifies a version number of this License which applies to it and &quot;any
</div><div id="l271" class="code_block">later version&quot;, you have the option of following the terms and conditions
</div><div id="l272" class="code_block">either of that version or of any later version published by the Free
</div><div id="l273" class="code_block">Software Foundation.  If the Program does not specify a version number of
</div><div id="l274" class="code_block">this License, you may choose any version ever published by the Free Software
</div><div id="l275" class="code_block">Foundation.
</div><div id="l276" class="code_block">
</div><div id="l277" class="code_block">  10. If you wish to incorporate parts of the Program into other free
</div><div id="l278" class="code_block">programs whose distribution conditions are different, write to the author
</div><div id="l279" class="code_block">to ask for permission.  For software which is copyrighted by the Free
</div><div id="l280" class="code_block">Software Foundation, write to the Free Software Foundation; we sometimes
</div><div id="l281" class="code_block">make exceptions for this.  Our decision will be guided by the two goals
</div><div id="l282" class="code_block">of preserving the free status of all derivatives of our free software and
</div><div id="l283" class="code_block">of promoting the sharing and reuse of software generally.
</div><div id="l284" class="code_block">
</div><div id="l285" class="code_block">			    NO WARRANTY
</div><div id="l286" class="code_block">
</div><div id="l287" class="code_block">  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
</div><div id="l288" class="code_block">FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
</div><div id="l289" class="code_block">OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
</div><div id="l290" class="code_block">PROVIDE THE PROGRAM &quot;AS IS&quot; WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
</div><div id="l291" class="code_block">OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
</div><div id="l292" class="code_block">MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
</div><div id="l293" class="code_block">TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
</div><div id="l294" class="code_block">PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
</div><div id="l295" class="code_block">REPAIR OR CORRECTION.
</div><div id="l296" class="code_block">
</div><div id="l297" class="code_block">  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
</div><div id="l298" class="code_block">WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
</div><div id="l299" class="code_block">REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
</div><div id="l300" class="code_block">INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
</div><div id="l301" class="code_block">OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
</div><div id="l302" class="code_block">TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
</div><div id="l303" class="code_block">YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
</div><div id="l304" class="code_block">PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
</div><div id="l305" class="code_block">POSSIBILITY OF SUCH DAMAGES.
</div><div id="l306" class="code_block">
</div><div id="l307" class="code_block">		     END OF TERMS AND CONDITIONS
</div><div id="l308" class="code_block">
</div><div id="l309" class="code_block">	    How to Apply These Terms to Your New Programs
</div><div id="l310" class="code_block">
</div><div id="l311" class="code_block">  If you develop a new program, and you want it to be of the greatest
</div><div id="l312" class="code_block">possible use to the public, the best way to achieve this is to make it
</div><div id="l313" class="code_block">free software which everyone can redistribute and change under these terms.
</div><div id="l314" class="code_block">
</div><div id="l315" class="code_block">  To do so, attach the following notices to the program.  It is safest
</div><div id="l316" class="code_block">to attach them to the start of each source file to most effectively
</div><div id="l317" class="code_block">convey the exclusion of warranty; and each file should have at least
</div><div id="l318" class="code_block">the &quot;copyright&quot; line and a pointer to where the full notice is found.
</div><div id="l319" class="code_block">
</div><div id="l320" class="code_block">    <span class="p">&lt;</span><span class="nt">one</span> <span class="na">line</span> <span class="na">to</span> <span class="na">give</span> <span class="na">the</span> <span class="na">program</span><span class="err">&#39;</span><span class="na">s</span> <span class="na">name</span> <span class="na">and</span> <span class="na">a</span> <span class="na">brief</span> <span class="na">idea</span> <span class="na">of</span> <span class="na">what</span> <span class="na">it</span> <span class="na">does</span><span class="err">.</span><span class="p">&gt;</span>
</div><div id="l321" class="code_block">    Copyright (C) <span class="p">&lt;</span><span class="nt">year</span><span class="p">&gt;</span>  <span class="p">&lt;</span><span class="nt">name</span> <span class="na">of</span> <span class="na">author</span><span class="p">&gt;</span>
</div><div id="l322" class="code_block">
</div><div id="l323" class="code_block">    This program is free software; you can redistribute it and/or modify
</div><div id="l324" class="code_block">    it under the terms of the GNU General Public License as published by
</div><div id="l325" class="code_block">    the Free Software Foundation; either version 2 of the License, or
</div><div id="l326" class="code_block">    (at your option) any later version.
</div><div id="l327" class="code_block">
</div><div id="l328" class="code_block">    This program is distributed in the hope that it will be useful,
</div><div id="l329" class="code_block">    but WITHOUT ANY WARRANTY; without even the implied warranty of
</div><div id="l330" class="code_block">    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
</div><div id="l331" class="code_block">    GNU General Public License for more details.
</div><div id="l332" class="code_block">
</div><div id="l333" class="code_block">    You should have received a copy of the GNU General Public License
</div><div id="l334" class="code_block">    along with this program; if not, write to the Free Software
</div><div id="l335" class="code_block">    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
</div><div id="l336" class="code_block">
</div><div id="l337" class="code_block">
</div><div id="l338" class="code_block">Also add information on how to contact you by electronic and paper mail.
</div><div id="l339" class="code_block">
</div><div id="l340" class="code_block">If the program is interactive, make it output a short notice like this
</div><div id="l341" class="code_block">when it starts in an interactive mode:
</div><div id="l342" class="code_block">
</div><div id="l343" class="code_block">    Gnomovision version 69, Copyright (C) year name of author
</div><div id="l344" class="code_block">    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w&#39;.
</div><div id="l345" class="code_block">    This is free software, and you are welcome to redistribute it
</div><div id="l346" class="code_block">    under certain conditions; type `show c&#39; for details.
</div><div id="l347" class="code_block">
</div><div id="l348" class="code_block">The hypothetical commands `show w&#39; and `show c&#39; should show the appropriate
</div><div id="l349" class="code_block">parts of the General Public License.  Of course, the commands you use may
</div><div id="l350" class="code_block">be called something other than `show w&#39; and `show c&#39;; they could even be
</div><div id="l351" class="code_block">mouse-clicks or menu items--whatever suits your program.
</div><div id="l352" class="code_block">
</div><div id="l353" class="code_block">You should also get your employer (if you work as a programmer) or your
</div><div id="l354" class="code_block">school, if any, to sign a &quot;copyright disclaimer&quot; for the program, if
</div><div id="l355" class="code_block">necessary.  Here is a sample; alter the names:
</div><div id="l356" class="code_block">
</div><div id="l357" class="code_block">  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
</div><div id="l358" class="code_block">  `Gnomovision&#39; (which makes passes at compilers) written by James Hacker.
</div><div id="l359" class="code_block">
</div><div id="l360" class="code_block">  <span class="p">&lt;</span><span class="nt">signature</span> <span class="na">of</span> <span class="na">Ty</span> <span class="na">Coon</span><span class="p">&gt;</span>, 1 April 1989
</div><div id="l361" class="code_block">  Ty Coon, President of Vice
</div><div id="l362" class="code_block">
</div><div id="l363" class="code_block">This General Public License does not permit incorporating your program into
</div><div id="l364" class="code_block">proprietary programs.  If your program is a subroutine library, you may
</div><div id="l365" class="code_block">consider it more useful to permit linking proprietary applications with the
</div><div id="l366" class="code_block">library.  If this is what you want to do, use the GNU Library General
</div><div id="l367" class="code_block">Public License instead of this License.
</div><div id="l368" class="code_block">
</div><div id="l369" class="code_block">======================================================================
</div><div id="l370" class="code_block">
</div><div id="l371" class="code_block">Golly uses an embedded Python interpreter for its scripting language.
</div><div id="l372" class="code_block">Here is the official license for the Python 2.4 release:
</div><div id="l373" class="code_block">
</div><div id="l374" class="code_block">A. HISTORY OF THE SOFTWARE
</div><div id="l375" class="code_block">==========================
</div><div id="l376" class="code_block">
</div><div id="l377" class="code_block">Python was created in the early 1990s by Guido van Rossum at Stichting
</div><div id="l378" class="code_block">Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
</div><div id="l379" class="code_block">as a successor of a language called ABC.  Guido remains Python&#39;s
</div><div id="l380" class="code_block">principal author, although it includes many contributions from others.
</div><div id="l381" class="code_block">
</div><div id="l382" class="code_block">In 1995, Guido continued his work on Python at the Corporation for
</div><div id="l383" class="code_block">National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
</div><div id="l384" class="code_block">in Reston, Virginia where he released several versions of the
</div><div id="l385" class="code_block">software.
</div><div id="l386" class="code_block">
</div><div id="l387" class="code_block">In May 2000, Guido and the Python core development team moved to
</div><div id="l388" class="code_block">BeOpen.com to form the BeOpen PythonLabs team.  In October of the same
</div><div id="l389" class="code_block">year, the PythonLabs team moved to Digital Creations (now Zope
</div><div id="l390" class="code_block">Corporation, see http://www.zope.com).  In 2001, the Python Software
</div><div id="l391" class="code_block">Foundation (PSF, see http://www.python.org/psf/) was formed, a
</div><div id="l392" class="code_block">non-profit organization created specifically to own Python-related
</div><div id="l393" class="code_block">Intellectual Property.  Zope Corporation is a sponsoring member of
</div><div id="l394" class="code_block">the PSF.
</div><div id="l395" class="code_block">
</div><div id="l396" class="code_block">All Python releases are Open Source (see http://www.opensource.org for
</div><div id="l397" class="code_block">the Open Source Definition).  Historically, most, but not all, Python
</div><div id="l398" class="code_block">releases have also been GPL-compatible; the table below summarizes
</div><div id="l399" class="code_block">the various releases.
</div><div id="l400" class="code_block">
</div><div id="l401" class="code_block">    Release         Derived     Year        Owner       GPL-
</div><div id="l402" class="code_block">                    from                                compatible? (1)
</div><div id="l403" class="code_block">
</div><div id="l404" class="code_block">    0.9.0 thru 1.2              1991-1995   CWI         yes
</div><div id="l405" class="code_block">    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
</div><div id="l406" class="code_block">    1.6             1.5.2       2000        CNRI        no
</div><div id="l407" class="code_block">    2.0             1.6         2000        BeOpen.com  no
</div><div id="l408" class="code_block">    1.6.1           1.6         2001        CNRI        yes (2)
</div><div id="l409" class="code_block">    2.1             2.0+1.6.1   2001        PSF         no
</div><div id="l410" class="code_block">    2.0.1           2.0+1.6.1   2001        PSF         yes
</div><div id="l411" class="code_block">    2.1.1           2.1+2.0.1   2001        PSF         yes
</div><div id="l412" class="code_block">    2.2             2.1.1       2001        PSF         yes
</div><div id="l413" class="code_block">    2.1.2           2.1.1       2002        PSF         yes
</div><div id="l414" class="code_block">    2.1.3           2.1.2       2002        PSF         yes
</div><div id="l415" class="code_block">    2.2.1           2.2         2002        PSF         yes
</div><div id="l416" class="code_block">    2.2.2           2.2.1       2002        PSF         yes
</div><div id="l417" class="code_block">    2.2.3           2.2.2       2003        PSF         yes
</div><div id="l418" class="code_block">    2.3             2.2.2       2002-2003   PSF         yes
</div><div id="l419" class="code_block">    2.3.1           2.3         2002-2003   PSF         yes
</div><div id="l420" class="code_block">    2.3.2           2.3.1       2002-2003   PSF         yes
</div><div id="l421" class="code_block">    2.3.3           2.3.2       2002-2003   PSF         yes
</div><div id="l422" class="code_block">    2.3.4           2.3.3       2004        PSF         yes
</div><div id="l423" class="code_block">    2.3.5           2.3.4       2005        PSF         yes
</div><div id="l424" class="code_block">    2.4             2.3         2004        PSF         yes
</div><div id="l425" class="code_block">    2.4.1           2.4         2005        PSF         yes
</div><div id="l426" class="code_block">    2.4.2           2.4.1       2005        PSF         yes
</div><div id="l427" class="code_block">
</div><div id="l428" class="code_block">Footnotes:
</div><div id="l429" class="code_block">
</div><div id="l430" class="code_block">(1) GPL-compatible doesn&#39;t mean that we&#39;re distributing Python under
</div><div id="l431" class="code_block">    the GPL.  All Python licenses, unlike the GPL, let you distribute
</div><div id="l432" class="code_block">    a modified version without making your changes open source.  The
</div><div id="l433" class="code_block">    GPL-compatible licenses make it possible to combine Python with
</div><div id="l434" class="code_block">    other software that is released under the GPL; the others don&#39;t.
</div><div id="l435" class="code_block">
</div><div id="l436" class="code_block">(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
</div><div id="l437" class="code_block">    because its license has a choice of law clause.  According to
</div><div id="l438" class="code_block">    CNRI, however, Stallman&#39;s lawyer has told CNRI&#39;s lawyer that 1.6.1
</div><div id="l439" class="code_block">    is &quot;not incompatible&quot; with the GPL.
</div><div id="l440" class="code_block">
</div><div id="l441" class="code_block">Thanks to the many outside volunteers who have worked under Guido&#39;s
</div><div id="l442" class="code_block">direction to make these releases possible.
</div><div id="l443" class="code_block">
</div><div id="l444" class="code_block">
</div><div id="l445" class="code_block">B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
</div><div id="l446" class="code_block">===============================================================
</div><div id="l447" class="code_block">
</div><div id="l448" class="code_block">PSF LICENSE AGREEMENT FOR PYTHON 2.4
</div><div id="l449" class="code_block">------------------------------------
</div><div id="l450" class="code_block">
</div><div id="l451" class="code_block">1. This LICENSE AGREEMENT is between the Python Software Foundation
</div><div id="l452" class="code_block">(&quot;PSF&quot;), and the Individual or Organization (&quot;Licensee&quot;) accessing and
</div><div id="l453" class="code_block">otherwise using Python 2.4 software in source or binary form and its
</div><div id="l454" class="code_block">associated documentation.
</div><div id="l455" class="code_block">
</div><div id="l456" class="code_block">2. Subject to the terms and conditions of this License Agreement, PSF
</div><div id="l457" class="code_block">hereby grants Licensee a nonexclusive, royalty-free, world-wide
</div><div id="l458" class="code_block">license to reproduce, analyze, test, perform and/or display publicly,
</div><div id="l459" class="code_block">prepare derivative works, distribute, and otherwise use Python 2.4
</div><div id="l460" class="code_block">alone or in any derivative version, provided, however, that PSF&#39;s
</div><div id="l461" class="code_block">License Agreement and PSF&#39;s notice of copyright, i.e., &quot;Copyright (c)
</div><div id="l462" class="code_block">2001, 2002, 2003, 2004 Python Software Foundation; All Rights Reserved&quot;
</div><div id="l463" class="code_block">are retained in Python 2.4 alone or in any derivative version prepared
</div><div id="l464" class="code_block">by Licensee.
</div><div id="l465" class="code_block">
</div><div id="l466" class="code_block">3. In the event Licensee prepares a derivative work that is based on
</div><div id="l467" class="code_block">or incorporates Python 2.4 or any part thereof, and wants to make
</div><div id="l468" class="code_block">the derivative work available to others as provided herein, then
</div><div id="l469" class="code_block">Licensee hereby agrees to include in any such work a brief summary of
</div><div id="l470" class="code_block">the changes made to Python 2.4.
</div><div id="l471" class="code_block">
</div><div id="l472" class="code_block">4. PSF is making Python 2.4 available to Licensee on an &quot;AS IS&quot;
</div><div id="l473" class="code_block">basis.  PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
</div><div id="l474" class="code_block">IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
</div><div id="l475" class="code_block">DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
</div><div id="l476" class="code_block">FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 2.4 WILL NOT
</div><div id="l477" class="code_block">INFRINGE ANY THIRD PARTY RIGHTS.
</div><div id="l478" class="code_block">
</div><div id="l479" class="code_block">5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
</div><div id="l480" class="code_block">2.4 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
</div><div id="l481" class="code_block">A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.4,
</div><div id="l482" class="code_block">OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
</div><div id="l483" class="code_block">
</div><div id="l484" class="code_block">6. This License Agreement will automatically terminate upon a material
</div><div id="l485" class="code_block">breach of its terms and conditions.
</div><div id="l486" class="code_block">
</div><div id="l487" class="code_block">7. Nothing in this License Agreement shall be deemed to create any
</div><div id="l488" class="code_block">relationship of agency, partnership, or joint venture between PSF and
</div><div id="l489" class="code_block">Licensee.  This License Agreement does not grant permission to use PSF
</div><div id="l490" class="code_block">trademarks or trade name in a trademark sense to endorse or promote
</div><div id="l491" class="code_block">products or services of Licensee, or any third party.
</div><div id="l492" class="code_block">
</div><div id="l493" class="code_block">8. By copying, installing or otherwise using Python 2.4, Licensee
</div><div id="l494" class="code_block">agrees to be bound by the terms and conditions of this License
</div><div id="l495" class="code_block">Agreement.
</div><div id="l496" class="code_block">
</div><div id="l497" class="code_block">
</div><div id="l498" class="code_block">BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
</div><div id="l499" class="code_block">-------------------------------------------
</div><div id="l500" class="code_block">
</div><div id="l501" class="code_block">BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
</div><div id="l502" class="code_block">
</div><div id="l503" class="code_block">1. This LICENSE AGREEMENT is between BeOpen.com (&quot;BeOpen&quot;), having an
</div><div id="l504" class="code_block">office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
</div><div id="l505" class="code_block">Individual or Organization (&quot;Licensee&quot;) accessing and otherwise using
</div><div id="l506" class="code_block">this software in source or binary form and its associated
</div><div id="l507" class="code_block">documentation (&quot;the Software&quot;).
</div><div id="l508" class="code_block">
</div><div id="l509" class="code_block">2. Subject to the terms and conditions of this BeOpen Python License
</div><div id="l510" class="code_block">Agreement, BeOpen hereby grants Licensee a non-exclusive,
</div><div id="l511" class="code_block">royalty-free, world-wide license to reproduce, analyze, test, perform
</div><div id="l512" class="code_block">and/or display publicly, prepare derivative works, distribute, and
</div><div id="l513" class="code_block">otherwise use the Software alone or in any derivative version,
</div><div id="l514" class="code_block">provided, however, that the BeOpen Python License is retained in the
</div><div id="l515" class="code_block">Software, alone or in any derivative version prepared by Licensee.
</div><div id="l516" class="code_block">
</div><div id="l517" class="code_block">3. BeOpen is making the Software available to Licensee on an &quot;AS IS&quot;
</div><div id="l518" class="code_block">basis.  BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
</div><div id="l519" class="code_block">IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
</div><div id="l520" class="code_block">DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
</div><div id="l521" class="code_block">FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
</div><div id="l522" class="code_block">INFRINGE ANY THIRD PARTY RIGHTS.
</div><div id="l523" class="code_block">
</div><div id="l524" class="code_block">4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
</div><div id="l525" class="code_block">SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
</div><div id="l526" class="code_block">AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
</div><div id="l527" class="code_block">DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
</div><div id="l528" class="code_block">
</div><div id="l529" class="code_block">5. This License Agreement will automatically terminate upon a material
</div><div id="l530" class="code_block">breach of its terms and conditions.
</div><div id="l531" class="code_block">
</div><div id="l532" class="code_block">6. This License Agreement shall be governed by and interpreted in all
</div><div id="l533" class="code_block">respects by the law of the State of California, excluding conflict of
</div><div id="l534" class="code_block">law provisions.  Nothing in this License Agreement shall be deemed to
</div><div id="l535" class="code_block">create any relationship of agency, partnership, or joint venture
</div><div id="l536" class="code_block">between BeOpen and Licensee.  This License Agreement does not grant
</div><div id="l537" class="code_block">permission to use BeOpen trademarks or trade names in a trademark
</div><div id="l538" class="code_block">sense to endorse or promote products or services of Licensee, or any
</div><div id="l539" class="code_block">third party.  As an exception, the &quot;BeOpen Python&quot; logos available at
</div><div id="l540" class="code_block">http://www.pythonlabs.com/logos.html may be used according to the
</div><div id="l541" class="code_block">permissions granted on that web page.
</div><div id="l542" class="code_block">
</div><div id="l543" class="code_block">7. By copying, installing or otherwise using the software, Licensee
</div><div id="l544" class="code_block">agrees to be bound by the terms and conditions of this License
</div><div id="l545" class="code_block">Agreement.
</div><div id="l546" class="code_block">
</div><div id="l547" class="code_block">
</div><div id="l548" class="code_block">CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
</div><div id="l549" class="code_block">---------------------------------------
</div><div id="l550" class="code_block">
</div><div id="l551" class="code_block">1. This LICENSE AGREEMENT is between the Corporation for National
</div><div id="l552" class="code_block">Research Initiatives, having an office at 1895 Preston White Drive,
</div><div id="l553" class="code_block">Reston, VA 20191 (&quot;CNRI&quot;), and the Individual or Organization
</div><div id="l554" class="code_block">(&quot;Licensee&quot;) accessing and otherwise using Python 1.6.1 software in
</div><div id="l555" class="code_block">source or binary form and its associated documentation.
</div><div id="l556" class="code_block">
</div><div id="l557" class="code_block">2. Subject to the terms and conditions of this License Agreement, CNRI
</div><div id="l558" class="code_block">hereby grants Licensee a nonexclusive, royalty-free, world-wide
</div><div id="l559" class="code_block">license to reproduce, analyze, test, perform and/or display publicly,
</div><div id="l560" class="code_block">prepare derivative works, distribute, and otherwise use Python 1.6.1
</div><div id="l561" class="code_block">alone or in any derivative version, provided, however, that CNRI&#39;s
</div><div id="l562" class="code_block">License Agreement and CNRI&#39;s notice of copyright, i.e., &quot;Copyright (c)
</div><div id="l563" class="code_block">1995-2001 Corporation for National Research Initiatives; All Rights
</div><div id="l564" class="code_block">Reserved&quot; are retained in Python 1.6.1 alone or in any derivative
</div><div id="l565" class="code_block">version prepared by Licensee.  Alternately, in lieu of CNRI&#39;s License
</div><div id="l566" class="code_block">Agreement, Licensee may substitute the following text (omitting the
</div><div id="l567" class="code_block">quotes): &quot;Python 1.6.1 is made available subject to the terms and
</div><div id="l568" class="code_block">conditions in CNRI&#39;s License Agreement.  This Agreement together with
</div><div id="l569" class="code_block">Python 1.6.1 may be located on the Internet using the following
</div><div id="l570" class="code_block">unique, persistent identifier (known as a handle): 1895.22/1013.  This
</div><div id="l571" class="code_block">Agreement may also be obtained from a proxy server on the Internet
</div><div id="l572" class="code_block">using the following URL: http://hdl.handle.net/1895.22/1013&quot;.
</div><div id="l573" class="code_block">
</div><div id="l574" class="code_block">3. In the event Licensee prepares a derivative work that is based on
</div><div id="l575" class="code_block">or incorporates Python 1.6.1 or any part thereof, and wants to make
</div><div id="l576" class="code_block">the derivative work available to others as provided herein, then
</div><div id="l577" class="code_block">Licensee hereby agrees to include in any such work a brief summary of
</div><div id="l578" class="code_block">the changes made to Python 1.6.1.
</div><div id="l579" class="code_block">
</div><div id="l580" class="code_block">4. CNRI is making Python 1.6.1 available to Licensee on an &quot;AS IS&quot;
</div><div id="l581" class="code_block">basis.  CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
</div><div id="l582" class="code_block">IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
</div><div id="l583" class="code_block">DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
</div><div id="l584" class="code_block">FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
</div><div id="l585" class="code_block">INFRINGE ANY THIRD PARTY RIGHTS.
</div><div id="l586" class="code_block">
</div><div id="l587" class="code_block">5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
</div><div id="l588" class="code_block">1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
</div><div id="l589" class="code_block">A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
</div><div id="l590" class="code_block">OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
</div><div id="l591" class="code_block">
</div><div id="l592" class="code_block">6. This License Agreement will automatically terminate upon a material
</div><div id="l593" class="code_block">breach of its terms and conditions.
</div><div id="l594" class="code_block">
</div><div id="l595" class="code_block">7. This License Agreement shall be governed by the federal
</div><div id="l596" class="code_block">intellectual property law of the United States, including without
</div><div id="l597" class="code_block">limitation the federal copyright law, and, to the extent such
</div><div id="l598" class="code_block">U.S. federal law does not apply, by the law of the Commonwealth of
</div><div id="l599" class="code_block">Virginia, excluding Virginia&#39;s conflict of law provisions.
</div><div id="l600" class="code_block">Notwithstanding the foregoing, with regard to derivative works based
</div><div id="l601" class="code_block">on Python 1.6.1 that incorporate non-separable material that was
</div><div id="l602" class="code_block">previously distributed under the GNU General Public License (GPL), the
</div><div id="l603" class="code_block">law of the Commonwealth of Virginia shall govern this License
</div><div id="l604" class="code_block">Agreement only as to issues arising under or with respect to
</div><div id="l605" class="code_block">Paragraphs 4, 5, and 7 of this License Agreement.  Nothing in this
</div><div id="l606" class="code_block">License Agreement shall be deemed to create any relationship of
</div><div id="l607" class="code_block">agency, partnership, or joint venture between CNRI and Licensee.  This
</div><div id="l608" class="code_block">License Agreement does not grant permission to use CNRI trademarks or
</div><div id="l609" class="code_block">trade name in a trademark sense to endorse or promote products or
</div><div id="l610" class="code_block">services of Licensee, or any third party.
</div><div id="l611" class="code_block">
</div><div id="l612" class="code_block">8. By clicking on the &quot;ACCEPT&quot; button where indicated, or by copying,
</div><div id="l613" class="code_block">installing or otherwise using Python 1.6.1, Licensee agrees to be
</div><div id="l614" class="code_block">bound by the terms and conditions of this License Agreement.
</div><div id="l615" class="code_block">
</div><div id="l616" class="code_block">
</div><div id="l617" class="code_block">CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
</div><div id="l618" class="code_block">--------------------------------------------------
</div><div id="l619" class="code_block">
</div><div id="l620" class="code_block">Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
</div><div id="l621" class="code_block">The Netherlands.  All rights reserved.
</div><div id="l622" class="code_block">
</div><div id="l623" class="code_block">Permission to use, copy, modify, and distribute this software and its
</div><div id="l624" class="code_block">documentation for any purpose and without fee is hereby granted,
</div><div id="l625" class="code_block">provided that the above copyright notice appear in all copies and that
</div><div id="l626" class="code_block">both that copyright notice and this permission notice appear in
</div><div id="l627" class="code_block">supporting documentation, and that the name of Stichting Mathematisch
</div><div id="l628" class="code_block">Centrum or CWI not be used in advertising or publicity pertaining to
</div><div id="l629" class="code_block">distribution of the software without specific, written prior
</div><div id="l630" class="code_block">permission.
</div><div id="l631" class="code_block">
</div><div id="l632" class="code_block">STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
</div><div id="l633" class="code_block">THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
</div><div id="l634" class="code_block">FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
</div><div id="l635" class="code_block">FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
</div><div id="l636" class="code_block">WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
</div><div id="l637" class="code_block">ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
</div><div id="l638" class="code_block">OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
</div><div id="l639" class="code_block"><span class="p">&lt;/</span><span class="nt">pre</span><span class="p">&gt;</span>
</div><div id="l640" class="code_block"><span class="p">&lt;/</span><span class="nt">td</span><span class="p">&gt;&lt;/</span><span class="nt">tr</span><span class="p">&gt;&lt;/</span><span class="nt">table</span><span class="p">&gt;&lt;/</span><span class="nt">center</span><span class="p">&gt;</span>
</div><div id="l641" class="code_block"><span class="p">&lt;/</span><span class="nt">body</span><span class="p">&gt;</span>
</div><div id="l642" class="code_block"><span class="p">&lt;/</span><span class="nt">html</span><span class="p">&gt;</span>
</div></pre></div>
</td></tr></table>
      
    </div>
  

                    </div>
                    
                    
                </div>
            


        </div>
    </section>
      

<footer class="sandiego">
    <section class="l-nav-top">
        <nav class="row">
            <div class="columns show-for-large large-2">
                <a href="/about" title="About">About</a>
                <a href="/blog/category/sitestatus/" title="Site Status">Site Status</a>
                <a href="https://twitter.com/sfnet_ops" title="@sfnet_ops" rel="nofollow">@sfnet_ops</a>
            </div>
            <div class="columns show-for-large large-2">
                
                    <a href="/create" title="Create a Project">Create a Project</a>
                    <a href="/directory/" title="Open Source Software Directory">Open Source Software</a>
                    <a href="/software/" title="Business Software Directory">Business Software</a>
                

                
                <a href="/top" title="Top Downloaded Projects">Top Downloaded Projects</a>
                
            </div>
            <div class="columns show-for-large large-2">
                <a href="/blog/" title="Blog">Blog</a>
                <a href="https://twitter.com/sourceforge" title="@sourceforge" rel="nofollow">@sourceforge</a>
                <a href="https://library.slashdotmedia.com/" title="Resources" rel="nofollow">Resources</a>
            </div>
            <div class="columns show-for-large large-2">
                <a href="/articles/" title="Industry News">Articles</a>
                
                <a href="https://p.sf.net/sourceforge/docs" title="Site Documentation">Site Documentation</a>
                
                <a href="/support" title="Support Request">Support Request</a>
            </div>

            <div class="columns small-12 large-4 sf-logo">
                <a href="/" title="Home" class="sf-logo">
                    

<svg  version="1.1"  xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"     viewBox="0 0 653 102.6" style="enable-background:new 0 0 653 102.6;" xml:space="preserve"><path class="st0" d="M66.9,54.5c0-19.1-6.8-27.8-10.4-31.1c-0.7-0.6-1.8-0.1-1.7,0.9c0.7,10.8-12.9,13.5-12.9,30.4h0    c0,0,0,0.1,0,0.1c0,10.3,7.8,18.7,17.4,18.7c9.6,0,17.4-8.4,17.4-18.7c0,0,0-0.1,0-0.1h0c0-4.8-1.8-9.4-3.6-12.8    c-0.4-0.7-1.4-0.4-1.3,0.2C75.1,56.7,66.9,65.7,66.9,54.5z"/><g>    <path class="st0" d="M46.2,94.8c-0.4,0-0.9-0.2-1.2-0.5L0.5,49.8c-0.6-0.6-0.6-1.7,0-2.4l47-47C47.8,0.2,48.2,0,48.6,0h13.5        c0.8,0,1.3,0.5,1.5,1c0.2,0.5,0.2,1.2-0.4,1.8L19.1,47c-0.9,0.9-0.9,2.3,0,3.2L54,85.2c0.6,0.6,0.6,1.7,0,2.4l-6.7,6.8        C47,94.6,46.6,94.8,46.2,94.8z"/></g><g>    <path class="st0" d="M55.1,102.6c-0.8,0-1.3-0.5-1.5-1c-0.2-0.5-0.2-1.2,0.4-1.8l44.2-44.2c0.4-0.4,0.7-1,0.7-1.6        c0-0.6-0.2-1.2-0.7-1.6L63.2,17.4c-0.6-0.6-0.6-1.7,0-2.4l6.8-6.8c0.3-0.3,0.7-0.5,1.2-0.5S72,8,72.3,8.3l44.4,44.5        c0.3,0.3,0.5,0.7,0.5,1.2s-0.2,0.9-0.5,1.2l-47,47c-0.3,0.3-0.7,0.5-1.2,0.5H55.1z"/></g><g>    <g>        <path class="st1" d="M167.2,32c-0.2,0.4-0.5,0.6-1,0.6c-0.3,0-0.7-0.2-1.2-0.7c-0.5-0.5-1.2-1-2-1.5c-0.9-0.6-1.9-1.1-3.2-1.5            c-1.3-0.5-2.9-0.7-4.8-0.7c-1.9,0-3.5,0.3-5,0.8c-1.4,0.5-2.6,1.3-3.6,2.2s-1.7,2-2.2,3.2c-0.5,1.2-0.8,2.5-0.8,3.8            c0,1.8,0.4,3.2,1.1,4.4c0.7,1.1,1.7,2.1,3,2.9c1.2,0.8,2.6,1.5,4.2,2c1.6,0.6,3.2,1.1,4.8,1.6c1.6,0.5,3.2,1.1,4.8,1.8            c1.6,0.6,2.9,1.5,4.2,2.4s2.2,2.2,3,3.6c0.7,1.4,1.1,3.2,1.1,5.3c0,2.2-0.4,4.2-1.1,6.1c-0.7,1.9-1.8,3.6-3.2,5            c-1.4,1.4-3.2,2.5-5.2,3.4c-2.1,0.8-4.4,1.2-7,1.2c-3.4,0-6.4-0.6-8.8-1.8c-2.5-1.2-4.6-2.9-6.5-5l1-1.6c0.3-0.4,0.6-0.5,1-0.5            c0.2,0,0.5,0.1,0.8,0.4c0.3,0.3,0.8,0.7,1.2,1.1c0.5,0.4,1.1,0.9,1.8,1.4c0.7,0.5,1.5,1,2.4,1.4c0.9,0.4,1.9,0.8,3.1,1.1            c1.2,0.3,2.5,0.4,4,0.4c2.1,0,3.9-0.3,5.5-0.9c1.6-0.6,3-1.5,4.1-2.5s2-2.4,2.6-3.8c0.6-1.5,0.9-3.1,0.9-4.7            c0-1.8-0.4-3.3-1.1-4.5c-0.7-1.2-1.7-2.2-3-3c-1.2-0.8-2.6-1.5-4.2-2c-1.6-0.5-3.2-1.1-4.8-1.6c-1.6-0.5-3.2-1.1-4.8-1.7            c-1.6-0.6-2.9-1.4-4.2-2.4c-1.2-1-2.2-2.2-3-3.7c-0.7-1.5-1.1-3.3-1.1-5.6c0-1.7,0.3-3.4,1-5c0.7-1.6,1.6-3,2.9-4.3            c1.3-1.2,2.8-2.2,4.7-3c1.9-0.7,4-1.1,6.4-1.1c2.7,0,5.1,0.4,7.3,1.3c2.1,0.9,4.1,2.2,5.9,3.9L167.2,32z"/>        <path class="st2" d="M152.9,78.8c-3.5,0-6.6-0.6-9.1-1.9c-2.5-1.2-4.8-3-6.7-5.1l-0.3-0.3l1.3-2c0.6-0.7,1.1-0.8,1.5-0.8            c0.4,0,0.8,0.2,1.2,0.6c0.3,0.3,0.8,0.7,1.3,1.1c0.5,0.4,1.1,0.9,1.7,1.4c0.7,0.5,1.4,0.9,2.3,1.3c0.9,0.4,1.9,0.8,3,1            c1.1,0.3,2.4,0.4,3.9,0.4c2,0,3.8-0.3,5.3-0.9c1.5-0.6,2.8-1.4,3.9-2.4c1-1,1.9-2.2,2.4-3.6c0.6-1.4,0.8-2.9,0.8-4.5            c0-1.7-0.3-3.1-1-4.2c-0.7-1.1-1.6-2-2.8-2.8c-1.2-0.8-2.5-1.4-4-1.9c-1.5-0.5-3.1-1.1-4.8-1.6c-1.7-0.5-3.3-1.1-4.8-1.7            c-1.6-0.7-3.1-1.5-4.3-2.5c-1.3-1-2.3-2.4-3.1-3.9c-0.8-1.6-1.2-3.5-1.2-5.8c0-1.8,0.3-3.6,1-5.3c0.7-1.7,1.7-3.2,3-4.5            c1.3-1.3,3-2.3,4.9-3.1c1.9-0.8,4.2-1.2,6.6-1.2c2.8,0,5.3,0.4,7.5,1.3c2.2,0.9,4.2,2.3,6.1,4.1l0.3,0.3l-1.1,2.1            c-0.6,1.1-1.7,1.4-3.1,0.1c-0.5-0.4-1.1-0.9-2-1.4c-0.8-0.5-1.9-1-3.1-1.5c-1.2-0.4-2.7-0.7-4.6-0.7c-1.8,0-3.4,0.3-4.8,0.8            c-1.3,0.5-2.5,1.2-3.4,2.1c-0.9,0.9-1.6,1.9-2.1,3c-0.5,1.1-0.7,2.4-0.7,3.6c0,1.6,0.3,3,1,4c0.7,1.1,1.6,2,2.8,2.8            c1.2,0.8,2.5,1.4,4,2c1.5,0.5,3.1,1.1,4.8,1.6c1.6,0.5,3.3,1.1,4.8,1.8c1.6,0.7,3.1,1.5,4.3,2.5c1.3,1,2.3,2.3,3.1,3.8            c0.8,1.5,1.2,3.4,1.2,5.6c0,2.2-0.4,4.4-1.2,6.4c-0.8,2-1.9,3.7-3.4,5.2c-1.5,1.5-3.3,2.6-5.4,3.5            C158.1,78.3,155.6,78.8,152.9,78.8z M138.4,71.3c1.7,1.9,3.7,3.4,6,4.5c2.4,1.2,5.3,1.8,8.6,1.8c2.5,0,4.8-0.4,6.8-1.2            c2-0.8,3.6-1.9,5-3.2c1.3-1.3,2.4-3,3.1-4.8c0.7-1.8,1.1-3.8,1.1-5.9c0-2-0.4-3.7-1-5.1c-0.7-1.3-1.6-2.5-2.8-3.4            c-1.2-0.9-2.5-1.7-4-2.4c-1.5-0.6-3.1-1.2-4.7-1.8c-1.6-0.5-3.2-1.1-4.8-1.6c-1.6-0.6-3-1.3-4.3-2.1c-1.3-0.8-2.3-1.9-3.1-3.1            c-0.8-1.2-1.2-2.8-1.2-4.7c0-1.4,0.3-2.8,0.8-4.1c0.5-1.3,1.3-2.5,2.3-3.4c1-1,2.3-1.8,3.8-2.3c1.5-0.6,3.3-0.8,5.2-0.8            c1.9,0,3.6,0.2,5,0.7c1.3,0.5,2.5,1,3.3,1.6c0.9,0.6,1.6,1.1,2.1,1.6c0.6,0.5,0.8,0.5,0.8,0.5c0.1,0,0.3,0,0.4-0.3l0.7-1.3            c-1.6-1.5-3.4-2.7-5.3-3.5c-2.1-0.8-4.4-1.2-7-1.2c-2.3,0-4.4,0.4-6.2,1.1c-1.8,0.7-3.3,1.7-4.5,2.8c-1.2,1.2-2.1,2.5-2.8,4.1            c-0.6,1.5-0.9,3.1-0.9,4.8c0,2.1,0.4,3.9,1.1,5.3c0.7,1.4,1.6,2.6,2.8,3.5c1.2,0.9,2.5,1.7,4,2.3c1.5,0.6,3.1,1.2,4.7,1.7            c1.6,0.5,3.2,1,4.8,1.6c1.6,0.6,3,1.2,4.3,2.1c1.3,0.8,2.4,1.9,3.1,3.2c0.8,1.3,1.2,2.9,1.2,4.9c0,1.8-0.3,3.4-0.9,5            c-0.6,1.6-1.5,2.9-2.7,4c-1.2,1.1-2.6,2-4.3,2.7c-1.7,0.6-3.6,1-5.7,1c-1.5,0-2.9-0.2-4.2-0.5c-1.2-0.3-2.3-0.7-3.2-1.1            c-0.9-0.4-1.8-0.9-2.5-1.5c-0.7-0.5-1.3-1-1.8-1.4c-0.5-0.4-0.9-0.8-1.2-1.1c-0.3-0.3-0.5-0.3-0.5-0.3c-0.1,0-0.3,0-0.5,0.3            L138.4,71.3z"/>    </g>    <g>        <path class="st1" d="M226.7,51.6c0,4-0.6,7.6-1.8,10.9c-1.2,3.3-2.9,6.1-5.1,8.4c-2.2,2.3-4.8,4.1-7.8,5.4            c-3,1.3-6.4,1.9-10.1,1.9c-3.6,0-7-0.6-10-1.9c-3-1.3-5.6-3-7.8-5.4c-2.2-2.3-3.9-5.1-5.1-8.4c-1.2-3.3-1.8-6.9-1.8-10.9            c0-4,0.6-7.6,1.8-10.9c1.2-3.3,2.9-6.1,5.1-8.4c2.2-2.3,4.8-4.1,7.8-5.4c3-1.3,6.4-1.9,10-1.9c3.7,0,7.1,0.6,10.1,1.9            c3,1.3,5.6,3,7.8,5.4c2.2,2.3,3.9,5.1,5.1,8.4C226.1,44,226.7,47.6,226.7,51.6z M222.8,51.6c0-3.6-0.5-6.9-1.5-9.8            c-1-2.9-2.4-5.3-4.2-7.3c-1.8-2-4-3.5-6.6-4.6c-2.6-1.1-5.4-1.6-8.5-1.6c-3.1,0-5.9,0.5-8.5,1.6c-2.6,1.1-4.8,2.6-6.6,4.6            c-1.8,2-3.3,4.4-4.3,7.3c-1,2.9-1.5,6.1-1.5,9.8c0,3.6,0.5,6.9,1.5,9.8c1,2.9,2.4,5.3,4.3,7.3c1.8,2,4,3.5,6.6,4.6            c2.6,1.1,5.4,1.6,8.5,1.6c3.1,0,6-0.5,8.5-1.6c2.6-1,4.8-2.6,6.6-4.6c1.8-2,3.2-4.4,4.2-7.3C222.3,58.5,222.8,55.3,222.8,51.6z"/>        <path class="st2" d="M202,78.7c-3.7,0-7.2-0.7-10.2-1.9c-3.1-1.3-5.8-3.1-8-5.5c-2.2-2.4-4-5.2-5.2-8.6c-1.2-3.3-1.9-7.1-1.9-11.1            c0-4,0.6-7.8,1.9-11.1c1.2-3.3,3-6.2,5.2-8.6c2.2-2.4,4.9-4.2,8-5.5c3.1-1.3,6.5-2,10.2-2c3.8,0,7.2,0.7,10.3,1.9            c3.1,1.3,5.8,3.1,8,5.5c2.2,2.4,4,5.3,5.2,8.6c1.2,3.3,1.8,7,1.8,11.1c0,4.1-0.6,7.8-1.8,11.1c-1.2,3.3-3,6.2-5.2,8.6            c-2.2,2.4-4.9,4.2-8,5.5C209.2,78.1,205.7,78.7,202,78.7z M202,25.7c-3.5,0-6.8,0.6-9.8,1.9c-2.9,1.2-5.5,3-7.6,5.2            c-2.1,2.2-3.8,5-4.9,8.2c-1.2,3.2-1.8,6.8-1.8,10.7c0,3.9,0.6,7.5,1.8,10.7c1.2,3.2,2.8,5.9,4.9,8.2c2.1,2.2,4.7,4,7.6,5.2            c2.9,1.2,6.2,1.8,9.8,1.8c3.6,0,6.9-0.6,9.8-1.8c2.9-1.2,5.5-3,7.6-5.2c2.1-2.2,3.8-5,4.9-8.1c1.2-3.2,1.8-6.8,1.8-10.7            c0-3.9-0.6-7.5-1.8-10.7c-1.2-3.2-2.8-5.9-4.9-8.2c-2.1-2.2-4.7-4-7.6-5.2C208.9,26.3,205.6,25.7,202,25.7z"/>    </g>    <g>        <path class="st1" d="M256.4,74.9c2.5,0,4.7-0.4,6.7-1.3c2-0.9,3.6-2.1,5-3.6c1.4-1.5,2.4-3.4,3.1-5.4c0.7-2.1,1.1-4.3,1.1-6.8            V25.7h3.7v32.1c0,2.9-0.5,5.5-1.4,8c-0.9,2.5-2.2,4.6-3.9,6.5c-1.7,1.8-3.8,3.3-6.2,4.3c-2.4,1-5.2,1.6-8.2,1.6            c-3,0-5.8-0.5-8.2-1.6c-2.4-1.1-4.5-2.5-6.2-4.3c-1.7-1.8-3-4-3.9-6.5c-0.9-2.5-1.4-5.2-1.4-8V25.7h3.8v32c0,2.4,0.4,4.7,1.1,6.8            c0.7,2.1,1.8,3.9,3.1,5.4c1.4,1.5,3,2.7,5,3.6C251.6,74.5,253.9,74.9,256.4,74.9z"/>        <path class="st2" d="M256.4,78.8c-3.1,0-5.9-0.5-8.4-1.6c-2.5-1.1-4.7-2.6-6.4-4.5c-1.7-1.9-3.1-4.2-4-6.7            c-0.9-2.5-1.4-5.3-1.4-8.2V25.1h5v32.7c0,2.3,0.4,4.5,1,6.6c0.7,2,1.7,3.8,3,5.2c1.3,1.5,2.9,2.6,4.8,3.5c1.9,0.8,4,1.3,6.4,1.3            c2.4,0,4.6-0.4,6.4-1.2c1.9-0.8,3.5-2,4.8-3.5c1.3-1.5,2.3-3.2,3-5.2c0.7-2,1-4.2,1-6.6V25.1h5v32.7c0,2.9-0.5,5.7-1.4,8.2            c-0.9,2.5-2.3,4.8-4,6.7c-1.7,1.9-3.9,3.4-6.4,4.5C262.3,78.3,259.5,78.8,256.4,78.8z M237.3,26.3v31.5c0,2.8,0.4,5.4,1.3,7.8            c0.9,2.4,2.1,4.5,3.8,6.3c1.6,1.8,3.6,3.2,6,4.2c2.3,1,5,1.5,8,1.5c2.9,0,5.6-0.5,8-1.5c2.3-1,4.4-2.4,6-4.2            c1.6-1.8,2.9-3.9,3.8-6.3c0.9-2.4,1.3-5,1.3-7.8V26.3h-2.5v31.5c0,2.5-0.4,4.8-1.1,7c-0.7,2.2-1.8,4.1-3.3,5.7            c-1.4,1.6-3.2,2.9-5.2,3.8c-2,0.9-4.4,1.4-6.9,1.4c-2.6,0-4.9-0.5-6.9-1.4c-2-0.9-3.8-2.2-5.2-3.8c-1.4-1.6-2.5-3.5-3.2-5.7            c-0.7-2.1-1.1-4.5-1.1-7V26.3H237.3z"/>    </g>    <g>        <path class="st1" d="M297.5,51.3c1,0,0.9,0,0.9,0l2.2,0c2.3,0,4.4-0.3,6.2-0.8c1.8-0.6,3.4-1.3,4.6-2.4c1.3-1,2.2-2.3,2.9-3.7            c0.7-1.4,1-3.1,1-4.9c0-3.7-1.2-6.4-3.6-8.2c-2.4-1.8-5.9-2.7-10.6-2.7h-9.5v22.7v2.8v23.5h-3.7V25.7h13.2c6,0,10.5,1.2,13.4,3.5            c3,2.3,4.4,5.7,4.4,10.2c0,2-0.3,3.8-1,5.4c-0.7,1.6-1.7,3.1-3,4.3c-1.3,1.2-2.8,2.3-4.6,3c-1.8,0.8-3.9,1.3-6.1,1.6            c0.6,0.4,1.1,0.9,1.6,1.5l17.9,22.4h-3.3c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.4-0.8-0.7l-16.6-21c-0.4-0.5-0.9-0.9-1.3-1.1            c-0.5-0.2-3.4-0.3-4.4-0.3C296.3,51.6,296.7,51.3,297.5,51.3z"/>        <path class="st2" d="M325,78.2h-4.5c-0.5,0-0.9-0.1-1.3-0.3c-0.4-0.2-0.7-0.5-1-0.9l-16.6-21c-0.4-0.5-0.7-0.8-1.1-1            c-0.4-0.1-2.8-0.3-4.1-0.3h-0.6v-2.6c0-0.9,0.2-1.4,1.8-1.4c0.9,0,1,0,1,0l2.2,0c2.2,0,4.2-0.3,6-0.8c1.7-0.5,3.2-1.3,4.4-2.3            c1.2-1,2.1-2.1,2.7-3.5c0.6-1.4,0.9-2.9,0.9-4.6c0-3.5-1.1-6-3.4-7.7c-2.3-1.7-5.7-2.6-10.2-2.6h-8.9v48.9h-5V25.1h13.9            c6.1,0,10.7,1.2,13.8,3.6c3.1,2.4,4.7,6,4.7,10.7c0,2.1-0.4,4-1.1,5.7c-0.7,1.7-1.8,3.2-3.1,4.5c-1.3,1.3-3,2.3-4.8,3.2            c-1.5,0.6-3.1,1.1-4.9,1.4c0.2,0.2,0.4,0.4,0.6,0.7L325,78.2z M296.9,53.5c1.1,0,3.4,0.1,4,0.4c0.6,0.3,1.1,0.7,1.6,1.3l16.6,21            c0.2,0.3,0.4,0.5,0.6,0.6c0.2,0.1,0.4,0.2,0.7,0.2h2l-17.1-21.4c-0.4-0.6-0.9-1-1.4-1.3l-1.5-0.9l1.8-0.2c2.2-0.2,4.2-0.7,5.9-1.5            c1.7-0.8,3.2-1.7,4.5-2.9c1.2-1.2,2.2-2.5,2.8-4.1c0.6-1.6,1-3.3,1-5.2c0-4.3-1.4-7.5-4.2-9.7c-2.8-2.2-7.2-3.3-13-3.3h-12.6V77            h2.5V28h10.1c4.7,0,8.4,0.9,10.9,2.8c2.6,1.9,3.9,4.8,3.9,8.7c0,1.9-0.4,3.6-1,5.1c-0.7,1.5-1.7,2.8-3.1,3.9            c-1.3,1.1-2.9,1.9-4.8,2.5c-1.9,0.6-4,0.9-6.4,0.9l-2.2,0c-0.1,0-0.2,0-0.9,0C297.3,51.9,297,51.9,296.9,53.5z"/>    </g>    <g>        <path class="st1" d="M367.6,68.8c0.2,0,0.5,0.1,0.6,0.3l1.5,1.6c-1.1,1.1-2.2,2.2-3.5,3.1c-1.3,0.9-2.7,1.7-4.2,2.3            c-1.5,0.6-3.2,1.1-4.9,1.5c-1.8,0.4-3.8,0.5-5.9,0.5c-3.6,0-6.9-0.6-9.9-1.9c-3-1.3-5.6-3-7.7-5.4c-2.1-2.3-3.8-5.1-5-8.4            c-1.2-3.3-1.8-6.9-1.8-10.9c0-3.9,0.6-7.5,1.9-10.8c1.2-3.3,3-6,5.2-8.4c2.2-2.3,4.9-4.1,8-5.4c3.1-1.3,6.6-1.9,10.3-1.9            c1.9,0,3.6,0.1,5.2,0.4c1.6,0.3,3,0.7,4.4,1.2c1.4,0.5,2.6,1.2,3.8,2c1.2,0.8,2.4,1.7,3.5,2.7l-1.1,1.6c-0.2,0.3-0.5,0.4-0.9,0.4            c-0.2,0-0.5-0.1-0.8-0.4c-0.3-0.3-0.8-0.6-1.3-1c-0.5-0.4-1.2-0.8-1.9-1.2c-0.7-0.5-1.6-0.9-2.7-1.2c-1-0.4-2.2-0.7-3.6-1            c-1.3-0.3-2.9-0.4-4.6-0.4c-3.2,0-6.1,0.5-8.7,1.6c-2.6,1.1-4.9,2.6-6.8,4.7c-1.9,2-3.4,4.5-4.5,7.3s-1.6,6.1-1.6,9.7            c0,3.7,0.5,6.9,1.6,9.8c1.1,2.9,2.5,5.3,4.4,7.3c1.9,2,4.1,3.5,6.6,4.6c2.5,1.1,5.3,1.6,8.2,1.6c1.9,0,3.5-0.1,5-0.4            c1.5-0.2,2.8-0.6,4-1.1c1.2-0.5,2.4-1.1,3.4-1.8c1.1-0.7,2.1-1.5,3.1-2.5c0.1-0.1,0.2-0.2,0.3-0.2            C367.3,68.9,367.5,68.8,367.6,68.8z"/>        <path class="st2" d="M351.1,78.8c-3.7,0-7.1-0.7-10.1-1.9c-3.1-1.3-5.7-3.1-7.9-5.5c-2.2-2.4-3.9-5.2-5.1-8.6            c-1.2-3.3-1.8-7.1-1.8-11.1c0-4,0.6-7.7,1.9-11c1.3-3.3,3.1-6.2,5.3-8.6c2.3-2.4,5.1-4.3,8.2-5.6c3.2-1.3,6.7-2,10.6-2            c1.9,0,3.7,0.1,5.3,0.4c1.6,0.3,3.1,0.7,4.5,1.2c1.4,0.5,2.7,1.2,3.9,2c1.2,0.8,2.4,1.7,3.6,2.8l0.4,0.4l-1.4,2.1            c-0.2,0.3-0.6,0.7-1.4,0.7c-0.4,0-0.7-0.2-1.2-0.5c-0.3-0.3-0.8-0.6-1.3-0.9c-0.5-0.4-1.1-0.8-1.9-1.2c-0.7-0.4-1.6-0.8-2.6-1.2            c-1-0.4-2.2-0.7-3.5-0.9c-1.3-0.2-2.8-0.4-4.5-0.4c-3.1,0-5.9,0.5-8.5,1.6c-2.5,1.1-4.8,2.6-6.6,4.5c-1.8,1.9-3.3,4.3-4.3,7.1            c-1,2.8-1.6,6-1.6,9.4c0,3.6,0.5,6.8,1.5,9.6c1,2.8,2.4,5.2,4.2,7.1c1.8,1.9,3.9,3.4,6.4,4.4c2.4,1,5.1,1.5,8,1.5            c1.8,0,3.5-0.1,4.9-0.4c1.4-0.2,2.7-0.6,3.9-1.1c1.2-0.5,2.3-1.1,3.3-1.7c1-0.7,2-1.5,3-2.4c0.2-0.2,0.3-0.2,0.5-0.3            c0.5-0.3,1.3-0.2,1.7,0.3l1.9,2l-0.4,0.4c-1.1,1.2-2.3,2.2-3.6,3.2c-1.3,0.9-2.7,1.8-4.3,2.4c-1.5,0.7-3.2,1.2-5.1,1.5            C355.3,78.6,353.3,78.8,351.1,78.8z M352.2,25.7c-3.7,0-7.1,0.6-10.1,1.9c-3,1.2-5.7,3-7.8,5.3c-2.2,2.3-3.9,5-5.1,8.2            c-1.2,3.2-1.8,6.7-1.8,10.6c0,3.9,0.6,7.5,1.8,10.7c1.2,3.2,2.8,5.9,4.9,8.2c2.1,2.2,4.6,4,7.5,5.2c2.9,1.2,6.1,1.8,9.6,1.8            c2.1,0,4-0.2,5.8-0.5c1.7-0.3,3.4-0.8,4.8-1.5c1.5-0.6,2.8-1.4,4-2.3c1.1-0.8,2.1-1.7,3-2.6l-1.1-1.2c-0.1-0.1-0.2-0.1-0.3,0            c-0.1,0-0.2,0.1-0.3,0.2c-1,0.9-2.1,1.8-3.2,2.5c-1.1,0.7-2.3,1.4-3.5,1.9c-1.3,0.5-2.7,0.9-4.1,1.1c-1.5,0.2-3.2,0.4-5.1,0.4            c-3,0-5.9-0.6-8.5-1.6c-2.6-1.1-4.9-2.7-6.8-4.7c-1.9-2-3.4-4.6-4.5-7.5c-1.1-2.9-1.6-6.3-1.6-10c0-3.6,0.5-6.9,1.6-9.9            c1.1-2.9,2.6-5.5,4.6-7.5c2-2.1,4.3-3.7,7-4.8c2.7-1.1,5.7-1.7,8.9-1.7c1.7,0,3.3,0.1,4.7,0.4c1.4,0.3,2.6,0.6,3.7,1            c1.1,0.4,2,0.8,2.8,1.3c0.8,0.5,1.4,0.9,1.9,1.3c0.5,0.4,1,0.7,1.3,1c0.3,0.3,0.5,0.3,0.5,0.3c0.3,0,0.4-0.1,0.4-0.2l0.8-1.2            c-1-0.9-2-1.6-3-2.3c-1.2-0.8-2.4-1.4-3.7-1.9c-1.3-0.5-2.8-0.9-4.3-1.2C355.7,25.9,354,25.7,352.2,25.7z"/>    </g>    <g>        <path class="st1" d="M410.3,25.7v3.1H383v21h22.7v3H383v21.6h27.3v3.1h-31.1V25.7H410.3z"/>        <path class="st2" d="M410.9,78.2h-32.3V25.1h32.3v4.3h-27.3v19.7h22.7v4.3h-22.7v20.4h27.3V78.2z M379.8,77h29.9v-1.9h-27.3V52.2            h22.7v-1.8h-22.7V28.2h27.3v-1.9h-29.9V77z"/>    </g>    <g>        <path class="st1" d="M456.8,25.1V33h-23.5v15.7h19.8v7.9h-19.8v21.6h-9.9v-53H456.8z"/>    </g>    <g>        <path class="st1" d="M514.3,51.6c0,3.9-0.6,7.5-1.9,10.8c-1.3,3.3-3.1,6.2-5.5,8.6c-2.3,2.4-5.2,4.3-8.5,5.7c-3.3,1.4-7,2-11,2            c-4,0-7.7-0.7-11-2c-3.3-1.4-6.1-3.2-8.5-5.7c-2.4-2.4-4.2-5.3-5.5-8.6s-1.9-6.9-1.9-10.8s0.6-7.5,1.9-10.8            c1.3-3.3,3.1-6.2,5.5-8.6c2.4-2.4,5.2-4.3,8.5-5.7c3.3-1.4,7-2,11-2c4,0,7.7,0.7,11,2.1c3.3,1.4,6.1,3.3,8.5,5.7            c2.3,2.4,4.2,5.3,5.5,8.6C513.6,44.1,514.3,47.7,514.3,51.6z M504.2,51.6c0-2.9-0.4-5.5-1.2-7.8c-0.8-2.3-1.9-4.3-3.3-5.9            c-1.4-1.6-3.2-2.8-5.3-3.7c-2.1-0.9-4.4-1.3-7-1.3c-2.6,0-4.9,0.4-7,1.3c-2.1,0.9-3.8,2.1-5.3,3.7c-1.5,1.6-2.6,3.6-3.4,5.9            c-0.8,2.3-1.2,4.9-1.2,7.8s0.4,5.5,1.2,7.8c0.8,2.3,1.9,4.3,3.4,5.9c1.5,1.6,3.2,2.8,5.3,3.7c2.1,0.9,4.4,1.3,7,1.3            c2.6,0,4.9-0.4,7-1.3c2.1-0.9,3.8-2.1,5.3-3.7c1.4-1.6,2.5-3.6,3.3-5.9C503.8,57.1,504.2,54.5,504.2,51.6z"/>    </g>    <g>        <path class="st1" d="M534.9,50.4l2.3,0c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.4-1.9c0.9-0.8,1.6-1.8,2-2.9            c0.4-1.1,0.7-2.4,0.7-3.7c0-2.7-0.9-4.8-2.7-6.2c-1.8-1.4-4.5-2.2-8.1-2.2H531v17.6v7.1v20.7h-9.9v-53h16.2c3.6,0,6.7,0.4,9.3,1.1            c2.6,0.7,4.7,1.8,6.3,3.1c1.6,1.3,2.9,3,3.6,4.8c0.8,1.9,1.2,3.9,1.2,6.2c0,1.8-0.3,3.5-0.8,5.1c-0.5,1.6-1.3,3-2.3,4.3            c-1,1.3-2.2,2.4-3.7,3.4c-1.5,1-3.1,1.8-5,2.3c1.2,0.7,2.3,1.7,3.2,3l13.3,19.6h-8.9c-0.9,0-1.6-0.2-2.2-0.5            c-0.6-0.3-1.1-0.8-1.5-1.5c0,0-11.1-17-11.1-17c-0.3-0.4-0.9-1.3-1.5-1.4c-1.2,0-2.4,0-3.5,0c0,0,0-6,0-6.4            C533.8,50.4,534.9,50.4,534.9,50.4z"/>    </g>    <g>        <path class="st1" d="M591.4,70.9c2.2,0,4.2-0.2,5.8-0.6c1.6-0.4,3.2-1,4.7-1.7v-12h-6.6c-0.6,0-1.1-0.2-1.5-0.5            c-0.4-0.4-0.6-0.8-0.6-1.3v-5.6h17.6V73c-1.3,1-2.7,1.8-4.2,2.5c-1.5,0.7-3,1.3-4.7,1.8c-1.7,0.5-3.4,0.8-5.3,1            c-1.9,0.2-3.9,0.3-6.1,0.3c-3.9,0-7.4-0.7-10.7-2c-3.3-1.3-6.1-3.2-8.4-5.6c-2.4-2.4-4.2-5.3-5.6-8.6c-1.3-3.3-2-7-2-10.9            c0-4,0.6-7.6,1.9-11c1.3-3.3,3.1-6.2,5.5-8.6c2.4-2.4,5.3-4.3,8.7-5.6c3.4-1.3,7.2-2,11.4-2c4.3,0,8.1,0.6,11.2,1.9            c3.2,1.3,5.8,3,8,5l-2.9,4.5c-0.6,0.9-1.3,1.4-2.2,1.4c-0.6,0-1.2-0.2-1.8-0.6c-0.8-0.5-1.6-0.9-2.4-1.4c-0.8-0.5-1.7-0.9-2.7-1.2            c-1-0.3-2.1-0.6-3.3-0.8c-1.2-0.2-2.7-0.3-4.3-0.3c-2.6,0-5,0.4-7.1,1.3c-2.1,0.9-3.9,2.1-5.4,3.8c-1.5,1.6-2.6,3.6-3.4,5.9            c-0.8,2.3-1.2,4.9-1.2,7.7c0,3.1,0.4,5.8,1.3,8.2c0.9,2.4,2.1,4.4,3.6,6s3.4,2.9,5.5,3.8S588.9,70.9,591.4,70.9z"/>    </g>    <g>        <path class="st1" d="M645.7,56.8h-16.1v13.4H653v7.9h-33.4v-53H653V33h-23.5v16.3H648v5.8C648,55.1,647.9,56.8,645.7,56.8z"/>    </g></g></svg>
                </a>
            </div>
        </nav>
    </section>

    <section class="l-nav-bottom">
        <nav class="row">
            <div class="columns small-12 large-6 copyright-notice">&copy; 2020 Slashdot Media. All Rights Reserved.</div>
            <div class="columns large-6 links">
                
                <span class="show-for-large">
                    <a href="http://slashdotmedia.com/terms-of-use" title="Terms" rel="nofollow">Terms</a>
                    <a href="http://slashdotmedia.com/privacy-statement/" title="Privacy" rel="nofollow">Privacy</a>
                </span>
                <span id='teconsent'></span>
                
                <span class="show-for-large">
                    
                    <a href="http://slashdotmedia.com/opt-out-choices" title="Opt Out" rel="nofollow">Opt Out</a>
                    
                    <a href="http://slashdotmedia.com/" title="Advertise" rel="nofollow">Advertise</a>
                </span>
            </div>
        </nav>
    </section>
</footer>


<div id="l-no-css" style="z-index:100;font-family:sans-serif;width:100%;font-size:1.5em;background:#fff;padding:2rem;border:1px solid #ff3300;position:absolute;top: 0;left:0;box-sizing: border-box;">
    <h1 style="font-family:sans-serif;color:#ff3300;">Oh no! Some styles failed to load. 😵</h1>
    
        Please try <a href="https://sourceforge.net/p/golly/code/ci/master/tree/docs/License.html?css-reload=1" rel="nofollow">reloading this page</a>
    
</div>
<script>

document.addEventListener('DOMContentLoaded', function () {
    var hasCSS = window.getComputedStyle(document.querySelector('#l-no-css')).display === 'none';
    if(!hasCSS) {
        var svgs = document.querySelectorAll('svg');
        for (var x=0; x<svgs.length; x++){
            svgs[x].style.display = 'none';
        }
        window.scroll(0, 0);  
        document.getElementById('offCanvas').style.display = 'none';
        var dropdowns = document.querySelectorAll('.nav-dropdown-menu');
        for (x=0; x<dropdowns.length; x++){
            dropdowns[x].style.display = 'none';
        }
        var backdrop = document.querySelectorAll('.backdrop');
        if (backdrop.length) {
            backdrop[0].style.display = 'none';
        }
        var dlpNewsletterModal = document.getElementById('psp-newsletter-modal');
        if (dlpNewsletterModal) {
            dlpNewsletterModal.style.display = 'none';
        }
        var problemDownloading = document.getElementById('btn-problems-downloading');
        if (problemDownloading) {
            problemDownloading.setAttribute('href', problemDownloading.getAttribute('data-release-url'));
            problemDownloading.style.fontSize = '40px';
        }
    }
});
</script>




    
    
    <div id="newsletter-floating" class="sandiego">
        <h2>Get latest updates about Open Source Projects, Conferences and News.</h2>
        <a class="button blue btn-closer" href="/user/newsletters?source=floating">Sign Up</a>
        <a id="btn-float-close" class="btn-closer">No, Thank you</a>
    </div>
    





</div>


<div id="messages">
    
</div>


    <!-- ew:body_js -->


    <script type="text/javascript" src="https://a.fsdn.com/allura/nf/1596141324/_ew_/_slim/js?href=allura%2Fjs%2Fjquery.notify.js%3Ballura%2Fjs%2Fjquery.tooltipster.js%3Ballura%2Fjs%2Fsylvester.js%3Ballura%2Fjs%2Ftwemoji.min.js%3Ballura%2Fjs%2Fpb.transformie.min.js%3Ballura%2Fjs%2Fallura-base.js%3Ballura%2Fjs%2Fchecklist.js%3Ballura%2Fjs%2Fadmin_modal.js%3Bjs%2Fjquery.lightbox_me.js%3Ballura%2Fjs%2Fmemorable.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fshared.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fsticky.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Faudero-sticky.min.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fsandiego%2Fchrome.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fsandiego%2Futilities.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Ffoundation6%2Fplugins%2Ffoundation.core.min.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Ffoundation6%2Fplugins%2Ffoundation.util.mediaQuery.min.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Ffoundation6%2Fplugins%2Ffoundation.util.keyboard.min.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Ffoundation6%2Fplugins%2Ffoundation.util.box.min.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Ffoundation6%2Fplugins%2Ffoundation.util.nest.min.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Ffoundation6%2Fplugins%2Ffoundation.dropdownMenu.min.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Ffoundation6%2Fplugins%2Ffoundation.offcanvas.min.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Ffoundation6%2Fplugins%2Ffoundation.toggler.min.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fsandiego%2Fproject.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Fjquery.typeahead.min.js%3Ballura%2Fjs%2Fmaximize-content.js"></script>

    
<!-- /ew:body_js -->



    <!-- ew:body_js_tail -->


    <script type="text/javascript" src="https://a.fsdn.com/allura/nf/1596141324/_ew_/_slim/js?href=theme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Ffoundation6%2Fplugins%2Ffoundation.util.triggers.min.js%3Btheme%2Fsftheme%2Fjs%2Fsftheme%2Fvendor%2Ffoundation6%2Fplugins%2Ffoundation.reveal.min.js"></script>

    
<!-- /ew:body_js_tail -->




<script type="text/javascript">(function() {
  $('#access_urls .btn').click(function(evt){
    evt.preventDefault();
    var parent = $(this).parents('.btn-bar');
    var checkout_cmd = $(this).attr('data-url');
    $(parent).find('input').val(checkout_cmd);
    $(parent).find('span').text($(this).attr('title')+' access');
    $(this).parent().children('.btn').removeClass('active');
    $(this).addClass('active');
    if (checkout_cmd.indexOf(' http://') !== -1 || checkout_cmd.indexOf(' https://') !== -1 ) {
      $('#http-2fa-msg').show();
    } else {
      $('#http-2fa-msg').hide();
    }
  });
  $('#access_urls .btn').first().click();

  
  var repo_status = document.getElementById('repo_status');
  // The repo_status div will only be present if repo.status != 'ready'
  if (repo_status) {
    $('.spinner').show()
    var delay = 500;
    function check_status() {
        $.get('/p/golly/code/status', function(data) {
            if (data.status === 'ready') {
                $('.spinner').hide()
                $('#repo_status h2').html('Repo status: ready. <a href=".">Click here to refresh this page.</a>');
            }
            else {
                $('#repo_status h2 span').html(data.status);
                if (delay < 60000){
                    delay = delay * 2;
                }
                window.setTimeout(check_status, delay);
            }
        });
    }
    var status_checker = window.setTimeout(check_status, delay);
    
  }
}());
</script>

<script type="text/javascript">(function() {
  $(window).bind('hashchange', function(e) {
    var hash = window.location.hash.substring(1);
	if ('originalEvent' in e && 'oldURL' in e.originalEvent) {
      $('#' + e.originalEvent.oldURL.split('#')[1]).css('background-color', 'transparent');
	}
    if (hash !== '' && hash.substring(0, 1) === 'l' && !isNaN(hash.substring(1))) {
      $('#' + hash).css('background-color', '#ffff99');
    }
  }).trigger('hashchange');

  var clicks = 0;
  $('.code_block').each(function(index, element) {
    $(element).bind('click', function() {
      // Trick to ignore double and triple clicks
      clicks++;
      if (clicks === 1) {
        setTimeout(function() {
          if (clicks === 1) {
            var hash = window.location.hash.substring(1);
            if (hash !== '' && hash.substring(0, 1) === 'l' && !isNaN(hash.substring(1))) {
              $('#' + hash).css('background-color', 'transparent');
            }
            $(element).css('background-color', '#ffff99');
            window.history.pushState({}, document.title, window.location.pathname + window.location.search + '#' + $(element).attr('id'));
          }
          clicks = 0;
        }, 500);
      }
    });
  });
}());
</script>


    


    
    
    <noscript><p><img src="//analytics.slashdotmedia.com/sf.php?idsite=39" style="border:0;" alt="" /></p></noscript>
    
    <script>
        $(document).foundation();
    </script>
    









<script>
    $(document).ready(function () {
        $(".tooltip, .m-tooltip").tooltipster({
            animation: 'fade',
            delay: 200,
            theme: 'tooltipster-light',
            trigger: 'hover',
            position: 'right',
            iconCloning: false,
            maxWidth: 300
        }).focus(function () {
            $(this).tooltipster('show');
        }).blur(function () {
            $(this).tooltipster('hide');
        });

    });
</script>
</body>
</html>
legal\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from the listed download
location on <https://sourceforge.net/projects/golly/files/golly/>
and can be verified by doing the following:

1. Download the following:
  32-Bit software: <https://sourceforge.net/projects/golly/files/golly/golly-3.4/golly-3.4-win-32bit.zip/download>
  64-Bit software: <https://sourceforge.net/projects/golly/files/golly/golly-3.4/golly-3.4-win-64bit.zip/download>
2. Get the checksum using one of the following methods:
  - Using powershell function 'Get-FileHash'
  - Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

  checksum type: sha256
  checksum32: 0777F69CC58458BDBBD51C9F2EC2811E37950FC7D5BDFEB6DBD87899E6142505
  checksum64: B995A212AEBFA63A190634FCEA186D91AC18CC74E041BDD6968A3722DB3FAC4E

The file 'LICENSE.txt' has been obtained from <https://sourceforge.net/p/golly/code/ci/master/tree/docs/License.html>
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'

$toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition

$packageName = $env:ChocolateyPackageName

$packageArgs = @{
  packageName    = $packageName
  file           = "$toolsPath\golly-3.4-win-32bit.zip"
  file64         = "$toolsPath\golly-3.4-win-64bit.zip"
  destination    = "$toolsPath"
}

Get-ChocolateyUnzip @packageArgs
Remove-Item $toolsPath\*.zip -ea 0

$exeLocation = Get-ChildItem $toolsPath "Golly.exe" -Recurse | Select-Object -first 1
if ($exeLocation) {
  Set-Content "$($exeLocation.FullName).gui" -Value ''
  Register-Application "$($exeLocation.FullName)"
  Write-Host "$packageName registered as $($exeLocation.Name)"
} else {
  Write-Warning "Can't find $PackageName install location"
}
tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop'

$regKey ="HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\$($env:chocolateyPackageName).exe"
if (Test-Path $regKey) {
  Remove-Item $regKey -Force -ea 0
  Write-Host "Removing registered $($env:chocolateyPackageName) app path..."
}
tools\golly-3.4-win-32bit.zip
md5: 0E17A4C2DB2C5FBC05C6C1FF75642BD0 | sha1: 85FAC517C099294EE405345A5541797B1E6592CD | sha256: 0777F69CC58458BDBBD51C9F2EC2811E37950FC7D5BDFEB6DBD87899E6142505 | sha512: 167484441E3A24621E4601264F855FB81110267DDA15728B2C82429A4A546FF119AD870D0A67B415DBDD9FF5D7C4906722833460116DA449D08B7E9D0249990D
tools\golly-3.4-win-64bit.zip
md5: 4F5952EA8C72B3CAB26835B1533FC435 | sha1: 1293D489C1F576C76AE47B19BC2FA1F21580B331 | sha256: B995A212AEBFA63A190634FCEA186D91AC18CC74E041BDD6968A3722DB3FAC4E | sha512: FC8779FED684FE1F8ADDF327569EDD92D75FC1AE62592A46E127E74BB84AF9235F252C47F4CB432EE42C024438468B673B7C57BA048327BE87F185AF350A44F5

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Golly Game of Life 4.1 147 Thursday, December 2, 2021 Approved
Golly Game of Life 4.0 220 Sunday, February 14, 2021 Approved
Golly Game of Life 3.4 200 Saturday, August 1, 2020 Approved
Golly Game of Life 3.3 392 Thursday, October 10, 2019 Approved
Golly Game of Life 3.2 355 Sunday, July 8, 2018 Approved
Golly Game of Life 3.1 437 Saturday, October 21, 2017 Approved

Discussion for the Golly Game of Life Package

Ground Rules:

  • This discussion is only about Golly Game of Life and the Golly Game of Life package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Golly Game of Life, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus