reek 3.5.0 → 3.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +6 -0
  3. data/CHANGELOG.md +19 -12
  4. data/CONTRIBUTING.md +7 -7
  5. data/README.md +91 -28
  6. data/ataru_setup.rb +13 -0
  7. data/{config/defaults.reek → defaults.reek} +0 -0
  8. data/docs/API.md +32 -31
  9. data/docs/Attribute.md +1 -1
  10. data/docs/Basic-Smell-Options.md +2 -1
  11. data/docs/Boolean-Parameter.md +1 -1
  12. data/docs/Class-Variable.md +2 -2
  13. data/docs/Command-Line-Options.md +2 -2
  14. data/docs/Control-Couple.md +3 -3
  15. data/docs/Control-Parameter.md +2 -2
  16. data/docs/Data-Clump.md +2 -2
  17. data/docs/Duplicate-Method-Call.md +4 -4
  18. data/docs/Feature-Envy.md +2 -2
  19. data/docs/How-reek-works-internally.md +2 -2
  20. data/docs/Irresponsible-Module.md +2 -2
  21. data/docs/Large-Class.md +2 -2
  22. data/docs/Long-Parameter-List.md +1 -1
  23. data/docs/Long-Yield-List.md +2 -2
  24. data/docs/Module-Initialize.md +3 -3
  25. data/docs/Nested-Iterators.md +1 -1
  26. data/docs/Nil-Check.md +2 -2
  27. data/docs/Prima-Donna-Method.md +4 -4
  28. data/docs/RSpec-matchers.md +7 -7
  29. data/docs/Rake-Task.md +2 -2
  30. data/docs/Reek-Driven-Development.md +4 -4
  31. data/docs/Repeated-Conditional.md +2 -2
  32. data/docs/Simulated-Polymorphism.md +2 -2
  33. data/docs/Smell-Suppression.md +3 -3
  34. data/docs/Too-Many-Instance-Variables.md +4 -4
  35. data/docs/Too-Many-Methods.md +5 -5
  36. data/docs/Too-Many-Statements.md +2 -2
  37. data/docs/Uncommunicative-Method-Name.md +4 -4
  38. data/docs/Uncommunicative-Module-Name.md +4 -4
  39. data/docs/Uncommunicative-Name.md +2 -2
  40. data/docs/Uncommunicative-Parameter-Name.md +4 -4
  41. data/docs/Uncommunicative-Variable-Name.md +3 -3
  42. data/docs/Unused-Parameters.md +2 -2
  43. data/docs/Utility-Function.md +4 -4
  44. data/docs/Versioning-Policy.md +2 -2
  45. data/features/command_line_interface/options.feature +1 -1
  46. data/features/configuration_files/directory_specific_directives.feature +4 -4
  47. data/features/configuration_loading.feature +10 -24
  48. data/features/programmatic_access.feature +3 -3
  49. data/features/reports/json.feature +1 -1
  50. data/features/reports/reports.feature +2 -2
  51. data/features/reports/yaml.feature +1 -1
  52. data/lib/reek/ast/sexp_extensions.rb +17 -498
  53. data/lib/reek/ast/sexp_extensions/arguments.rb +101 -0
  54. data/lib/reek/ast/sexp_extensions/attribute_assignments.rb +12 -0
  55. data/lib/reek/ast/sexp_extensions/block.rb +36 -0
  56. data/lib/reek/ast/sexp_extensions/case.rb +20 -0
  57. data/lib/reek/ast/sexp_extensions/constant.rb +12 -0
  58. data/lib/reek/ast/sexp_extensions/if.rb +16 -0
  59. data/lib/reek/ast/sexp_extensions/literal.rb +12 -0
  60. data/lib/reek/ast/sexp_extensions/logical_operators.rb +26 -0
  61. data/lib/reek/ast/sexp_extensions/methods.rb +114 -0
  62. data/lib/reek/ast/sexp_extensions/module.rb +85 -0
  63. data/lib/reek/ast/sexp_extensions/nested_assignables.rb +23 -0
  64. data/lib/reek/ast/sexp_extensions/send.rb +60 -0
  65. data/lib/reek/ast/sexp_extensions/super.rb +14 -0
  66. data/lib/reek/ast/sexp_extensions/symbols.rb +16 -0
  67. data/lib/reek/ast/sexp_extensions/variables.rb +38 -0
  68. data/lib/reek/ast/sexp_extensions/when.rb +16 -0
  69. data/lib/reek/ast/sexp_extensions/yield.rb +16 -0
  70. data/lib/reek/cli/application.rb +0 -4
  71. data/lib/reek/cli/options.rb +2 -4
  72. data/lib/reek/configuration/app_configuration.rb +37 -9
  73. data/lib/reek/configuration/configuration_file_finder.rb +8 -5
  74. data/lib/reek/configuration/directory_directives.rb +2 -2
  75. data/lib/reek/context/attribute_context.rb +21 -0
  76. data/lib/reek/context/code_context.rb +5 -9
  77. data/lib/reek/rake/task.rb +5 -5
  78. data/lib/reek/smells/nested_iterators.rb +73 -26
  79. data/lib/reek/smells/smell_warning.rb +1 -38
  80. data/lib/reek/source/source_code.rb +1 -1
  81. data/lib/reek/spec.rb +2 -2
  82. data/lib/reek/spec/should_reek_of.rb +8 -3
  83. data/lib/reek/spec/should_reek_only_of.rb +2 -1
  84. data/lib/reek/spec/smell_matcher.rb +59 -0
  85. data/lib/reek/tree_walker.rb +4 -3
  86. data/lib/reek/version.rb +1 -1
  87. data/logo/reek.bw.png +0 -0
  88. data/logo/reek.bw.svg +77 -0
  89. data/logo/reek.png +0 -0
  90. data/logo/reek.svg +621 -0
  91. data/logo/reek.text.png +0 -0
  92. data/logo/reek.text.svg +628 -0
  93. data/reek.gemspec +1 -1
  94. data/spec/factories/factories.rb +0 -1
  95. data/spec/reek/ast/sexp_extensions_spec.rb +0 -7
  96. data/spec/reek/cli/options_spec.rb +1 -2
  97. data/spec/reek/configuration/app_configuration_spec.rb +30 -14
  98. data/spec/reek/configuration/configuration_file_finder_spec.rb +23 -5
  99. data/spec/reek/smells/attribute_spec.rb +11 -2
  100. data/spec/reek/smells/boolean_parameter_spec.rb +14 -12
  101. data/spec/reek/smells/class_variable_spec.rb +18 -15
  102. data/spec/reek/smells/control_parameter_spec.rb +1 -2
  103. data/spec/reek/smells/duplicate_method_call_spec.rb +1 -2
  104. data/spec/reek/smells/feature_envy_spec.rb +8 -29
  105. data/spec/reek/smells/irresponsible_module_spec.rb +1 -2
  106. data/spec/reek/smells/long_parameter_list_spec.rb +1 -2
  107. data/spec/reek/smells/long_yield_list_spec.rb +1 -2
  108. data/spec/reek/smells/nested_iterators_spec.rb +1 -2
  109. data/spec/reek/smells/nil_check_spec.rb +1 -1
  110. data/spec/reek/smells/prima_donna_method_spec.rb +1 -1
  111. data/spec/reek/smells/repeated_conditional_spec.rb +1 -2
  112. data/spec/reek/smells/smell_detector_shared.rb +1 -1
  113. data/spec/reek/smells/smell_warning_spec.rb +2 -4
  114. data/spec/reek/smells/too_many_instance_variables_spec.rb +20 -19
  115. data/spec/reek/smells/too_many_statements_spec.rb +1 -1
  116. data/spec/reek/smells/uncommunicative_method_name_spec.rb +1 -4
  117. data/spec/reek/smells/uncommunicative_module_name_spec.rb +1 -4
  118. data/spec/reek/smells/uncommunicative_parameter_name_spec.rb +1 -4
  119. data/spec/reek/smells/uncommunicative_variable_name_spec.rb +3 -3
  120. data/spec/reek/smells/utility_function_spec.rb +1 -3
  121. data/spec/reek/spec/should_reek_of_spec.rb +5 -5
  122. data/spec/reek/spec/smell_matcher_spec.rb +92 -0
  123. data/tasks/configuration.rake +15 -0
  124. metadata +37 -5
  125. data/config/cucumber.yml +0 -3
  126. data/tasks/develop.rake +0 -21
