scrit 0.1.0
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.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.travis.yml +9 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/examples/example1_stage.rb +5 -0
- data/lib/backdrops/backdrop1.png +0 -0
- data/lib/backdrops/moon.png +0 -0
- data/lib/backdrops/party.png +0 -0
- data/lib/backdrops/space.png +0 -0
- data/lib/backdrops/space.svg +191 -0
- data/lib/backdrops/white.png +0 -0
- data/lib/costumes/BlueFish4.png +0 -0
- data/lib/costumes/PurpleFish1.png +0 -0
- data/lib/costumes/PurpleFish2.png +0 -0
- data/lib/costumes/RedFish2_0.png +0 -0
- data/lib/costumes/bigbluecloud.png +0 -0
- data/lib/costumes/costume1.png +0 -0
- data/lib/costumes/costume1.svg +42 -0
- data/lib/costumes/costume2.png +0 -0
- data/lib/costumes/costume2.svg +37 -0
- data/lib/scrit.rb +38 -0
- data/lib/scrit/sprite.rb +78 -0
- data/lib/scrit/stage.rb +24 -0
- data/lib/scrit/version.rb +3 -0
- data/lib/sounds/meow.wav +0 -0
- data/scrit.gemspec +27 -0
- metadata +131 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 23082edf6668be91ba2363faabecedb4ee6baf49
|
4
|
+
data.tar.gz: 4bee25530356fcadcf35473c0423ee2862aa0f40
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a3d630040d39b208e7ec72a2b0c1ce04f8e311fb1d23c7adee14ee9ef06417b84b2bf036a4e27a1a6ea2707bd4803573b6fbb6a312775e6989496311dd6d44a6
|
7
|
+
data.tar.gz: 4f30c90d0d68d1fdcaae31e15e5df1def9585f3cf0c6c5e2f9ed4e4b545996e9ddae9a16deb69b63188b7fc147b22eabe9d42ac60e6f1f3b81641892e077a7fd
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
sudo: true
|
2
|
+
language: ruby
|
3
|
+
rvm:
|
4
|
+
- 2.2.4
|
5
|
+
before_install:
|
6
|
+
- sudo apt-get update -qq
|
7
|
+
- sudo apt-get install -qq build-essential freeglut3-dev libfreeimage-dev libgl1-mesa-dev libopenal-dev libpango1.0-dev libsdl-ttf2.0-dev libsndfile-dev libxinerama-dev
|
8
|
+
- gem install bundler -v 1.12.3
|
9
|
+
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Erik Newton
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# Scrit
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/scrit`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'scrit'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install scrit
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/scrit.
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "scrit"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,191 @@
|
|
1
|
+
<svg version="1.1" id="Layer_1" x="0px" y="0px" width="480.24px" height="360px" viewBox="0 0 480.24 360" enable-background="new 0 0 480.24 360" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2
|
+
<g>
|
3
|
+
<rect x="0" fill="#414042" width="480.241" height="360"/>
|
4
|
+
<path d="M480.24,235.412v-4.88c-9.209,1.091-10.818-3.953-10.818-3.953s-0.219-2.399-0.219-4.035s0.326-2.944,0.326-3.489
	s0.109-0.872-1.525-0.872c-1.637,0-2.508-0.327-3.271,0.108s-0.328,1.527-0.328,1.527l0.328,4.253c0,0,0,0.981-1.963,3.053
	s-8.615,2.509-14.178,0.219c-5.561-2.29-4.361-8.833-4.361-9.27s-0.328-0.654-1.418-2.181s-0.98-6.107-0.98-6.762
	s0-1.199-0.873-1.417s-4.689-0.764-6.217-0.654c-1.525,0.109-1.09,1.526-1.09,1.526s0.328,2.072,0.436,5.017
	c0.109,2.944-0.762,4.58-4.143,7.088s-5.234,2.835-8.289,3.381c-3.053,0.546-3.488,1.199-10.141,1.417s-12.721,0.021-12.721,0.021
	h-0.254c-5.67,0.218-4.688-8.833-7.523-8.506c-2.834,0.327-1.963,2.617-2.398,4.253c-0.438,1.636-1.309,3.054-4.035,2.727
	s-1.744-2.618-1.744-2.618s0.326-4.471,0.545-6.543c0.217-2.072-1.418-7.852-5.453-7.742s-3.053,3.381-2.291,9.27
	c0.764,5.889,3.273,12.867,3.273,12.867s-1.637,1.091-8.943,0.873s-8.287-1.637-8.287-1.637l0.219-1.526
	c0,0,0.545-1.091,0.545-2.617s-3.49-3.816-5.234-2.508c-1.746,1.309,1.309,4.471,1.527,5.125c0.217,0.654-0.109,1.418-4.035,1.526
	c-3.928,0.108-6.762-2.508-7.197-5.997c-0.438-3.489,0.654-10.796,0.654-10.796s0,0,0.219-1.091c0.217-1.091,0-2.727-6.217-3.162
	c-6.215-0.436-7.852,1.417-7.852,1.854s0.545,1.526,0.545,1.526s0.109,4.472,0,6.325c-0.107,1.854-0.98,4.253-0.98,5.344
	s-0.219,2.072-0.219,3.271s-0.871,3.271-6.324,3.381s-6.543-4.689-6.543-4.689l-0.219-3.708c0,0,0.545-0.218,0.654-0.981
	s-0.764-1.526-2.398-1.526c-1.637,0-2.836-0.764-3.271,0.108s0.545,1.527,0.545,1.527s1.309,3.162,1.309,4.253
	s-2.072,1.636-2.072,1.636s-12.322-0.327-18.211,0.108s-6.324-3.926-6.979-7.197s-0.545-12.867-0.219-13.958
	c0.328-1.091-0.654-2.072-0.654-2.072s-4.799-0.108-5.344,0.437s0.545,1.963,0.545,1.963s3.49,11.45,3.926,13.958
	c0.438,2.508,0.982,6.762-8.178,7.961s-10.797-3.926-10.797-3.926s-0.217-2.399-0.217-4.035s0.326-2.944,0.326-3.489
	s0.109-0.872-1.527-0.872c-1.635,0-2.508-0.327-3.271,0.108s-0.326,1.527-0.326,1.527l0.326,4.253c0,0,0,0.981-1.963,3.053
	s-8.613,2.509-14.176,0.219c-5.561-2.29-4.361-8.833-4.361-9.27s-0.328-0.654-1.418-2.181s-0.982-6.107-0.982-6.762
	s0-1.199-0.871-1.417c-0.873-0.218-4.689-0.764-6.217-0.654c-1.527,0.109-1.09,1.526-1.09,1.526s0.327,2.072,0.436,5.017
	s1.312,4.783-1.444,9.458c-2.138,3.626-6.479,7.185-9.532,7.73s-3.49,1.199-10.142,1.417s-15.685-0.518-15.685-0.518l-0.625,0.009
	c-5.67,0.218-4.689-8.833-7.524-8.506s-1.963,2.617-2.399,4.253s-1.309,3.054-4.035,2.727s-1.745-2.618-1.745-2.618
	s0.327-4.471,0.545-6.543s-1.417-7.852-5.453-7.742s-3.053,3.381-2.29,9.27s3.272,12.867,3.272,12.867s-1.636,1.091-8.942,0.873
	s-8.288-1.637-8.288-1.637l0.218-1.526c0,0,0.545-1.091,0.545-2.617s-3.489-3.816-5.234-2.508s1.309,4.471,1.527,5.125
	s-0.109,1.418-4.035,1.526s-6.761-2.508-7.197-5.997s0.655-10.796,0.655-10.796s0,0,0.218-1.091s0-2.727-6.216-3.162
	s-7.852,1.417-7.852,1.854s0.545,1.526,0.545,1.526s0.109,4.472,0,6.325s-0.981,4.253-0.981,5.344s-0.218,2.072-0.218,3.271
	s-0.872,3.271-6.325,3.381s-6.543-4.689-6.543-4.689l-0.218-3.708c0,0,0.545-0.218,0.654-0.981s-0.763-1.526-2.399-1.526
	s-2.835-0.764-3.271,0.108s0.545,1.527,0.545,1.527s1.309,3.162,1.309,4.253s-2.072,1.636-2.072,1.636s-12.322-0.327-18.211,0.108
	s-6.325-3.926-6.979-7.197s-0.545-12.867-0.218-13.958s-0.654-2.072-0.654-2.072s-4.798-0.108-5.344,0.437s0.545,1.963,0.545,1.963
	s3.49,11.45,3.926,13.958s0.981,6.762-8.179,7.961s-10.796-3.926-10.796-3.926s-0.218-2.399-0.218-4.035s0.327-2.944,0.327-3.489
	s0.109-0.872-1.527-0.872s-2.508-0.327-3.271,0.108s-0.327,1.527-0.327,1.527l0.327,4.253c0,0,0,0.981-1.963,3.053
	s-8.615,2.509-14.176,0.219s-4.362-8.833-4.362-9.27s-0.327-0.654-1.417-2.181s-0.981-6.107-0.981-6.762s0-1.199-0.873-1.417
	s-4.689-0.764-6.216-0.654s-1.09,1.526-1.09,1.526s0.327,2.072,0.436,5.017s-0.763,4.58-4.144,7.088s-5.234,2.835-8.288,3.381
	s-3.49,1.199-10.142,1.417c-3.708,0.121-7.245-0.426-9.65-0.935v46.28H0v-16.206h0v2.748h480.24V235.412L480.24,235.412z
	 M24.752,235.412h-0.039c0.02-0.062,0.032-0.102,0.032-0.102S24.748,235.349,24.752,235.412z"/>
|
5
|
+
<path fill="none" stroke="#58595B" stroke-width="0.5" d="M-0.001,223.587c2.405,0.509,5.942,1.056,9.65,0.935
	c6.652-0.219,7.088-0.871,10.142-1.418c3.054-0.545,4.908-0.873,8.288-3.381s4.252-4.143,4.144-7.088
	c-0.109-2.943-0.436-5.016-0.436-5.016s-0.437-1.418,1.09-1.527s5.343,0.438,6.216,0.654c0.873,0.219,0.873,0.764,0.873,1.418
	s-0.109,5.234,0.981,6.762c1.09,1.525,1.417,1.744,1.417,2.18c0,0.438-1.199,6.98,4.362,9.27c5.562,2.291,12.213,1.854,14.176-0.219
	c1.963-2.07,1.963-3.053,1.963-3.053l-0.327-4.252c0,0-0.437-1.092,0.327-1.527s1.636-0.109,3.271-0.109s1.527,0.328,1.527,0.873
	s-0.327,1.854-0.327,3.488c0,1.637,0.218,4.035,0.218,4.035s1.636,5.125,10.796,3.926s8.615-5.453,8.179-7.961
	s-3.926-13.957-3.926-13.957s-1.091-1.418-0.545-1.963s5.344-0.438,5.344-0.438s0.981,0.982,0.654,2.072
	c-0.327,1.092-0.437,10.688,0.218,13.959s1.091,7.633,6.979,7.197s18.211-0.109,18.211-0.109s2.072-0.545,2.072-1.635
	c0-1.092-1.309-4.254-1.309-4.254s-0.981-0.654-0.545-1.527c0.436-0.871,1.636-0.107,3.271-0.107s2.508,0.762,2.399,1.525
	s-0.654,0.982-0.654,0.982l0.218,3.707c0,0,1.09,4.799,6.543,4.689s6.325-2.182,6.325-3.381s0.218-2.18,0.218-3.271
	c0-1.09,0.873-3.49,0.981-5.344s0-6.324,0-6.324s-0.545-1.09-0.545-1.527c0-0.436,1.636-2.289,7.852-1.854s6.434,2.072,6.216,3.162
	c-0.218,1.092-0.218,1.092-0.218,1.092s-1.091,7.307-0.655,10.795c0.437,3.49,3.271,6.105,7.197,5.998
	c3.926-0.109,4.254-0.873,4.035-1.527s-3.272-3.816-1.527-5.125c1.746-1.309,5.234,0.982,5.234,2.508
	c0,1.527-0.545,2.617-0.545,2.617l-0.218,1.527c0,0,0.981,1.418,8.288,1.637c7.307,0.217,8.941-0.873,8.941-0.873
	s-2.509-6.979-3.271-12.867c-0.764-5.889-1.746-9.16,2.289-9.27s5.671,5.67,5.453,7.742s-0.545,6.543-0.545,6.543
	s-0.981,2.291,1.744,2.617c2.727,0.328,3.599-1.09,4.035-2.727c0.437-1.635-0.436-3.926,2.399-4.252
	c2.835-0.328,1.854,8.723,7.524,8.506l0.624-0.01c0,0,9.032,0.736,15.685,0.518c6.652-0.217,7.088-0.871,10.142-1.416
	c3.054-0.547,7.395-4.105,9.532-7.73c2.757-4.676,1.554-6.514,1.444-9.459c-0.109-2.943-0.436-5.016-0.436-5.016
	s-0.438-1.418,1.09-1.527s5.344,0.438,6.217,0.654c0.871,0.219,0.871,0.764,0.871,1.418s-0.107,5.234,0.982,6.762
	c1.09,1.525,1.418,1.744,1.418,2.18c0,0.438-1.199,6.98,4.361,9.27c5.562,2.291,12.213,1.854,14.176-0.219
	c1.963-2.07,1.963-3.053,1.963-3.053l-0.326-4.252c0,0-0.438-1.092,0.326-1.527s1.637-0.109,3.271-0.109
	c1.637,0,1.527,0.328,1.527,0.873s-0.326,1.854-0.326,3.488c0,1.637,0.217,4.035,0.217,4.035s1.637,5.125,10.797,3.926
	s8.615-5.453,8.178-7.961c-0.436-2.508-3.926-13.957-3.926-13.957s-1.09-1.418-0.545-1.963s5.344-0.438,5.344-0.438
	s0.982,0.982,0.654,2.072c-0.326,1.092-0.436,10.688,0.219,13.959s1.09,7.633,6.979,7.197s18.211-0.109,18.211-0.109
	s2.072-0.545,2.072-1.635c0-1.092-1.309-4.254-1.309-4.254s-0.98-0.654-0.545-1.527c0.436-0.871,1.635-0.107,3.271-0.107
	c1.635,0,2.508,0.762,2.398,1.525s-0.654,0.982-0.654,0.982l0.219,3.707c0,0,1.09,4.799,6.543,4.689s6.324-2.182,6.324-3.381
	s0.219-2.18,0.219-3.271c0-1.09,0.873-3.49,0.98-5.344c0.109-1.854,0-6.324,0-6.324s-0.545-1.09-0.545-1.527
	c0-0.436,1.637-2.289,7.852-1.854c6.217,0.436,6.434,2.072,6.217,3.162c-0.219,1.092-0.219,1.092-0.219,1.092
	s-1.092,7.307-0.654,10.795c0.436,3.49,3.27,6.105,7.197,5.998c3.926-0.109,4.252-0.873,4.035-1.527
	c-0.219-0.654-3.273-3.816-1.527-5.125c1.744-1.309,5.234,0.982,5.234,2.508c0,1.527-0.545,2.617-0.545,2.617l-0.219,1.527
	c0,0,0.98,1.418,8.287,1.637c7.307,0.217,8.943-0.873,8.943-0.873s-2.51-6.979-3.273-12.867c-0.762-5.889-1.744-9.16,2.291-9.27
	s5.67,5.67,5.453,7.742c-0.219,2.072-0.545,6.543-0.545,6.543s-0.982,2.291,1.744,2.617c2.727,0.328,3.598-1.09,4.035-2.727
	c0.436-1.635-0.436-3.926,2.398-4.252c2.836-0.328,1.854,8.723,7.523,8.506h0.254c0,0,6.068,0.195,12.721-0.021
	c6.652-0.219,7.088-0.871,10.141-1.418c3.055-0.545,4.908-0.873,8.289-3.381s4.252-4.143,4.143-7.088
	c-0.107-2.943-0.436-5.016-0.436-5.016s-0.436-1.418,1.09-1.527c1.527-0.109,5.344,0.438,6.217,0.654
	c0.873,0.219,0.873,0.764,0.873,1.418s-0.109,5.234,0.98,6.762c1.09,1.525,1.418,1.744,1.418,2.18c0,0.438-1.199,6.98,4.361,9.27
	c5.562,2.291,12.215,1.854,14.178-0.219c1.963-2.07,1.963-3.053,1.963-3.053l-0.328-4.252c0,0-0.436-1.092,0.328-1.527
	s1.635-0.109,3.271-0.109c1.635,0,1.525,0.328,1.525,0.873s-0.326,1.854-0.326,3.488c0,1.637,0.219,4.035,0.219,4.035
	s1.635,5.125,10.795,3.926"/>
|
6
|
+
<path fill="#726658" d="M0,247.199c2.64-0.006,10.039-0.085,16.983-0.737c4.929-0.463,8.448,2.201,16.267,0.002
	c8-2.25,4.854,2.028,27.845,0.835c22.991-1.195,22.89-2.898,29.387-3.599c3.785-0.408,7.165,1.124,9.096,1.399
	s16.185-1.354,19.359-1.632c3.174-0.275,4.554,1.24,7.728,1.932c3.174,0.689,21.141,1.346,33.285-0.899
	c11.895-2.199,15.047,3.147,17.393,3.698c2.346,0.553,12.761,0.496,16.901,0.357c4.14-0.137,4.416-1.379,4.416-1.379
	s5.075,0.373,7.008,0.787s7.368-2.229,30-3.333c22.633-1.105,36.771,0.925,36.771,0.925s1.022-1.14,2.126-1.001
	c1.104,0.137,11.61,1.556,31.067,1.142c0,0,12.258-2.442,14.543-2.524c23.008-0.818,23.656,1.957,25.002,1.767
	c1.017-0.144,2.671-1.042,4.622-1.105c5.528-0.18,16.062,2.271,19.239,2.047s6.301-0.487,9.546-0.333
	c5.25,0.25,18.793,1.339,30.584-2.333c11.793-3.67,15.497,1.243,17.833,1.833c2.338,0.59,10.942,1.237,15.083,1.167
	s7.824-1.112,9.75-0.667c1.723,0.4,10.416,0.438,28.407-0.101V360H0V248.929L0,247.199z"/>
|
7
|
+
<g opacity="0.9">
|
8
|
+
<path fill="#F9ED32" d="M75.135,23.1c0.117-0.404,0.655-0.354,0.655-0.354l1.579,0.002c0.716,0.004,1.384-0.449,1.617-1.166
		l0.491-1.518c0,0,0.109-0.51,0.542-0.51s0.54,0.512,0.54,0.512l0.485,1.502c0.217,0.682,0.854,1.178,1.608,1.178l1.595-0.002
		c0,0,0.522-0.049,0.654,0.357c0.134,0.412-0.321,0.672-0.321,0.672L83.3,24.699c-0.581,0.418-0.855,1.178-0.623,1.895l0.495,1.516
		c0,0,0.212,0.477-0.138,0.732c-0.351,0.254-0.738-0.098-0.738-0.098l-1.275-0.93c-0.577-0.424-1.383-0.451-1.993-0.008
		l-1.289,0.939c0,0-0.389,0.348-0.739,0.094c-0.35-0.254-0.135-0.732-0.135-0.732l0.49-1.5c0.225-0.68,0-1.455-0.609-1.898
		l-1.292-0.936C75.453,23.773,75.001,23.512,75.135,23.1z"/>
|
9
|
+
</g>
|
10
|
+
<g opacity="0.9">
|
11
|
+
<path fill="#F9ED32" d="M19.375,95.979c0.117-0.404,0.655-0.354,0.655-0.354l1.579,0.002c0.716,0.004,1.384-0.449,1.617-1.166
		l0.491-1.518c0,0,0.109-0.51,0.542-0.51s0.54,0.512,0.54,0.512l0.485,1.502c0.217,0.682,0.854,1.178,1.608,1.178l1.595-0.002
		c0,0,0.522-0.049,0.654,0.357c0.134,0.412-0.321,0.672-0.321,0.672l-1.279,0.926c-0.581,0.418-0.855,1.178-0.623,1.895l0.495,1.516
		c0,0,0.212,0.477-0.138,0.732c-0.351,0.254-0.738-0.098-0.738-0.098l-1.275-0.93c-0.577-0.424-1.383-0.451-1.993-0.008
		l-1.289,0.939c0,0-0.389,0.348-0.739,0.094c-0.35-0.254-0.135-0.732-0.135-0.732l0.49-1.5c0.225-0.68,0-1.455-0.609-1.898
		l-1.292-0.936C19.694,96.652,19.242,96.391,19.375,95.979z"/>
|
12
|
+
</g>
|
13
|
+
<g opacity="0.9">
|
14
|
+
<path fill="#F9ED32" d="M157.866,49.58c0.117-0.404,0.655-0.354,0.655-0.354l1.579,0.002c0.715,0.004,1.383-0.449,1.616-1.166
		l0.491-1.518c0,0,0.109-0.51,0.542-0.51s0.54,0.512,0.54,0.512l0.484,1.502c0.218,0.682,0.855,1.178,1.609,1.178l1.594-0.002
		c0,0,0.522-0.049,0.654,0.357c0.134,0.412-0.321,0.672-0.321,0.672l-1.278,0.926c-0.582,0.418-0.855,1.178-0.623,1.895l0.494,1.516
		c0,0,0.213,0.479-0.138,0.732s-0.738-0.098-0.738-0.098l-1.275-0.93c-0.577-0.424-1.384-0.451-1.993-0.008l-1.289,0.939
		c0,0-0.389,0.35-0.739,0.094c-0.351-0.254-0.135-0.732-0.135-0.732l0.49-1.5c0.225-0.68,0.001-1.455-0.609-1.898l-1.292-0.936
		C158.185,50.254,157.733,49.992,157.866,49.58z"/>
|
15
|
+
</g>
|
16
|
+
<g opacity="0.9">
|
17
|
+
<path fill="#F9ED32" d="M293.842,50.07c0.117-0.404,0.654-0.355,0.654-0.355l1.578,0.004c0.717,0.004,1.385-0.449,1.617-1.166
		l0.49-1.518c0,0,0.109-0.512,0.543-0.512s0.539,0.514,0.539,0.514l0.486,1.502c0.217,0.682,0.854,1.178,1.607,1.178l1.596-0.002
		c0,0,0.521-0.051,0.653,0.357c0.134,0.412-0.321,0.672-0.321,0.672l-1.279,0.926c-0.58,0.418-0.855,1.176-0.622,1.893l0.495,1.518
		c0,0,0.212,0.477-0.139,0.732c-0.351,0.254-0.738-0.1-0.738-0.1l-1.275-0.93c-0.576-0.424-1.383-0.449-1.993-0.008l-1.289,0.939
		c0,0-0.389,0.35-0.739,0.096c-0.35-0.254-0.135-0.732-0.135-0.732l0.49-1.502c0.225-0.678,0-1.453-0.609-1.896l-1.291-0.936
		C294.16,50.744,293.707,50.482,293.842,50.07z"/>
|
18
|
+
</g>
|
19
|
+
<g opacity="0.9">
|
20
|
+
<path fill="#F9ED32" d="M316.341,62.787c0.117-0.404,0.654-0.354,0.654-0.354l1.578,0.002c0.717,0.004,1.385-0.449,1.617-1.166
		l0.49-1.518c0,0,0.109-0.51,0.543-0.51s0.539,0.512,0.539,0.512l0.486,1.502c0.217,0.682,0.854,1.178,1.607,1.178l1.596-0.002
		c0,0,0.521-0.049,0.653,0.357c0.134,0.412-0.321,0.672-0.321,0.672l-1.279,0.926c-0.58,0.418-0.855,1.178-0.622,1.895l0.495,1.516
		c0,0,0.212,0.477-0.139,0.732c-0.351,0.254-0.738-0.098-0.738-0.098l-1.275-0.93c-0.576-0.424-1.383-0.451-1.993-0.008
		l-1.289,0.939c0,0-0.389,0.348-0.739,0.094c-0.35-0.254-0.135-0.732-0.135-0.732l0.49-1.5c0.225-0.68,0-1.455-0.609-1.898
		l-1.291-0.936C316.659,63.461,316.206,63.199,316.341,62.787z"/>
|
21
|
+
</g>
|
22
|
+
<g opacity="0.9">
|
23
|
+
<path fill="#F9ED32" d="M445.468,29.039c0.117-0.404,0.654-0.355,0.654-0.355l1.578,0.002c0.717,0.004,1.385-0.447,1.617-1.166
		l0.49-1.516c0,0,0.109-0.512,0.543-0.512s0.539,0.512,0.539,0.512l0.486,1.504c0.217,0.682,0.854,1.176,1.607,1.176l1.596-0.002
		c0,0,0.521-0.049,0.653,0.359c0.134,0.412-0.321,0.672-0.321,0.672l-1.279,0.926c-0.58,0.416-0.855,1.176-0.622,1.893l0.495,1.516
		c0,0,0.212,0.479-0.139,0.732s-0.738-0.098-0.738-0.098l-1.275-0.93c-0.576-0.424-1.383-0.451-1.993-0.008l-1.289,0.939
		c0,0-0.389,0.35-0.739,0.094c-0.35-0.254-0.135-0.73-0.135-0.73l0.49-1.502c0.225-0.68,0-1.455-0.609-1.896l-1.291-0.936
		C445.786,29.713,445.333,29.451,445.468,29.039z"/>
|
24
|
+
</g>
|
25
|
+
<g opacity="0.9">
|
26
|
+
<path fill="#F9ED32" d="M466.011,69.146c0.117-0.404,0.654-0.355,0.654-0.355l1.578,0.004c0.717,0.004,1.385-0.449,1.617-1.166
		l0.49-1.518c0,0,0.109-0.512,0.543-0.512s0.539,0.514,0.539,0.514l0.486,1.502c0.217,0.682,0.854,1.178,1.607,1.178l1.596-0.002
		c0,0,0.521-0.051,0.653,0.357c0.134,0.412-0.321,0.672-0.321,0.672l-1.279,0.926c-0.58,0.418-0.855,1.176-0.622,1.893l0.495,1.516
		c0,0,0.212,0.479-0.139,0.732c-0.351,0.256-0.738-0.098-0.738-0.098l-1.275-0.93c-0.576-0.424-1.383-0.449-1.993-0.008
		l-1.289,0.939c0,0-0.389,0.35-0.739,0.096c-0.35-0.256-0.135-0.732-0.135-0.732l0.49-1.502c0.225-0.678,0-1.453-0.609-1.896
		l-1.291-0.936C466.329,69.82,465.876,69.559,466.011,69.146z"/>
|
27
|
+
</g>
|
28
|
+
<g opacity="0.9">
|
29
|
+
<path fill="#F9ED32" d="M437.153,77.951c0.117-0.404,0.654-0.355,0.654-0.355l1.578,0.002c0.717,0.004,1.385-0.447,1.617-1.166
		l0.49-1.516c0,0,0.109-0.512,0.543-0.512s0.539,0.512,0.539,0.512l0.486,1.504c0.217,0.682,0.854,1.176,1.607,1.176l1.596-0.002
		c0,0,0.521-0.049,0.653,0.359c0.134,0.412-0.321,0.672-0.321,0.672l-1.279,0.926c-0.58,0.416-0.855,1.176-0.622,1.893l0.495,1.516
		c0,0,0.212,0.479-0.139,0.732s-0.738-0.098-0.738-0.098l-1.275-0.93c-0.576-0.424-1.383-0.451-1.993-0.008l-1.289,0.939
		c0,0-0.389,0.35-0.739,0.094c-0.35-0.254-0.135-0.73-0.135-0.73l0.49-1.502c0.225-0.68,0-1.455-0.609-1.896l-1.291-0.936
		C437.472,78.625,437.019,78.363,437.153,77.951z"/>
|
30
|
+
</g>
|
31
|
+
<g opacity="0.9">
|
32
|
+
<path fill="#F9ED32" d="M240.528,101.428c0.117-0.404,0.654-0.355,0.654-0.355l1.578,0.004c0.717,0.004,1.385-0.449,1.617-1.166
		l0.49-1.518c0,0,0.109-0.512,0.543-0.512s0.539,0.514,0.539,0.514l0.486,1.502c0.217,0.682,0.854,1.178,1.607,1.178l1.596-0.002
		c0,0,0.521-0.051,0.653,0.357c0.134,0.412-0.321,0.672-0.321,0.672l-1.279,0.926c-0.58,0.418-0.855,1.176-0.622,1.893l0.495,1.518
		c0,0,0.212,0.477-0.139,0.732c-0.351,0.254-0.738-0.1-0.738-0.1l-1.275-0.93c-0.576-0.424-1.383-0.449-1.993-0.006l-1.289,0.938
		c0,0-0.389,0.35-0.739,0.096c-0.35-0.254-0.135-0.732-0.135-0.732l0.49-1.5c0.225-0.68,0-1.455-0.609-1.898l-1.291-0.936
		C240.847,102.102,240.394,101.84,240.528,101.428z"/>
|
33
|
+
</g>
|
34
|
+
<g opacity="0.9">
|
35
|
+
<path fill="#F9ED32" d="M210.569,68.426c0.062-0.215,0.348-0.189,0.348-0.189l0.838,0.002c0.38,0.002,0.734-0.238,0.857-0.619
		l0.26-0.805c0,0,0.059-0.271,0.289-0.271s0.285,0.271,0.285,0.271l0.259,0.799c0.114,0.361,0.452,0.623,0.853,0.623h0.848
		c0,0,0.275-0.027,0.346,0.189c0.072,0.219-0.17,0.357-0.17,0.357l-0.68,0.49c-0.307,0.223-0.453,0.625-0.33,1.006l0.264,0.805
		c0,0,0.111,0.252-0.074,0.389c-0.186,0.135-0.391-0.053-0.391-0.053l-0.678-0.494c-0.306-0.225-0.734-0.238-1.058-0.004
		l-0.685,0.498c0,0-0.205,0.186-0.392,0.051c-0.186-0.135-0.071-0.389-0.071-0.389l0.26-0.797c0.119-0.359,0-0.771-0.323-1.006
		l-0.685-0.496C210.739,68.783,210.498,68.645,210.569,68.426z"/>
|
36
|
+
</g>
|
37
|
+
<g opacity="0.9">
|
38
|
+
<path fill="#F9ED32" d="M114.612,26.971c0.04-0.137,0.222-0.121,0.222-0.121l0.534,0.002c0.243,0,0.469-0.152,0.548-0.396
		l0.166-0.514c0,0,0.037-0.172,0.184-0.172c0.147,0,0.183,0.174,0.183,0.174l0.165,0.508c0.073,0.23,0.289,0.398,0.544,0.398h0.541
		c0,0,0.176-0.018,0.221,0.121c0.045,0.139-0.109,0.229-0.109,0.229l-0.434,0.312c-0.196,0.141-0.29,0.398-0.21,0.641l0.167,0.514
		c0,0,0.072,0.162-0.046,0.248c-0.119,0.086-0.25-0.033-0.25-0.033l-0.433-0.314c-0.195-0.143-0.468-0.152-0.675-0.002l-0.437,0.318
		c0,0-0.132,0.117-0.25,0.031c-0.118-0.086-0.046-0.248-0.046-0.248l0.167-0.508c0.076-0.23,0-0.492-0.207-0.643l-0.437-0.316
		C114.72,27.199,114.566,27.109,114.612,26.971z"/>
|
39
|
+
</g>
|
40
|
+
<g opacity="0.9">
|
41
|
+
<path fill="#F9ED32" d="M12.341,81.404c0.04-0.137,0.222-0.121,0.222-0.121l0.534,0.002c0.243,0,0.469-0.152,0.548-0.396
		l0.166-0.514c0,0,0.037-0.172,0.184-0.172c0.147,0,0.183,0.174,0.183,0.174l0.165,0.508c0.073,0.23,0.289,0.398,0.544,0.398h0.541
		c0,0,0.176-0.018,0.221,0.121c0.045,0.139-0.109,0.229-0.109,0.229l-0.434,0.312c-0.196,0.141-0.29,0.398-0.21,0.641l0.167,0.514
		c0,0,0.072,0.162-0.046,0.248c-0.119,0.086-0.25-0.033-0.25-0.033L14.333,83c-0.195-0.143-0.468-0.152-0.675-0.002l-0.437,0.318
		c0,0-0.132,0.117-0.25,0.031c-0.118-0.086-0.046-0.248-0.046-0.248l0.167-0.508c0.076-0.23,0-0.492-0.207-0.643l-0.437-0.316
		C12.449,81.633,12.295,81.543,12.341,81.404z"/>
|
42
|
+
</g>
|
43
|
+
<g opacity="0.9">
|
44
|
+
<path fill="#F9ED32" d="M161.007,80.404c0.04-0.137,0.223-0.121,0.223-0.121l0.533,0.002c0.243,0,0.47-0.152,0.549-0.396
		l0.166-0.514c0,0,0.037-0.172,0.184-0.172s0.182,0.174,0.182,0.174l0.166,0.508c0.072,0.23,0.289,0.398,0.544,0.398h0.54
		c0,0,0.177-0.018,0.222,0.121c0.046,0.139-0.108,0.229-0.108,0.229l-0.434,0.312c-0.197,0.141-0.29,0.398-0.211,0.641l0.168,0.514
		c0,0,0.071,0.162-0.047,0.248c-0.119,0.086-0.25-0.033-0.25-0.033L163,82c-0.194-0.143-0.468-0.152-0.675-0.002l-0.437,0.318
		c0,0-0.132,0.117-0.251,0.031c-0.117-0.086-0.045-0.248-0.045-0.248l0.166-0.508c0.076-0.23,0-0.492-0.207-0.643l-0.437-0.316
		C161.115,80.633,160.962,80.543,161.007,80.404z"/>
|
45
|
+
</g>
|
46
|
+
<g opacity="0.9">
|
47
|
+
<path fill="#F9ED32" d="M281.008,58.404c0.039-0.137,0.221-0.121,0.221-0.121l0.535,0.002c0.242,0,0.469-0.152,0.547-0.396
		l0.166-0.514c0,0,0.037-0.172,0.184-0.172c0.148,0,0.184,0.174,0.184,0.174l0.164,0.508c0.074,0.23,0.289,0.398,0.545,0.398h0.541
		c0,0,0.176-0.018,0.221,0.121s-0.109,0.229-0.109,0.229l-0.434,0.312c-0.195,0.141-0.289,0.398-0.21,0.641l0.167,0.514
		c0,0,0.072,0.162-0.046,0.248c-0.119,0.086-0.25-0.033-0.25-0.033L283,60c-0.195-0.143-0.469-0.152-0.675-0.002l-0.437,0.318
		c0,0-0.132,0.117-0.25,0.031c-0.119-0.086-0.047-0.248-0.047-0.248l0.167-0.508c0.075-0.23,0-0.492-0.206-0.643l-0.438-0.316
		C281.115,58.633,280.961,58.543,281.008,58.404z"/>
|
48
|
+
</g>
|
49
|
+
<g opacity="0.9">
|
50
|
+
<path fill="#F9ED32" d="M423.236,55.125c0.039-0.137,0.221-0.119,0.221-0.119h0.535c0.242,0.002,0.469-0.152,0.547-0.395
		l0.166-0.514c0,0,0.037-0.174,0.184-0.174c0.148,0,0.184,0.174,0.184,0.174l0.164,0.508c0.074,0.232,0.289,0.4,0.545,0.4
		l0.541-0.002c0,0,0.176-0.016,0.221,0.121c0.045,0.141-0.109,0.229-0.109,0.229L426,55.668c-0.195,0.141-0.289,0.398-0.21,0.641
		l0.167,0.514c0,0,0.072,0.162-0.046,0.248c-0.119,0.086-0.25-0.033-0.25-0.033l-0.433-0.314c-0.195-0.145-0.469-0.154-0.675-0.004
		l-0.437,0.318c0,0-0.132,0.119-0.25,0.033c-0.119-0.088-0.047-0.248-0.047-0.248l0.167-0.51c0.075-0.229,0-0.492-0.206-0.643
		l-0.438-0.316C423.344,55.354,423.189,55.266,423.236,55.125z"/>
|
51
|
+
</g>
|
52
|
+
<g opacity="0.9">
|
53
|
+
<path fill="#F9ED32" d="M473.903,20.457c0.039-0.137,0.221-0.119,0.221-0.119h0.535c0.242,0.002,0.469-0.15,0.547-0.395
		l0.166-0.514c0,0,0.037-0.174,0.184-0.174c0.148,0,0.184,0.174,0.184,0.174l0.164,0.51c0.074,0.23,0.289,0.398,0.545,0.398h0.541
		c0,0,0.176-0.018,0.221,0.121s-0.109,0.227-0.109,0.227L476.667,21c-0.195,0.141-0.289,0.398-0.21,0.641l0.167,0.514
		c0,0,0.072,0.162-0.046,0.248c-0.119,0.086-0.25-0.033-0.25-0.033l-0.433-0.314c-0.195-0.145-0.469-0.152-0.675-0.002l-0.437,0.316
		c0,0-0.132,0.119-0.25,0.033c-0.119-0.086-0.047-0.248-0.047-0.248l0.167-0.508c0.075-0.23,0-0.494-0.206-0.645l-0.438-0.316
		C474.011,20.686,473.856,20.598,473.903,20.457z"/>
|
54
|
+
</g>
|
55
|
+
<g opacity="0.9">
|
56
|
+
<path fill="#F9ED32" d="M353.236,62.125c0.039-0.137,0.221-0.119,0.221-0.119h0.535c0.242,0.002,0.469-0.152,0.547-0.395
		l0.166-0.514c0,0,0.037-0.174,0.184-0.174c0.148,0,0.184,0.174,0.184,0.174l0.164,0.51c0.074,0.23,0.289,0.398,0.545,0.398
		l0.541-0.002c0,0,0.176-0.016,0.221,0.121c0.045,0.141-0.109,0.229-0.109,0.229L356,62.668c-0.195,0.141-0.289,0.398-0.21,0.641
		l0.167,0.514c0,0,0.072,0.162-0.046,0.248c-0.119,0.086-0.25-0.033-0.25-0.033l-0.433-0.314c-0.195-0.145-0.469-0.154-0.675-0.004
		l-0.437,0.318c0,0-0.132,0.119-0.25,0.033c-0.119-0.088-0.047-0.248-0.047-0.248l0.167-0.51c0.075-0.229,0-0.492-0.206-0.643
		l-0.438-0.316C353.344,62.354,353.189,62.266,353.236,62.125z"/>
|
57
|
+
</g>
|
58
|
+
<g opacity="0.9">
|
59
|
+
<path fill="#F9ED32" d="M255.903,56.791c0.039-0.137,0.221-0.119,0.221-0.119h0.535c0.242,0.002,0.469-0.15,0.547-0.395
		l0.166-0.514c0,0,0.037-0.174,0.184-0.174c0.148,0,0.184,0.174,0.184,0.174l0.164,0.51c0.074,0.23,0.289,0.398,0.545,0.398h0.541
		c0,0,0.176-0.018,0.221,0.121s-0.109,0.227-0.109,0.227l-0.434,0.314c-0.195,0.141-0.289,0.398-0.21,0.641l0.167,0.514
		c0,0,0.072,0.162-0.046,0.248c-0.119,0.086-0.25-0.033-0.25-0.033l-0.433-0.314c-0.195-0.145-0.469-0.152-0.675-0.002l-0.437,0.316
		c0,0-0.132,0.119-0.25,0.033c-0.119-0.086-0.047-0.248-0.047-0.248l0.167-0.508c0.075-0.23,0-0.494-0.206-0.645l-0.438-0.316
		C256.011,57.02,255.856,56.932,255.903,56.791z"/>
|
60
|
+
</g>
|
61
|
+
<g opacity="0.9">
|
62
|
+
<path fill="#F9ED32" d="M429.545,81.832c0.062-0.215,0.347-0.188,0.347-0.188h0.837c0.381,0.004,0.735-0.236,0.858-0.617
		l0.261-0.805c0,0,0.058-0.271,0.287-0.271c0.23,0,0.287,0.271,0.287,0.271l0.258,0.797c0.115,0.361,0.453,0.625,0.854,0.625
		l0.846-0.002c0,0,0.277-0.025,0.348,0.191c0.07,0.219-0.172,0.355-0.172,0.355l-0.678,0.492c-0.309,0.221-0.455,0.623-0.33,1.004
		l0.262,0.805c0,0,0.113,0.254-0.072,0.389c-0.188,0.135-0.393-0.053-0.393-0.053l-0.677-0.492c-0.306-0.225-0.733-0.24-1.058-0.004
		l-0.684,0.498c0,0-0.207,0.186-0.393,0.051c-0.186-0.137-0.072-0.389-0.072-0.389l0.261-0.797c0.119-0.361,0-0.771-0.323-1.008
		l-0.686-0.496C429.713,82.189,429.473,82.051,429.545,81.832z"/>
|
63
|
+
</g>
|
64
|
+
<g opacity="0.9">
|
65
|
+
<path fill="#F9ED32" d="M444.157,89.139c0.062-0.213,0.347-0.188,0.347-0.188l0.837,0.002c0.381,0.002,0.735-0.238,0.858-0.619
		l0.261-0.805c0,0,0.058-0.271,0.287-0.271c0.23,0,0.287,0.271,0.287,0.271l0.258,0.797c0.115,0.363,0.453,0.625,0.854,0.625h0.846
		c0,0,0.277-0.027,0.348,0.189c0.07,0.219-0.172,0.357-0.172,0.357l-0.678,0.49c-0.309,0.221-0.455,0.625-0.33,1.004l0.262,0.805
		c0,0,0.113,0.254-0.072,0.389c-0.188,0.135-0.393-0.051-0.393-0.051l-0.677-0.494c-0.306-0.225-0.733-0.238-1.058-0.004
		l-0.684,0.498c0,0-0.207,0.186-0.393,0.051s-0.072-0.389-0.072-0.389L445.334,91c0.119-0.359,0-0.771-0.323-1.006l-0.686-0.496
		C444.325,89.498,444.085,89.357,444.157,89.139z"/>
|
66
|
+
</g>
|
67
|
+
<g opacity="0.9">
|
68
|
+
<path fill="#F9ED32" d="M456.936,49.836c0.062-0.215,0.347-0.189,0.347-0.189l0.837,0.002c0.381,0.002,0.735-0.238,0.858-0.619
		l0.261-0.805c0,0,0.058-0.271,0.287-0.271c0.23,0,0.287,0.273,0.287,0.273l0.258,0.797c0.115,0.361,0.453,0.625,0.854,0.625
		l0.846-0.002c0,0,0.277-0.025,0.348,0.189c0.07,0.219-0.172,0.357-0.172,0.357l-0.678,0.492c-0.309,0.221-0.455,0.623-0.33,1.004
		l0.262,0.805c0,0,0.113,0.254-0.072,0.389c-0.188,0.135-0.393-0.053-0.393-0.053l-0.677-0.492c-0.306-0.227-0.733-0.24-1.058-0.004
		l-0.684,0.498c0,0-0.207,0.186-0.393,0.049c-0.186-0.135-0.072-0.387-0.072-0.387l0.261-0.797c0.119-0.361,0-0.771-0.323-1.008
		l-0.686-0.496C457.104,50.193,456.863,50.055,456.936,49.836z"/>
|
69
|
+
</g>
|
70
|
+
<g opacity="0.9">
|
71
|
+
<path fill="#F9ED32" d="M386.332,118.146c0.062-0.215,0.347-0.189,0.347-0.189l0.837,0.002c0.381,0.002,0.735-0.238,0.858-0.619
		l0.261-0.805c0,0,0.058-0.271,0.287-0.271c0.23,0,0.287,0.273,0.287,0.273l0.258,0.797c0.115,0.361,0.453,0.625,0.854,0.625
		l0.846-0.002c0,0,0.277-0.025,0.348,0.189c0.07,0.219-0.172,0.357-0.172,0.357l-0.678,0.492c-0.309,0.221-0.455,0.623-0.33,1.004
		l0.262,0.805c0,0,0.113,0.254-0.072,0.389c-0.188,0.135-0.393-0.053-0.393-0.053l-0.677-0.492c-0.306-0.227-0.733-0.24-1.058-0.004
		l-0.684,0.498c0,0-0.207,0.186-0.393,0.049c-0.186-0.135-0.072-0.387-0.072-0.387l0.261-0.797c0.119-0.361,0-0.771-0.323-1.008
		l-0.686-0.496C386.5,118.504,386.26,118.365,386.332,118.146z"/>
|
72
|
+
</g>
|
73
|
+
<g opacity="0.9">
|
74
|
+
<path fill="#F9ED32" d="M335.665,50.48c0.062-0.215,0.347-0.189,0.347-0.189l0.837,0.002c0.381,0.002,0.735-0.238,0.858-0.619
		l0.261-0.805c0,0,0.058-0.271,0.287-0.271c0.23,0,0.287,0.271,0.287,0.271l0.258,0.799c0.115,0.361,0.453,0.623,0.854,0.623h0.846
		c0,0,0.277-0.027,0.348,0.189c0.07,0.219-0.172,0.357-0.172,0.357l-0.678,0.49c-0.309,0.223-0.455,0.625-0.33,1.006l0.262,0.805
		c0,0,0.113,0.252-0.072,0.389c-0.188,0.135-0.393-0.053-0.393-0.053l-0.677-0.494c-0.306-0.225-0.733-0.238-1.058-0.004
		l-0.684,0.498c0,0-0.207,0.186-0.393,0.051s-0.072-0.389-0.072-0.389l0.261-0.797c0.119-0.359,0-0.771-0.323-1.006l-0.686-0.496
		C335.833,50.838,335.593,50.699,335.665,50.48z"/>
|
75
|
+
</g>
|
76
|
+
<g opacity="0.9">
|
77
|
+
<path fill="#F9ED32" d="M173.562,53.02c0.062-0.215,0.348-0.188,0.348-0.188h0.838c0.38,0.004,0.734-0.236,0.857-0.617l0.26-0.805
		c0,0,0.059-0.271,0.289-0.271s0.285,0.271,0.285,0.271l0.259,0.797c0.114,0.361,0.452,0.625,0.853,0.625l0.848-0.002
		c0,0,0.275-0.025,0.346,0.191c0.072,0.219-0.17,0.355-0.17,0.355l-0.68,0.492c-0.307,0.221-0.453,0.623-0.33,1.004l0.264,0.805
		c0,0,0.111,0.254-0.074,0.389s-0.391-0.051-0.391-0.051l-0.678-0.494c-0.306-0.225-0.734-0.238-1.058-0.004l-0.685,0.498
		c0,0-0.205,0.186-0.392,0.051c-0.186-0.135-0.071-0.389-0.071-0.389l0.26-0.797c0.119-0.361,0-0.771-0.323-1.008l-0.685-0.496
		C173.731,53.377,173.49,53.238,173.562,53.02z"/>
|
78
|
+
</g>
|
79
|
+
<g opacity="0.9">
|
80
|
+
<path fill="#F9ED32" d="M190.206,80.82c0.062-0.215,0.348-0.189,0.348-0.189l0.838,0.002c0.38,0.002,0.734-0.238,0.857-0.619
		l0.26-0.805c0,0,0.059-0.271,0.289-0.271s0.285,0.273,0.285,0.273l0.259,0.797c0.114,0.361,0.452,0.625,0.853,0.625l0.848-0.002
		c0,0,0.275-0.025,0.346,0.189c0.072,0.219-0.17,0.357-0.17,0.357l-0.68,0.492c-0.307,0.221-0.453,0.623-0.33,1.004l0.264,0.805
		c0,0,0.111,0.254-0.074,0.389s-0.391-0.053-0.391-0.053l-0.678-0.492c-0.306-0.227-0.734-0.24-1.058-0.004l-0.685,0.498
		c0,0-0.205,0.186-0.392,0.049c-0.186-0.135-0.071-0.387-0.071-0.387l0.26-0.797c0.119-0.361,0-0.771-0.323-1.008l-0.685-0.496
		C190.376,81.178,190.135,81.039,190.206,80.82z"/>
|
81
|
+
</g>
|
82
|
+
<g opacity="0.9">
|
83
|
+
<path fill="#F9ED32" d="M254.66,94.986c0.062-0.215,0.348-0.189,0.348-0.189l0.837,0.002c0.38,0.002,0.735-0.238,0.858-0.619
		l0.26-0.805c0,0,0.059-0.271,0.288-0.271c0.23,0,0.286,0.271,0.286,0.271l0.258,0.799c0.115,0.361,0.453,0.623,0.854,0.623h0.847
		c0,0,0.276-0.027,0.347,0.189c0.071,0.219-0.171,0.357-0.171,0.357l-0.679,0.49c-0.308,0.223-0.454,0.625-0.33,1.006l0.263,0.805
		c0,0,0.112,0.252-0.073,0.389c-0.187,0.135-0.392-0.053-0.392-0.053l-0.677-0.494c-0.307-0.225-0.734-0.238-1.059-0.004
		l-0.684,0.498c0,0-0.206,0.186-0.393,0.051c-0.186-0.135-0.071-0.389-0.071-0.389l0.261-0.797c0.119-0.359,0-0.771-0.324-1.006
		l-0.685-0.496C254.829,95.344,254.588,95.205,254.66,94.986z"/>
|
84
|
+
</g>
|
85
|
+
<g opacity="0.9">
|
86
|
+
<path fill="#F9ED32" d="M30.998,102.48c0.062-0.215,0.348-0.189,0.348-0.189l0.837,0.002c0.38,0.002,0.735-0.238,0.858-0.619
		l0.26-0.805c0,0,0.059-0.271,0.288-0.271c0.23,0,0.286,0.273,0.286,0.273l0.258,0.797c0.115,0.361,0.453,0.625,0.854,0.625
		l0.847-0.002c0,0,0.276-0.025,0.347,0.189c0.071,0.219-0.171,0.357-0.171,0.357l-0.679,0.492c-0.308,0.221-0.454,0.623-0.33,1.004
		l0.263,0.805c0,0,0.112,0.254-0.073,0.389c-0.187,0.135-0.392-0.053-0.392-0.053l-0.677-0.492c-0.307-0.227-0.734-0.24-1.059-0.004
		l-0.684,0.498c0,0-0.206,0.186-0.393,0.049c-0.186-0.135-0.071-0.387-0.071-0.387l0.261-0.797c0.119-0.361,0-0.771-0.324-1.008
		l-0.685-0.496C31.167,102.838,30.926,102.699,30.998,102.48z"/>
|
87
|
+
</g>
|
88
|
+
<g opacity="0.9">
|
89
|
+
<path fill="#F9ED32" d="M75.21,37.832c0.062-0.215,0.348-0.189,0.348-0.189l0.837,0.002c0.38,0.002,0.735-0.238,0.858-0.619
		l0.26-0.805c0,0,0.059-0.271,0.288-0.271c0.23,0,0.286,0.273,0.286,0.273l0.258,0.797c0.115,0.361,0.453,0.625,0.854,0.625
		l0.847-0.002c0,0,0.276-0.025,0.347,0.189c0.071,0.219-0.171,0.357-0.171,0.357l-0.679,0.492c-0.308,0.221-0.454,0.623-0.33,1.004
		l0.263,0.805c0,0,0.112,0.254-0.073,0.389c-0.187,0.135-0.392-0.053-0.392-0.053l-0.677-0.492c-0.307-0.227-0.734-0.24-1.059-0.004
		l-0.684,0.498c0,0-0.206,0.186-0.393,0.049c-0.186-0.135-0.071-0.387-0.071-0.387l0.261-0.797c0.119-0.361,0-0.771-0.324-1.008
		l-0.685-0.496C75.379,38.189,75.138,38.051,75.21,37.832z"/>
|
90
|
+
</g>
|
91
|
+
<g opacity="0.9">
|
92
|
+
<path fill="#F9ED32" d="M99.21,44.832c0.062-0.215,0.348-0.189,0.348-0.189l0.837,0.002c0.38,0.002,0.735-0.238,0.858-0.619
		l0.26-0.805c0,0,0.059-0.271,0.288-0.271c0.23,0,0.286,0.273,0.286,0.273l0.258,0.797c0.115,0.361,0.453,0.625,0.854,0.625
		l0.847-0.002c0,0,0.276-0.025,0.347,0.189c0.071,0.219-0.171,0.357-0.171,0.357l-0.679,0.492c-0.308,0.221-0.454,0.623-0.33,1.004
		l0.263,0.805c0,0,0.112,0.254-0.073,0.389c-0.187,0.135-0.392-0.053-0.392-0.053l-0.677-0.492c-0.307-0.227-0.734-0.24-1.059-0.004
		l-0.684,0.498c0,0-0.206,0.186-0.393,0.049c-0.186-0.135-0.071-0.387-0.071-0.387l0.261-0.797c0.119-0.361,0-0.771-0.324-1.008
		l-0.685-0.496C99.379,45.189,99.138,45.051,99.21,44.832z"/>
|
93
|
+
</g>
|
94
|
+
<g opacity="0.9">
|
95
|
+
<path fill="#F9ED32" d="M307.072,60.635c0.062-0.215,0.348-0.189,0.348-0.189l0.837,0.002c0.38,0.002,0.735-0.238,0.858-0.619
		l0.26-0.805c0,0,0.059-0.271,0.288-0.271c0.23,0,0.286,0.271,0.286,0.271l0.258,0.799c0.115,0.361,0.453,0.623,0.854,0.623h0.847
		c0,0,0.276-0.027,0.347,0.189c0.071,0.219-0.171,0.357-0.171,0.357l-0.679,0.49c-0.308,0.223-0.454,0.625-0.33,1.006l0.263,0.805
		c0,0,0.112,0.252-0.073,0.389c-0.187,0.135-0.392-0.053-0.392-0.053l-0.677-0.494c-0.307-0.225-0.734-0.238-1.059-0.004
		l-0.684,0.498c0,0-0.206,0.186-0.393,0.051c-0.186-0.135-0.071-0.389-0.071-0.389l0.261-0.797c0.119-0.359,0-0.771-0.324-1.006
		l-0.685-0.496C307.241,60.992,307,60.854,307.072,60.635z"/>
|
96
|
+
</g>
|
97
|
+
<g opacity="0.9">
|
98
|
+
<path fill="#F9ED32" d="M172.54,35.885c0.117-0.404,0.654-0.354,0.654-0.354l1.578,0.002c0.717,0.004,1.385-0.449,1.617-1.166
		l0.49-1.518c0,0,0.109-0.51,0.543-0.51s0.539,0.512,0.539,0.512l0.486,1.502c0.217,0.682,0.854,1.178,1.607,1.178l1.596-0.002
		c0,0,0.521-0.049,0.654,0.357c0.133,0.412-0.322,0.672-0.322,0.672l-1.279,0.926c-0.58,0.418-0.855,1.178-0.621,1.895l0.494,1.516
		c0,0,0.213,0.477-0.139,0.732c-0.35,0.254-0.738-0.098-0.738-0.098l-1.275-0.93c-0.576-0.424-1.383-0.451-1.992-0.008l-1.289,0.939
		c0,0-0.389,0.348-0.74,0.094c-0.35-0.254-0.135-0.732-0.135-0.732l0.49-1.5c0.225-0.68,0-1.455-0.609-1.898l-1.291-0.936
		C172.858,36.559,172.405,36.297,172.54,35.885z"/>
|
99
|
+
</g>
|
100
|
+
<g opacity="0.9">
|
101
|
+
<path fill="#F9ED32" d="M197.903,70.057c0.117-0.404,0.654-0.355,0.654-0.355l1.578,0.002c0.717,0.004,1.385-0.447,1.617-1.166
		l0.49-1.516c0,0,0.109-0.512,0.543-0.512s0.539,0.512,0.539,0.512l0.486,1.504c0.217,0.682,0.854,1.176,1.607,1.176l1.596-0.002
		c0,0,0.521-0.049,0.653,0.359c0.134,0.412-0.321,0.672-0.321,0.672l-1.279,0.926c-0.58,0.416-0.855,1.176-0.622,1.893l0.495,1.516
		c0,0,0.212,0.479-0.139,0.732s-0.738-0.098-0.738-0.098l-1.275-0.93c-0.576-0.424-1.383-0.451-1.993-0.008l-1.289,0.939
		c0,0-0.389,0.35-0.739,0.094c-0.35-0.254-0.135-0.73-0.135-0.73l0.49-1.502c0.225-0.68,0-1.455-0.609-1.896l-1.291-0.936
		C198.222,70.73,197.769,70.469,197.903,70.057z"/>
|
102
|
+
</g>
|
103
|
+
<g>
|
104
|
+
<path fill="#58595B" d="M33.175,268.006c0.345-1.379,1.162,0.527,5.493,1.268c4.331,0.738,4.014-1.9,7.922-2.113
		c3.908-0.211,7.288,0.318,9.295-0.527s1.584-2.113,2.746-2.113s2.958,1.795,2.958,3.697c0,1.9-1.795,4.33-9.295,5.492
		s-10.879,2.43-14.682,0.211S32.541,270.541,33.175,268.006z"/>
|
105
|
+
<path fill="none" stroke="#9B8579" d="M18.704,279.836c0,0,5.387-2.746,7.711-6.654s3.274-8.029,3.274-8.029
		s1.373-2.535,3.38-2.641s0.845,2.537,4.331,2.854s4.119,0.422,10.668-1.057s8.873-2.641,8.873-2.641l0.845-2.008
		c0,0,3.169-0.844,4.014,0.213c0.845,1.055-0.528,4.014,3.485,6.76s8.133,4.857,10.879,5.492c2.746,0.633,4.542,0.316,4.542,0.316"/>
|
106
|
+
<path fill="none" stroke="#9B8579" d="M33.175,268.006c0.345-1.379,1.162,0.527,5.493,1.268c4.331,0.738,4.014-1.9,7.922-2.113
		c3.908-0.211,7.288,0.318,9.295-0.527s1.584-2.113,2.746-2.113s2.958,1.795,2.958,3.697c0,1.9-1.795,4.33-9.295,5.492
		s-10.879,2.43-14.682,0.211S32.541,270.541,33.175,268.006z"/>
|
107
|
+
<path fill="none" stroke="#9B8579" d="M31.273,272.758c0,0-2.746,5.811-5.704,7.816"/>
|
108
|
+
<path fill="none" stroke="#9B8579" d="M33.386,274.66c0,0-0.845,4.119-5.281,6.23"/>
|
109
|
+
<path fill="none" stroke="#9B8579" d="M36.344,278.355c0,0-0.634,1.9-2.324,2.641"/>
|
110
|
+
<path fill="none" stroke="#9B8579" d="M38.245,279.836c0,0-0.105,2.85-1.795,3.168"/>
|
111
|
+
<path fill="none" stroke="#9B8579" d="M57.046,277.195c0,0-1.162,2.111,1.373,2.746"/>
|
112
|
+
<path fill="none" stroke="#9B8579" d="M64.334,274.236c0,0-0.106,1.797,2.324,2.535"/>
|
113
|
+
<path fill="none" stroke="#9B8579" d="M66.658,271.914c0,0-0.316,2.746,5.176,3.379"/>
|
114
|
+
</g>
|
115
|
+
<g>
|
116
|
+
<path fill="#58595B" d="M86.938,262.303c1.287-1.859,3.486-0.105,7.922-0.529c4.436-0.422,14.47-1.584,14.47-1.584
		s2.007-0.527,3.063,0.105c1.056,0.635,1.162,3.486-1.162,4.438c-2.324,0.949-6.232,0.738-8.344,0.738s-5.598,0-9.295,0
		s-5.387,0.316-6.549-0.951S85.988,263.676,86.938,262.303z"/>
|
117
|
+
<path fill="none" stroke="#9B8579" d="M76.798,267.266c0,0,2.429,0.529,4.331-2.006s3.063-5.281,3.063-5.281
		s-0.739-4.33,0.317-4.754c1.056-0.422,1.689,0.529,2.746,0.529s2.43-0.318,2.747,0.105c0.317,0.422-1.901,2.217,2.429,2.852
		c4.331,0.633,12.992-1.375,14.576-1.691s3.38,0.105,4.014-0.105s1.479-1.268,1.479-1.268l2.007,2.008c0,0-0.528,1.902,0.528,4.119
		c1.056,2.219-0.529,2.852,2.852,4.436c3.38,1.586,5.704,0.318,5.704,0.318"/>
|
118
|
+
<path fill="none" stroke="#9B8579" d="M86.938,262.303c1.287-1.859,3.486-0.105,7.922-0.529c4.436-0.422,14.47-1.584,14.47-1.584
		s2.007-0.527,3.063,0.105c1.056,0.635,1.162,3.486-1.162,4.438c-2.324,0.949-6.232,0.738-8.344,0.738s-5.598,0-9.295,0
		s-5.387,0.316-6.549-0.951S85.988,263.676,86.938,262.303z"/>
|
119
|
+
<path fill="none" stroke="#9B8579" d="M81.234,268.533c0,0,2.747-1.266,3.169-2.957"/>
|
120
|
+
<path fill="none" stroke="#9B8579" d="M87.255,266.527c0,0,0,0.949-1.268,1.9"/>
|
121
|
+
<path fill="none" stroke="#9B8579" d="M113.556,265.365c0,0-1.056,1.689,2.324,2.324"/>
|
122
|
+
<path fill="none" stroke="#9B8579" d="M111.337,267.055c0,0-0.317,1.479,1.901,2.008"/>
|
123
|
+
</g>
|
124
|
+
<g>
|
125
|
+
<path fill="#58595B" d="M406.938,259.635c1.286-1.857,3.485-0.105,7.922-0.527c4.437-0.424,14.47-1.584,14.47-1.584
		s2.008-0.529,3.064,0.105c1.056,0.633,1.161,3.486-1.162,4.436c-2.324,0.951-6.232,0.74-8.345,0.74s-5.599,0-9.295,0
		s-5.388,0.316-6.549-0.951S405.988,261.008,406.938,259.635z"/>
|
126
|
+
<path fill="none" stroke="#9B8579" d="M396.798,264.6c0,0,2.429,0.527,4.331-2.008c1.9-2.535,3.062-5.281,3.062-5.281
		s-0.739-4.33,0.316-4.752c1.057-0.424,1.689,0.527,2.746,0.527s2.43-0.316,2.747,0.105c0.317,0.424-1.901,2.219,2.429,2.852
		c4.331,0.635,12.992-1.373,14.576-1.689c1.585-0.316,3.381,0.105,4.015-0.105s1.479-1.268,1.479-1.268l2.007,2.006
		c0,0-0.527,1.902,0.528,4.121c1.056,2.217-0.528,2.85,2.852,4.436c3.38,1.584,5.704,0.316,5.704,0.316"/>
|
127
|
+
<path fill="none" stroke="#9B8579" d="M406.938,259.635c1.286-1.857,3.485-0.105,7.922-0.527c4.437-0.424,14.47-1.584,14.47-1.584
		s2.008-0.529,3.064,0.105c1.056,0.633,1.161,3.486-1.162,4.436c-2.324,0.951-6.232,0.74-8.345,0.74s-5.599,0-9.295,0
		s-5.388,0.316-6.549-0.951S405.988,261.008,406.938,259.635z"/>
|
128
|
+
<path fill="none" stroke="#9B8579" d="M401.234,265.867c0,0,2.746-1.268,3.169-2.957"/>
|
129
|
+
<path fill="none" stroke="#9B8579" d="M407.256,263.859c0,0,0,0.951-1.268,1.902"/>
|
130
|
+
<path fill="none" stroke="#9B8579" d="M433.556,262.699c0,0-1.056,1.689,2.323,2.322"/>
|
131
|
+
<path fill="none" stroke="#9B8579" d="M431.338,264.389c0,0-0.317,1.479,1.9,2.006"/>
|
132
|
+
</g>
|
133
|
+
<g>
|
134
|
+
<path fill="#58595B" d="M174.56,272.248c0,0-1.375-0.25-2,1.125s0.25,2.875,4.5,2.875s10.125-0.125,12.625-0.875s5.25-1.5,5-3.125
		s-0.25-2-1.125-2.125s-4,0.25-4.625,0.375s-5,1.625-7.5,1.75S174.56,272.248,174.56,272.248z"/>
|
135
|
+
<path fill="none" stroke="#9B8579" d="M160.685,283.373c0,0,6.375-2.875,8.375-6.625s2.75-6.375,2.75-6.375v-1.625l0.625-0.5
		c0,0,1.25,1.25,3.375,1.25s2.75,1.625,6.5,0.5s3.875-1.5,4.75-1.75s1.75-0.125,1.75-0.125l3.5-0.875l3.5,0.25
		c0,0,0.125,1.375,0.25,1.875s0.625,1.125,1,1.875s0.75,2.625,1.25,3s1.125,2.875,5,3.625s7.875,0.5,7.875,0.5"/>
|
136
|
+
<path fill="none" stroke="#9B8579" d="M174.56,272.248c0,0-1.375-0.25-2,1.125s0.25,2.875,4.5,2.875s10.125-0.125,12.625-0.875
		s5.25-1.5,5-3.125s-0.25-2-1.125-2.125s-4,0.25-4.625,0.375s-5,1.625-7.5,1.75S174.56,272.248,174.56,272.248z"/>
|
137
|
+
<path fill="none" stroke="#9B8579" d="M172.31,277.998c0,0-1.75,3.5-2.875,5"/>
|
138
|
+
<path fill="none" stroke="#9B8579" d="M177.06,280.123c0,0-0.25,2.75-1.375,3.75"/>
|
139
|
+
<path fill="none" stroke="#9B8579" d="M187.185,278.748c0,0-0.375,1.5,1.625,3"/>
|
140
|
+
<path fill="none" stroke="#9B8579" d="M195.31,276.248c0,0-0.75,3.125,4.75,4.375"/>
|
141
|
+
</g>
|
142
|
+
<g>
|
143
|
+
<ellipse fill="#726658" cx="387.58" cy="77.377" rx="15.759" ry="13.98"/>
|
144
|
+
<ellipse fill="none" stroke="#FFFFFF" stroke-width="0.5" cx="387.58" cy="77.377" rx="15.759" ry="13.98"/>
|
145
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M402.788,81.062c-4.685,1.153-10.459,1.258-16.497,0.047
		c-5.581-1.12-10.52-3.188-14.297-5.762"/>
|
146
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M401.721,83.459c-2.732,1.344-5.925,1.771-9.079,1.209"/>
|
147
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M376.914,83.637c-1.185-0.026-2.396-0.148-3.615-0.37"/>
|
148
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M390.556,84.35c-2.74,2.361-7.009,3.911-12.068,4.413"/>
|
149
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M389.826,81.677c-2.744,2.963-7.669,4.87-13.616,5.354"/>
|
150
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M394.793,81.969c-1.08,2.153-3.054,3.675-5.53,4.502"/>
|
151
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M391.601,81.935c-1.544,4.071-3.958,7.329-6.767,9.226"/>
|
152
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M394.282,90.037c-1.549-0.655-3.069-1.535-4.505-2.641
		c-0.24-0.184-0.476-0.373-0.705-0.565"/>
|
153
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M397.723,88.135c-2.269-0.297-4.605-1.078-6.825-2.346"/>
|
154
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M379.453,86.592c-2.82-2.514-4.8-6.012-5.444-9.98"/>
|
155
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M403.271,79.182c-4.966,0.916-10.988-0.873-15.844-5.202
		c-3.061-2.729-5.172-6.036-6.228-9.37"/>
|
156
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M395.467,65.2c0.644,1.349,1.008,2.888,1.008,4.521
		c0,3.216-1.411,6.065-3.581,7.815"/>
|
157
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M378.849,78.963c-0.125-0.619-0.189-1.258-0.189-1.91
		c0-5.827,5.188-10.551,11.59-10.551s11.59,4.724,11.59,10.551c0,0.807-0.101,1.593-0.289,2.348"/>
|
158
|
+
<g>
|
159
|
+
<path opacity="0.8" fill="#F9ED32" d="M402.236,82.566c9.152-2.291,15.216-5.443,14.889-8.217
			c-0.467-3.967-13.842-5.656-29.873-3.77c-16.033,1.887-28.651,6.633-28.185,10.6c0.321,2.721,6.707,4.369,15.857,4.529
			c0,0-0.584-0.691-0.752-0.892c-0.169-0.2-0.487-0.798-0.487-0.798c-4.11-0.409-6.745-1.35-6.905-2.713
			c-0.315-2.678,9.026-5.977,20.866-7.369c11.839-1.394,21.692-0.352,22.008,2.326c0.17,1.441-2.464,3.064-6.781,4.475
			c0,0-0.204,0.688-0.28,0.902C402.516,81.855,402.236,82.566,402.236,82.566z"/>
|
160
|
+
</g>
|
161
|
+
<g>
|
162
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M402.873,80.738c4.317-1.41,6.951-3.033,6.781-4.475
			c-0.315-2.678-10.169-3.72-22.008-2.326c-11.84,1.393-21.182,4.691-20.866,7.369c0.16,1.363,2.795,2.304,6.905,2.713"/>
|
163
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M402.236,82.566c9.152-2.291,15.216-5.443,14.889-8.217
			c-0.467-3.967-13.842-5.656-29.873-3.77c-16.033,1.887-28.651,6.633-28.185,10.6c0.321,2.721,6.707,4.369,15.857,4.529"/>
|
164
|
+
</g>
|
165
|
+
</g>
|
166
|
+
<path fill="none" stroke="#C2B59B" stroke-width="0.5" d="M0,247.199c2.64-0.006,10.039-0.085,16.983-0.737
	c4.929-0.463,8.448,2.201,16.267,0.002c8-2.25,4.854,2.028,27.845,0.835c22.991-1.195,22.89-2.898,29.387-3.599
	c3.785-0.408,7.165,1.124,9.096,1.399s16.185-1.354,19.359-1.632c3.174-0.275,4.554,1.24,7.728,1.932
	c3.174,0.689,21.141,1.346,33.285-0.899c11.895-2.199,15.047,3.147,17.393,3.698c2.346,0.553,12.761,0.496,16.901,0.357
	c4.14-0.137,4.416-1.379,4.416-1.379s5.075,0.373,7.008,0.787s7.368-2.229,30-3.333c22.633-1.105,36.771,0.925,36.771,0.925
	s1.022-1.14,2.126-1.001c1.104,0.137,11.61,1.556,31.067,1.142c0,0,12.258-2.442,14.543-2.524
	c23.008-0.818,23.656,1.957,25.002,1.767c1.017-0.144,2.671-1.042,4.622-1.105c5.528-0.18,16.062,2.271,19.239,2.047
	s6.301-0.487,9.546-0.333c5.25,0.25,18.793,1.339,30.584-2.333c11.793-3.67,15.497,1.243,17.833,1.833
	c2.338,0.59,10.942,1.237,15.083,1.167s7.824-1.112,9.75-0.667c1.723,0.4,10.416,0.438,28.407-0.101"/>
|
167
|
+
<g>
|
168
|
+
<path fill="#726658" d="M202.375,255.457c0,0,6.375-2.875,8.375-6.625s2.75-6.375,2.75-6.375v-1.625l0.625-0.5
		c0,0,1.25,1.25,3.375,1.25s2.75,1.625,6.5,0.5s3.875-1.5,4.75-1.75s1.75-0.125,1.75-0.125l3.5-0.875l3.5,0.25
		c0,0,0.125,1.375,0.25,1.875s0.625,1.125,1,1.875s0.75,2.625,1.25,3s1.125,2.875,5,3.625s7.875,0.5,7.875,0.5v5.881l-30.688,6.566
		l-20.162-2.684L202.375,255.457z"/>
|
169
|
+
<path fill="#58595B" d="M216.25,244.332c0,0-1.375-0.25-2,1.125s0.25,2.875,4.5,2.875s10.125-0.125,12.625-0.875s5.25-1.5,5-3.125
		s-0.25-2-1.125-2.125s-4,0.25-4.625,0.375s-5,1.625-7.5,1.75S216.25,244.332,216.25,244.332z"/>
|
170
|
+
<path fill="none" stroke="#9B8579" d="M202.375,255.457c0,0,6.375-2.875,8.375-6.625s2.75-6.375,2.75-6.375v-1.625l0.625-0.5
		c0,0,1.25,1.25,3.375,1.25s2.75,1.625,6.5,0.5s3.875-1.5,4.75-1.75s1.75-0.125,1.75-0.125l3.5-0.875l3.5,0.25
		c0,0,0.125,1.375,0.25,1.875s0.625,1.125,1,1.875s0.75,2.625,1.25,3s1.125,2.875,5,3.625s7.875,0.5,7.875,0.5"/>
|
171
|
+
<path fill="none" stroke="#9B8579" d="M216.25,244.332c0,0-1.375-0.25-2,1.125s0.25,2.875,4.5,2.875s10.125-0.125,12.625-0.875
		s5.25-1.5,5-3.125s-0.25-2-1.125-2.125s-4,0.25-4.625,0.375s-5,1.625-7.5,1.75S216.25,244.332,216.25,244.332z"/>
|
172
|
+
<path fill="none" stroke="#9B8579" d="M214,250.082c0,0-1.75,3.5-2.875,5"/>
|
173
|
+
<path fill="none" stroke="#9B8579" d="M218.75,252.207c0,0-0.25,2.75-1.375,3.75"/>
|
174
|
+
<path fill="none" stroke="#9B8579" d="M228.875,250.832c0,0-0.375,1.5,1.625,3"/>
|
175
|
+
<path fill="none" stroke="#9B8579" d="M237,248.332c0,0-0.75,3.125,4.75,4.375"/>
|
176
|
+
</g>
|
177
|
+
<g>
|
178
|
+
<g>
|
179
|
+
<path fill="#726658" d="M300.648,255.537c0,0,3.822,0.957,6.307-1.146c2.483-2.102,4.012-3.439,5.158-5.924
			s0.303-4.418,0.303-4.418l0.672-0.672c0,0,0.739-0.135,2.083-0.201c1.344-0.068,2.15-0.471,6.45-0.201
			c4.301,0.268,6.249,2.016,10.751,0.672s5.51-2.018,5.51-2.018l1.143,0.135c0,0,0,3.227,1.21,4.57
			c1.209,1.344,2.284,3.695,4.502,3.695c2.217,0,3.291-0.338,3.829-0.404v15.402h-47.736L300.648,255.537z"/>
|
180
|
+
<path fill="#58595B" d="M326.66,246.736c4.902-0.268,10.551-0.873,11.021,0.537c0.47,1.412-3.964,2.689-10.348,3.227
			s-12.431,1.342-12.565-1.277C314.633,246.602,321.756,247.006,326.66,246.736z"/>
|
181
|
+
<path fill="none" stroke="#9B8579" d="M326.66,246.736c4.902-0.268,10.551-0.873,11.021,0.537
			c0.47,1.412-3.964,2.689-10.348,3.227s-12.431,1.342-12.565-1.277C314.633,246.602,321.756,247.006,326.66,246.736z"/>
|
182
|
+
<path fill="none" stroke="#9B8579" d="M313.021,250.836c0,0,0.47,4.906-4.368,7.459"/>
|
183
|
+
<path fill="none" stroke="#9B8579" d="M315.641,254.465c0,0-0.738,2.889-2.082,4.502"/>
|
184
|
+
<path fill="none" stroke="#9B8579" d="M318.262,255.338c0,0-0.873,2.619-0.269,4.434"/>
|
185
|
+
<path fill="none" stroke="#9B8579" d="M335.664,252.314c0,0-0.806,1.074,0.874,2.754"/>
|
186
|
+
<path fill="none" stroke="#9B8579" d="M338.554,251.574c0,0-0.672,1.545,2.822,3.092"/>
|
187
|
+
</g>
|
188
|
+
<path fill="none" stroke="#9B8579" d="M300.648,255.537c0,0,3.822,0.957,6.307-1.146c2.483-2.102,4.012-3.439,5.158-5.924
		s0.303-4.418,0.303-4.418l0.672-0.672c0,0,0.739-0.135,2.083-0.201c1.344-0.068,2.15-0.471,6.45-0.201
		c4.301,0.268,6.249,2.016,10.751,0.672s5.51-2.018,5.51-2.018l1.143,0.135c0,0,0,3.227,1.21,4.57
		c1.209,1.344,2.284,3.695,4.502,3.695c2.217,0,3.291-0.338,3.829-0.404"/>
|
189
|
+
</g>
|
190
|
+
</g>
|
191
|
+
</svg>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,42 @@
|
|
1
|
+
<svg version="1.1" id="cat" x="0px" y="0px" width="95px" height="111px" viewBox="0 0 95 111" enable-background="new 0 0 95 111" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2
|
+
<g>
|
3
|
+
<g id="Layer_3">
|
4
|
+
<path fill="#FAA51D" stroke="#000000" d="M22.462,79.039c-2.415-0.451-5.304-1.309-7.742-3.503
		C9.268,70.629,7.526,62.535,3.672,64.622c-3.856,2.088-3.782,15.165,8.353,19.194c4.182,1.391,7.998,1.396,11.091,1.312
		c0.811-0.025,7.717-0.654,10.079-4.074c2.361-3.42,0.719-4.272-0.09-4.744C32.295,75.838,25.878,79.677,22.462,79.039z"/>
|
5
|
+
<path fill="#FFFFFF" d="M4.236,64.877c-1.989,0.613-3.075,4.998-2.076,8.484c0.998,3.49,2.634,5.022,3.863,6.398
		c1.528,1.038-0.72-2.402,1.361-4.15c2.075-1.744,5.733-0.914,5.733-0.914s-2.909-3.987-4.57-6.396
		C6.975,65.988,6.359,64.375,4.236,64.877z"/>
|
6
|
+
</g>
|
7
|
+
<g>
|
8
|
+
<path fill="#FAA51D" d="M38.217,86.756c0,0-8.832,6.2-17.071,8.412l0.086,0.215c1.247,1.824,5.87,7.497-0.334,9.496
		c-5.333,1.717-15.12-13.104-10.821-15.902c2.626-1.713,4.892-0.252,4.892-0.252s3.474-1.07,6.001-2.345
		c4.303-2.161,5.784-3.453,5.784-3.453s4.184-4.306,6.856-4.137C36.281,78.96,41.669,83.504,38.217,86.756z"/>
|
9
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M21.232,95.383c1.247,1.824,5.87,7.497-0.334,9.496
		c-5.333,1.717-15.329-13.344-11.03-16.145c2.626-1.713,5.101-0.01,5.101-0.01s3.474-1.072,6.001-2.348
		c4.303-2.161,5.784-3.453,5.784-3.453"/>
|
10
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M38.217,86.756c0,0-10.123,7.107-18.804,8.819"/>
|
11
|
+
</g>
|
12
|
+
<path fill="#FAA51D" stroke="#231F20" stroke-width="1.2" d="M52.169,74.885c0,0,1.235,0.165,4.744,3.676
	c3.509,3.508,6.026,2.16,8.911,0.724c2.877-1.443,10.537-6.126,6.49-9.817c-4.049-3.688-6.207,1.146-9.715,2.405
	c-3.512,1.26-5.061-2.487-6.858-4.287c-0.589-0.593-1.188-1.099-1.729-1.505c0,0-0.971-0.76-1.906,2.79
	C51.172,72.412,50.162,73.415,52.169,74.885z"/>
|
13
|
+
<g id="Layer_2_1_">
|
14
|
+
<path fill="#FAA51D" stroke="#231F20" stroke-width="1.2" d="M46.753,82.012c1.188-0.912,2.397-2.402,3.951-4.713
		c1.296-1.927,2.7-5.578,2.7-5.578c0.875-2.521,1.934-6.576-1.902-7.296c-1.553-0.291-4.079-0.098-7.67-0.776
		c-3.593-0.681-6.798-2.522-9.517,2.233c-2.718,4.757-9.59,8.271-1.056,16.563c0,0,4.901,3.842,10.764,9.639
		c4.831,4.775,12.045,10.602,12.045,10.602s18.972,2.188,19.535-0.693c1.922-9.79-14.777-6.911-14.777-6.911
		s-4.605-3.933-6.725-5.794c-3.478-3.059-11.125-10.771-11.125-10.771"/>
|
15
|
+
<path fill="#FFFFFF" d="M51.253,75.434c0,0,2.47-2.66-2.469-5.317c-4.939-2.657-7.213-0.017-8.739,1.521
		c-2.644,2.655,3.443,6.611,3.443,6.611l3.176,3.204c0,0,1.738-1.647,2.499-2.979C50.036,77.26,51.253,75.434,51.253,75.434"/>
|
16
|
+
</g>
|
17
|
+
<g id="Layer_8"/>
|
18
|
+
<path fill="#FAA51D" stroke="#231F20" stroke-width="1.2" d="M29.926,73.218c0.749-0.571,2.889-2.202,4.854-3.657
	c2.428-1.799,6.117-5.849,1.077-7.646c-5.04-1.801-7.507,1.604-11.519,4.946c-2.159,1.801-5.308,2.699-4.319,6.209
	c0.993,3.511,4.862,13.408,11.789,10.17c6.929-3.239-1.799-9.18-3.06-11.157"/>
|
19
|
+
<g id="Layer_2">
|
20
|
+
<path fill="#FAA51D" stroke="#231F20" stroke-width="1.2" d="M52.709,14.156c-1.54-0.143-4.75-0.316-6.518-0.231
		c-4.728,0.225-9.224,1.928-9.224,1.928L23.949,7.357l2.235,18.906c0.646-0.782-10.555,12.804-3.479,24.224
		c7.08,11.426,22.233,16.518,40.988,12.792c18.755-3.729,23.229-14.531,21.986-20.246c-1.242-5.714-8.322-7.823-8.322-7.823
		s-0.09-4.48-3.328-9.97c-1.926-3.268-8.348-8.041-8.348-8.041L62.822,5.647l-7.452,7.204L52.709,14.156z"/>
|
21
|
+
<path fill="#FFFFFF" d="M76.42,35.066l-2.482-2.064l-9.115,2.661c0,0,0,3.419-4.367,4.367c-4.37,0.951-11.211-2.277-11.211-2.277
		L41.46,41.17c0,0-8.437,0.928-8.739,6.081C32.048,58.704,46.1,63.479,51.425,63.783c2.905,0.167,8.235-0.338,12.277-1.141
		c17.752-3.234,22.551-13.919,21.31-19.635c-1.242-5.714-7.978-7.196-7.978-7.196L76.42,35.066z"/>
|
22
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M10.673,46.155c0,0,4.107,0.374,5.974,0.268
		c1.865-0.107,5.492-0.587,5.492-0.587"/>
|
23
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M81.656,40.671c0,0,4.549-0.743,6.859-1.549
		c2.715-0.942,4.543-2.545,4.543-2.545"/>
|
24
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M22.337,41.909c0,0-2.384-1.777-6.117-3.43
		c-4.134-1.831-6.405-2.303-6.405-2.303"/>
|
25
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M82.117,46.622c0,0,2.726,1.104,5.533,1.385
		c2.77,0.276,4.646,0.11,4.646,0.11"/>
|
26
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-miterlimit="10" d="M52.35,14.212
		c2.84,0.7,3.887,1.469,3.887,1.469"/>
|
27
|
+
<line fill="none" stroke="#000000" x1="33.898" y1="13.684" x2="39.956" y2="18.042"/>
|
28
|
+
</g>
|
29
|
+
<g id="Layer_5">
|
30
|
+
<path fill="#FFFFFF" stroke="#231F20" d="M71.84,25.366c2.924,4.479,3.033,9.591,0.242,11.415
		c-2.793,1.825-7.426-0.332-10.354-4.813c-2.933-4.48-3.037-9.589-0.244-11.415C64.275,18.73,68.913,20.884,71.84,25.366z"/>
|
31
|
+
<path fill="#231F20" d="M71.089,32.522c0,1.08-0.802,1.956-1.8,1.956c-0.993,0-1.803-0.877-1.803-1.956
		c0-1.08,0.81-1.958,1.803-1.958C70.287,30.564,71.089,31.442,71.089,32.522"/>
|
32
|
+
</g>
|
33
|
+
<g id="Layer_7">
|
34
|
+
<path fill="#FFFFFF" stroke="#231F20" d="M47.867,28.619c2.926,4.48,2.619,9.862-0.681,12.015
		c-3.302,2.159-8.351,0.272-11.276-4.208c-2.928-4.48-2.624-9.86,0.678-12.017C39.891,22.253,44.938,24.137,47.867,28.619z"/>
|
35
|
+
<path fill="#231F20" d="M46.079,34.507c0,1.081-0.803,1.957-1.801,1.957c-0.992,0-1.803-0.878-1.803-1.957
		c0-1.08,0.811-1.957,1.803-1.957C45.274,32.55,46.079,33.427,46.079,34.507"/>
|
36
|
+
</g>
|
37
|
+
<path fill="#5E4A42" stroke="#000000" d="M59.766,37.926c1.854,0,4.555-0.284,4.697,0.569c0.143,0.855-1.709,4.203-2.988,4.345
	c-1.283,0.142-6.125-2.353-6.195-3.919C55.206,37.355,58.055,37.926,59.766,37.926z"/>
|
38
|
+
<g id="Layer_4">
|
39
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M46.774,45.235c0,0,10.347,3.054,14.217,3.897
		c3.868,0.842,10.851,1.684,10.851,1.684s-7.99,10.245-17.328,7.644C45.176,55.863,45.345,49.975,46.774,45.235z"/>
|
40
|
+
</g>
|
41
|
+
</g>
|
42
|
+
</svg>
|
Binary file
|
@@ -0,0 +1,37 @@
|
|
1
|
+
<svg version="1.1" id="cat" x="0px" y="0px" width="95px" height="111px" viewBox="0 0 95 111" enable-background="new 0 0 95 111" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2
|
+
<g>
|
3
|
+
<g id="Layer_8">
|
4
|
+
<path fill="#FAA51D" stroke="#231F20" stroke-width="1.2" d="M23.754,82.506c-2.871-1.402-10.511-2.518-14.771-6.695
		c-9.431-9.246-3.824-21.732,0.704-21.797c3.611-0.061,3.363,5.482,4.622,11.145c0.875,3.939,1.673,6.988,6.407,9.674
		c4.735,2.688,6.918,2.916,6.918,2.916s3.258,0.791,1.596,2.562C27.568,82.076,23.754,82.506,23.754,82.506z"/>
|
5
|
+
<path fill="#FFFFFF" d="M14.291,66.369c-0.115-0.459-0.222-0.928-0.33-1.413c-1.172-5.271-0.941-10.432-4.303-10.377
		c-3.433,0.05-7.53,7.771-4.19,15.285c0.193-0.143,0.399-0.336,0.569-0.588c0.451-0.664,0.821-2.969,2.654-3.688
		C9.989,65.082,12.778,65.869,14.291,66.369z"/>
|
6
|
+
</g>
|
7
|
+
<path fill="#FAA51D" stroke="#231F20" stroke-width="1.2" d="M52.543,61.473c0,0,1.455,2.342,1.519,4.969
	c0.065,2.723-0.351,6.984,1.804,8.158c3.381,1.842,9.959-0.463,10.174,5.191c0.211,5.652-10.152,3.623-13.299,2.547
	c-2.695-0.926-4.559-1.758-5.18-5.182c0,0-3.764-13.969-0.196-15.59C50.933,59.945,52.543,61.473,52.543,61.473z"/>
|
8
|
+
<path fill="#FAA51D" stroke="#231F20" stroke-width="1.2" d="M14.61,89.584c0,0,1.504,10.391-5.922,8.387
	c-5.586-1.51-5.705-20.68-0.406-20.691c3.237-0.006,4.425,2.859,4.425,2.859s4.385,4.812,6.95,4.312
	c2.565-0.502,7.978-6.703,7.978-6.703s2.875-2.539,6.146,0.023c3.271,2.561,1.521,6.178,1.521,6.178s-6.07,7.072-11.014,8.072
	c-4.945,1.002-9.375-2.568-11.58-3.451"/>
|
9
|
+
<g id="Layer_6">
|
10
|
+
<path fill="#FAA51D" stroke="#231F20" stroke-width="1.2" d="M42.435,76.238c0,0,4.866,4.062,8.166,7.52
		c4.384,4.592-3.339,15.039-3.339,15.039s11.234,6.467,2.998,11c-2.657,1.467-15.661-13.225-15.661-13.225s7.979-7.475,4.972-10.172
		c-4.964-4.449-10.771-4.959-11.6-9.824c-0.502-2.957,0.613-4.502,2.658-7.053c1.354-1.689,2.084-3.182,2.084-3.182
		s1.135-7.238,4.289-8.254c3.153-1.014,8.842,0.057,10.758,0.395c1.914,0.338,6.645,1.877,4.617,9.922c0,0-1.451,3.771-2.789,5.762
		c-1.604,2.389-2.854,3.924-4.08,4.867"/>
|
11
|
+
<path fill="#FFFFFF" d="M50.182,72.631c0,0,2.55-2.748-2.551-5.494c-5.102-2.746-7.449-0.016-9.024,1.572
		c-2.731,2.742,3.334,7.453,3.334,7.453l3.383,2.564c0,0,1.916-1.582,2.701-2.957C48.807,74.396,50.182,72.631,50.182,72.631"/>
|
12
|
+
</g>
|
13
|
+
<path fill="#FAA51D" stroke="#231F20" stroke-width="1.2" d="M24.428,65.395c0.939,0.057,3.625,0.213,6.064,0.391
	c3.014,0.217,8.451-0.451,5.801-5.098c-2.649-4.65-6.74-3.674-11.961-3.754c-2.812-0.043-5.785-1.412-7.322,1.895
	c-1.534,3.312-5.051,13.338,2.313,15.396c7.366,2.057,4.618-8.137,4.95-10.457"/>
|
14
|
+
<g id="Layer_2">
|
15
|
+
<path fill="#FAA51D" stroke="#231F20" stroke-width="1.2" d="M51.709,10.156c-1.54-0.143-4.75-0.316-6.518-0.231
		c-4.728,0.225-9.224,1.928-9.224,1.928L22.949,3.357l2.235,18.906c0.646-0.782-10.555,12.804-3.479,24.224
		c7.08,11.426,22.233,16.518,40.988,12.792c18.755-3.728,23.229-14.531,21.986-20.246c-1.242-5.714-8.322-7.823-8.322-7.823
		s-0.09-4.48-3.328-9.97c-1.926-3.268-8.348-8.041-8.348-8.041L61.822,1.647L54.37,8.851L51.709,10.156z"/>
|
16
|
+
<path fill="#FFFFFF" d="M75.42,31.066l-2.483-2.064l-9.115,2.661c0,0,0,3.419-4.367,4.367c-4.37,0.951-11.211-2.277-11.211-2.277
		l-7.784,3.417c0,0-8.437,0.928-8.739,6.081C31.048,54.704,45.1,59.478,50.425,59.783c2.905,0.167,8.235-0.337,12.277-1.14
		c17.752-3.235,22.551-13.92,21.309-19.635c-1.242-5.714-7.977-7.196-7.977-7.196L75.42,31.066z"/>
|
17
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M9.673,42.155c0,0,4.107,0.374,5.974,0.268
		c1.865-0.107,5.492-0.587,5.492-0.587"/>
|
18
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M80.656,36.671c0,0,4.549-0.743,6.859-1.549
		c2.715-0.942,4.543-2.545,4.543-2.545"/>
|
19
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M21.337,37.909c0,0-2.384-1.777-6.117-3.43
		c-4.134-1.831-6.405-2.303-6.405-2.303"/>
|
20
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M81.117,42.622c0,0,2.726,1.104,5.533,1.385
		c2.77,0.276,4.647,0.11,4.647,0.11"/>
|
21
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-miterlimit="10" d="M51.349,10.212
		c2.84,0.7,3.888,1.469,3.888,1.469"/>
|
22
|
+
<line fill="none" stroke="#000000" x1="32.898" y1="9.684" x2="38.956" y2="14.042"/>
|
23
|
+
</g>
|
24
|
+
<g id="Layer_5">
|
25
|
+
<path fill="#FFFFFF" stroke="#231F20" d="M70.84,21.366c2.924,4.479,3.033,9.591,0.242,11.415
		c-2.793,1.825-7.426-0.332-10.354-4.813c-2.932-4.48-3.037-9.589-0.244-11.415C63.275,14.73,67.913,16.884,70.84,21.366z"/>
|
26
|
+
<path fill="#231F20" d="M70.089,28.522c0,1.08-0.802,1.956-1.8,1.956c-0.993,0-1.803-0.877-1.803-1.956
		c0-1.08,0.81-1.958,1.803-1.958C69.287,26.564,70.089,27.442,70.089,28.522"/>
|
27
|
+
</g>
|
28
|
+
<g id="Layer_7">
|
29
|
+
<path fill="#FFFFFF" stroke="#231F20" d="M46.867,24.619c2.926,4.48,2.619,9.862-0.681,12.015
		c-3.302,2.159-8.351,0.272-11.276-4.208c-2.928-4.48-2.624-9.86,0.678-12.017C38.891,18.253,43.938,20.137,46.867,24.619z"/>
|
30
|
+
<path fill="#231F20" d="M45.079,30.507c0,1.081-0.803,1.957-1.801,1.957c-0.992,0-1.803-0.878-1.803-1.957
		c0-1.08,0.811-1.957,1.803-1.957C44.274,28.55,45.079,29.427,45.079,30.507"/>
|
31
|
+
</g>
|
32
|
+
<path fill="#5E4A42" stroke="#000000" d="M58.766,33.926c1.854,0,4.555-0.284,4.697,0.569c0.143,0.855-1.709,4.203-2.988,4.345
	c-1.283,0.142-6.125-2.353-6.195-3.919C54.206,33.355,57.055,33.926,58.766,33.926z"/>
|
33
|
+
<g id="Layer_4">
|
34
|
+
<path fill="none" stroke="#231F20" stroke-width="1.2" d="M45.774,41.235c0,0,10.347,3.054,14.217,3.897
		c3.868,0.842,10.851,1.684,10.851,1.684s-7.99,10.245-17.328,7.644C44.176,51.863,44.345,45.975,45.774,41.235z"/>
|
35
|
+
</g>
|
36
|
+
</g>
|
37
|
+
</svg>
|
data/lib/scrit.rb
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'gosu'
|
2
|
+
require "scrit/version"
|
3
|
+
require 'scrit/sprite'
|
4
|
+
require 'scrit/stage'
|
5
|
+
|
6
|
+
class Itchy < Gosu::Window
|
7
|
+
|
8
|
+
def initialize
|
9
|
+
super 480, 360, false
|
10
|
+
self.caption = "Scrit (Scratch in Ruby)"
|
11
|
+
|
12
|
+
@stage = Stage.new(self)
|
13
|
+
@sprites = []#[Cloud.new(self), Fish.new(self)]
|
14
|
+
end
|
15
|
+
|
16
|
+
def green_flag
|
17
|
+
show
|
18
|
+
end
|
19
|
+
|
20
|
+
def update
|
21
|
+
@sprites.each { |s| s.scripts }
|
22
|
+
end
|
23
|
+
|
24
|
+
def draw
|
25
|
+
@stage.draw
|
26
|
+
@sprites.each { |s| s.draw }
|
27
|
+
end
|
28
|
+
|
29
|
+
def button_down(id)
|
30
|
+
if id == Gosu::KbEscape
|
31
|
+
close
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def stage
|
36
|
+
@stage
|
37
|
+
end
|
38
|
+
end
|
data/lib/scrit/sprite.rb
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
|
2
|
+
class Sprite
|
3
|
+
|
4
|
+
def initialize(window)
|
5
|
+
@name = "Untitled"
|
6
|
+
@x = @y = @vel_x = @vel_y = @angle = 0.0
|
7
|
+
@scale = 1
|
8
|
+
@costumes = ["costume1"]
|
9
|
+
@sounds = [""]
|
10
|
+
@current_costume = 0
|
11
|
+
|
12
|
+
init
|
13
|
+
|
14
|
+
@window = window
|
15
|
+
|
16
|
+
file = File.join(File.dirname(__FILE__), '..', 'costumes', @costumes[@current_costume] + ".png")
|
17
|
+
@image = Gosu::Image.new(window, file, false)
|
18
|
+
|
19
|
+
@@keymap = {
|
20
|
+
up_arrow: Gosu::KbUp,
|
21
|
+
down_arrow: Gosu::KbDown,
|
22
|
+
left_arrow: Gosu::KbLeft,
|
23
|
+
right_arrow: Gosu::KbRight,
|
24
|
+
space: Gosu::KbSpace
|
25
|
+
}
|
26
|
+
end
|
27
|
+
|
28
|
+
def init
|
29
|
+
end
|
30
|
+
|
31
|
+
def draw
|
32
|
+
@image.draw_rot(@x + 240, 180 - @y, 1, @angle, 0.5, 0.5, @scale, @scale)
|
33
|
+
end
|
34
|
+
|
35
|
+
def direction
|
36
|
+
@angle
|
37
|
+
end
|
38
|
+
|
39
|
+
def turn_left(angle)
|
40
|
+
@angle -= angle
|
41
|
+
end
|
42
|
+
|
43
|
+
def turn_right(angle)
|
44
|
+
@angle += angle
|
45
|
+
end
|
46
|
+
|
47
|
+
def set_x_to(x)
|
48
|
+
@x = x
|
49
|
+
end
|
50
|
+
|
51
|
+
def change_x_by(delta)
|
52
|
+
@x += delta
|
53
|
+
end
|
54
|
+
|
55
|
+
def x_position
|
56
|
+
@x
|
57
|
+
end
|
58
|
+
|
59
|
+
def set_y_to(y)
|
60
|
+
@y = y
|
61
|
+
end
|
62
|
+
|
63
|
+
def change_y_by(delta)
|
64
|
+
@y += delta
|
65
|
+
end
|
66
|
+
|
67
|
+
def y_position
|
68
|
+
@y
|
69
|
+
end
|
70
|
+
|
71
|
+
def key_pressed?(k)
|
72
|
+
@window.button_down? @@keymap[k]
|
73
|
+
end
|
74
|
+
|
75
|
+
def set_size_to_percent(p)
|
76
|
+
@scale = p
|
77
|
+
end
|
78
|
+
end
|
data/lib/scrit/stage.rb
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
|
2
|
+
class Stage
|
3
|
+
|
4
|
+
def initialize(window)
|
5
|
+
@window = window
|
6
|
+
@backdrops = ["white"]
|
7
|
+
@file = File.join(File.dirname(__FILE__), '..', 'backdrops', @backdrops[0] + ".png")
|
8
|
+
@background_image = Gosu::Image.new(window, @file, true)
|
9
|
+
end
|
10
|
+
|
11
|
+
def draw
|
12
|
+
#@background_image.draw(0, 0, ZOrder::Background)
|
13
|
+
@background_image.draw_as_quad(0, 0, 0xffffffff, @window.width, 0, 0xffffffff, @window.width, @window.height, 0xffffffff, 0, @window.height, 0xffffffff, 0)
|
14
|
+
end
|
15
|
+
|
16
|
+
def backdrops
|
17
|
+
@backdrops
|
18
|
+
end
|
19
|
+
|
20
|
+
def switch_backdrop_to(name)
|
21
|
+
@file = File.join(File.dirname(__FILE__), '..', 'backdrops', name + ".png")
|
22
|
+
@background_image = Gosu::Image.new(@window, @file, true)
|
23
|
+
end
|
24
|
+
end
|
data/lib/sounds/meow.wav
ADDED
Binary file
|
data/scrit.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'scrit/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "scrit"
|
8
|
+
spec.version = Scrit::VERSION
|
9
|
+
spec.authors = ["Erik Newton"]
|
10
|
+
spec.email = ["erik_newton@hotmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Scratch emulation in Ruby}
|
13
|
+
spec.description = %q{This is intended to be a steping stone to learn Ruby if you already know Scratch.}
|
14
|
+
spec.homepage = "http://rubygems.org/gems/scrit"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "exe"
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_dependency 'gosu'
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
26
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
27
|
+
end
|
metadata
ADDED
@@ -0,0 +1,131 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: scrit
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Erik Newton
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-05-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: gosu
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.12'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.12'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: minitest
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '5.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '5.0'
|
69
|
+
description: This is intended to be a steping stone to learn Ruby if you already know
|
70
|
+
Scratch.
|
71
|
+
email:
|
72
|
+
- erik_newton@hotmail.com
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ".gitignore"
|
78
|
+
- ".travis.yml"
|
79
|
+
- Gemfile
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- bin/console
|
84
|
+
- bin/setup
|
85
|
+
- examples/example1_stage.rb
|
86
|
+
- lib/backdrops/backdrop1.png
|
87
|
+
- lib/backdrops/moon.png
|
88
|
+
- lib/backdrops/party.png
|
89
|
+
- lib/backdrops/space.png
|
90
|
+
- lib/backdrops/space.svg
|
91
|
+
- lib/backdrops/white.png
|
92
|
+
- lib/costumes/BlueFish4.png
|
93
|
+
- lib/costumes/PurpleFish1.png
|
94
|
+
- lib/costumes/PurpleFish2.png
|
95
|
+
- lib/costumes/RedFish2_0.png
|
96
|
+
- lib/costumes/bigbluecloud.png
|
97
|
+
- lib/costumes/costume1.png
|
98
|
+
- lib/costumes/costume1.svg
|
99
|
+
- lib/costumes/costume2.png
|
100
|
+
- lib/costumes/costume2.svg
|
101
|
+
- lib/scrit.rb
|
102
|
+
- lib/scrit/sprite.rb
|
103
|
+
- lib/scrit/stage.rb
|
104
|
+
- lib/scrit/version.rb
|
105
|
+
- lib/sounds/meow.wav
|
106
|
+
- scrit.gemspec
|
107
|
+
homepage: http://rubygems.org/gems/scrit
|
108
|
+
licenses:
|
109
|
+
- MIT
|
110
|
+
metadata: {}
|
111
|
+
post_install_message:
|
112
|
+
rdoc_options: []
|
113
|
+
require_paths:
|
114
|
+
- lib
|
115
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '0'
|
120
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
requirements: []
|
126
|
+
rubyforge_project:
|
127
|
+
rubygems_version: 2.4.5.1
|
128
|
+
signing_key:
|
129
|
+
specification_version: 4
|
130
|
+
summary: Scratch emulation in Ruby
|
131
|
+
test_files: []
|