cc_licenseable 0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.md +105 -0
- data/Rakefile +29 -0
- data/app/assets/images/cc_licenseable/buttons/med/by-nc-nd.eu.svg +204 -0
- data/app/assets/images/cc_licenseable/buttons/med/by-nc-nd.svg +243 -0
- data/app/assets/images/cc_licenseable/buttons/med/by-nc-sa.eu.svg +202 -0
- data/app/assets/images/cc_licenseable/buttons/med/by-nc-sa.svg +202 -0
- data/app/assets/images/cc_licenseable/buttons/med/by-nc.eu.svg +166 -0
- data/app/assets/images/cc_licenseable/buttons/med/by-nc.svg +190 -0
- data/app/assets/images/cc_licenseable/buttons/med/by-nd.svg +203 -0
- data/app/assets/images/cc_licenseable/buttons/med/by-sa.svg +199 -0
- data/app/assets/images/cc_licenseable/buttons/med/by.svg +155 -0
- data/app/assets/images/cc_licenseable/buttons/med/cc-zero.svg +98 -0
- data/app/assets/images/cc_licenseable/buttons/med/cc.srr.primary.svg +715 -0
- data/app/assets/images/cc_licenseable/buttons/med/publicdomain.svg +86 -0
- data/app/assets/images/cc_licenseable/buttons/small/by-nc-nd.svg +121 -0
- data/app/assets/images/cc_licenseable/buttons/small/by-nc-sa.svg +121 -0
- data/app/assets/images/cc_licenseable/buttons/small/by-nc.svg +121 -0
- data/app/assets/images/cc_licenseable/buttons/small/by-nd.svg +117 -0
- data/app/assets/images/cc_licenseable/buttons/small/by-sa.svg +121 -0
- data/app/assets/images/cc_licenseable/buttons/small/by.svg +121 -0
- data/app/assets/images/cc_licenseable/buttons/small/cc-zero.svg +72 -0
- data/app/assets/images/cc_licenseable/buttons/small/publicdomain.svg +61 -0
- data/app/assets/images/cc_licenseable/icons/by.svg +20 -0
- data/app/assets/images/cc_licenseable/icons/cc.svg +27 -0
- data/app/assets/images/cc_licenseable/icons/nc-eu.svg +21 -0
- data/app/assets/images/cc_licenseable/icons/nc-jp.svg +18 -0
- data/app/assets/images/cc_licenseable/icons/nc.svg +23 -0
- data/app/assets/images/cc_licenseable/icons/nd.svg +18 -0
- data/app/assets/images/cc_licenseable/icons/pd.svg +24 -0
- data/app/assets/images/cc_licenseable/icons/remix.svg +20 -0
- data/app/assets/images/cc_licenseable/icons/sa.svg +22 -0
- data/app/assets/images/cc_licenseable/icons/sampling.plus.svg +33 -0
- data/app/assets/images/cc_licenseable/icons/sampling.svg +36 -0
- data/app/assets/images/cc_licenseable/icons/share.svg +22 -0
- data/app/assets/images/cc_licenseable/icons/zero.svg +24 -0
- data/app/assets/images/cc_licenseable/logos/cc.logo.svg +594 -0
- data/app/assets/javascripts/cc_licenseable/application.js +15 -0
- data/app/assets/stylesheets/cc_licenseable/application.css +13 -0
- data/app/controllers/cc_licenseable/application_controller.rb +4 -0
- data/app/helpers/cc_licenseable/application_helper.rb +4 -0
- data/app/helpers/cc_licenseable/asset_helper.rb +23 -0
- data/app/helpers/cc_licenseable/form_helper.rb +9 -0
- data/app/models/cc_licenseable/cc_license.rb +51 -0
- data/app/views/layouts/cc_licenseable/application.html.erb +14 -0
- data/config/cucumber.yml +8 -0
- data/config/locales/en.yml +21 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20130327162320_create_cc_licenseable_cc_licenses.rb +10 -0
- data/db/migrate/20130329103248_add_licenses_to_cc_licenseable_cc_licences.rb +15 -0
- data/db/seeds.rb +6 -0
- data/lib/cc_licenseable.rb +15 -0
- data/lib/cc_licenseable/engine.rb +13 -0
- data/lib/cc_licenseable/version.rb +3 -0
- data/lib/tasks/cc_licenseable_tasks.rake +4 -0
- data/lib/tasks/cucumber.rake +65 -0
- metadata +229 -0
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2013 YOURNAME
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
# cc_licenseable
|
2
|
+
|
3
|
+
This gem provides a simple way of associating ActiveRecord model instances with Creative Commons licenses. Assets, translations and even form helpers are either already available or will be in the future.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'cc_licenseable'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install cc_licenseable
|
18
|
+
|
19
|
+
Finally, copy over and run the migrations:
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
rake cc_licenseable:install:migrations
|
23
|
+
rake db:migrate
|
24
|
+
```
|
25
|
+
|
26
|
+
## Usage
|
27
|
+
|
28
|
+
Before you can begin using the gem, create a migration to add the `cc_license_id` column to your model's table.
|
29
|
+
Then, add the call to `cc_licenseable` to your model:
|
30
|
+
|
31
|
+
```ruby
|
32
|
+
class Cartoon < ActiveRecord::Base
|
33
|
+
cc_licenseable
|
34
|
+
end
|
35
|
+
```
|
36
|
+
Once included, each Cartoon instance can be associated with a single license, allowing you to display information that helps users properly identify and follow the individual terms of the associated license.
|
37
|
+
|
38
|
+
The following examples use our simple `Cartoon` model:
|
39
|
+
|
40
|
+
```ruby
|
41
|
+
by = CcLicenseable::CcLicense.find_by_abbreviation('BY')
|
42
|
+
cartoon = Cartoon.new(cc_license_id: by.id)
|
43
|
+
license = cartoon.cc_license
|
44
|
+
```
|
45
|
+
|
46
|
+
The following comes out of the box:
|
47
|
+
|
48
|
+
### I18n-backed attributes:
|
49
|
+
Each license comes with a translate(able) title and description based on the current locale:
|
50
|
+
|
51
|
+
```ruby
|
52
|
+
license.title
|
53
|
+
=> "Attribution"
|
54
|
+
license.desc
|
55
|
+
=> "This license lets others distribute, remix, tweak, and build upon your work…"
|
56
|
+
```
|
57
|
+
|
58
|
+
At the moment, only english strings are included. The plan is to incorporate all languages currently available on the [Creative Commons](http://www.creativecommons.org/licenses) website.
|
59
|
+
|
60
|
+
### Links to License Summary And Deed:
|
61
|
+
The creative commons licenses are described in depth at http://www.creativecommons.org/licenses. Use them to link to the online summaries and deeds:
|
62
|
+
|
63
|
+
```ruby
|
64
|
+
license.summary_link
|
65
|
+
=> "http://creativecommons.org/licenses/by/3.0/deed.en"
|
66
|
+
license.legal_link
|
67
|
+
=> "http://creativecommons.org/licenses/by/3.0/legalcode"
|
68
|
+
```
|
69
|
+
|
70
|
+
### Assets
|
71
|
+
Logo(s), icons, buttons are all packaged, and can be easily used in conjunction with the asset pipeline and the `image_tag` helper:
|
72
|
+
|
73
|
+
```ruby
|
74
|
+
license.small_btn
|
75
|
+
=> "cc_licenseable/buttons/small/by-nc-sa.svg"
|
76
|
+
license.med_btn
|
77
|
+
=> "cc_licenseable/buttons/med/by-nc-sa.svg"
|
78
|
+
```
|
79
|
+
|
80
|
+
### Helpers
|
81
|
+
To include a dropdown of Creative Commons licenses when creating/updating cartoons, you can use a custom form helper like so:
|
82
|
+
|
83
|
+
```ruby
|
84
|
+
<%= form_for @cartoon do |f| %>
|
85
|
+
<%= f.text_field :name %>
|
86
|
+
<%= f.cc_license_selector %>
|
87
|
+
<% end %>
|
88
|
+
```
|
89
|
+
|
90
|
+
|
91
|
+
## TODO:
|
92
|
+
Full support of all I18n material from http://creativecommons.org/licenses.
|
93
|
+
|
94
|
+
## Contributing
|
95
|
+
|
96
|
+
1. Fork it
|
97
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
98
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
99
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
100
|
+
5. Create new Pull Request
|
101
|
+
|
102
|
+
## License and Trademark Information
|
103
|
+
Please consult the full Creative Commons [policy](http://creativecommons.org/policies) concerning use of their license badges and corporate trademark(s) before use.
|
104
|
+
|
105
|
+
The engine code itself is licensed under the terms and conditions of the MIT License.
|
data/Rakefile
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
begin
|
3
|
+
require 'bundler/setup'
|
4
|
+
rescue LoadError
|
5
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
6
|
+
end
|
7
|
+
begin
|
8
|
+
require 'rdoc/task'
|
9
|
+
rescue LoadError
|
10
|
+
require 'rdoc/rdoc'
|
11
|
+
require 'rake/rdoctask'
|
12
|
+
RDoc::Task = Rake::RDocTask
|
13
|
+
end
|
14
|
+
|
15
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
16
|
+
rdoc.rdoc_dir = 'rdoc'
|
17
|
+
rdoc.title = 'CcLicenseable'
|
18
|
+
rdoc.options << '--line-numbers'
|
19
|
+
rdoc.rdoc_files.include('README.rdoc')
|
20
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
21
|
+
end
|
22
|
+
|
23
|
+
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
|
24
|
+
load 'rails/tasks/engine.rake'
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
Bundler::GemHelper.install_tasks
|
29
|
+
|
@@ -0,0 +1,204 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
<svg
|
4
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
5
|
+
xmlns:cc="http://web.resource.org/cc/"
|
6
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
7
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
9
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
11
|
+
width="120"
|
12
|
+
height="42"
|
13
|
+
id="svg2759"
|
14
|
+
sodipodi:version="0.32"
|
15
|
+
inkscape:version="0.45+devel"
|
16
|
+
version="1.0"
|
17
|
+
sodipodi:docname="by-nc-nd.svg"
|
18
|
+
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
19
|
+
<defs
|
20
|
+
id="defs2761" />
|
21
|
+
<sodipodi:namedview
|
22
|
+
id="base"
|
23
|
+
pagecolor="#ffffff"
|
24
|
+
bordercolor="#8b8b8b"
|
25
|
+
borderopacity="1"
|
26
|
+
gridtolerance="10000"
|
27
|
+
guidetolerance="10"
|
28
|
+
objecttolerance="10"
|
29
|
+
inkscape:pageopacity="0.0"
|
30
|
+
inkscape:pageshadow="2"
|
31
|
+
inkscape:zoom="2.6932515"
|
32
|
+
inkscape:cx="91"
|
33
|
+
inkscape:cy="34.5"
|
34
|
+
inkscape:document-units="px"
|
35
|
+
inkscape:current-layer="layer1"
|
36
|
+
width="120px"
|
37
|
+
height="42px"
|
38
|
+
inkscape:showpageshadow="false"
|
39
|
+
inkscape:window-width="1198"
|
40
|
+
inkscape:window-height="624"
|
41
|
+
inkscape:window-x="109"
|
42
|
+
inkscape:window-y="251" />
|
43
|
+
<metadata
|
44
|
+
id="metadata2764">
|
45
|
+
<rdf:RDF>
|
46
|
+
<cc:Work
|
47
|
+
rdf:about="">
|
48
|
+
<dc:format>image/svg+xml</dc:format>
|
49
|
+
<dc:type
|
50
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
51
|
+
</cc:Work>
|
52
|
+
</rdf:RDF>
|
53
|
+
</metadata>
|
54
|
+
<g
|
55
|
+
inkscape:label="Layer 1"
|
56
|
+
inkscape:groupmode="layer"
|
57
|
+
id="layer1">
|
58
|
+
<g
|
59
|
+
id="g2370">
|
60
|
+
<path
|
61
|
+
id="path3817_4_"
|
62
|
+
nodetypes="ccccccc"
|
63
|
+
d="M 3.4093073,0.44588936 L 116.76249,0.64772353 C 118.34632,0.64772353 119.76128,0.41240269 119.76128,3.8077717 L 119.6225,41.136848 L 0.54832486,41.136848 L 0.54832486,3.6690058 C 0.54832486,1.9950998 0.71039927,0.44588936 3.4093073,0.44588936 z"
|
64
|
+
style="fill:#aab2ab" />
|
65
|
+
<path
|
66
|
+
d="M 117.75335,0 L 2.2476465,0 C 1.0083423,0 1.0720192e-05,1.0082269 1.0720192e-05,2.2469155 L 1.0720192e-05,41.492979 C 1.0720192e-05,41.772936 0.22710768,41.999999 0.50757024,41.999999 L 119.49245,41.999999 C 119.77293,41.999999 120.00001,41.772926 120.00001,41.492979 L 120.00001,2.2469155 C 120.00001,1.0082269 118.99168,0 117.75335,0 z M 2.2476465,1.0150136 L 117.75335,1.0150136 C 118.43269,1.0150136 118.9849,1.567643 118.9849,2.2469155 C 118.9849,2.2469155 118.9849,18.037428 118.9849,29.46124 L 36.428969,29.46124 C 33.40301,34.931759 27.572356,38.646374 20.88186,38.646374 C 14.189417,38.646374 8.3607107,34.935158 5.3366899,29.46124 L 1.0151397,29.46124 C 1.0151397,18.037438 1.0151397,2.2469155 1.0151397,2.2469155 C 1.0151298,1.5676529 1.5683035,1.0150136 2.2476465,1.0150136 z"
|
67
|
+
id="path364" />
|
68
|
+
<g
|
69
|
+
id="g5908_4_"
|
70
|
+
transform="matrix(0.8674851,0,0,0.8673951,-387.30657,142.3078)">
|
71
|
+
<path
|
72
|
+
id="path5906_4_"
|
73
|
+
cx="296.35416"
|
74
|
+
ry="22.939548"
|
75
|
+
cy="264.3577"
|
76
|
+
type="arc"
|
77
|
+
rx="22.939548"
|
78
|
+
d="M 486.26709,-141.53052 C 486.27271,-132.85028 479.2392,-125.80957 470.55902,-125.80341 C 461.87878,-125.79841 454.83752,-132.83124 454.83191,-141.51148 C 454.83191,-141.51819 454.83191,-141.52436 454.83191,-141.53052 C 454.82629,-150.21186 461.85974,-157.25257 470.53998,-157.25763 C 479.22132,-157.26263 486.26264,-150.22974 486.26709,-141.5495 C 486.26709,-141.54395 486.26709,-141.53723 486.26709,-141.53052 z"
|
79
|
+
style="fill:#ffffff" />
|
80
|
+
<g
|
81
|
+
id="g5706_4_"
|
82
|
+
transform="translate(-289.6157,99.0653)">
|
83
|
+
<path
|
84
|
+
id="path5708_4_"
|
85
|
+
d="M 772.94281,-253.39801 C 776.42761,-249.9126 778.17059,-245.64465 778.17059,-240.59582 C 778.17059,-235.54644 776.45782,-231.32434 773.03228,-227.92785 C 769.39642,-224.35186 765.10046,-222.56414 760.14227,-222.56414 C 755.2445,-222.56414 751.0224,-224.33672 747.47827,-227.88366 C 743.93188,-231.4295 742.15985,-235.66668 742.15985,-240.59582 C 742.15985,-245.52435 743.93188,-249.79174 747.47827,-253.39801 C 750.93292,-256.88507 755.15497,-258.6275 760.14227,-258.6275 C 765.1911,-258.6275 769.45685,-256.88507 772.94281,-253.39801 z M 749.82422,-251.05371 C 746.8775,-248.07733 745.40412,-244.59082 745.40412,-240.59131 C 745.40412,-236.59302 746.86298,-233.13611 749.77839,-230.22016 C 752.69605,-227.30421 756.16743,-225.84595 760.19599,-225.84595 C 764.22455,-225.84595 767.72614,-227.31873 770.70307,-230.2649 C 773.529,-233.00074 774.94196,-236.44196 774.94196,-240.59132 C 774.94196,-244.70936 773.5055,-248.20485 770.63373,-251.07606 C 767.76306,-253.94673 764.28382,-255.38264 760.19599,-255.38264 C 756.10816,-255.38264 752.64905,-253.93945 749.82422,-251.05371 z M 757.57812,-242.35052 C 757.12841,-243.33221 756.45495,-243.82281 755.55548,-243.82281 C 753.96692,-243.82281 753.17261,-242.75329 753.17261,-240.61425 C 753.17261,-238.47472 753.96692,-237.40575 755.55548,-237.40575 C 756.60486,-237.40575 757.35443,-237.9265 757.80414,-238.97026 L 760.0069,-237.79729 C 758.95642,-235.93181 757.38123,-234.99822 755.28138,-234.99822 C 753.66151,-234.99822 752.36378,-235.49499 751.38935,-236.48784 C 750.41383,-237.48125 749.92603,-238.85057 749.92603,-240.59581 C 749.92603,-242.31139 750.42945,-243.67284 751.43409,-244.68138 C 752.43873,-245.68992 753.69172,-246.19334 755.1919,-246.19334 C 757.4126,-246.19334 759.00117,-245.31907 759.96326,-243.57103 L 757.57812,-242.35052 z M 767.94208,-242.35052 C 767.49121,-243.33221 766.83002,-243.82281 765.95966,-243.82281 C 764.33863,-243.82281 763.52753,-242.75329 763.52753,-240.61425 C 763.52753,-238.47472 764.33863,-237.40575 765.95966,-237.40575 C 767.0113,-237.40575 767.74738,-237.9265 768.16694,-238.97026 L 770.41895,-237.79729 C 769.37067,-235.93181 767.79773,-234.99822 765.70124,-234.99822 C 764.08356,-234.99822 762.78919,-235.49499 761.81477,-236.48784 C 760.8426,-237.48125 760.35487,-238.85057 760.35487,-240.59581 C 760.35487,-242.31139 760.84932,-243.67284 761.83827,-244.68138 C 762.82612,-245.68992 764.08357,-246.19334 765.61177,-246.19334 C 767.82796,-246.19334 769.41542,-245.31907 770.37306,-243.57103 L 767.94208,-242.35052 z" />
|
86
|
+
</g>
|
87
|
+
</g>
|
88
|
+
<g
|
89
|
+
transform="matrix(0.9937728,0,0,0.9936696,-437.11979,0)"
|
90
|
+
enable-background="new "
|
91
|
+
id="g370">
|
92
|
+
<path
|
93
|
+
d="M 488.25342,32.95605 C 488.5708,32.95605 488.86182,32.98437 489.12354,33.04003 C 489.38526,33.09569 489.60889,33.18749 489.79639,33.31542 C 489.98291,33.44237 490.12744,33.6123 490.23096,33.82323 C 490.3335,34.03514 490.38526,34.29589 490.38526,34.60741 C 490.38526,34.94335 490.30909,35.22264 490.15577,35.44628 C 490.00343,35.67089 489.77784,35.85351 489.47804,35.99706 C 489.89015,36.11522 490.19777,36.32226 490.40089,36.61815 C 490.60401,36.91404 490.70558,37.27049 490.70558,37.68749 C 490.70558,38.02343 490.64015,38.31444 490.50929,38.56054 C 490.37843,38.80566 490.20167,39.00683 489.98097,39.1621 C 489.75929,39.31835 489.50636,39.43358 489.22316,39.5078 C 488.93898,39.583 488.64796,39.6201 488.34816,39.6201 L 485.11183,39.6201 L 485.11183,32.95604 L 488.25342,32.95604 L 488.25342,32.95605 z M 488.06689,35.65137 C 488.32763,35.65137 488.54345,35.58887 488.71142,35.46485 C 488.87939,35.34083 488.96337,35.13965 488.96337,34.86036 C 488.96337,34.70509 488.93505,34.57716 488.87939,34.47852 C 488.82275,34.37891 488.74853,34.30176 488.65478,34.24512 C 488.56103,34.18946 488.45361,34.15039 488.33251,34.12891 C 488.21141,34.10743 488.08446,34.09668 487.9536,34.09668 L 486.58055,34.09668 L 486.58055,35.65137 L 488.06689,35.65137 z M 488.15186,38.47949 C 488.29541,38.47949 488.43213,38.46582 488.56299,38.4375 C 488.69385,38.40918 488.80908,38.3623 488.90967,38.29785 C 489.00928,38.23242 489.08838,38.14355 489.14795,38.03125 C 489.20752,37.91992 489.23682,37.77637 489.23682,37.60254 C 489.23682,37.26074 489.14014,37.0166 488.94678,36.87012 C 488.75342,36.72461 488.49854,36.65137 488.18018,36.65137 L 486.58057,36.65137 L 486.58057,38.47949 L 488.15186,38.47949 z"
|
94
|
+
id="path372"
|
95
|
+
style="fill:#ffffff" />
|
96
|
+
<path
|
97
|
+
d="M 490.96436,32.95605 L 492.60791,32.95605 L 494.16846,35.58789 L 495.71924,32.95605 L 497.35303,32.95605 L 494.8794,37.0625 L 494.8794,39.62012 L 493.41065,39.62012 L 493.41065,37.02539 L 490.96436,32.95605 z"
|
98
|
+
id="path374"
|
99
|
+
style="fill:#ffffff" />
|
100
|
+
</g>
|
101
|
+
<g
|
102
|
+
transform="matrix(0.9937728,0,0,0.9936696,-437.11979,0)"
|
103
|
+
enable-background="new "
|
104
|
+
id="g376">
|
105
|
+
<path
|
106
|
+
d="M 512.83057,32.95605 L 515.61475,37.42675 L 515.63037,37.42675 L 515.63037,32.95605 L 517.00537,32.95605 L 517.00537,39.62011 L 515.53955,39.62011 L 512.76611,35.1582 L 512.74756,35.1582 L 512.74756,39.62011 L 511.37256,39.62011 L 511.37256,32.95605 L 512.83057,32.95605 z"
|
107
|
+
id="path378"
|
108
|
+
style="fill:#ffffff" />
|
109
|
+
<path
|
110
|
+
d="M 522.56885,34.73145 C 522.48194,34.59083 522.37256,34.46778 522.2417,34.36231 C 522.11084,34.25684 521.96338,34.17383 521.79834,34.11524 C 521.6333,34.05567 521.46045,34.02637 521.28076,34.02637 C 520.95068,34.02637 520.67041,34.08985 520.43994,34.21778 C 520.20947,34.34473 520.02295,34.51563 519.88037,34.73048 C 519.73682,34.94532 519.63232,35.18946 519.56689,35.4629 C 519.50146,35.73634 519.46923,36.01954 519.46923,36.31153 C 519.46923,36.5918 519.50146,36.86426 519.56689,37.12794 C 519.63232,37.39259 519.73681,37.63087 519.88037,37.84181 C 520.02295,38.05372 520.20947,38.22267 520.43994,38.3506 C 520.67041,38.47853 520.95068,38.54201 521.28076,38.54201 C 521.72803,38.54201 522.07861,38.40529 522.33056,38.13088 C 522.58251,37.85744 522.73681,37.49611 522.79247,37.04787 L 524.21142,37.04787 C 524.17431,37.46486 524.07763,37.84182 523.92236,38.17775 C 523.76709,38.51466 523.56103,38.8008 523.30615,39.0381 C 523.05127,39.2754 522.75244,39.45607 522.40967,39.58107 C 522.06787,39.70607 521.69092,39.76857 521.28076,39.76857 C 520.77002,39.76857 520.31103,39.6797 519.90283,39.50197 C 519.4956,39.32521 519.15088,39.08009 518.8706,38.76955 C 518.58935,38.45803 518.37451,38.09182 518.22509,37.67189 C 518.07568,37.25099 518.00048,36.79884 518.00048,36.31251 C 518.00048,35.81446 518.07568,35.35255 518.22509,34.92579 C 518.3745,34.49903 518.58935,34.12696 518.8706,33.80958 C 519.15087,33.4922 519.4956,33.24317 519.90283,33.06251 C 520.31103,32.88185 520.77002,32.792 521.28076,32.792 C 521.64795,32.792 521.99463,32.84473 522.32178,32.95118 C 522.64795,33.05665 522.94092,33.21095 523.19873,33.41407 C 523.45752,33.61622 523.67041,33.86719 523.83838,34.16602 C 524.00635,34.46485 524.11182,34.80762 524.15576,35.19336 L 522.73681,35.19336 C 522.7124,35.02539 522.65576,34.87109 522.56885,34.73145 z"
|
111
|
+
id="path380"
|
112
|
+
style="fill:#ffffff" />
|
113
|
+
</g>
|
114
|
+
<g
|
115
|
+
transform="matrix(0.9937728,0,0,0.9936696,-437.11979,0)"
|
116
|
+
enable-background="new "
|
117
|
+
id="g382">
|
118
|
+
<path
|
119
|
+
d="M 538.83057,32.95605 L 541.61475,37.42675 L 541.63037,37.42675 L 541.63037,32.95605 L 543.00537,32.95605 L 543.00537,39.62011 L 541.53955,39.62011 L 538.76611,35.1582 L 538.74756,35.1582 L 538.74756,39.62011 L 537.37256,39.62011 L 537.37256,32.95605 L 538.83057,32.95605 z"
|
120
|
+
id="path384"
|
121
|
+
style="fill:#ffffff" />
|
122
|
+
<path
|
123
|
+
d="M 547.16748,32.95605 C 547.59814,32.95605 547.99756,33.02441 548.36865,33.16113 C 548.73974,33.29785 549.06006,33.5039 549.33154,33.77734 C 549.60205,34.05078 549.81396,34.39355 549.96631,34.80371 C 550.11963,35.21484 550.1958,35.69726 550.1958,36.25098 C 550.1958,36.73633 550.1333,37.1836 550.00928,37.59473 C 549.88428,38.00489 549.6958,38.36035 549.44385,38.65821 C 549.19092,38.95704 548.87647,39.19239 548.49951,39.36329 C 548.12255,39.53419 547.6792,39.62013 547.16748,39.62013 L 544.28955,39.62013 L 544.28955,32.95607 L 547.16748,32.95607 L 547.16748,32.95605 z M 547.06494,38.38574 C 547.27685,38.38574 547.48193,38.35156 547.68115,38.2832 C 547.88037,38.21484 548.0581,38.10156 548.21338,37.94238 C 548.36865,37.78418 548.49365,37.57812 548.5874,37.32324 C 548.68017,37.06836 548.72705,36.75683 548.72705,36.39062 C 548.72705,36.05468 548.69482,35.75195 548.62939,35.48144 C 548.56396,35.21093 548.45654,34.97949 548.30712,34.7871 C 548.1577,34.59471 547.96044,34.44628 547.71435,34.34374 C 547.46826,34.2412 547.16455,34.19042 546.80419,34.19042 L 545.75829,34.19042 L 545.75829,38.38573 L 547.06494,38.38573 L 547.06494,38.38574 z"
|
124
|
+
id="path386"
|
125
|
+
style="fill:#ffffff" />
|
126
|
+
</g>
|
127
|
+
<g
|
128
|
+
id="g6394_1_"
|
129
|
+
transform="matrix(0.621103,0,0,0.6210385,-126.21688,314.92649)">
|
130
|
+
<path
|
131
|
+
id="path6396_1_"
|
132
|
+
cx="475.97119"
|
133
|
+
ry="29.209877"
|
134
|
+
cy="252.08646"
|
135
|
+
type="arc"
|
136
|
+
rx="29.209877"
|
137
|
+
d="M 387.83435,-482.97366 C 387.84216,-473.56265 380.2171,-465.92666 370.80609,-465.91885 C 361.39349,-465.91342 353.75751,-473.53689 353.75122,-482.95022 C 353.75122,-482.9573 353.75122,-482.96664 353.75122,-482.97366 C 353.74499,-492.38546 361.36847,-500.02145 370.78107,-500.02853 C 380.19208,-500.03634 387.82807,-492.41128 387.83435,-482.99948 C 387.83435,-482.99008 387.83435,-482.98306 387.83435,-482.97366 z"
|
138
|
+
style="fill:#ffffff" />
|
139
|
+
<g
|
140
|
+
id="g6398_1_"
|
141
|
+
transform="translate(-23.9521,-87.92102)">
|
142
|
+
<path
|
143
|
+
id="path6400_1_"
|
144
|
+
d="M 394.47845,-413.72311 C 389.30651,-413.72311 384.9284,-411.92001 381.34552,-408.30978 C 377.66895,-404.5762 375.83142,-400.15817 375.83142,-395.05264 C 375.83142,-389.94949 377.66894,-385.56271 381.34552,-381.89084 C 385.02057,-378.21896 389.40027,-376.38297 394.47845,-376.38297 C 399.61914,-376.38297 404.07385,-378.23533 407.84417,-381.93613 C 411.39422,-385.45334 413.17236,-389.82608 413.17236,-395.05265 C 413.17236,-400.28239 411.36456,-404.69962 407.75042,-408.30979 C 404.13635,-411.92001 399.7113,-413.72311 394.47845,-413.72311 z M 394.5238,-410.36453 C 398.76129,-410.36453 402.3598,-408.86996 405.32074,-405.88168 C 408.3114,-402.92617 409.80518,-399.31753 409.80518,-395.05264 C 409.80518,-390.75888 408.34266,-387.19638 405.41449,-384.36508 C 402.32855,-381.31503 398.69879,-379.79239 394.5238,-379.79239 C 390.34875,-379.79239 386.7503,-381.3002 383.72839,-384.31979 C 380.70648,-387.337 379.19555,-390.91592 379.19555,-395.05264 C 379.19555,-399.19333 380.7221,-402.80197 383.77679,-405.88168 C 386.70496,-408.86996 390.28625,-410.36453 394.5238,-410.36453 z" />
|
145
|
+
<g
|
146
|
+
id="g6402_1_">
|
147
|
+
<path
|
148
|
+
id="path6404_1_"
|
149
|
+
d="M 401.55505,-399.47849 L 387.98468,-399.47849 L 387.98468,-396.26359 L 401.55505,-396.26359 L 401.55505,-399.47849 z M 401.55505,-393.47763 L 387.98468,-393.47763 L 387.98468,-390.26358 L 401.55505,-390.26358 L 401.55505,-393.47763 z" />
|
150
|
+
</g>
|
151
|
+
</g>
|
152
|
+
</g>
|
153
|
+
<g
|
154
|
+
transform="matrix(0.9937728,0,0,0.9936696,-437.11979,0)"
|
155
|
+
id="g398">
|
156
|
+
<circle
|
157
|
+
cx="491.9473"
|
158
|
+
cy="15.31396"
|
159
|
+
r="10.80615"
|
160
|
+
id="circle400"
|
161
|
+
sodipodi:cx="491.9473"
|
162
|
+
sodipodi:cy="15.31396"
|
163
|
+
sodipodi:rx="10.80615"
|
164
|
+
sodipodi:ry="10.80615"
|
165
|
+
style="fill:#ffffff" />
|
166
|
+
<g
|
167
|
+
id="g402">
|
168
|
+
<path
|
169
|
+
d="M 495.07474,12.18701 C 495.07474,11.77051 494.73685,11.43359 494.32083,11.43359 L 489.54837,11.43359 C 489.13235,11.43359 488.79446,11.7705 488.79446,12.18701 L 488.79446,16.95996 L 490.12551,16.95996 L 490.12551,22.6123 L 493.7427,22.6123 L 493.7427,16.95996 L 495.07473,16.95996 L 495.07473,12.18701 L 495.07474,12.18701 z"
|
170
|
+
id="path404" />
|
171
|
+
<circle
|
172
|
+
cx="491.9346"
|
173
|
+
cy="9.1723604"
|
174
|
+
r="1.63232"
|
175
|
+
id="circle406"
|
176
|
+
sodipodi:cx="491.9346"
|
177
|
+
sodipodi:cy="9.1723604"
|
178
|
+
sodipodi:rx="1.63232"
|
179
|
+
sodipodi:ry="1.63232" />
|
180
|
+
</g>
|
181
|
+
<path
|
182
|
+
clip-rule="evenodd"
|
183
|
+
d="M 491.91946,3.40771 C 488.68801,3.40771 485.95169,4.53515 483.71243,6.7915 C 481.41458,9.12451 480.26614,11.88671 480.26614,15.07568 C 480.26614,18.26465 481.41458,21.00781 483.71243,23.30273 C 486.01028,25.59716 488.74661,26.74462 491.91946,26.74462 C 495.13235,26.74462 497.91751,25.58788 500.27395,23.27294 C 502.49368,21.07616 503.60305,18.34325 503.60305,15.07567 C 503.60305,11.80809 502.47414,9.04735 500.21535,6.79149 C 497.95657,4.53516 495.19193,3.40771 491.91946,3.40771 z M 491.94974,5.50732 C 494.59818,5.50732 496.84622,6.44091 498.69583,8.3081 C 500.56595,10.15527 501.50052,12.41162 501.50052,15.07568 C 501.50052,17.75927 500.58548,19.98681 498.75443,21.75634 C 496.8267,23.6621 494.55814,24.61474 491.94974,24.61474 C 489.33939,24.61474 487.09036,23.67187 485.20169,21.78564 C 483.31302,19.89892 482.36868,17.66259 482.36868,15.07568 C 482.36868,12.48925 483.32278,10.23339 485.23098,8.3081 C 487.06204,6.44092 489.3013,5.50732 491.94974,5.50732 z"
|
184
|
+
id="path408"
|
185
|
+
style="fill-rule:evenodd" />
|
186
|
+
</g>
|
187
|
+
<g
|
188
|
+
id="g2366">
|
189
|
+
<path
|
190
|
+
style="fill:#ffffff"
|
191
|
+
d="M 87.801399,14.981221 C 87.806231,20.481808 83.349796,24.943138 77.848148,24.947525 C 72.347434,24.950898 67.885163,20.495415 67.8813,14.995762 C 67.8813,14.989951 67.8813,14.985575 67.8813,14.981221 C 67.877402,9.4801445 72.333872,5.0188155 77.834551,5.0144396 C 83.335231,5.0110323 87.797501,9.4665495 87.801399,14.966168 C 87.801399,14.971034 87.801399,14.976356 87.801399,14.981221 z"
|
192
|
+
rx="29.209877"
|
193
|
+
type="arc"
|
194
|
+
cy="252.08646"
|
195
|
+
ry="29.209877"
|
196
|
+
cx="475.97119"
|
197
|
+
id="path6372_1_" />
|
198
|
+
<path
|
199
|
+
d="M 86.070369,6.7455646 C 83.825249,4.5032726 81.077589,3.3828326 77.826689,3.3828326 C 74.614009,3.3828326 71.895369,4.5032726 69.670069,6.7455646 C 67.386019,9.0650066 66.245049,11.809127 66.245049,14.979335 C 66.245049,18.148837 67.386019,20.874555 69.670069,23.154358 C 71.953409,25.435578 74.672049,26.575837 77.826689,26.575837 C 81.019549,26.575837 83.787019,25.425671 86.128399,23.126048 C 88.334599,20.941796 89.438049,18.22599 89.438049,14.979335 C 89.438049,11.731974 88.315489,8.9871466 86.070369,6.7455646 z M 84.618679,21.618445 C 82.702679,23.512501 80.448359,24.458823 77.855709,24.458823 C 75.262349,24.458823 73.027129,23.521703 71.150059,21.646755 C 69.272989,19.771807 68.334459,17.549334 68.334459,14.979332 C 68.334459,13.89216 68.506099,12.864441 68.845489,11.89547 L 71.918369,13.255497 L 71.696829,13.255497 L 71.696829,14.633571 L 72.784359,14.633571 C 72.784359,14.828215 72.764899,15.022152 72.764899,15.216085 L 72.764899,15.546625 L 71.696829,15.546625 L 71.696829,16.924699 L 72.958829,16.924699 C 73.133649,17.953831 73.521879,18.788322 74.045999,19.448692 C 75.133169,20.885513 76.880359,21.661964 78.782919,21.661964 C 80.025799,21.661964 81.151199,21.293203 81.811569,20.923735 L 81.345129,18.76921 C 80.937439,18.982962 80.025799,19.273868 79.132559,19.273868 C 78.161469,19.273868 77.249479,18.982966 76.628039,18.283664 C 76.336779,17.953831 76.123379,17.507213 75.987839,16.924699 L 80.208409,16.924699 L 86.205549,19.579283 C 85.790079,20.315397 85.262779,20.995586 84.618679,21.618445 z M 77.076429,15.546632 L 77.050949,15.527168 L 77.094829,15.546632 L 77.076429,15.546632 z M 80.686879,14.633578 L 80.860299,14.633578 L 80.860299,13.255504 L 77.573299,13.255504 L 76.238049,12.664496 C 76.353059,12.406151 76.488959,12.175055 76.647499,11.994215 C 77.249479,11.255278 78.103439,10.945264 79.035599,10.945264 C 79.889909,10.945264 80.685469,11.197238 81.190129,11.410994 L 81.733709,9.1977216 C 81.034409,8.8877066 80.005979,8.6159136 78.821839,8.6159136 C 76.997149,8.6159136 75.443899,9.3534366 74.337259,10.595615 C 74.091659,10.879439 73.878609,11.197948 73.685379,11.534859 L 69.871779,9.8471216 C 70.241249,9.2929176 70.675839,8.7606566 71.179079,8.2531686 C 72.998819,6.3973326 75.223419,5.4694136 77.855699,5.4694136 C 80.487279,5.4694136 82.722499,6.3973326 84.561349,8.2531686 C 86.418599,10.089188 87.347229,12.33077 87.347229,14.979339 C 87.347229,15.852048 87.248129,16.675215 87.052779,17.450956 L 80.686879,14.633578 z"
|
200
|
+
id="path45" />
|
201
|
+
</g>
|
202
|
+
</g>
|
203
|
+
</g>
|
204
|
+
</svg>
|
@@ -0,0 +1,243 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
<svg
|
4
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
5
|
+
xmlns:cc="http://web.resource.org/cc/"
|
6
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
7
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
9
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
11
|
+
width="120"
|
12
|
+
height="42"
|
13
|
+
id="svg2759"
|
14
|
+
sodipodi:version="0.32"
|
15
|
+
inkscape:version="0.45+devel"
|
16
|
+
version="1.0"
|
17
|
+
sodipodi:docname="by-nc-nd.svg"
|
18
|
+
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
19
|
+
<defs
|
20
|
+
id="defs2761" />
|
21
|
+
<sodipodi:namedview
|
22
|
+
id="base"
|
23
|
+
pagecolor="#ffffff"
|
24
|
+
bordercolor="#8b8b8b"
|
25
|
+
borderopacity="1"
|
26
|
+
gridtolerance="10000"
|
27
|
+
guidetolerance="10"
|
28
|
+
objecttolerance="10"
|
29
|
+
inkscape:pageopacity="0.0"
|
30
|
+
inkscape:pageshadow="2"
|
31
|
+
inkscape:zoom="1"
|
32
|
+
inkscape:cx="179"
|
33
|
+
inkscape:cy="89.569904"
|
34
|
+
inkscape:document-units="px"
|
35
|
+
inkscape:current-layer="layer1"
|
36
|
+
width="120px"
|
37
|
+
height="42px"
|
38
|
+
inkscape:showpageshadow="false"
|
39
|
+
inkscape:window-width="1198"
|
40
|
+
inkscape:window-height="624"
|
41
|
+
inkscape:window-x="488"
|
42
|
+
inkscape:window-y="401" />
|
43
|
+
<metadata
|
44
|
+
id="metadata2764">
|
45
|
+
<rdf:RDF>
|
46
|
+
<cc:Work
|
47
|
+
rdf:about="">
|
48
|
+
<dc:format>image/svg+xml</dc:format>
|
49
|
+
<dc:type
|
50
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
51
|
+
</cc:Work>
|
52
|
+
</rdf:RDF>
|
53
|
+
</metadata>
|
54
|
+
<g
|
55
|
+
inkscape:label="Layer 1"
|
56
|
+
inkscape:groupmode="layer"
|
57
|
+
id="layer1">
|
58
|
+
<g
|
59
|
+
transform="matrix(0.9937728,0,0,0.9936696,-437.11979,0)"
|
60
|
+
id="g361"
|
61
|
+
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-nc-nd.png"
|
62
|
+
inkscape:export-xdpi="300.23013"
|
63
|
+
inkscape:export-ydpi="300.23013">
|
64
|
+
<path
|
65
|
+
id="path3817_4_"
|
66
|
+
nodetypes="ccccccc"
|
67
|
+
d="M 443.28955,0.44873 L 557.35303,0.65185 C 558.94678,0.65185 560.37061,0.41503 560.37061,3.83203 L 560.23096,41.39892 L 440.41064,41.39892 L 440.41064,3.69238 C 440.41064,2.00781 440.57373,0.44873 443.28955,0.44873 z"
|
68
|
+
style="fill:#aab2ab" />
|
69
|
+
|
70
|
+
<path
|
71
|
+
d="M 558.3501,0 L 442.12061,0 C 440.87354,0 439.85889,1.01465 439.85889,2.26123 L 439.85889,41.75732 C 439.85889,42.03906 440.08741,42.26757 440.36963,42.26757 L 560.1001,42.26757 C 560.38233,42.26757 560.61084,42.03905 560.61084,41.75732 L 560.61084,2.26123 C 560.61084,1.01465 559.59619,0 558.3501,0 z M 442.12061,1.02148 L 558.3501,1.02148 C 559.03369,1.02148 559.58936,1.57763 559.58936,2.26123 C 559.58936,2.26123 559.58936,18.15234 559.58936,29.64893 L 476.51612,29.64893 C 473.4712,35.1543 467.60401,38.89258 460.87159,38.89258 C 454.13721,38.89258 448.27198,35.15772 445.22901,29.64893 L 440.88038,29.64893 C 440.88038,18.15235 440.88038,2.26123 440.88038,2.26123 C 440.88037,1.57764 441.43701,1.02148 442.12061,1.02148 z"
|
72
|
+
id="path364" />
|
73
|
+
|
74
|
+
<g
|
75
|
+
id="g5908_4_"
|
76
|
+
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
|
77
|
+
|
78
|
+
<path
|
79
|
+
id="path5906_4_"
|
80
|
+
cx="296.35416"
|
81
|
+
ry="22.939548"
|
82
|
+
cy="264.3577"
|
83
|
+
type="arc"
|
84
|
+
rx="22.939548"
|
85
|
+
d="M 486.26709,-141.53052 C 486.27271,-132.85028 479.2392,-125.80957 470.55902,-125.80341 C 461.87878,-125.79841 454.83752,-132.83124 454.83191,-141.51148 C 454.83191,-141.51819 454.83191,-141.52436 454.83191,-141.53052 C 454.82629,-150.21186 461.85974,-157.25257 470.53998,-157.25763 C 479.22132,-157.26263 486.26264,-150.22974 486.26709,-141.5495 C 486.26709,-141.54395 486.26709,-141.53723 486.26709,-141.53052 z"
|
86
|
+
style="fill:#ffffff" />
|
87
|
+
|
88
|
+
<g
|
89
|
+
id="g5706_4_"
|
90
|
+
transform="translate(-289.6157,99.0653)">
|
91
|
+
<path
|
92
|
+
id="path5708_4_"
|
93
|
+
d="M 772.94281,-253.39801 C 776.42761,-249.9126 778.17059,-245.64465 778.17059,-240.59582 C 778.17059,-235.54644 776.45782,-231.32434 773.03228,-227.92785 C 769.39642,-224.35186 765.10046,-222.56414 760.14227,-222.56414 C 755.2445,-222.56414 751.0224,-224.33672 747.47827,-227.88366 C 743.93188,-231.4295 742.15985,-235.66668 742.15985,-240.59582 C 742.15985,-245.52435 743.93188,-249.79174 747.47827,-253.39801 C 750.93292,-256.88507 755.15497,-258.6275 760.14227,-258.6275 C 765.1911,-258.6275 769.45685,-256.88507 772.94281,-253.39801 z M 749.82422,-251.05371 C 746.8775,-248.07733 745.40412,-244.59082 745.40412,-240.59131 C 745.40412,-236.59302 746.86298,-233.13611 749.77839,-230.22016 C 752.69605,-227.30421 756.16743,-225.84595 760.19599,-225.84595 C 764.22455,-225.84595 767.72614,-227.31873 770.70307,-230.2649 C 773.529,-233.00074 774.94196,-236.44196 774.94196,-240.59132 C 774.94196,-244.70936 773.5055,-248.20485 770.63373,-251.07606 C 767.76306,-253.94673 764.28382,-255.38264 760.19599,-255.38264 C 756.10816,-255.38264 752.64905,-253.93945 749.82422,-251.05371 z M 757.57812,-242.35052 C 757.12841,-243.33221 756.45495,-243.82281 755.55548,-243.82281 C 753.96692,-243.82281 753.17261,-242.75329 753.17261,-240.61425 C 753.17261,-238.47472 753.96692,-237.40575 755.55548,-237.40575 C 756.60486,-237.40575 757.35443,-237.9265 757.80414,-238.97026 L 760.0069,-237.79729 C 758.95642,-235.93181 757.38123,-234.99822 755.28138,-234.99822 C 753.66151,-234.99822 752.36378,-235.49499 751.38935,-236.48784 C 750.41383,-237.48125 749.92603,-238.85057 749.92603,-240.59581 C 749.92603,-242.31139 750.42945,-243.67284 751.43409,-244.68138 C 752.43873,-245.68992 753.69172,-246.19334 755.1919,-246.19334 C 757.4126,-246.19334 759.00117,-245.31907 759.96326,-243.57103 L 757.57812,-242.35052 z M 767.94208,-242.35052 C 767.49121,-243.33221 766.83002,-243.82281 765.95966,-243.82281 C 764.33863,-243.82281 763.52753,-242.75329 763.52753,-240.61425 C 763.52753,-238.47472 764.33863,-237.40575 765.95966,-237.40575 C 767.0113,-237.40575 767.74738,-237.9265 768.16694,-238.97026 L 770.41895,-237.79729 C 769.37067,-235.93181 767.79773,-234.99822 765.70124,-234.99822 C 764.08356,-234.99822 762.78919,-235.49499 761.81477,-236.48784 C 760.8426,-237.48125 760.35487,-238.85057 760.35487,-240.59581 C 760.35487,-242.31139 760.84932,-243.67284 761.83827,-244.68138 C 762.82612,-245.68992 764.08357,-246.19334 765.61177,-246.19334 C 767.82796,-246.19334 769.41542,-245.31907 770.37306,-243.57103 L 767.94208,-242.35052 z" />
|
94
|
+
|
95
|
+
</g>
|
96
|
+
|
97
|
+
</g>
|
98
|
+
|
99
|
+
<g
|
100
|
+
enable-background="new "
|
101
|
+
id="g370">
|
102
|
+
<path
|
103
|
+
d="M 488.25342,32.95605 C 488.5708,32.95605 488.86182,32.98437 489.12354,33.04003 C 489.38526,33.09569 489.60889,33.18749 489.79639,33.31542 C 489.98291,33.44237 490.12744,33.6123 490.23096,33.82323 C 490.3335,34.03514 490.38526,34.29589 490.38526,34.60741 C 490.38526,34.94335 490.30909,35.22264 490.15577,35.44628 C 490.00343,35.67089 489.77784,35.85351 489.47804,35.99706 C 489.89015,36.11522 490.19777,36.32226 490.40089,36.61815 C 490.60401,36.91404 490.70558,37.27049 490.70558,37.68749 C 490.70558,38.02343 490.64015,38.31444 490.50929,38.56054 C 490.37843,38.80566 490.20167,39.00683 489.98097,39.1621 C 489.75929,39.31835 489.50636,39.43358 489.22316,39.5078 C 488.93898,39.583 488.64796,39.6201 488.34816,39.6201 L 485.11183,39.6201 L 485.11183,32.95604 L 488.25342,32.95604 L 488.25342,32.95605 z M 488.06689,35.65137 C 488.32763,35.65137 488.54345,35.58887 488.71142,35.46485 C 488.87939,35.34083 488.96337,35.13965 488.96337,34.86036 C 488.96337,34.70509 488.93505,34.57716 488.87939,34.47852 C 488.82275,34.37891 488.74853,34.30176 488.65478,34.24512 C 488.56103,34.18946 488.45361,34.15039 488.33251,34.12891 C 488.21141,34.10743 488.08446,34.09668 487.9536,34.09668 L 486.58055,34.09668 L 486.58055,35.65137 L 488.06689,35.65137 z M 488.15186,38.47949 C 488.29541,38.47949 488.43213,38.46582 488.56299,38.4375 C 488.69385,38.40918 488.80908,38.3623 488.90967,38.29785 C 489.00928,38.23242 489.08838,38.14355 489.14795,38.03125 C 489.20752,37.91992 489.23682,37.77637 489.23682,37.60254 C 489.23682,37.26074 489.14014,37.0166 488.94678,36.87012 C 488.75342,36.72461 488.49854,36.65137 488.18018,36.65137 L 486.58057,36.65137 L 486.58057,38.47949 L 488.15186,38.47949 z"
|
104
|
+
id="path372"
|
105
|
+
style="fill:#ffffff" />
|
106
|
+
|
107
|
+
<path
|
108
|
+
d="M 490.96436,32.95605 L 492.60791,32.95605 L 494.16846,35.58789 L 495.71924,32.95605 L 497.35303,32.95605 L 494.8794,37.0625 L 494.8794,39.62012 L 493.41065,39.62012 L 493.41065,37.02539 L 490.96436,32.95605 z"
|
109
|
+
id="path374"
|
110
|
+
style="fill:#ffffff" />
|
111
|
+
|
112
|
+
</g>
|
113
|
+
|
114
|
+
<g
|
115
|
+
enable-background="new "
|
116
|
+
id="g376">
|
117
|
+
<path
|
118
|
+
d="M 512.83057,32.95605 L 515.61475,37.42675 L 515.63037,37.42675 L 515.63037,32.95605 L 517.00537,32.95605 L 517.00537,39.62011 L 515.53955,39.62011 L 512.76611,35.1582 L 512.74756,35.1582 L 512.74756,39.62011 L 511.37256,39.62011 L 511.37256,32.95605 L 512.83057,32.95605 z"
|
119
|
+
id="path378"
|
120
|
+
style="fill:#ffffff" />
|
121
|
+
|
122
|
+
<path
|
123
|
+
d="M 522.56885,34.73145 C 522.48194,34.59083 522.37256,34.46778 522.2417,34.36231 C 522.11084,34.25684 521.96338,34.17383 521.79834,34.11524 C 521.6333,34.05567 521.46045,34.02637 521.28076,34.02637 C 520.95068,34.02637 520.67041,34.08985 520.43994,34.21778 C 520.20947,34.34473 520.02295,34.51563 519.88037,34.73048 C 519.73682,34.94532 519.63232,35.18946 519.56689,35.4629 C 519.50146,35.73634 519.46923,36.01954 519.46923,36.31153 C 519.46923,36.5918 519.50146,36.86426 519.56689,37.12794 C 519.63232,37.39259 519.73681,37.63087 519.88037,37.84181 C 520.02295,38.05372 520.20947,38.22267 520.43994,38.3506 C 520.67041,38.47853 520.95068,38.54201 521.28076,38.54201 C 521.72803,38.54201 522.07861,38.40529 522.33056,38.13088 C 522.58251,37.85744 522.73681,37.49611 522.79247,37.04787 L 524.21142,37.04787 C 524.17431,37.46486 524.07763,37.84182 523.92236,38.17775 C 523.76709,38.51466 523.56103,38.8008 523.30615,39.0381 C 523.05127,39.2754 522.75244,39.45607 522.40967,39.58107 C 522.06787,39.70607 521.69092,39.76857 521.28076,39.76857 C 520.77002,39.76857 520.31103,39.6797 519.90283,39.50197 C 519.4956,39.32521 519.15088,39.08009 518.8706,38.76955 C 518.58935,38.45803 518.37451,38.09182 518.22509,37.67189 C 518.07568,37.25099 518.00048,36.79884 518.00048,36.31251 C 518.00048,35.81446 518.07568,35.35255 518.22509,34.92579 C 518.3745,34.49903 518.58935,34.12696 518.8706,33.80958 C 519.15087,33.4922 519.4956,33.24317 519.90283,33.06251 C 520.31103,32.88185 520.77002,32.792 521.28076,32.792 C 521.64795,32.792 521.99463,32.84473 522.32178,32.95118 C 522.64795,33.05665 522.94092,33.21095 523.19873,33.41407 C 523.45752,33.61622 523.67041,33.86719 523.83838,34.16602 C 524.00635,34.46485 524.11182,34.80762 524.15576,35.19336 L 522.73681,35.19336 C 522.7124,35.02539 522.65576,34.87109 522.56885,34.73145 z"
|
124
|
+
id="path380"
|
125
|
+
style="fill:#ffffff" />
|
126
|
+
|
127
|
+
</g>
|
128
|
+
|
129
|
+
<g
|
130
|
+
enable-background="new "
|
131
|
+
id="g382">
|
132
|
+
<path
|
133
|
+
d="M 538.83057,32.95605 L 541.61475,37.42675 L 541.63037,37.42675 L 541.63037,32.95605 L 543.00537,32.95605 L 543.00537,39.62011 L 541.53955,39.62011 L 538.76611,35.1582 L 538.74756,35.1582 L 538.74756,39.62011 L 537.37256,39.62011 L 537.37256,32.95605 L 538.83057,32.95605 z"
|
134
|
+
id="path384"
|
135
|
+
style="fill:#ffffff" />
|
136
|
+
|
137
|
+
<path
|
138
|
+
d="M 547.16748,32.95605 C 547.59814,32.95605 547.99756,33.02441 548.36865,33.16113 C 548.73974,33.29785 549.06006,33.5039 549.33154,33.77734 C 549.60205,34.05078 549.81396,34.39355 549.96631,34.80371 C 550.11963,35.21484 550.1958,35.69726 550.1958,36.25098 C 550.1958,36.73633 550.1333,37.1836 550.00928,37.59473 C 549.88428,38.00489 549.6958,38.36035 549.44385,38.65821 C 549.19092,38.95704 548.87647,39.19239 548.49951,39.36329 C 548.12255,39.53419 547.6792,39.62013 547.16748,39.62013 L 544.28955,39.62013 L 544.28955,32.95607 L 547.16748,32.95607 L 547.16748,32.95605 z M 547.06494,38.38574 C 547.27685,38.38574 547.48193,38.35156 547.68115,38.2832 C 547.88037,38.21484 548.0581,38.10156 548.21338,37.94238 C 548.36865,37.78418 548.49365,37.57812 548.5874,37.32324 C 548.68017,37.06836 548.72705,36.75683 548.72705,36.39062 C 548.72705,36.05468 548.69482,35.75195 548.62939,35.48144 C 548.56396,35.21093 548.45654,34.97949 548.30712,34.7871 C 548.1577,34.59471 547.96044,34.44628 547.71435,34.34374 C 547.46826,34.2412 547.16455,34.19042 546.80419,34.19042 L 545.75829,34.19042 L 545.75829,38.38573 L 547.06494,38.38573 L 547.06494,38.38574 z"
|
139
|
+
id="path386"
|
140
|
+
style="fill:#ffffff" />
|
141
|
+
|
142
|
+
</g>
|
143
|
+
|
144
|
+
<g
|
145
|
+
id="g6370_1_"
|
146
|
+
transform="translate(286.1464,208.0498)">
|
147
|
+
<g
|
148
|
+
id="g7610_1_"
|
149
|
+
transform="matrix(1.146822,0,0,1.146822,-67.14005,-41.89676)">
|
150
|
+
|
151
|
+
<path
|
152
|
+
id="path6372_1_"
|
153
|
+
cx="475.97119"
|
154
|
+
ry="29.209877"
|
155
|
+
cy="252.08646"
|
156
|
+
type="arc"
|
157
|
+
rx="29.209877"
|
158
|
+
d="M 269.61823,-131.7348 C 269.62247,-126.90787 265.71222,-122.99292 260.88486,-122.98907 C 256.05832,-122.98611 252.14295,-126.89593 252.13956,-131.72204 C 252.13956,-131.72714 252.13956,-131.73098 252.13956,-131.7348 C 252.13614,-136.56216 256.04642,-140.47711 260.87293,-140.48095 C 265.69944,-140.48394 269.61481,-136.57409 269.61823,-131.74801 C 269.61823,-131.74374 269.61823,-131.73907 269.61823,-131.7348 z"
|
159
|
+
style="fill:#ffffff" />
|
160
|
+
|
161
|
+
<path
|
162
|
+
id="path6374_1_"
|
163
|
+
d="M 260.86526,-141.90982 C 263.71875,-141.90982 266.12945,-140.9263 268.09909,-138.95969 C 270.06869,-136.99219 271.05392,-134.58362 271.05392,-131.73481 C 271.05392,-128.88642 270.08572,-126.5034 268.15017,-124.58659 C 266.09539,-122.56843 263.6668,-121.56022 260.86526,-121.56022 C 258.0986,-121.56022 255.71261,-122.56077 253.70892,-124.5619 C 251.70526,-126.56214 250.70385,-128.95368 250.70385,-131.73481 C 250.70385,-134.51637 251.70525,-136.92493 253.70892,-138.95969 C 255.6615,-140.9263 258.04752,-141.90982 260.86526,-141.90982 z M 252.9928,-134.46866 C 252.68964,-133.6099 252.53723,-132.69876 252.53723,-131.7348 C 252.53723,-129.47952 253.36151,-127.5299 255.00839,-125.88431 C 256.65524,-124.23999 258.61636,-123.41742 260.89166,-123.41742 C 263.1661,-123.41742 265.14422,-124.24808 266.82516,-125.91028 C 267.38803,-126.45398 267.85214,-127.04709 268.21572,-127.69 L 264.37954,-129.39776 C 264.11984,-128.10726 262.96941,-127.23571 261.5797,-127.13351 L 261.5797,-125.56457 L 260.41137,-125.56457 L 260.41137,-127.13351 C 259.26946,-127.1463 258.16674,-127.61337 257.32287,-128.35165 L 258.72448,-129.76477 C 259.39892,-129.12952 260.07418,-128.8447 260.99554,-128.8447 C 261.59246,-128.8447 262.25412,-129.07801 262.25412,-129.8559 C 262.25412,-130.13135 262.14767,-130.32297 261.97992,-130.46729 L 261.00919,-130.89817 L 259.8017,-131.43677 C 259.20392,-131.70331 258.69724,-131.92768 258.18973,-132.15418 L 252.9928,-134.46866 z M 260.89166,-140.07861 C 258.58145,-140.07861 256.6297,-139.26495 255.03308,-137.63638 C 254.59878,-137.19784 254.2207,-136.74014 253.90054,-136.26199 L 257.78952,-134.52996 C 258.1412,-135.60931 259.16644,-136.26412 260.41138,-136.33651 L 260.41138,-137.90548 L 261.57971,-137.90548 L 261.57971,-136.33651 C 262.3844,-136.29775 263.2666,-136.07723 264.13601,-135.40365 L 262.7991,-134.02926 C 262.30606,-134.37927 261.68359,-134.62536 261.06027,-134.62536 C 260.55444,-134.62536 259.83999,-134.47036 259.83999,-133.83468 C 259.83999,-133.73803 259.87322,-133.65289 259.93197,-133.57626 L 261.23312,-132.99807 L 262.11361,-132.60549 C 262.67648,-132.35387 263.21465,-132.11544 263.74685,-131.87829 L 268.96084,-129.557 C 269.13284,-130.2395 269.21969,-130.96587 269.21969,-131.7348 C 269.21969,-134.05823 268.40478,-136.02569 266.77493,-137.63638 C 265.16129,-139.26495 263.20102,-140.07861 260.89166,-140.07861 z" />
|
164
|
+
|
165
|
+
</g>
|
166
|
+
|
167
|
+
</g>
|
168
|
+
|
169
|
+
<g
|
170
|
+
id="g6394_1_"
|
171
|
+
transform="matrix(0.624995,0,0,0.624995,312.8511,316.9328)">
|
172
|
+
|
173
|
+
<path
|
174
|
+
id="path6396_1_"
|
175
|
+
cx="475.97119"
|
176
|
+
ry="29.209877"
|
177
|
+
cy="252.08646"
|
178
|
+
type="arc"
|
179
|
+
rx="29.209877"
|
180
|
+
d="M 387.83435,-482.97366 C 387.84216,-473.56265 380.2171,-465.92666 370.80609,-465.91885 C 361.39349,-465.91342 353.75751,-473.53689 353.75122,-482.95022 C 353.75122,-482.9573 353.75122,-482.96664 353.75122,-482.97366 C 353.74499,-492.38546 361.36847,-500.02145 370.78107,-500.02853 C 380.19208,-500.03634 387.82807,-492.41128 387.83435,-482.99948 C 387.83435,-482.99008 387.83435,-482.98306 387.83435,-482.97366 z"
|
181
|
+
style="fill:#ffffff" />
|
182
|
+
|
183
|
+
<g
|
184
|
+
id="g6398_1_"
|
185
|
+
transform="translate(-23.9521,-87.92102)">
|
186
|
+
<path
|
187
|
+
id="path6400_1_"
|
188
|
+
d="M 394.47845,-413.72311 C 389.30651,-413.72311 384.9284,-411.92001 381.34552,-408.30978 C 377.66895,-404.5762 375.83142,-400.15817 375.83142,-395.05264 C 375.83142,-389.94949 377.66894,-385.56271 381.34552,-381.89084 C 385.02057,-378.21896 389.40027,-376.38297 394.47845,-376.38297 C 399.61914,-376.38297 404.07385,-378.23533 407.84417,-381.93613 C 411.39422,-385.45334 413.17236,-389.82608 413.17236,-395.05265 C 413.17236,-400.28239 411.36456,-404.69962 407.75042,-408.30979 C 404.13635,-411.92001 399.7113,-413.72311 394.47845,-413.72311 z M 394.5238,-410.36453 C 398.76129,-410.36453 402.3598,-408.86996 405.32074,-405.88168 C 408.3114,-402.92617 409.80518,-399.31753 409.80518,-395.05264 C 409.80518,-390.75888 408.34266,-387.19638 405.41449,-384.36508 C 402.32855,-381.31503 398.69879,-379.79239 394.5238,-379.79239 C 390.34875,-379.79239 386.7503,-381.3002 383.72839,-384.31979 C 380.70648,-387.337 379.19555,-390.91592 379.19555,-395.05264 C 379.19555,-399.19333 380.7221,-402.80197 383.77679,-405.88168 C 386.70496,-408.86996 390.28625,-410.36453 394.5238,-410.36453 z" />
|
189
|
+
|
190
|
+
<g
|
191
|
+
id="g6402_1_">
|
192
|
+
<path
|
193
|
+
id="path6404_1_"
|
194
|
+
d="M 401.55505,-399.47849 L 387.98468,-399.47849 L 387.98468,-396.26359 L 401.55505,-396.26359 L 401.55505,-399.47849 z M 401.55505,-393.47763 L 387.98468,-393.47763 L 387.98468,-390.26358 L 401.55505,-390.26358 L 401.55505,-393.47763 z" />
|
195
|
+
|
196
|
+
</g>
|
197
|
+
|
198
|
+
</g>
|
199
|
+
|
200
|
+
</g>
|
201
|
+
|
202
|
+
<g
|
203
|
+
id="g398">
|
204
|
+
<circle
|
205
|
+
cx="491.9473"
|
206
|
+
cy="15.31396"
|
207
|
+
r="10.80615"
|
208
|
+
id="circle400"
|
209
|
+
sodipodi:cx="491.9473"
|
210
|
+
sodipodi:cy="15.31396"
|
211
|
+
sodipodi:rx="10.80615"
|
212
|
+
sodipodi:ry="10.80615"
|
213
|
+
style="fill:#ffffff" />
|
214
|
+
|
215
|
+
<g
|
216
|
+
id="g402">
|
217
|
+
<path
|
218
|
+
d="M 495.07474,12.18701 C 495.07474,11.77051 494.73685,11.43359 494.32083,11.43359 L 489.54837,11.43359 C 489.13235,11.43359 488.79446,11.7705 488.79446,12.18701 L 488.79446,16.95996 L 490.12551,16.95996 L 490.12551,22.6123 L 493.7427,22.6123 L 493.7427,16.95996 L 495.07473,16.95996 L 495.07473,12.18701 L 495.07474,12.18701 z"
|
219
|
+
id="path404" />
|
220
|
+
|
221
|
+
<circle
|
222
|
+
cx="491.9346"
|
223
|
+
cy="9.1723604"
|
224
|
+
r="1.63232"
|
225
|
+
id="circle406"
|
226
|
+
sodipodi:cx="491.9346"
|
227
|
+
sodipodi:cy="9.1723604"
|
228
|
+
sodipodi:rx="1.63232"
|
229
|
+
sodipodi:ry="1.63232" />
|
230
|
+
|
231
|
+
</g>
|
232
|
+
|
233
|
+
<path
|
234
|
+
clip-rule="evenodd"
|
235
|
+
d="M 491.91946,3.40771 C 488.68801,3.40771 485.95169,4.53515 483.71243,6.7915 C 481.41458,9.12451 480.26614,11.88671 480.26614,15.07568 C 480.26614,18.26465 481.41458,21.00781 483.71243,23.30273 C 486.01028,25.59716 488.74661,26.74462 491.91946,26.74462 C 495.13235,26.74462 497.91751,25.58788 500.27395,23.27294 C 502.49368,21.07616 503.60305,18.34325 503.60305,15.07567 C 503.60305,11.80809 502.47414,9.04735 500.21535,6.79149 C 497.95657,4.53516 495.19193,3.40771 491.91946,3.40771 z M 491.94974,5.50732 C 494.59818,5.50732 496.84622,6.44091 498.69583,8.3081 C 500.56595,10.15527 501.50052,12.41162 501.50052,15.07568 C 501.50052,17.75927 500.58548,19.98681 498.75443,21.75634 C 496.8267,23.6621 494.55814,24.61474 491.94974,24.61474 C 489.33939,24.61474 487.09036,23.67187 485.20169,21.78564 C 483.31302,19.89892 482.36868,17.66259 482.36868,15.07568 C 482.36868,12.48925 483.32278,10.23339 485.23098,8.3081 C 487.06204,6.44092 489.3013,5.50732 491.94974,5.50732 z"
|
236
|
+
id="path408"
|
237
|
+
style="fill-rule:evenodd" />
|
238
|
+
|
239
|
+
</g>
|
240
|
+
|
241
|
+
</g>
|
242
|
+
</g>
|
243
|
+
</svg>
|