@@ -17,7 +17,7 @@ module Reek
17
17
  attr_reader :context, :lines, :message, :parameters, :smell_detector, :source
18
18
  def_delegators :smell_detector, :smell_category, :smell_type
19
19
 
20
- # @note When using reek's public API, you should not create SmellWarning
20
+ # @note When using Reek's public API, you should not create SmellWarning
21
21
  # objects yourself. This is why the initializer is not part of the
22
22
  # public API.
23
23
  #
@@ -49,18 +49,6 @@ module Reek
49
49
  (self <=> other) == 0
50
50
  end
51
51
 
52
- def matches_smell_type?(klass)
53
- smell_classes.include?(klass.to_s)
54
- end
55
-
56
- def matches_smell_details?(other_smell_details = {})
57
- common_parameters_equal?(other_smell_details)
58
- end
59
-
60
- def matches?(klass, other_smell_details = {})
61
- matches_smell_type?(klass) && matches_smell_details?(other_smell_details)
62
- end
63
-
64
52
  def report_on(listener)
65
53
  listener.found_smell(self)
66
54
  end
@@ -84,31 +72,6 @@ module Reek
84
72
 
85
73
  private
86
74
 
87
- def smell_classes
88
- [smell_detector.smell_category, smell_detector.smell_type]
89
- end
90
-
91
- def common_parameters_equal?(other_parameters)
92
- other_keys = other_parameters.keys
93
- other_values = other_parameters.values
94
-
95
- other_keys.each do |key|
96
- unless parameters.key?(key)
97
- raise ArgumentError, "The parameter #{key} you want to check for doesn't exist"
98
- end
99
- end
100
-
101
- # Why not check for strict parameter equality instead of just the common ones?
102
- #
103
- # In `self`, `parameters` might look like this: {:name=>"@other.thing", :count=>2}
104
- # Coming from specs, 'other_parameters' might look like this, e.g.:
105
- # {:name=>"@other.thing"}
106
- # So in this spec we are just specifying the "name" parameter but not the "count".
107
- # In order to allow for this kind of leniency we just test for common parameter equality,
108
- # not for a strict one.
109
- parameters.values_at(*other_keys) == other_values
110
- end
111
-
112
75
  def core_yaml_hash
113
76
  {
114
77
  'context' => context,
@@ -51,7 +51,7 @@ module Reek
51
51
  # with our SexpExtensions.
52
52
  # Finally this AST is returned where each node is an anonymous subclass of Reek::AST::Node
53
53
  #
54
- # Important to note is that reek will not fail on unparseable files but rather print out
54
+ # Important to note is that Reek will not fail on unparseable files but rather print out
55
55
  # a warning and then just continue.
56
56
  #
57
57
  # Given this @source:
@@ -47,7 +47,7 @@ module Reek
47
47
  #
48
48
  # Remember that this includes our "smell types" as well. So it could be the
49
49
  # "smell type" UtilityFunction, which is represented as a concrete class
50
- # in reek but it could also be "Duplication" which is a "smell categgory".
50
+ # in Reek but it could also be "Duplication" which is a "smell categgory".
51
51
  #
52
52
  # In theory you could pass many different types of input here:
53
53
  # - :UtilityFunction
@@ -63,7 +63,7 @@ module Reek
63
63
  # want to check for as well e.g. "name" or "count" (see the examples below).
64
64
  # The parameters you can check for are depending on the smell you are checking for.
65
65
  # For instance "count" doesn't make sense everywhere whereas "name" does in most cases.
66
- # If you pass in a parameter that doesn't exist (e.g. you make a typo like "namme") reek will
66
+ # If you pass in a parameter that doesn't exist (e.g. you make a typo like "namme") Reek will
67
67
  # raise an ArgumentError to give you a hint that you passed something that doesn't make
68
68
  # much sense.
69
69
  #
@@ -1,4 +1,5 @@
1
1
  require_relative '../examiner'
2
+ require_relative 'smell_matcher'
2
3
 
3
4
  module Reek
4
5
  module Spec
@@ -39,8 +40,12 @@ module Reek
39
40
  end
40
41
 
41
42
  def matching_smell_types
42
- @matching_smell_types ||= examiner.smells.
43
- select { |warning| warning.matches_smell_type?(smell_category) }
43
+ @matching_smell_types ||= smell_matchers.
44
+ select { |it| it.matches_smell_type?(smell_category) }
45
+ end
46
+
47
+ def smell_matchers
48
+ examiner.smells.map { |it| SmellMatcher.new(it) }
44
49
  end
45
50
 
46
51
  def matching_smell_types?
@@ -48,7 +53,7 @@ module Reek
48
53
  end
49
54
 
50
55
  def matching_smell_details?
51
- matching_smell_types.any? { |warning| warning.matches_smell_details?(smell_details) }
56
+ matching_smell_types.any? { |warning| warning.matches_attributes?(smell_details) }
52
57
  end
53
58
 
54
59
  def set_failure_messages_for_smell_type
@@ -1,6 +1,7 @@
1
1
  require_relative '../examiner'
2
2
  require_relative '../report/formatter'
3
3
  require_relative 'should_reek_of'
4
+ require_relative 'smell_matcher'
4
5
 
5
6
  module Reek
6
7
  module Spec
@@ -17,7 +18,7 @@ module Reek
17
18
  self.examiner = examiner
18
19
  self.warnings = examiner.smells
19
20
  return false if warnings.empty?
20
- warnings.all? { |warning| warning.matches?(smell_category) }
21
+ warnings.all? { |warning| SmellMatcher.new(warning).matches?(smell_category) }
21
22
  end
22
23
 
23
24
  def failure_message
@@ -0,0 +1,59 @@
1
+ module Reek
2
+ module Spec
3
+ #
4
+ # Matches a +SmellWarning+ object agains a smell type and hash of attributes.
5
+ #
6
+ class SmellMatcher
7
+ attr_reader :smell_warning
8
+
9
+ COMPARABLE_ATTRIBUTES = %i(message lines context source)
10
+
11
+ def initialize(smell_warning)
12
+ @smell_warning = smell_warning
13
+ end
14
+
15
+ def matches?(klass, attributes = {})
16
+ matches_smell_type?(klass) && matches_attributes?(attributes)
17
+ end
18
+
19
+ def matches_smell_type?(klass)
20
+ smell_classes.include?(klass.to_s)
21
+ end
22
+
23
+ def matches_attributes?(attributes)
24
+ check_attributes_comparability(attributes)
25
+
26
+ # FIXME: Use Array#to_h when dropping Ruby 2.0 compatibility.
27
+ fields, params = attributes.
28
+ partition { |key, _| COMPARABLE_ATTRIBUTES.include? key }.
29
+ map { |arr| Hash[arr] }
30
+
31
+ common_parameters_equal?(params) &&
32
+ common_attributes_equal?(fields)
33
+ end
34
+
35
+ private
36
+
37
+ def smell_classes
38
+ [smell_warning.smell_category, smell_warning.smell_type]
39
+ end
40
+
41
+ def check_attributes_comparability(other_attributes)
42
+ parameter_keys = other_attributes.keys - COMPARABLE_ATTRIBUTES
43
+ extra_keys = parameter_keys - smell_warning.parameters.keys
44
+ return if extra_keys.empty?
45
+ raise ArgumentError, "The attribute '#{extra_keys.first}' is not available for comparison"
46
+ end
47
+
48
+ def common_parameters_equal?(other_parameters)
49
+ smell_warning.parameters.slice(*other_parameters.keys) == other_parameters
50
+ end
51
+
52
+ def common_attributes_equal?(attributes)
53
+ attributes.all? do |other_key, other_value|
54
+ smell_warning.send(other_key) == other_value
55
+ end
56
+ end
57
+ end
58
+ end
59
+ end
@@ -2,6 +2,7 @@ require_relative 'context/method_context'
2
2
  require_relative 'context/module_context'
3
3
  require_relative 'context/root_context'
4
4
  require_relative 'context/singleton_method_context'
5
+ require_relative 'context/attribute_context'
5
6
  require_relative 'ast/node'
6
7
 
7
8
  module Reek
@@ -95,7 +96,7 @@ module Reek
95
96
  if exp.attribute_writer?
96
97
  exp.args.each do |arg|
97
98
  next unless arg.type == :sym
98
- new_context(Context::MethodContext, arg)
99
+ new_context(Context::AttributeContext, arg, exp)
99
100
  end
100
101
  end
101
102
  element.record_call_to(exp)
@@ -202,8 +203,8 @@ module Reek
202
203
  end
203
204
  end
204
205
 
205
- def new_context(klass, exp)
206
- klass.new(element, exp).tap do |scope|
206
+ def new_context(klass, *args)
207
+ klass.new(element, *args).tap do |scope|
207
208
  element.append_child_context(scope)
208
209
  end
209
210
  end
@@ -6,6 +6,6 @@ module Reek
6
6
  # @public
7
7
  module Version
8
8
  # @public
9
- STRING = '3.5.0'
9
+ STRING = '3.6.0'
10
10
  end
11
11
  end
Binary file
@@ -0,0 +1,77 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ version="1.1"
13
+ id="Ebene_1"
14
+ x="0px"
15
+ y="0px"
16
+ viewBox="0 0 402.4 319.2484"
17
+ enable-background="new 0 0 600 600"
18
+ xml:space="preserve"
19
+ inkscape:version="0.48.4 r9939"
20
+ width="100%"
21
+ height="100%"
22
+ sodipodi:docname="reek.bw.svg"><metadata
23
+ id="metadata4204"><rdf:RDF><cc:Work
24
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
25
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
26
+ id="defs4202" /><sodipodi:namedview
27
+ pagecolor="#ffffff"
28
+ bordercolor="#666666"
29
+ borderopacity="1"
30
+ objecttolerance="10"
31
+ gridtolerance="10"
32
+ guidetolerance="10"
33
+ inkscape:pageopacity="0"
34
+ inkscape:pageshadow="2"
35
+ inkscape:window-width="640"
36
+ inkscape:window-height="480"
37
+ id="namedview4200"
38
+ showgrid="false"
39
+ fit-margin-top="0"
40
+ fit-margin-left="0"
41
+ fit-margin-right="0"
42
+ fit-margin-bottom="0"
43
+ inkscape:zoom="0.39333333"
44
+ inkscape:cx="201"
45
+ inkscape:cy="159.4"
46
+ inkscape:window-x="0"
47
+ inkscape:window-y="24"
48
+ inkscape:window-maximized="0"
49
+ inkscape:current-layer="Ebene_1" /><g
50
+ id="g4182"
51
+ transform="translate(-99,-140.1516)"><polygon
52
+ points="255.2,143.7 156.3,184.9 99,256.1 300.2,459.4 300.2,459.4 300.2,459.4 501.4,256.1 444.1,184.9 345.2,143.7 "
53
+ id="polygon4184"
54
+ style="fill:#ffffff" /><g
55
+ id="g4186"><path
56
+ d="m 316.8,294.9 c -1.3,-3.7 -4.8,-6.1 -8.7,-6.1 -1,0 -2.1,0.2 -3.1,0.5 l -73.6,25.9 c -2.3,0.8 -4.2,2.5 -5.2,4.7 -1.1,2.2 -1.2,4.7 -0.4,7 l 18.1,51.3 c 1.3,3.7 4.8,6.1 8.7,6.1 1,0 2.1,-0.2 3.1,-0.5 l 73.6,-25.9 c 2.3,-0.8 4.2,-2.5 5.2,-4.7 1.1,-2.2 1.2,-4.7 0.4,-7 l -18.1,-51.3 z"
57
+ id="path4188"
58
+ inkscape:connector-curvature="0"
59
+ style="fill:#1d1d1b" /><path
60
+ d="m 446.5,235.6 c -3.2,-9.2 -13.4,-14.1 -22.6,-10.8 l -263.6,92.5 c 0,0 -3.4,6.2 1.1,11.3 4.5,5.1 75.1,75.3 78.3,78.6 3.2,3.3 10.1,1.7 10.1,1.7 l 154.7,-54.7 c 0,0 9,-2 14.4,-7.2 5.6,-5.3 41.8,-41.3 45.6,-45.6 3.8,-4.3 1.7,-9.6 1.7,-9.6 l -19.7,-56.2 z m -15,17.5 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z m -7.9,16.6 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z m -8.7,-24.5 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.5,-3.1 -1.7,-4.9 z m -7.9,16.5 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.8 -2.6,-3 -1.7,-4.9 z m -7.9,16.6 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z m -8.7,-24.5 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.5,-3.1 -1.7,-4.9 z m -7.9,16.6 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z m -7.9,16.5 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.8 -2.6,-3 -1.7,-4.9 z m -8.7,-24.5 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.8 -2.5,-3 -1.7,-4.9 z m -171.6,66 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.5,3.1 1.7,4.9 z m 8.6,24.5 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 136.7,2.8 c -1.7,3.6 -4.7,6.3 -8.5,7.6 l -73.6,25.9 c -1.6,0.6 -3.3,0.8 -4.9,0.8 -6.3,0 -11.9,-4 -14,-9.9 l -18.1,-51.3 c -1.3,-3.7 -1.1,-7.8 0.6,-11.4 1.7,-3.6 4.7,-6.3 8.5,-7.6 l 73.6,-25.9 c 1.6,-0.6 3.3,-0.8 4.9,-0.8 6.3,0 11.9,4 14,9.9 l 18.1,51.3 c 1.3,3.8 1.1,7.8 -0.6,11.4 z m 8.5,-81.5 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 8.6,24.5 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z M 358,279 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z m 7.3,44.2 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 1.3,-19.7 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.5,-3.1 -1.7,-4.9 z m 7.4,44.2 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.5,3.1 1.7,4.9 z m 7.9,-16.5 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.8 2.6,3 1.7,4.9 z m 7.9,-16.6 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 1.3,-19.7 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.5,-3.1 -1.7,-4.9 z m 7.3,44.2 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.9,0.9 2.6,3.1 1.7,4.9 z m 8,-16.6 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 7.9,-16.5 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.8 2.6,3 1.7,4.9 z m 1.3,-19.8 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.8 -2.5,-3 -1.7,-4.9 z m 7.3,44.3 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.8 2.6,3 1.7,4.9 z m 8,-16.6 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 7.9,-16.6 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 7.9,-16.5 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 4.1,26.4 -0.3,-0.2 c -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 0.9,0.4 1.5,1.2 1.9,2 l -4.8,4.8 z"
61
+ id="path4190"
62
+ inkscape:connector-curvature="0"
63
+ style="fill:#1d1d1b" /><polygon
64
+ points="300.2,459.4 395,363.5 382.7,367.9 305.8,445.6 305.9,395.1 254.5,413.2 "
65
+ id="polygon4192"
66
+ style="fill:#1d1d1b" /><path
67
+ d="m 266.5,208 c 0.9,9.7 9.4,16.9 19.2,16.1 l 79.9,-7 c 9.7,-0.9 16.9,-9.4 16.1,-19.2 l -3.5,-40.7 c 0,0 0.5,-6.1 -4.8,-8.6 -5.3,-2.5 -16,-7.8 -22.6,-8.1 -6.6,-0.3 -71.9,-0.5 -81.3,-0.2 -9.4,0.3 -8.4,5.8 -8.4,5.8 l 5.4,61.9 z m 98,-18.7 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.4 1.8,3.7 0.5,5.2 z m -7.9,-30.5 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.4 -1.8,-3.7 -0.5,-5.2 z m -3.9,44.6 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.7 0.5,5.2 z m -2.2,-25.9 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.4 1.8,3.7 0.5,5.2 z M 342.6,147 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.4 -1.8,-3.7 -0.5,-5.2 z m -3.9,44.6 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.7 0.5,5.2 z M 330.8,161 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 z m -3.9,44.7 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 z m -2.3,-25.9 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.7 0.5,5.2 z m -7.9,-30.6 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 z m -3.9,44.7 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 z m -7.9,-30.6 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 z M 301,208 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 z m -2.3,-25.9 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 z m -7.9,-30.6 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 z m -3.9,44.7 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 z M 279,165.6 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.4 -1.8,-3.7 -0.5,-5.2 z"
68
+ id="path4194"
69
+ inkscape:connector-curvature="0"
70
+ style="fill:#1d1d1b" /><path
71
+ d="m 262.7,239.5 11.9,-11.7 c -7.6,-3.3 -13,-10.5 -13.8,-19.3 l -5.6,-64.8 -98.9,41.2 -57.3,71.2 56.3,56.9 121,-42.4 -13.6,-31.1 z"
72
+ id="path4196"
73
+ inkscape:connector-curvature="0"
74
+ style="fill:#1d1d1b" /><polygon
75
+ points="440.6,189.6 493.8,255.7 468.6,281.1 470.7,287.1 501.4,256.1 444.1,184.9 384.1,160 384.6,166.3 "
76
+ id="polygon4198"
77
+ style="fill:#1d1d1b" /></g></g></svg>
Binary file
@@ -0,0 +1,621 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ version="1.1"
13
+ id="Ebene_1"
14
+ x="0px"
15
+ y="0px"
16
+ viewBox="0 0 402.1 319.1484"
17
+ enable-background="new 0 0 600 600"
18
+ xml:space="preserve"
19
+ inkscape:version="0.48.4 r9939"
20
+ width="100%"
21
+ height="100%"
22
+ sodipodi:docname="reek.svg"><metadata
23
+ id="metadata3999"><rdf:RDF><cc:Work
24
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
25
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
26
+ id="defs3997" /><sodipodi:namedview
27
+ pagecolor="#ffffff"
28
+ bordercolor="#666666"
29
+ borderopacity="1"
30
+ objecttolerance="10"
31
+ gridtolerance="10"
32
+ guidetolerance="10"
33
+ inkscape:pageopacity="0"
34
+ inkscape:pageshadow="2"
35
+ inkscape:window-width="1920"
36
+ inkscape:window-height="1176"
37
+ id="namedview3995"
38
+ showgrid="false"
39
+ fit-margin-top="0"
40
+ fit-margin-left="0"
41
+ fit-margin-right="0"
42
+ fit-margin-bottom="0"
43
+ inkscape:zoom="0.39333333"
44
+ inkscape:cx="200.8"
45
+ inkscape:cy="159.4"
46
+ inkscape:window-x="0"
47
+ inkscape:window-y="24"
48
+ inkscape:window-maximized="1"
49
+ inkscape:current-layer="Ebene_1" /><polygon
50
+ points="250.4,146 156.5,185.1 99.2,256.2 300.3,459.4 300.3,339 256,238.3 350.2,146 350.2,146 "
51
+ id="polygon3839"
52
+ style="fill:#a41611"
53
+ transform="translate(-99.2,-140.2516)" /><polygon
54
+ points="300.3,339 300.3,459.4 501.3,256.2 444.1,185.1 350.2,146 256,238.3 "
55
+ id="polygon3841"
56
+ style="fill:#d41217"
57
+ transform="translate(-99.2,-140.2516)" /><circle
58
+ cx="310.10001"
59
+ cy="191.7"
60
+ r="3.7"
61
+ id="circle3843"
62
+ sodipodi:cx="310.10001"
63
+ sodipodi:cy="191.7"
64
+ sodipodi:rx="3.7"
65
+ sodipodi:ry="3.7"
66
+ style="fill:none"
67
+ transform="translate(-99.2,-140.2516)" /><circle
68
+ cx="298.29999"
69
+ cy="205.7"
70
+ r="3.7"
71
+ id="circle3845"
72
+ sodipodi:cx="298.29999"
73
+ sodipodi:cy="205.7"
74
+ sodipodi:rx="3.7"
75
+ sodipodi:ry="3.7"
76
+ style="fill:none"
77
+ transform="translate(-99.2,-140.2516)" /><circle
78
+ cx="307.79999"
79
+ cy="165.8"
80
+ r="3.7"
81
+ id="circle3847"
82
+ sodipodi:cx="307.79999"
83
+ sodipodi:cy="165.8"
84
+ sodipodi:rx="3.7"
85
+ sodipodi:ry="3.7"
86
+ style="fill:none"
87
+ transform="translate(-99.2,-140.2516)" /><circle
88
+ cx="319.60001"
89
+ cy="151.8"
90
+ r="3.7"
91
+ id="circle3849"
92
+ sodipodi:cx="319.60001"
93
+ sodipodi:cy="151.8"
94
+ sodipodi:rx="3.7"
95
+ sodipodi:ry="3.7"
96
+ style="fill:none"
97
+ transform="translate(-99.2,-140.2516)" /><circle
98
+ cx="284.20001"
99
+ cy="193.89999"
100
+ r="3.7"
101
+ id="circle3851"
102
+ sodipodi:cx="284.20001"
103
+ sodipodi:cy="193.89999"
104
+ sodipodi:rx="3.7"
105
+ sodipodi:ry="3.7"
106
+ style="fill:none"
107
+ transform="translate(-99.2,-140.2516)" /><circle
108
+ cx="321.89999"
109
+ cy="177.60001"
110
+ r="3.7"
111
+ id="circle3853"
112
+ sodipodi:cx="321.89999"
113
+ sodipodi:cy="177.60001"
114
+ sodipodi:rx="3.7"
115
+ sodipodi:ry="3.7"
116
+ style="fill:none"
117
+ transform="translate(-99.2,-140.2516)" /><circle
118
+ cx="281.89999"
119
+ cy="168.10001"
120
+ r="3.7"
121
+ id="circle3855"
122
+ sodipodi:cx="281.89999"
123
+ sodipodi:cy="168.10001"
124
+ sodipodi:rx="3.7"
125
+ sodipodi:ry="3.7"
126
+ style="fill:none"
127
+ transform="translate(-99.2,-140.2516)" /><circle
128
+ cx="293.70001"
129
+ cy="154"
130
+ r="3.7"
131
+ id="circle3857"
132
+ sodipodi:cx="293.70001"
133
+ sodipodi:cy="154"
134
+ sodipodi:rx="3.7"
135
+ sodipodi:ry="3.7"
136
+ style="fill:none"
137
+ transform="translate(-99.2,-140.2516)" /><circle
138
+ cx="296"
139
+ cy="179.89999"
140
+ r="3.7"
141
+ id="circle3859"
142
+ sodipodi:cx="296"
143
+ sodipodi:cy="179.89999"
144
+ sodipodi:rx="3.7"
145
+ sodipodi:ry="3.7"
146
+ style="fill:none"
147
+ transform="translate(-99.2,-140.2516)" /><path
148
+ d="m 243.4,6.8484021 c -1.3,1.6 -1.1,3.8999999 0.5,5.1999999 1.6,1.3 3.9,1.1 5.2,-0.5 1.3,-1.5999999 1.1,-3.8999999 -0.5,-5.1999999 -0.4,-0.3 -0.7,-0.5 -1.2,-0.6 -0.7,0 -1.4,0 -2.3,0 -0.6,0.2 -1.2,0.6 -1.7,1.1 z"
149
+ id="path3861"
150
+ inkscape:connector-curvature="0"
151
+ style="fill:none" /><circle
152
+ cx="359.5"
153
+ cy="161.3"
154
+ r="3.7"
155
+ id="circle3863"
156
+ sodipodi:cx="359.5"
157
+ sodipodi:cy="161.3"
158
+ sodipodi:rx="3.7"
159
+ sodipodi:ry="3.7"
160
+ style="fill:none"
161
+ transform="translate(-99.2,-140.2516)" /><circle
162
+ cx="361.79999"
163
+ cy="187.10001"
164
+ r="3.7"
165
+ id="circle3865"
166
+ sodipodi:cx="361.79999"
167
+ sodipodi:cy="187.10001"
168
+ sodipodi:rx="3.7"
169
+ sodipodi:ry="3.7"
170
+ style="fill:none"
171
+ transform="translate(-99.2,-140.2516)" /><circle
172
+ cx="350"
173
+ cy="201.2"
174
+ r="3.7"
175
+ id="circle3867"
176
+ sodipodi:cx="350"
177
+ sodipodi:cy="201.2"
178
+ sodipodi:rx="3.7"
179
+ sodipodi:ry="3.7"
180
+ style="fill:none"
181
+ transform="translate(-99.2,-140.2516)" /><circle
182
+ cx="324.10001"
183
+ cy="203.5"
184
+ r="3.7"
185
+ id="circle3869"
186
+ sodipodi:cx="324.10001"
187
+ sodipodi:cy="203.5"
188
+ sodipodi:rx="3.7"
189
+ sodipodi:ry="3.7"
190
+ style="fill:none"
191
+ transform="translate(-99.2,-140.2516)" /><circle
192
+ cx="333.70001"
193
+ cy="163.5"
194
+ r="3.7"
195
+ id="circle3871"
196
+ sodipodi:cx="333.70001"
197
+ sodipodi:cy="163.5"
198
+ sodipodi:rx="3.7"
199
+ sodipodi:ry="3.7"
200
+ style="fill:none"
201
+ transform="translate(-99.2,-140.2516)" /><circle
202
+ cx="335.89999"
203
+ cy="189.39999"
204
+ r="3.7"
205
+ id="circle3873"
206
+ sodipodi:cx="335.89999"
207
+ sodipodi:cy="189.39999"
208
+ sodipodi:rx="3.7"
209
+ sodipodi:ry="3.7"
210
+ style="fill:none"
211
+ transform="translate(-99.2,-140.2516)" /><circle
212
+ cx="347.70001"
213
+ cy="175.3"
214
+ r="3.7"
215
+ id="circle3875"
216
+ sodipodi:cx="347.70001"
217
+ sodipodi:cy="175.3"
218
+ sodipodi:rx="3.7"
219
+ sodipodi:ry="3.7"
220
+ style="fill:none"
221
+ transform="translate(-99.2,-140.2516)" /><path
222
+ d="m 245.2,5.7484021 c 0.8,0 1.6,0 2.3,0 -0.8,-0.2 -1.6,-0.2 -2.3,0 z"
223
+ id="path3877"
224
+ inkscape:connector-curvature="0"
225
+ style="fill:#d41217" /><circle
226
+ cx="427.60001"
227
+ cy="312.39999"
228
+ r="3.7"
229
+ id="circle3879"
230
+ sodipodi:cx="427.60001"
231
+ sodipodi:cy="312.39999"
232
+ sodipodi:rx="3.7"
233
+ sodipodi:ry="3.7"
234
+ style="fill:none"
235
+ transform="translate(-99.2,-140.2516)" /><circle
236
+ cx="434.79999"
237
+ cy="254.8"
238
+ r="3.7"
239
+ id="circle3881"
240
+ sodipodi:cx="434.79999"
241
+ sodipodi:cy="254.8"
242
+ sodipodi:rx="3.7"
243
+ sodipodi:ry="3.7"
244
+ style="fill:none"
245
+ transform="translate(-99.2,-140.2516)" /><circle
246
+ cx="435.5"
247
+ cy="295.79999"
248
+ r="3.7"
249
+ id="circle3883"
250
+ sodipodi:cx="435.5"
251
+ sodipodi:cy="295.79999"
252
+ sodipodi:rx="3.7"
253
+ sodipodi:ry="3.7"
254
+ style="fill:none"
255
+ transform="translate(-99.2,-140.2516)" /><circle
256
+ cx="443.39999"
257
+ cy="279.29999"
258
+ r="3.7"
259
+ id="circle3885"
260
+ sodipodi:cx="443.39999"
261
+ sodipodi:cy="279.29999"
262
+ sodipodi:rx="3.7"
263
+ sodipodi:ry="3.7"
264
+ style="fill:none"
265
+ transform="translate(-99.2,-140.2516)" /><circle
266
+ cx="426.89999"
267
+ cy="271.39999"
268
+ r="3.7"
269
+ id="circle3887"
270
+ sodipodi:cx="426.89999"
271
+ sodipodi:cy="271.39999"
272
+ sodipodi:rx="3.7"
273
+ sodipodi:ry="3.7"
274
+ style="fill:none"
275
+ transform="translate(-99.2,-140.2516)" /><circle
276
+ cx="410.29999"
277
+ cy="263.39999"
278
+ r="3.7"
279
+ id="circle3889"
280
+ sodipodi:cx="410.29999"
281
+ sodipodi:cy="263.39999"
282
+ sodipodi:rx="3.7"
283
+ sodipodi:ry="3.7"
284
+ style="fill:none"
285
+ transform="translate(-99.2,-140.2516)" /><circle
286
+ cx="394.5"
287
+ cy="296.5"
288
+ r="3.7"
289
+ id="circle3891"
290
+ sodipodi:cx="394.5"
291
+ sodipodi:cy="296.5"
292
+ sodipodi:rx="3.7"
293
+ sodipodi:ry="3.7"
294
+ style="fill:none"
295
+ transform="translate(-99.2,-140.2516)" /><circle
296
+ cx="418.29999"
297
+ cy="246.89999"
298
+ r="3.7"
299
+ id="circle3893"
300
+ sodipodi:cx="418.29999"
301
+ sodipodi:cy="246.89999"
302
+ sodipodi:rx="3.7"
303
+ sodipodi:ry="3.7"
304
+ style="fill:none"
305
+ transform="translate(-99.2,-140.2516)" /><circle
306
+ cx="419"
307
+ cy="287.89999"
308
+ r="3.7"
309
+ id="circle3895"
310
+ sodipodi:cx="419"
311
+ sodipodi:cy="287.89999"
312
+ sodipodi:rx="3.7"
313
+ sodipodi:ry="3.7"
314
+ style="fill:none"
315
+ transform="translate(-99.2,-140.2516)" /><circle
316
+ cx="402.39999"
317
+ cy="280"
318
+ r="3.7"
319
+ id="circle3897"
320
+ sodipodi:cx="402.39999"
321
+ sodipodi:cy="280"
322
+ sodipodi:rx="3.7"
323
+ sodipodi:ry="3.7"
324
+ style="fill:none"
325
+ transform="translate(-99.2,-140.2516)" /><circle
326
+ cx="419.70001"
327
+ cy="328.89999"
328
+ r="3.7"
329
+ id="circle3899"
330
+ sodipodi:cx="419.70001"
331
+ sodipodi:cy="328.89999"
332
+ sodipodi:rx="3.7"
333
+ sodipodi:ry="3.7"
334
+ style="fill:none"
335
+ transform="translate(-99.2,-140.2516)" /><circle
336
+ cx="386.60001"
337
+ cy="313.10001"
338
+ r="3.7"
339
+ id="circle3901"
340
+ sodipodi:cx="386.60001"
341
+ sodipodi:cy="313.10001"
342
+ sodipodi:rx="3.7"
343
+ sodipodi:ry="3.7"
344
+ style="fill:none"
345
+ transform="translate(-99.2,-140.2516)" /><circle
346
+ cx="378.60001"
347
+ cy="329.60001"
348
+ r="3.7"
349
+ id="circle3903"
350
+ sodipodi:cx="378.60001"
351
+ sodipodi:cy="329.60001"
352
+ sodipodi:rx="3.7"
353
+ sodipodi:ry="3.7"
354
+ style="fill:none"
355
+ transform="translate(-99.2,-140.2516)" /><circle
356
+ cx="362.10001"
357
+ cy="321.70001"
358
+ r="3.7"
359
+ id="circle3905"
360
+ sodipodi:cx="362.10001"
361
+ sodipodi:cy="321.70001"
362
+ sodipodi:rx="3.7"
363
+ sodipodi:ry="3.7"
364
+ style="fill:none"
365
+ transform="translate(-99.2,-140.2516)" /><circle
366
+ cx="370.70001"
367
+ cy="346.20001"
368
+ r="3.7"
369
+ id="circle3907"
370
+ sodipodi:cx="370.70001"
371
+ sodipodi:cy="346.20001"
372
+ sodipodi:rx="3.7"
373
+ sodipodi:ry="3.7"
374
+ style="fill:none"
375
+ transform="translate(-99.2,-140.2516)" /><circle
376
+ cx="395.20001"
377
+ cy="337.60001"
378
+ r="3.7"
379
+ id="circle3909"
380
+ sodipodi:cx="395.20001"
381
+ sodipodi:cy="337.60001"
382
+ sodipodi:rx="3.7"
383
+ sodipodi:ry="3.7"
384
+ style="fill:none"
385
+ transform="translate(-99.2,-140.2516)" /><circle
386
+ cx="411"
387
+ cy="304.5"
388
+ r="3.7"
389
+ id="circle3911"
390
+ sodipodi:cx="411"
391
+ sodipodi:cy="304.5"
392
+ sodipodi:rx="3.7"
393
+ sodipodi:ry="3.7"
394
+ style="fill:none"
395
+ transform="translate(-99.2,-140.2516)" /><circle
396
+ cx="403.10001"
397
+ cy="321"
398
+ r="3.7"
399
+ id="circle3913"
400
+ sodipodi:cx="403.10001"
401
+ sodipodi:cy="321"
402
+ sodipodi:rx="3.7"
403
+ sodipodi:ry="3.7"
404
+ style="fill:none"
405
+ transform="translate(-99.2,-140.2516)" /><circle
406
+ cx="344.79999"
407
+ cy="272.70001"
408
+ r="3.7"
409
+ id="circle3915"
410
+ sodipodi:cx="344.79999"
411
+ sodipodi:cy="272.70001"
412
+ sodipodi:rx="3.7"
413
+ sodipodi:ry="3.7"
414
+ style="fill:none"
415
+ transform="translate(-99.2,-140.2516)" /><circle
416
+ cx="199.7"
417
+ cy="351.39999"
418
+ r="3.7"
419
+ id="circle3917"
420
+ sodipodi:cx="199.7"
421
+ sodipodi:cy="351.39999"
422
+ sodipodi:rx="3.7"
423
+ sodipodi:ry="3.7"
424
+ style="fill:none"
425
+ transform="translate(-99.2,-140.2516)" /><path
426
+ d="m 354.5,160.2484 c -1.8,-0.9 -4,-0.1 -4.9,1.7 -0.9,1.8 -0.1,4 1.7,4.9 l 0.3,0.2 4.7,-4.8 c -0.3,-0.8 -1,-1.6 -1.8,-2 z"
427
+ id="path3919"
428
+ inkscape:connector-curvature="0"
429
+ style="fill:none" /><circle
430
+ cx="191.10001"
431
+ cy="326.89999"
432
+ r="3.7"
433
+ id="circle3921"
434
+ sodipodi:cx="191.10001"
435
+ sodipodi:cy="326.89999"
436
+ sodipodi:rx="3.7"
437
+ sodipodi:ry="3.7"
438
+ style="fill:none"
439
+ transform="translate(-99.2,-140.2516)" /><polygon
440
+ points="321.3,383.7 404.2,354.4 404.2,354.4 "
441
+ id="polygon3923"
442
+ style="fill:none"
443
+ transform="translate(-99.2,-140.2516)" /><circle
444
+ cx="393.79999"
445
+ cy="255.5"
446
+ r="3.7"
447
+ id="circle3925"
448
+ sodipodi:cx="393.79999"
449
+ sodipodi:cy="255.5"
450
+ sodipodi:rx="3.7"
451
+ sodipodi:ry="3.7"
452
+ style="fill:none"
453
+ transform="translate(-99.2,-140.2516)" /><circle
454
+ cx="353.39999"
455
+ cy="297.20001"
456
+ r="3.7"
457
+ id="circle3927"
458
+ sodipodi:cx="353.39999"
459
+ sodipodi:cy="297.20001"
460
+ sodipodi:rx="3.7"
461
+ sodipodi:ry="3.7"
462
+ style="fill:none"
463
+ transform="translate(-99.2,-140.2516)" /><circle
464
+ cx="361.39999"
465
+ cy="280.70001"
466
+ r="3.7"
467
+ id="circle3929"
468
+ sodipodi:cx="361.39999"
469
+ sodipodi:cy="280.70001"
470
+ sodipodi:rx="3.7"
471
+ sodipodi:ry="3.7"
472
+ style="fill:none"
473
+ transform="translate(-99.2,-140.2516)" /><circle
474
+ cx="377.89999"
475
+ cy="288.60001"
476
+ r="3.7"
477
+ id="circle3931"
478
+ sodipodi:cx="377.89999"
479
+ sodipodi:cy="288.60001"
480
+ sodipodi:rx="3.7"
481
+ sodipodi:ry="3.7"
482
+ style="fill:none"
483
+ transform="translate(-99.2,-140.2516)" /><circle
484
+ cx="385.89999"
485
+ cy="272.10001"
486
+ r="3.7"
487
+ id="circle3933"
488
+ sodipodi:cx="385.89999"
489
+ sodipodi:cy="272.10001"
490
+ sodipodi:rx="3.7"
491
+ sodipodi:ry="3.7"
492
+ style="fill:none"
493
+ transform="translate(-99.2,-140.2516)" /><circle
494
+ cx="370"
495
+ cy="305.20001"
496
+ r="3.7"
497
+ id="circle3935"
498
+ sodipodi:cx="370"
499
+ sodipodi:cy="305.20001"
500
+ sodipodi:rx="3.7"
501
+ sodipodi:ry="3.7"
502
+ style="fill:none"
503
+ transform="translate(-99.2,-140.2516)" /><circle
504
+ cx="369.29999"
505
+ cy="264.10001"
506
+ r="3.7"
507
+ id="circle3937"
508
+ sodipodi:cx="369.29999"
509
+ sodipodi:cy="264.10001"
510
+ sodipodi:rx="3.7"
511
+ sodipodi:ry="3.7"
512
+ style="fill:none"
513
+ transform="translate(-99.2,-140.2516)" /><path
514
+ d="m 62.4,188.3484 c -0.4,-0.5 -0.8,-1 -1,-1.4 0.3,0.5 0.6,0.9 1,1.4 z"
515
+ id="path3939"
516
+ inkscape:connector-curvature="0"
517
+ style="fill:#f4c4c5" /><path
518
+ d="m 61.2,186.6484 c -0.3,-0.5 -0.5,-0.9 -0.6,-1.4 0.1,0.5 0.4,0.9 0.6,1.4 z"
519
+ id="path3941"
520
+ inkscape:connector-curvature="0"
521
+ style="fill:#f4c4c5" /><path
522
+ d="m 60.2,180.4484 c 0.1,-0.4 0.1,-0.7 0.2,-1 0,0.3 -0.1,0.6 -0.2,1 z"
523
+ id="path3943"
524
+ inkscape:connector-curvature="0"
525
+ style="fill:#f4c4c5" /><path
526
+ d="m 60.5,179.3484 c 0.1,-0.3 0.2,-0.6 0.3,-0.9 -0.2,0.3 -0.2,0.6 -0.3,0.9 z"
527
+ id="path3945"
528
+ inkscape:connector-curvature="0"
529
+ style="fill:#f4c4c5" /><path
530
+ d="m 60.1,181.8484 c 0,-0.4 0,-0.8 0.1,-1.2 -0.1,0.4 -0.1,0.8 -0.1,1.2 z"
531
+ id="path3947"
532
+ inkscape:connector-curvature="0"
533
+ style="fill:#f4c4c5" /><path
534
+ d="m 60.2,183.5484 c -0.1,-0.5 -0.1,-0.9 -0.1,-1.3 0,0.4 0,0.8 0.1,1.3 z"
535
+ id="path3949"
536
+ inkscape:connector-curvature="0"
537
+ style="fill:#f4c4c5" /><path
538
+ d="m 60.5,184.9484 c -0.1,-0.5 -0.2,-0.9 -0.3,-1.3 0,0.4 0.2,0.8 0.3,1.3 z"
539
+ id="path3951"
540
+ inkscape:connector-curvature="0"
541
+ style="fill:#f4c4c5" /><polygon
542
+ points="250,408.8 250.2,408.8 250.2,408.8 "
543
+ id="polygon3953"
544
+ style="fill:#f4c4c5"
545
+ transform="translate(-99.2,-140.2516)" /><g
546
+ id="g3955"
547
+ transform="translate(-99.2,-140.2516)"><path
548
+ d="m 266.6,208.2 c 0.9,9.7 9.4,16.9 19.2,16.1 l 79.8,-7 c 9.7,-0.9 16.9,-9.4 16.1,-19.2 l -3.4,-40.4 -28,-11.7 c 0,0 -1.3,0 -3.5,0 0.4,0.1 0.8,0.3 1.2,0.6 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 0.5,-0.6 1.1,-0.9 1.7,-1.1 -16.2,0 -62.1,0 -83.2,0 0,0.1 0,0.1 0,0.1 l 5.3,62.1 z m 98,-18.7 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 z m -7.9,-30.6 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 z m -3.9,44.7 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 z M 344.9,173 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.4 -1.8,-3.7 -0.5,-5.2 z m -6.2,18.8 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 z m -7.9,-30.6 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.7 -0.5,-5.2 z m -3.9,44.6 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.4 1.8,3.7 0.5,5.2 z M 324.7,180 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 z m -7.9,-30.6 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.7 -0.5,-5.2 z m -3.9,44.6 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.4 1.8,3.7 0.5,5.2 z M 305,163.5 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.4 -1.8,-3.7 -0.5,-5.2 z m -3.9,44.6 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 z m -2.3,-25.9 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.4 1.8,3.7 0.5,5.2 z m -7.9,-30.5 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.4 -1.8,-3.7 -0.5,-5.2 z m -3.9,44.6 c -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 z m -7.9,-30.6 c 1.3,-1.6 3.6,-1.8 5.2,-0.5 1.6,1.3 1.8,3.6 0.5,5.2 -1.3,1.6 -3.6,1.8 -5.2,0.5 -1.6,-1.3 -1.8,-3.6 -0.5,-5.2 z"
549
+ id="path3957"
550
+ inkscape:connector-curvature="0"
551
+ style="fill:#e9888b" /><path
552
+ d="m 446.5,235.7 c -3.2,-9.2 -13.4,-14.1 -22.6,-10.8 l -263.4,92.4 c 0,0 -0.1,0.2 -0.2,0.5 l 90,90.9 71,-25.1 82.9,-29.3 46.6,-47.1 -0.3,-0.2 c -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 0.8,0.4 1.5,1.2 1.9,2 l 10.7,-10.9 0.1,0.2 -19.9,-56 z m -252.1,92.8 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3 1.7,4.9 z M 203,353 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.8 2.6,3 1.7,4.9 z m 228.5,-99.8 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3 -1.7,-4.9 z m -7.9,16.6 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z M 415,245.3 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z m -8,16.5 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.8 -2.5,-3 -1.7,-4.9 z m -7.9,16.6 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z m -8.6,-24.5 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z m -7.9,16.6 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.9,-0.9 -2.6,-3.1 -1.7,-4.9 z m -8,16.5 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z M 366,262.5 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.8 -2.6,-3 -1.7,-4.9 z m -17.9,11.8 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 8.7,24.5 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.5,3.1 1.7,4.9 z m 1.3,-19.7 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z m 7.3,44.2 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 1.3,-19.7 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z m 7.3,44.2 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3 1.7,4.9 z m 7.9,-16.6 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 8,-16.5 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.5,3 1.7,4.9 z m 1.3,-19.7 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 z m 7.3,44.2 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.8 2.6,3 1.7,4.9 z m 7.9,-16.6 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 7.9,-16.5 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.8 2.6,3 1.7,4.9 z m 1.4,-19.8 c 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.9,-0.9 -2.6,-3 -1.7,-4.9 z m 7.3,44.2 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.5,3.1 1.7,4.9 z m 7.9,-16.5 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 7.9,-16.6 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.6,3.1 1.7,4.9 z m 8,-16.5 c -0.9,1.8 -3.1,2.6 -4.9,1.7 -1.8,-0.9 -2.6,-3.1 -1.7,-4.9 0.9,-1.8 3.1,-2.6 4.9,-1.7 1.8,0.9 2.5,3.1 1.7,4.9 z"
553
+ id="path3959"
554
+ inkscape:connector-curvature="0"
555
+ style="fill:#e9888b" /><path
556
+ d="m 160.2,318 c 0,-0.1 0,-0.1 0.1,-0.1 l 0,0 c -0.1,0 -0.1,0.1 -0.1,0.1 z"
557
+ id="path3961"
558
+ inkscape:connector-curvature="0"
559
+ style="fill:#e9888b" /><path
560
+ d="m 160.2,318 c 0,0 0,0.1 0,0 0,0.1 0,0 0,0 z"
561
+ id="path3963"
562
+ inkscape:connector-curvature="0"
563
+ style="fill:#e9888b" /><path
564
+ d="m 160.2,318.1 c -0.1,0.1 -0.1,0.3 -0.2,0.5 0.1,-0.2 0.1,-0.4 0.2,-0.5 z"
565
+ id="path3965"
566
+ inkscape:connector-curvature="0"
567
+ style="fill:#e9888b" /></g><path
568
+ d="m 61.4,186.9484 c -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 0.1,0.1 0.1,0.2 0.2,0.3 z"
569
+ id="path3967"
570
+ inkscape:connector-curvature="0"
571
+ style="fill:#f4c4c5" /><path
572
+ d="m 60.1,182.1484 c 0,-0.1 0,-0.2 0,-0.3 0,0.1 0,0.2 0,0.3 z"
573
+ id="path3969"
574
+ inkscape:connector-curvature="0"
575
+ style="fill:#f4c4c5" /><path
576
+ d="m 60.2,183.5484 c 0,0 0,0 0,0 0,0 0,0 0,0 z"
577
+ id="path3971"
578
+ inkscape:connector-curvature="0"
579
+ style="fill:#f4c4c5" /><path
580
+ d="m 60.6,185.2484 c 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,0.1 0,0.2 0.1,0.3 z"
581
+ id="path3973"
582
+ inkscape:connector-curvature="0"
583
+ style="fill:#f4c4c5" /><path
584
+ d="m 60.4,179.4484 c 0,0 0.1,-0.1 0,0 0.1,-0.1 0,0 0,0 z"
585
+ id="path3975"
586
+ inkscape:connector-curvature="0"
587
+ style="fill:#f4c4c5" /><path
588
+ d="m 60.7,178.4484 c 0,0 0,-0.1 0,-0.1 0.1,0 0.1,0 0,0.1 z"
589
+ id="path3977"
590
+ inkscape:connector-curvature="0"
591
+ style="fill:#f4c4c5" /><path
592
+ d="m 60.2,180.6484 c 0,-0.1 0,-0.2 0,-0.3 0,0.2 0,0.2 0,0.3 z"
593
+ id="path3979"
594
+ inkscape:connector-curvature="0"
595
+ style="fill:#f4c4c5" /><path
596
+ d="m 351.6,167.0484 4.7,-4.8 c 0,0 0,0 0,0 l -4.7,4.8 0,0 z"
597
+ id="path3981"
598
+ inkscape:connector-curvature="0"
599
+ style="fill:#f4c4c5" /><polygon
600
+ points="404.2,354.4 404.6,354.2 404.2,354.4 "
601
+ id="polygon3983"
602
+ style="fill:#f4c4c5"
603
+ transform="translate(-99.2,-140.2516)" /><g
604
+ id="g3985"
605
+ transform="translate(-99.2,-140.2516)"><path
606
+ d="m 373.4,148.7 c -5.3,-2.5 -16,-7.8 -22.6,-8.1 -6.6,-0.3 -71.8,-0.5 -81.2,-0.2 -8.5,0.2 -8.5,4.8 -8.4,5.7 21.1,0 67,0 83.2,0 0.7,-0.2 1.5,-0.3 2.3,0 2.2,0 3.5,0 3.5,0 l 28,11.7 0,-0.3 c 0,-0.1 0.5,-6.2 -4.8,-8.8 z"
607
+ id="path3987"
608
+ inkscape:connector-curvature="0"
609
+ style="fill:#f4c4c5" /><path
610
+ d="m 160,318.5 c 0,0 0,0.1 0,0.1 -0.1,0.3 -0.2,0.6 -0.3,0.9 0,0 0,0.1 0,0.1 -0.1,0.3 -0.1,0.6 -0.2,1 0,0.1 0,0.2 0,0.3 -0.1,0.4 -0.1,0.8 -0.1,1.2 0,0.1 0,0.2 0,0.3 0,0.4 0,0.9 0.1,1.3 0,0 0,0.1 0,0.1 0.1,0.4 0.2,0.9 0.3,1.3 0,0.1 0.1,0.2 0.1,0.3 0.2,0.5 0.4,0.9 0.6,1.4 0.1,0.1 0.1,0.2 0.2,0.3 0.3,0.5 0.6,1 1,1.4 4.5,5.1 75,75.3 78.3,78.5 3.2,3.3 10.1,1.7 10.1,1.7 l 0.2,-0.1 -90,-90.9 c -0.1,0.3 -0.2,0.6 -0.3,0.8 z"
611
+ id="path3989"
612
+ inkscape:connector-curvature="0"
613
+ style="fill:#f4c4c5" /><path
614
+ d="m 466.3,291.8 -0.1,-0.2 -10.7,10.9 c 0,0 0,0 0,0 l -4.7,4.8 0,0 -46.6,47.1 0.4,-0.2 c 0,0 9,-2 14.4,-7.2 5.6,-5.3 41.7,-41.3 45.5,-45.5 3.9,-4.4 1.8,-9.7 1.8,-9.7 z"
615
+ id="path3991"
616
+ inkscape:connector-curvature="0"
617
+ style="fill:#f4c4c5" /><path
618
+ d="m 319.5,294.1 c -2.2,-6.3 -9.1,-9.5 -15.3,-7.3 l -73.6,25.9 c -6.3,2.2 -9.5,9.1 -7.3,15.3 l 18.1,51.3 c 2.2,6.3 9.1,9.5 15.3,7.3 l 73.6,-25.9 c 6.3,-2.2 9.5,-9.1 7.3,-15.3 l -18.1,-51.3 z"
619
+ id="path3993"
620
+ inkscape:connector-curvature="0"
621
+ style="fill:#f4c4c5" /></g></svg>