ki 0.4.10 → 0.4.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +16 -8
  3. data/MIDDLEWARE.md +27 -7
  4. data/README.md +45 -2
  5. data/REALTIME.md +48 -0
  6. data/TODO.md +19 -0
  7. data/ki.gemspec +1 -0
  8. data/lib/ki.rb +5 -0
  9. data/lib/ki/base_request.rb +7 -0
  10. data/lib/ki/channel_manager.rb +58 -0
  11. data/lib/ki/ki.rb +1 -0
  12. data/lib/ki/ki_cli.rb +1 -1
  13. data/lib/ki/ki_config.rb +18 -2
  14. data/lib/ki/middleware/api_handler.rb +11 -16
  15. data/lib/ki/middleware/helpers/redirect_to_helper.rb +13 -0
  16. data/lib/ki/middleware/realtime.rb +81 -0
  17. data/lib/ki/model.rb +6 -4
  18. data/lib/ki/modules/restrictions.rb +4 -7
  19. data/lib/ki/orm.rb +38 -2
  20. data/lib/ki/utils/redirect_to_helper.rb +0 -0
  21. data/lib/ki/version.rb +1 -1
  22. data/spec/examples/json.northpole.ro/.bowerrc +3 -0
  23. data/spec/examples/json.northpole.ro/Gemfile +1 -0
  24. data/spec/examples/json.northpole.ro/bower.json +17 -0
  25. data/spec/examples/json.northpole.ro/config.ru +3 -0
  26. data/spec/examples/json.northpole.ro/config.yml +4 -0
  27. data/spec/examples/json.northpole.ro/config.yml.backup +18 -0
  28. data/spec/examples/json.northpole.ro/config/deploy.rb +2 -1
  29. data/spec/examples/json.northpole.ro/config/deploy/production.rb +4 -38
  30. data/spec/examples/json.northpole.ro/public/app/.bowerrc +3 -0
  31. data/spec/examples/json.northpole.ro/public/app/.gitignore +9 -0
  32. data/spec/examples/json.northpole.ro/public/app/.jshintrc +13 -0
  33. data/spec/examples/json.northpole.ro/public/app/.travis.yml +14 -0
  34. data/spec/examples/json.northpole.ro/public/app/LICENSE +22 -0
  35. data/spec/examples/json.northpole.ro/public/app/README.md +82 -0
  36. data/spec/examples/json.northpole.ro/public/app/bower.json +20 -0
  37. data/spec/examples/json.northpole.ro/public/app/e2e/pages/ContactUser.js +22 -0
  38. data/spec/examples/json.northpole.ro/public/app/e2e/pages/UserDetails.js +11 -0
  39. data/spec/examples/json.northpole.ro/public/app/e2e/pages/UserList.js +12 -0
  40. data/spec/examples/json.northpole.ro/public/app/e2e/protractor.conf.js +26 -0
  41. data/spec/examples/json.northpole.ro/public/app/e2e/scenarios/users.js +34 -0
  42. data/spec/examples/json.northpole.ro/public/app/gulpfile.js +104 -0
  43. data/spec/examples/json.northpole.ro/public/app/karma.conf.js +35 -0
  44. data/spec/examples/json.northpole.ro/public/app/package.json +30 -0
  45. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/avatar-1.svg +11 -0
  46. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/avatar-4.svg +16 -0
  47. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/avatars.svg +244 -0
  48. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/google_plus.svg +1 -0
  49. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/hangouts.svg +1 -0
  50. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/ic_fullscreen_48px.svg +4 -0
  51. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/ic_fullscreen_exit_48px.svg +4 -0
  52. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/ic_music_note_48px.svg +1 -0
  53. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/ic_note_add_48px.svg +1 -0
  54. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/ic_view_list_48px.svg +1 -0
  55. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/icon.svg +1 -0
  56. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/mail.svg +1 -0
  57. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/manggo.svg +1095 -0
  58. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/menu.svg +4 -0
  59. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/phone.svg +1 -0
  60. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/share.svg +3 -0
  61. data/spec/examples/json.northpole.ro/public/app/src/assets/svg/twitter.svg +1 -0
  62. data/spec/examples/json.northpole.ro/public/app/src/css/app.css +138 -0
  63. data/spec/examples/json.northpole.ro/public/app/src/css/app.css.map +7 -0
  64. data/spec/examples/json.northpole.ro/public/app/src/css/app.sass +145 -0
  65. data/spec/examples/json.northpole.ro/public/app/src/index.html +157 -0
  66. data/spec/examples/json.northpole.ro/public/app/src/js/MainController.coffee +167 -0
  67. data/spec/examples/json.northpole.ro/public/app/src/js/app.coffee +58 -0
  68. data/spec/examples/json.northpole.ro/public/app/src/js/blobs/BlobsController.coffee +115 -0
  69. data/spec/examples/json.northpole.ro/public/app/src/js/blobs/blobs.html +48 -0
  70. data/spec/examples/json.northpole.ro/public/app/src/js/tutorial/tutorial.html +15 -0
  71. data/spec/examples/json.northpole.ro/public/app/src/js/users/UserService.coffee +12 -0
  72. data/spec/examples/json.northpole.ro/public/app/src/js/users/Users.coffee +1 -0
  73. data/spec/examples/json.northpole.ro/public/app/src/js/users/users.html +8 -0
  74. data/spec/examples/json.northpole.ro/public/javascripts/jnorthpole.coffee +40 -7
  75. data/spec/examples/json.northpole.ro/public/javascripts/realtime.coffee +28 -0
  76. data/spec/examples/json.northpole.ro/public/{javascripts/music → music}/angular-youtube-embed.js +0 -0
  77. data/spec/examples/json.northpole.ro/public/music/index.html +126 -0
  78. data/spec/examples/json.northpole.ro/public/music/music.coffee +99 -0
  79. data/spec/examples/json.northpole.ro/public/music/music.sass +63 -0
  80. data/spec/examples/json.northpole.ro/public/stylesheets/app.sass +3 -0
  81. data/spec/examples/json.northpole.ro/views/faq.haml +7 -0
  82. data/spec/examples/json.northpole.ro/views/layout.haml +1 -0
  83. data/spec/examples/json.northpole.ro/views/music.haml +2 -0
  84. data/spec/examples/json.northpole.ro/views/websocket.haml +7 -0
  85. data/spec/lib/ki/channel_manager_spec.rb +82 -0
  86. data/spec/lib/ki/helpers_spec.rb +11 -0
  87. data/spec/lib/ki/ki_config_spec.rb +28 -0
  88. data/spec/lib/ki/middleware/admin_generator_spec.rb +8 -0
  89. data/spec/lib/ki/middleware/init_middleware_spec.rb +21 -0
  90. data/spec/lib/ki/middleware/realtime_spec.rb +96 -0
  91. data/spec/lib/ki/model_spec.rb +28 -7
  92. data/spec/lib/ki/modules/model_helper_spec.rb +31 -0
  93. data/spec/lib/ki/orm_spec.rb +26 -0
  94. metadata +211 -9
  95. data/spec/examples/json.northpole.ro/public/javascripts/docs.min.js +0 -16
  96. data/spec/examples/json.northpole.ro/views/awsum.haml +0 -108
@@ -0,0 +1 @@
1
+ <?xml version="1.0" ?><svg height="100%" id="Layer_1" version="1.1" viewBox="0 0 512 512" width="100%" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"><defs id="defs12"/><g id="g5956"><rect height="512" id="rect2987" style="fill:#d0422a;fill-opacity:1;fill-rule:nonzero;stroke:none" width="512" x="0" y="0"/><g id="g9-4" transform="matrix(1.5183435,0,0,1.5183435,-132.96848,-113.47295)"><g id="g11"><path d="m 263.2,262.02 -12.355,-9.595 c -3.762,-3.121 -8.91,-7.24 -8.91,-14.779 0,-7.571 5.148,-12.385 9.612,-16.841 14.393,-11.329 28.771,-23.383 28.771,-48.791 0,-26.125 -16.438,-39.866 -24.317,-46.389 h 21.243 l 22.295,-14.008 h -67.548 c -18.535,0 -45.246,4.386 -64.802,20.531 -14.743,12.714 -21.93,30.249 -21.93,46.034 0,26.793 20.576,53.955 56.903,53.955 3.434,0 7.185,-0.337 10.962,-0.688 -1.697,4.128 -3.413,7.565 -3.413,13.4 0,10.64 5.47,17.168 10.29,23.346 -15.434,1.064 -44.252,2.771 -65.498,15.829 -20.229,12.032 -26.389,29.542 -26.389,41.903 0,25.44 23.981,49.135 73.7,49.135 58.965,0 90.176,-32.623 90.176,-64.922 0.01,-23.732 -13.7,-35.41 -28.79,-48.12 z m -44.909,-39.51 c -29.497,0 -42.861,-38.131 -42.861,-61.141 0,-8.959 1.695,-18.206 7.531,-25.43 5.5,-6.879 15.077,-11.344 24.018,-11.344 28.436,0 43.184,38.475 43.184,63.219 0,6.191 -0.682,17.161 -8.566,25.095 -5.516,5.499 -14.742,9.601 -23.306,9.601 z m 0.335,138.156 c -36.679,0 -60.332,-17.547 -60.332,-41.943 0,-24.391 21.93,-32.642 29.479,-35.373 14.389,-4.844 32.909,-5.519 35.999,-5.519 3.428,0 5.143,0 7.871,0.345 26.078,18.555 37.398,27.807 37.398,45.375 0,21.271 -17.494,37.115 -50.415,37.115 z" id="path13-7" style="fill:#ffffff"/><polygon id="polygon15" points="349.78,273.703 349.78,239.142 384.245,239.142 384.245,221.987 349.78,221.987 349.78,187.634 332.812,187.634 332.812,221.987 298.517,221.987 298.517,239.142 332.812,239.142 332.812,273.703 " style="fill:#ffffff"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" ?><svg height="100%" id="Layer_1" version="1.1" viewBox="0 0 512 512" width="100%" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"><defs id="defs12"/><g id="g4140"><rect height="512" id="rect2987" rx="64" ry="64" style="fill:#4ea23b;fill-opacity:1;fill-rule:nonzero;stroke:none" width="512" x="0" y="0"/><path d="m 256.14463,55.999999 c -8.72864,0 -17.4643,0.416036 -23.6958,1.285198 C 157.57148,67.728768 97.795629,127.11048 86.471749,202.29838 c -5.931703,39.38528 2.41223,81.06355 22.999651,114.81102 13.31225,21.82179 32.4474,41.64038 53.28217,55.18319 25.44684,16.54059 52.74778,25.47927 84.60887,27.71209 l 8.35379,0.58905 0,27.17658 c 0,14.94505 0.24804,27.42476 0.56223,27.73886 1.12626,1.12635 3.00753,0.49827 11.64715,-3.82882 34.21317,-17.13546 65.30485,-39.66348 91.08841,-66.00028 38.35408,-39.17704 60.04634,-82.33677 67.33898,-133.95512 1.56357,-11.06648 1.32564,-38.18207 -0.4284,-49.13205 C 413.68883,126.20473 354.96136,67.762748 279.84042,57.285197 273.60884,56.416035 264.87326,55.999999 256.14463,55.999999 z m -81.28878,121.638641 55.87938,0 c 5.56243,0 10.04057,4.47811 10.04057,10.04061 l 0,64.98282 c 0,0.76253 0.0224,1.29427 -0.1071,2.0349 -0.54201,10.49187 -1.89104,14.40693 -5.00687,20.88447 -7.1517,14.86569 -21.78497,25.76229 -37.91335,28.24758 -2.91808,0.44966 -3.86767,0.22902 -5.35499,-1.25842 -1.61926,-1.61919 -1.82069,-2.79493 -1.82069,-11.19193 0,-10.69125 0.0903,-10.80959 8.11276,-13.41426 4.20106,-1.36411 9.16107,-4.46598 11.43287,-7.14891 2.50922,-2.96276 5.29296,-10.05873 5.30153,-13.52136 l 0,-3.64139 c -13.28287,0.11525 -27.13516,-0.1147 -40.56411,0 -5.56242,0 -10.04065,-4.50489 -10.04065,-10.06739 l 0,-55.90611 c 0,-5.5625 4.47814,-10.04061 10.04065,-10.04061 z m 106.43051,0 55.8793,0 c 5.5625,0 10.04056,4.47811 10.04056,10.04061 l 0,64.98282 c 0,0.76253 0.0225,1.29427 -0.1071,2.0349 -0.54192,10.49187 -1.89087,14.40693 -5.00687,20.88447 -7.15153,14.86569 -21.78488,25.76229 -37.91334,28.24758 -2.91809,0.44966 -3.86759,0.22902 -5.355,-1.25842 -1.61917,-1.61919 -1.82069,-2.79493 -1.82069,-11.19193 0,-10.69125 0.0904,-10.80959 8.11277,-13.41426 4.20114,-1.36411 9.16097,-4.46598 11.43295,-7.14891 2.50905,-2.96276 5.29287,-10.05873 5.30144,-13.52136 l 0,-3.64139 c -13.28269,0.11525 -27.13524,-0.1147 -40.56402,0 -5.56251,0 -10.04065,-4.50489 -10.04065,-10.06739 l 0,-55.90611 c 0,-5.5625 4.47805,-10.04061 10.04065,-10.04061 z" id="path12727-1" style="fill:#ffffff;fill-opacity:1"/></g></svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48">
2
+ <path d="M0 0h48v48H0z" fill="none"/>
3
+ <path d="M14 28h-4v10h10v-4h-6v-6zm-4-8h4v-6h6v-4H10v10zm24 14h-6v4h10V28h-4v6zm-6-24v4h6v6h4V10H28z"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48">
2
+ <path d="M0 0h48v48H0z" fill="none"/>
3
+ <path d="M10 32h6v6h4V28H10v4zm6-16h-6v4h10V10h-4v6zm12 22h4v-6h6v-4H28v10zm4-22v-6h-4v10h10v-4h-6z"/>
4
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><path d="M24 6v21.11c-1.18-.69-2.54-1.11-4-1.11-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8V14h8V6H24z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><path d="M28 4H12C9.79 4 8.02 5.79 8.02 8L8 40c0 2.21 1.77 4 3.98 4H36c2.21 0 4-1.79 4-4V16L28 4zm4 28h-6v6h-4v-6h-6v-4h6v-6h4v6h6v4zm-6-14V7l11 11H26z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><path d="M8 28h8v-8H8v8zm0 10h8v-8H8v8zm0-20h8v-8H8v8zm10 10h24v-8H18v8zm0 10h24v-8H18v8zm0-28v8h24v-8H18z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><path d="M10 32c0 7.73 6.27 14 14 14s14-6.27 14-14v-8H10v8zM32.25 8.74l4.2-4.2-1.65-1.65-4.61 4.61C28.31 6.57 26.23 6 24 6c-2.23 0-4.31.57-6.19 1.5L13.2 2.89l-1.65 1.65 4.2 4.2C12.28 11.28 10 15.36 10 20v2h28v-2c0-4.64-2.28-8.72-5.75-11.26zM18 18c-1.11 0-2-.9-2-2s.89-2 2-2c1.11 0 2 .9 2 2s-.89 2-2 2zm12 0c-1.11 0-2-.9-2-2s.89-2 2-2c1.11 0 2 .9 2 2s-.89 2-2 2z"/></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 512 512" height="100%" id="Layer_1" version="1.1" viewBox="0 0 512 512" width="100%" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M492.761,442.732c0,34.171-27.702,61.872-61.873,61.872H81.145c-34.171,0-61.874-27.701-61.874-61.872 V92.987c0-34.171,27.703-61.873,61.874-61.873h349.743c34.171,0,61.873,27.701,61.873,61.873V442.732z" fill="#0A5772"/><path d="M492.761,417.988c0,34.172-27.702,61.873-61.873,61.873H81.145c-34.171,0-61.874-27.701-61.874-61.873 V68.243c0-34.17,27.703-61.872,61.874-61.872h349.743c34.171,0,61.873,27.702,61.873,61.872V417.988z" fill="#0083BE"/><path d="M492.761,417.988V256.431c-2.005-2.024-4.021-4.037-6.077-6.001c-4.064-4.259-8.331-8.344-12.494-12.505 c-4.164-4.163-8.25-8.427-12.506-12.495c-4.064-4.259-8.331-8.344-12.494-12.505c-4.164-4.163-45.837-45.838-50-50 c-4.123-4.122-8.186-8.316-12.375-12.369c-5.834-5.643-13.697-8.774-21.803-8.774c-1.143,0-2.283,0-3.424,0 c-6.227,0-12.453,0-18.679,0c-10.159,0-20.319,0-30.479,0c-12.503,0-25.007,0-37.511,0c-13.258,0-26.517,0-39.775,0 c-12.424,0-24.849,0-37.273,0c-10,0-20.001,0-30.001,0c-5.987,0-11.976,0-17.963,0c-0.993,0-1.984,0-2.977,0 c-7.753,0-15.321,2.914-21.051,8.142c-6.441,5.876-10.178,14.323-10.178,23.043c0,1.254,0,2.508,0,3.761c0,8.134,0,16.269,0,24.403 c0,12.431,0,24.862,0,37.294c0,12.883,0,25.767,0,38.65c0,9.49,0,18.979,0,28.47c0,2.271,0,4.54,0,6.812 c0,5.676,1.182,11.18,3.985,16.162c2.677,4.755,6.76,8.547,10.665,12.289c4.071,4.254,8.331,8.344,12.494,12.505 c8.335,8.332,16.666,16.669,25,25c16.67,16.664,33.331,33.337,50,50c16.67,16.664,33.331,33.337,50,50 c0.509,0.51,1.016,1.028,1.522,1.55h161.52C465.059,479.861,492.761,452.16,492.761,417.988z" fill="#0064A2"/><path d="M365.15,141.781H146.883c-17.211,0-31.182,13.968-31.182,31.181v140.312 c0,17.205,13.971,31.182,31.182,31.182H365.15c17.207,0,31.182-13.977,31.182-31.182V172.962 C396.332,155.749,382.357,141.781,365.15,141.781z M211.211,256.749l26.746,23.362c5.088,4.448,11.53,6.636,18.061,6.636 c6.527,0,12.977-2.218,18.066-6.636l26.734-23.362l-0.621,0.617l60.875,60.857H150.958l60.868-60.857L211.211,256.749z M139.158,306.436V193.702l60.132,52.609L139.158,306.436z M312.75,246.311l60.129-52.609v112.685L312.75,246.311z M372.879,167.993 v3.504l-109.787,96.059c-3.789,3.311-10.357,3.311-14.146,0l-109.787-96.059v-3.504H372.879z" fill="#FFFFFF"/></svg>
@@ -0,0 +1,1095 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
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:xlink="http://www.w3.org/1999/xlink"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="778.42877mm"
14
+ height="677.27533mm"
15
+ viewBox="0 0 2758.2121 2399.7945"
16
+ id="svg2"
17
+ version="1.1"
18
+ inkscape:version="0.91 r13725"
19
+ inkscape:export-filename="C:\Users\ozant\Documents\fauzan syukri.png"
20
+ inkscape:export-xdpi="89.879997"
21
+ inkscape:export-ydpi="89.879997"
22
+ sodipodi:docname="manggo.svg">
23
+ <defs
24
+ id="defs4">
25
+ <linearGradient
26
+ inkscape:collect="always"
27
+ id="linearGradient8125">
28
+ <stop
29
+ style="stop-color:#000000;stop-opacity:1;"
30
+ offset="0"
31
+ id="stop8127" />
32
+ <stop
33
+ style="stop-color:#000000;stop-opacity:0;"
34
+ offset="1"
35
+ id="stop8129" />
36
+ </linearGradient>
37
+ <linearGradient
38
+ inkscape:collect="always"
39
+ id="linearGradient7610">
40
+ <stop
41
+ style="stop-color:#ffffff;stop-opacity:1;"
42
+ offset="0"
43
+ id="stop7612" />
44
+ <stop
45
+ style="stop-color:#ffffff;stop-opacity:0;"
46
+ offset="1"
47
+ id="stop7614" />
48
+ </linearGradient>
49
+ <linearGradient
50
+ inkscape:collect="always"
51
+ id="linearGradient7580">
52
+ <stop
53
+ style="stop-color:#785034;stop-opacity:1;"
54
+ offset="0"
55
+ id="stop7582" />
56
+ <stop
57
+ style="stop-color:#785034;stop-opacity:0;"
58
+ offset="1"
59
+ id="stop7584" />
60
+ </linearGradient>
61
+ <linearGradient
62
+ inkscape:collect="always"
63
+ id="linearGradient7540">
64
+ <stop
65
+ style="stop-color:#704438;stop-opacity:1;"
66
+ offset="0"
67
+ id="stop7542" />
68
+ <stop
69
+ style="stop-color:#704438;stop-opacity:0;"
70
+ offset="1"
71
+ id="stop7544" />
72
+ </linearGradient>
73
+ <linearGradient
74
+ inkscape:collect="always"
75
+ id="linearGradient7245">
76
+ <stop
77
+ style="stop-color:#ffffff;stop-opacity:0.549"
78
+ offset="0"
79
+ id="stop7247" />
80
+ <stop
81
+ style="stop-color:#ffffff;stop-opacity:0;"
82
+ offset="1"
83
+ id="stop7249" />
84
+ </linearGradient>
85
+ <linearGradient
86
+ inkscape:collect="always"
87
+ id="linearGradient7201">
88
+ <stop
89
+ style="stop-color:#004c00;stop-opacity:1;"
90
+ offset="0"
91
+ id="stop7203" />
92
+ <stop
93
+ style="stop-color:#006000;stop-opacity:1"
94
+ offset="1"
95
+ id="stop7205" />
96
+ </linearGradient>
97
+ <linearGradient
98
+ inkscape:collect="always"
99
+ id="linearGradient6721">
100
+ <stop
101
+ style="stop-color:#808080;stop-opacity:1;"
102
+ offset="0"
103
+ id="stop6723" />
104
+ <stop
105
+ style="stop-color:#808080;stop-opacity:0;"
106
+ offset="1"
107
+ id="stop6725" />
108
+ </linearGradient>
109
+ <linearGradient
110
+ inkscape:collect="always"
111
+ id="linearGradient6698">
112
+ <stop
113
+ style="stop-color:#ff6600;stop-opacity:1;"
114
+ offset="0"
115
+ id="stop6700" />
116
+ <stop
117
+ style="stop-color:#ff6600;stop-opacity:0;"
118
+ offset="1"
119
+ id="stop6702" />
120
+ </linearGradient>
121
+ <linearGradient
122
+ inkscape:collect="always"
123
+ id="linearGradient6690">
124
+ <stop
125
+ style="stop-color:#000000;stop-opacity:1;"
126
+ offset="0"
127
+ id="stop6692" />
128
+ <stop
129
+ style="stop-color:#000000;stop-opacity:0;"
130
+ offset="1"
131
+ id="stop6694" />
132
+ </linearGradient>
133
+ <linearGradient
134
+ inkscape:collect="always"
135
+ id="linearGradient6464">
136
+ <stop
137
+ style="stop-color:#ffffff;stop-opacity:1;"
138
+ offset="0"
139
+ id="stop6466" />
140
+ <stop
141
+ style="stop-color:#ffffff;stop-opacity:0;"
142
+ offset="1"
143
+ id="stop6468" />
144
+ </linearGradient>
145
+ <linearGradient
146
+ inkscape:collect="always"
147
+ id="linearGradient6448">
148
+ <stop
149
+ style="stop-color:#ffffff;stop-opacity:1;"
150
+ offset="0"
151
+ id="stop6450" />
152
+ <stop
153
+ style="stop-color:#ffffff;stop-opacity:0;"
154
+ offset="1"
155
+ id="stop6452" />
156
+ </linearGradient>
157
+ <linearGradient
158
+ inkscape:collect="always"
159
+ id="linearGradient6436">
160
+ <stop
161
+ style="stop-color:#ffffff;stop-opacity:1;"
162
+ offset="0"
163
+ id="stop6438" />
164
+ <stop
165
+ style="stop-color:#ffffff;stop-opacity:0;"
166
+ offset="1"
167
+ id="stop6440" />
168
+ </linearGradient>
169
+ <linearGradient
170
+ inkscape:collect="always"
171
+ id="linearGradient6318">
172
+ <stop
173
+ style="stop-color:#c4fc00;stop-opacity:1;"
174
+ offset="0"
175
+ id="stop6320" />
176
+ <stop
177
+ style="stop-color:#c4fc00;stop-opacity:0;"
178
+ offset="1"
179
+ id="stop6322" />
180
+ </linearGradient>
181
+ <clipPath
182
+ clipPathUnits="userSpaceOnUse"
183
+ id="clipPath4927">
184
+ <rect
185
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
186
+ id="rect4929"
187
+ width="2028.3864"
188
+ height="1042.4774"
189
+ x="-476.79199"
190
+ y="-38.602543"
191
+ ry="10.507653" />
192
+ </clipPath>
193
+ <clipPath
194
+ clipPathUnits="userSpaceOnUse"
195
+ id="clipPath4931">
196
+ <rect
197
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
198
+ id="rect4933"
199
+ width="2028.3864"
200
+ height="1042.4774"
201
+ x="-476.79199"
202
+ y="-38.602543"
203
+ ry="10.507653" />
204
+ </clipPath>
205
+ <clipPath
206
+ clipPathUnits="userSpaceOnUse"
207
+ id="clipPath4935">
208
+ <rect
209
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
210
+ id="rect4937"
211
+ width="2028.3864"
212
+ height="1042.4774"
213
+ x="-476.79199"
214
+ y="-38.602543"
215
+ ry="10.507653" />
216
+ </clipPath>
217
+ <clipPath
218
+ clipPathUnits="userSpaceOnUse"
219
+ id="clipPath4939">
220
+ <rect
221
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
222
+ id="rect4941"
223
+ width="2028.3864"
224
+ height="1042.4774"
225
+ x="-476.79199"
226
+ y="-38.602543"
227
+ ry="10.507653" />
228
+ </clipPath>
229
+ <clipPath
230
+ clipPathUnits="userSpaceOnUse"
231
+ id="clipPath4943">
232
+ <rect
233
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
234
+ id="rect4945"
235
+ width="2028.3864"
236
+ height="1042.4774"
237
+ x="-476.79199"
238
+ y="-38.602543"
239
+ ry="10.507653" />
240
+ </clipPath>
241
+ <clipPath
242
+ clipPathUnits="userSpaceOnUse"
243
+ id="clipPath4947">
244
+ <rect
245
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
246
+ id="rect4949"
247
+ width="2028.3864"
248
+ height="1042.4774"
249
+ x="-476.79199"
250
+ y="-38.602543"
251
+ ry="10.507653" />
252
+ </clipPath>
253
+ <clipPath
254
+ clipPathUnits="userSpaceOnUse"
255
+ id="clipPath4951">
256
+ <rect
257
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
258
+ id="rect4953"
259
+ width="2028.3864"
260
+ height="1042.4774"
261
+ x="-476.79199"
262
+ y="-38.602543"
263
+ ry="10.507653" />
264
+ </clipPath>
265
+ <clipPath
266
+ clipPathUnits="userSpaceOnUse"
267
+ id="clipPath4955">
268
+ <rect
269
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
270
+ id="rect4957"
271
+ width="2028.3864"
272
+ height="1042.4774"
273
+ x="-476.79199"
274
+ y="-38.602543"
275
+ ry="10.507653" />
276
+ </clipPath>
277
+ <clipPath
278
+ clipPathUnits="userSpaceOnUse"
279
+ id="clipPath4959">
280
+ <rect
281
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
282
+ id="rect4961"
283
+ width="2028.3864"
284
+ height="1042.4774"
285
+ x="-476.79199"
286
+ y="-38.602543"
287
+ ry="10.507653" />
288
+ </clipPath>
289
+ <clipPath
290
+ clipPathUnits="userSpaceOnUse"
291
+ id="clipPath4963">
292
+ <rect
293
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
294
+ id="rect4965"
295
+ width="2028.3864"
296
+ height="1042.4774"
297
+ x="-476.79199"
298
+ y="-38.602543"
299
+ ry="10.507653" />
300
+ </clipPath>
301
+ <filter
302
+ inkscape:collect="always"
303
+ style="color-interpolation-filters:sRGB"
304
+ id="filter6278"
305
+ x="-0.11968523"
306
+ width="1.2393705"
307
+ y="-0.17606331"
308
+ height="1.3521266">
309
+ <feGaussianBlur
310
+ inkscape:collect="always"
311
+ stdDeviation="117.67633"
312
+ id="feGaussianBlur6280" />
313
+ </filter>
314
+ <filter
315
+ inkscape:collect="always"
316
+ style="color-interpolation-filters:sRGB"
317
+ id="filter6282"
318
+ x="-0.12839073"
319
+ width="1.2567815"
320
+ y="-0.17732669"
321
+ height="1.3546534">
322
+ <feGaussianBlur
323
+ inkscape:collect="always"
324
+ stdDeviation="117.67633"
325
+ id="feGaussianBlur6284" />
326
+ </filter>
327
+ <filter
328
+ inkscape:collect="always"
329
+ style="color-interpolation-filters:sRGB"
330
+ id="filter6290"
331
+ x="-0.11968523"
332
+ width="1.2393705"
333
+ y="-0.17606331"
334
+ height="1.3521266">
335
+ <feGaussianBlur
336
+ inkscape:collect="always"
337
+ stdDeviation="117.67633"
338
+ id="feGaussianBlur6292" />
339
+ </filter>
340
+ <clipPath
341
+ clipPathUnits="userSpaceOnUse"
342
+ id="clipPath6308">
343
+ <path
344
+ sodipodi:nodetypes="sssssssss"
345
+ inkscape:connector-curvature="0"
346
+ id="path6310"
347
+ d="m 4113.2834,2330.7209 c 0,212.184 -124.3061,415.6775 -345.5724,565.7143 -221.2664,150.0367 -521.3679,234.3265 -834.2857,234.3265 -312.9178,0 -613.0194,-84.2898 -834.2857,-234.3265 -221.2664,-150.0368 -345.5725,-434.3425 -345.5725,-646.5265 0,-212.184 140.4686,-456.0836 361.7349,-606.1204 221.2664,-150.0367 505.2055,-113.1082 818.1233,-113.1082 312.9178,0 645.3442,140.8583 866.6105,290.8951 221.2663,150.0367 313.2476,296.9617 313.2476,509.1457 z"
348
+ style="opacity:1;fill:#b0fc00;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
349
+ </clipPath>
350
+ <clipPath
351
+ clipPathUnits="userSpaceOnUse"
352
+ id="clipPath6312">
353
+ <path
354
+ sodipodi:nodetypes="sssssssss"
355
+ inkscape:connector-curvature="0"
356
+ id="path6314"
357
+ d="m 4113.2834,2330.7209 c 0,212.184 -124.3061,415.6775 -345.5724,565.7143 -221.2664,150.0367 -521.3679,234.3265 -834.2857,234.3265 -312.9178,0 -613.0194,-84.2898 -834.2857,-234.3265 -221.2664,-150.0368 -345.5725,-434.3425 -345.5725,-646.5265 0,-212.184 140.4686,-456.0836 361.7349,-606.1204 221.2664,-150.0367 505.2055,-113.1082 818.1233,-113.1082 312.9178,0 645.3442,140.8583 866.6105,290.8951 221.2663,150.0367 313.2476,296.9617 313.2476,509.1457 z"
358
+ style="opacity:1;fill:#b0fc00;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
359
+ </clipPath>
360
+ <linearGradient
361
+ inkscape:collect="always"
362
+ xlink:href="#linearGradient6318"
363
+ id="linearGradient6324"
364
+ x1="3848.2866"
365
+ y1="2614.426"
366
+ x2="2078.9976"
367
+ y2="2100.1401"
368
+ gradientUnits="userSpaceOnUse" />
369
+ <filter
370
+ inkscape:collect="always"
371
+ style="color-interpolation-filters:sRGB"
372
+ id="filter6414"
373
+ x="-0.093097888"
374
+ width="1.1861959"
375
+ y="-0.12858203"
376
+ height="1.2571641">
377
+ <feGaussianBlur
378
+ inkscape:collect="always"
379
+ stdDeviation="85.328726"
380
+ id="feGaussianBlur6416" />
381
+ </filter>
382
+ <linearGradient
383
+ inkscape:collect="always"
384
+ xlink:href="#linearGradient6436"
385
+ id="linearGradient6442"
386
+ x1="176.42375"
387
+ y1="3856.3792"
388
+ x2="2203.6755"
389
+ y2="2199.2363"
390
+ gradientUnits="userSpaceOnUse"
391
+ gradientTransform="translate(218.19295,3519.4904)" />
392
+ <radialGradient
393
+ inkscape:collect="always"
394
+ xlink:href="#linearGradient6448"
395
+ id="radialGradient6454"
396
+ cx="3309.2642"
397
+ cy="2119.0876"
398
+ fx="3309.2642"
399
+ fy="2119.0876"
400
+ r="319.72406"
401
+ gradientTransform="matrix(1,0,0,0.81044711,218.19295,3989.741)"
402
+ gradientUnits="userSpaceOnUse" />
403
+ <radialGradient
404
+ inkscape:collect="always"
405
+ xlink:href="#linearGradient6464"
406
+ id="radialGradient6470"
407
+ cx="1947.5741"
408
+ cy="1883.7177"
409
+ fx="1947.5741"
410
+ fy="1883.7177"
411
+ r="363.65491"
412
+ gradientTransform="matrix(2.2520158,1.3433076,-0.75555554,1.2666667,-796.94725,470.55601)"
413
+ gradientUnits="userSpaceOnUse" />
414
+ <filter
415
+ inkscape:collect="always"
416
+ style="color-interpolation-filters:sRGB"
417
+ id="filter6556"
418
+ x="-0.24933334"
419
+ width="1.4986666"
420
+ y="-0.28049999"
421
+ height="1.561">
422
+ <feGaussianBlur
423
+ inkscape:collect="always"
424
+ stdDeviation="75.559407"
425
+ id="feGaussianBlur6558" />
426
+ </filter>
427
+ <filter
428
+ inkscape:collect="always"
429
+ style="color-interpolation-filters:sRGB"
430
+ id="filter6620"
431
+ x="-0.17377216"
432
+ width="1.3475443"
433
+ y="-0.2145"
434
+ height="1.429">
435
+ <feGaussianBlur
436
+ inkscape:collect="always"
437
+ stdDeviation="46.22458"
438
+ id="feGaussianBlur6622" />
439
+ </filter>
440
+ <filter
441
+ inkscape:collect="always"
442
+ style="color-interpolation-filters:sRGB"
443
+ id="filter6686"
444
+ x="-0.17491694"
445
+ width="1.3498338"
446
+ y="-0.18538733"
447
+ height="1.3707747">
448
+ <feGaussianBlur
449
+ inkscape:collect="always"
450
+ stdDeviation="88.640887"
451
+ id="feGaussianBlur6688" />
452
+ </filter>
453
+ <linearGradient
454
+ inkscape:collect="always"
455
+ xlink:href="#linearGradient6690"
456
+ id="linearGradient6696"
457
+ x1="1860.095"
458
+ y1="1811.9971"
459
+ x2="2762.3633"
460
+ y2="2026.1494"
461
+ gradientUnits="userSpaceOnUse"
462
+ gradientTransform="translate(218.19295,3588.0618)" />
463
+ <linearGradient
464
+ inkscape:collect="always"
465
+ xlink:href="#linearGradient6698"
466
+ id="linearGradient6704"
467
+ x1="1860.095"
468
+ y1="1811.9971"
469
+ x2="2762.3633"
470
+ y2="2026.1494"
471
+ gradientUnits="userSpaceOnUse"
472
+ gradientTransform="translate(218.19295,3588.0618)" />
473
+ <linearGradient
474
+ inkscape:collect="always"
475
+ xlink:href="#linearGradient6721"
476
+ id="linearGradient6727"
477
+ x1="2651.7158"
478
+ y1="1130.765"
479
+ x2="2673.0889"
480
+ y2="1862.6638"
481
+ gradientUnits="userSpaceOnUse"
482
+ gradientTransform="translate(148.57143,68.571428)" />
483
+ <filter
484
+ inkscape:collect="always"
485
+ style="color-interpolation-filters:sRGB"
486
+ id="filter6769"
487
+ x="-0.08478386"
488
+ width="1.1695677"
489
+ y="-0.20525581"
490
+ height="1.4105116">
491
+ <feGaussianBlur
492
+ inkscape:collect="always"
493
+ stdDeviation="73.030038"
494
+ id="feGaussianBlur6771" />
495
+ </filter>
496
+ <filter
497
+ inkscape:collect="always"
498
+ style="color-interpolation-filters:sRGB"
499
+ id="filter6979"
500
+ x="-0.588"
501
+ width="2.1760001"
502
+ y="-0.588"
503
+ height="2.1760001">
504
+ <feGaussianBlur
505
+ inkscape:collect="always"
506
+ stdDeviation="23.800001"
507
+ id="feGaussianBlur6981" />
508
+ </filter>
509
+ <filter
510
+ inkscape:collect="always"
511
+ style="color-interpolation-filters:sRGB"
512
+ id="filter7193"
513
+ x="-0.66000003"
514
+ width="2.3199999"
515
+ y="-0.66000003"
516
+ height="2.3199999">
517
+ <feGaussianBlur
518
+ inkscape:collect="always"
519
+ stdDeviation="26.714287"
520
+ id="feGaussianBlur7195" />
521
+ </filter>
522
+ <linearGradient
523
+ inkscape:collect="always"
524
+ xlink:href="#linearGradient7201"
525
+ id="linearGradient7207"
526
+ x1="2912.21"
527
+ y1="579.70874"
528
+ x2="1925.9934"
529
+ y2="1561.577"
530
+ gradientUnits="userSpaceOnUse"
531
+ gradientTransform="translate(218.19295,3588.0618)" />
532
+ <filter
533
+ inkscape:collect="always"
534
+ style="color-interpolation-filters:sRGB"
535
+ id="filter7217"
536
+ x="-0.040273383"
537
+ width="1.0805469"
538
+ y="-0.032546513"
539
+ height="1.065093">
540
+ <feGaussianBlur
541
+ inkscape:collect="always"
542
+ stdDeviation="18.849447"
543
+ id="feGaussianBlur7219" />
544
+ </filter>
545
+ <radialGradient
546
+ inkscape:collect="always"
547
+ xlink:href="#linearGradient7245"
548
+ id="radialGradient7251"
549
+ cx="2260.428"
550
+ cy="1200.4868"
551
+ fx="2260.428"
552
+ fy="1200.4868"
553
+ r="496.99506"
554
+ gradientTransform="matrix(0.42817359,0.28437927,-0.56594128,0.85210539,2148.0372,3176.6945)"
555
+ gradientUnits="userSpaceOnUse" />
556
+ <filter
557
+ inkscape:collect="always"
558
+ style="color-interpolation-filters:sRGB"
559
+ id="filter7357"
560
+ x="-0.30087805"
561
+ width="1.6017561"
562
+ y="-0.27617911"
563
+ height="1.5523582">
564
+ <feGaussianBlur
565
+ inkscape:collect="always"
566
+ stdDeviation="124.61242"
567
+ id="feGaussianBlur7359" />
568
+ </filter>
569
+ <filter
570
+ inkscape:collect="always"
571
+ style="color-interpolation-filters:sRGB"
572
+ id="filter7385"
573
+ x="-0.21487513"
574
+ width="1.4297503"
575
+ y="-0.043245278"
576
+ height="1.0864906">
577
+ <feGaussianBlur
578
+ inkscape:collect="always"
579
+ stdDeviation="8.185713"
580
+ id="feGaussianBlur7387" />
581
+ </filter>
582
+ <filter
583
+ inkscape:collect="always"
584
+ style="color-interpolation-filters:sRGB"
585
+ id="filter7397"
586
+ x="-0.037810054"
587
+ width="1.0756201"
588
+ y="-0.065708742"
589
+ height="1.1314175">
590
+ <feGaussianBlur
591
+ inkscape:collect="always"
592
+ stdDeviation="8.0571428"
593
+ id="feGaussianBlur7399" />
594
+ </filter>
595
+ <filter
596
+ inkscape:collect="always"
597
+ style="color-interpolation-filters:sRGB"
598
+ id="filter7421"
599
+ x="-0.23519278"
600
+ width="1.4703856"
601
+ y="-0.035971936"
602
+ height="1.0719439">
603
+ <feGaussianBlur
604
+ inkscape:collect="always"
605
+ stdDeviation="8.7834402"
606
+ id="feGaussianBlur7423" />
607
+ </filter>
608
+ <linearGradient
609
+ inkscape:collect="always"
610
+ xlink:href="#linearGradient7540"
611
+ id="linearGradient7546"
612
+ x1="2120.29"
613
+ y1="5619.7671"
614
+ x2="2207.1833"
615
+ y2="5619.7671"
616
+ gradientUnits="userSpaceOnUse" />
617
+ <filter
618
+ inkscape:collect="always"
619
+ style="color-interpolation-filters:sRGB"
620
+ id="filter7576"
621
+ x="-0.1372105"
622
+ width="1.274421"
623
+ y="-0.060527366"
624
+ height="1.1210546">
625
+ <feGaussianBlur
626
+ inkscape:collect="always"
627
+ stdDeviation="4.967776"
628
+ id="feGaussianBlur7578" />
629
+ </filter>
630
+ <linearGradient
631
+ inkscape:collect="always"
632
+ xlink:href="#linearGradient7580"
633
+ id="linearGradient7586"
634
+ x1="2103.5686"
635
+ y1="5621.396"
636
+ x2="2199.7656"
637
+ y2="5595.6821"
638
+ gradientUnits="userSpaceOnUse" />
639
+ <filter
640
+ inkscape:collect="always"
641
+ style="color-interpolation-filters:sRGB"
642
+ id="filter7604"
643
+ x="-0.073636375"
644
+ width="1.1472728"
645
+ y="-0.050624993"
646
+ height="1.1012501">
647
+ <feGaussianBlur
648
+ inkscape:collect="always"
649
+ stdDeviation="4.0911175"
650
+ id="feGaussianBlur7606" />
651
+ </filter>
652
+ <linearGradient
653
+ inkscape:collect="always"
654
+ xlink:href="#linearGradient7610"
655
+ id="linearGradient7616"
656
+ x1="2076.8735"
657
+ y1="5682.9019"
658
+ x2="2230.4167"
659
+ y2="5791.998"
660
+ gradientUnits="userSpaceOnUse" />
661
+ <filter
662
+ inkscape:collect="always"
663
+ style="color-interpolation-filters:sRGB"
664
+ id="filter7650"
665
+ x="-0.098577186"
666
+ width="1.1971544"
667
+ y="-0.093554139"
668
+ height="1.1871083">
669
+ <feGaussianBlur
670
+ inkscape:collect="always"
671
+ stdDeviation="24.728534"
672
+ id="feGaussianBlur7652" />
673
+ </filter>
674
+ <filter
675
+ inkscape:collect="always"
676
+ style="color-interpolation-filters:sRGB"
677
+ id="filter7872"
678
+ x="-0.23191445"
679
+ width="1.4638289"
680
+ y="-0.47657141"
681
+ height="1.9531428">
682
+ <feGaussianBlur
683
+ inkscape:collect="always"
684
+ stdDeviation="103.25714"
685
+ id="feGaussianBlur7874" />
686
+ </filter>
687
+ <linearGradient
688
+ inkscape:collect="always"
689
+ xlink:href="#linearGradient8125"
690
+ id="linearGradient8131"
691
+ x1="2315.825"
692
+ y1="6508.5649"
693
+ x2="5240.3877"
694
+ y2="6508.5649"
695
+ gradientUnits="userSpaceOnUse" />
696
+ </defs>
697
+ <sodipodi:namedview
698
+ id="base"
699
+ pagecolor="#ffffff"
700
+ bordercolor="#666666"
701
+ borderopacity="1.0"
702
+ inkscape:pageopacity="0.0"
703
+ inkscape:pageshadow="2"
704
+ inkscape:zoom="0.04375"
705
+ inkscape:cx="5102.3074"
706
+ inkscape:cy="-1705.1219"
707
+ inkscape:document-units="px"
708
+ inkscape:current-layer="layer1"
709
+ showgrid="false"
710
+ showborder="false"
711
+ inkscape:window-width="1280"
712
+ inkscape:window-height="962"
713
+ inkscape:window-x="-8"
714
+ inkscape:window-y="-8"
715
+ inkscape:window-maximized="1"
716
+ fit-margin-top="0"
717
+ fit-margin-left="0"
718
+ fit-margin-right="0"
719
+ fit-margin-bottom="0" />
720
+ <metadata
721
+ id="metadata7">
722
+ <rdf:RDF>
723
+ <cc:Work
724
+ rdf:about="">
725
+ <dc:format>image/svg+xml</dc:format>
726
+ <dc:type
727
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
728
+ <dc:title></dc:title>
729
+ </cc:Work>
730
+ </rdf:RDF>
731
+ </metadata>
732
+ <g
733
+ inkscape:label="Layer 1"
734
+ inkscape:groupmode="layer"
735
+ id="layer1"
736
+ transform="translate(-1682.7788,-4574.3086)">
737
+ <g
738
+ id="g8187"
739
+ transform="matrix(0.80089172,0,0,0.80089172,335.0552,1388.6017)">
740
+ <path
741
+ inkscape:connector-curvature="0"
742
+ id="path6316"
743
+ d="m 2796.998,5069.0098 c -195.027,-0.086 -371.9831,16.321 -520.6464,117.1269 -221.2663,150.0367 -361.7344,393.9352 -361.7344,606.1192 0,212.1839 124.3059,496.4905 345.5723,646.5273 221.2663,150.0367 521.3673,234.3262 834.2851,234.3262 312.9178,0 613.0207,-84.2895 834.2871,-234.3262 221.2663,-150.0368 345.5723,-353.5309 345.5723,-565.7148 0,-212.184 -91.9818,-359.1097 -313.2481,-509.1465 -221.2663,-150.0367 -553.6935,-290.8946 -866.6113,-290.8946 -102.6761,0 -202.2308,-3.9753 -297.4766,-4.0175 z"
744
+ style="opacity:1;fill:#b0fc00;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
745
+ <path
746
+ transform="matrix(1.0524397,0,0,0.57537927,-388.4867,2605.2264)"
747
+ sodipodi:nodetypes="sssssssss"
748
+ inkscape:connector-curvature="0"
749
+ id="path5241"
750
+ d="m 4957.9644,6510.5741 c 0,212.184 -124.3061,415.6775 -345.5724,565.7143 -221.2664,150.0367 -521.3679,234.3265 -834.2857,234.3265 -312.9178,0 -613.0194,-84.2898 -834.2857,-234.3265 -221.2664,-150.0368 -345.5725,-434.3425 -345.5725,-646.5265 0,-212.184 140.4686,-456.0836 361.7349,-606.1204 221.2664,-150.0367 505.2055,-113.1082 818.1233,-113.1082 312.9178,0 645.3442,140.8583 866.6105,290.8951 221.2663,150.0367 313.2476,296.9617 313.2476,509.1457 z"
751
+ style="opacity:0.71300001;fill:url(#linearGradient8131);fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6290)" />
752
+ <path
753
+ transform="translate(218.19295,3588.0618)"
754
+ clip-path="url(#clipPath6312)"
755
+ sodipodi:nodetypes="sssssssss"
756
+ inkscape:connector-curvature="0"
757
+ id="path6160"
758
+ d="m 4147.5691,2450.7065 c 0,210.6722 -115.8776,412.7159 -322.1409,561.6838 -206.2635,148.9677 -486.0167,232.657 -777.7172,232.657 -291.7005,0 -571.4538,-83.6893 -777.7172,-232.657 -206.2634,-148.9679 -322.141,-431.248 -322.141,-641.9203 0,-210.6722 130.9442,-452.8342 337.2076,-601.802 206.2634,-148.9678 470.9501,-112.3024 762.6506,-112.3024 291.7005,0 601.5868,139.8548 807.8502,288.8226 206.2634,148.9678 292.0079,294.846 292.0079,505.5183 z"
759
+ style="opacity:1;fill:#e8fc00;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6282)" />
760
+ <path
761
+ inkscape:connector-curvature="0"
762
+ id="path6158"
763
+ d="m 2782.8828,5080.4375 c -181.8033,-0.086 -346.7605,16.2052 -485.3437,116.293 -206.2634,148.9678 -337.2071,391.1286 -337.2071,601.8007 0,210.6724 115.8773,492.9521 322.1407,641.92 206.2634,148.9677 486.0163,232.6582 777.7168,232.6582 291.7005,0 571.4532,-83.6905 777.7167,-232.6582 206.2637,-148.9679 322.1407,-351.0114 322.1407,-561.6836 0,-210.6723 -85.7444,-356.5498 -292.0078,-505.5176 -206.2634,-148.9678 -516.1491,-288.8223 -807.8496,-288.8223 -95.7143,0 -188.519,-3.9483 -277.3067,-3.9902 z"
764
+ style="opacity:1;fill:#ff9900;fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6414)" />
765
+ <path
766
+ transform="translate(218.19295,3588.0618)"
767
+ clip-path="url(#clipPath6308)"
768
+ style="opacity:1;fill:url(#linearGradient6324);fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6278)"
769
+ d="m 4558.9976,2479.2923 c 0,212.184 -124.3061,415.6775 -345.5724,565.7143 -221.2664,150.0367 -521.3679,234.3265 -834.2857,234.3265 -312.9178,0 -613.0194,-84.2898 -834.2857,-234.3265 -221.2664,-150.0368 -345.5725,-434.3425 -345.5725,-646.5265 0,-212.184 140.4686,-456.0836 361.7349,-606.1204 221.2664,-150.0367 505.2055,-113.1082 818.1233,-113.1082 312.9178,0 645.3442,140.8583 866.6105,290.8951 221.2663,150.0367 313.2476,296.9617 313.2476,509.1457 z"
770
+ id="path6162"
771
+ inkscape:connector-curvature="0"
772
+ sodipodi:nodetypes="sssssssss" />
773
+ <path
774
+ transform="matrix(0.99370372,0.1120398,-0.1120398,0.99370372,515.17915,3280.4325)"
775
+ inkscape:connector-curvature="0"
776
+ id="path6716"
777
+ d="m 2773.0896,1538.0909 c -195.027,-0.086 -371.9811,16.3191 -520.6445,117.125 -24.084,16.331 -47.2082,33.7769 -69.3008,52.17 l 147.9317,102.4121 581.8476,-113.1368 686.9024,202.0313 331.33,121.2168 299.0059,274.7617 17.9707,97.3398 c 1.5233,-16.5521 2.293,-33.18 2.293,-49.8613 0,-212.184 -91.9798,-359.1097 -313.2461,-509.1465 -221.2663,-150.0367 -553.6936,-290.8945 -866.6114,-290.8945 -102.6761,0 -202.2327,-3.9754 -297.4785,-4.0176 z"
778
+ style="opacity:1;fill:url(#linearGradient6727);fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6769)" />
779
+ <path
780
+ inkscape:connector-curvature="0"
781
+ id="path6428"
782
+ d="m 2029.9806,5472.9159 c -52.1966,97.544 -81.0782,200.2728 -81.0782,296.4824 0,212.184 124.3059,496.4906 345.5723,646.5273 221.2663,150.0367 521.3693,234.3262 834.2871,234.3262 312.9178,0 613.0188,-84.2895 834.2852,-234.3262 24.6334,-16.7035 48.0577,-34.0741 70.25,-52.041 l -683.6758,-89.1758 c 0,0 -528.8147,-24.555 -742.8574,-160 -174.4882,-110.4152 -228.92,-347.6651 -377.1426,-491.4277 -48.126,-46.6779 -134.4154,-107.0839 -199.6406,-150.3652 z"
783
+ style="opacity:1;fill:url(#linearGradient6442);fill-opacity:1;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
784
+ <path
785
+ inkscape:connector-curvature="0"
786
+ id="path6446"
787
+ d="m 3644.6309,5448.5469 -282.8438,24.2422 -145.4609,121.2187 -8.0821,137.3809 210.1114,234.3554 371.7363,-40.4062 56.5684,-129.2988 -40.4063,-210.1114 -161.623,-137.3808 z"
788
+ style="opacity:0.756;fill:url(#radialGradient6454);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter6620)" />
789
+ <path
790
+ inkscape:connector-curvature="0"
791
+ id="path6444"
792
+ d="m 2392.041,5157.623 -169.7051,88.8926 -145.4629,153.543 -64.6484,177.7871 121.2168,177.7871 177.7871,48.4863 -16.1621,-121.2168 387.8984,-274.7617 -266.6796,-8.082 323.248,-234.3555 -347.4922,-8.0801 z"
793
+ style="opacity:0.79500002;fill:url(#radialGradient6470);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter6556)" />
794
+ <path
795
+ inkscape:connector-curvature="0"
796
+ id="path6624"
797
+ d="m 2517.3008,5088.9316 -84.8535,88.8946 145.4629,60.6074 -222.2344,48.4883 210.1113,88.8926 -16.1621,113.1367 -68.6895,52.5293 -109.0976,40.4062 -20.2031,113.1367 -117.1778,-32.3242 -193.9492,-36.3672 32.3242,113.1387 -28.2832,185.8672 101.0157,141.4219 222.2324,161.625 88.8945,8.08 -153.543,-133.3398 84.8516,0 197.9902,84.8535 c 0,0 16.1624,-72.731 -20.2031,-96.9746 -36.3655,-24.2437 -60.6094,-52.5293 -60.6094,-52.5293 l 387.8985,-4.041 -185.8672,-105.0547 c 0,0 -56.5684,-56.5684 -36.3652,-56.5684 20.2028,0 258.5976,-44.4472 258.5976,-44.4472 l 129.3008,-117.1778 -266.6797,-28.2832 165.6641,-121.2187 299.0058,-141.4219 -149.5039,-88.8926 -145.4609,16.1621 76.7715,-222.2343 -250.5176,161.625 -36.3653,-157.584 177.7852,-40.4063 -412.1406,0 z"
798
+ style="fill:url(#linearGradient6704);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6696);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter6686)" />
799
+ <path
800
+ inkscape:connector-curvature="0"
801
+ id="path7654"
802
+ d="m 2771.4277,5069.5059 -382.8554,114.2851 -251.4297,211.4278 5.7148,125.7148 -28.5722,68.5723 142.8574,-62.8575 394.2851,-62.8574 411.4297,-240 120,-142.8574 -411.4297,-11.4277 z"
803
+ style="opacity:0.45700001;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter7872)" />
804
+ <path
805
+ inkscape:connector-curvature="0"
806
+ id="path5244"
807
+ d="m 3254.5332,4131.1504 c 0,0 -922.4376,131.4382 -1155.6152,476.793 -182.3961,270.1434 -8.0801,929.3408 -8.0801,977.8281 l 88.8926,-80.8125 c 0,0 409.4036,-274.3326 565.6855,-460.6309 223.9794,-266.9983 509.1172,-913.1777 509.1172,-913.1777 z"
808
+ style="fill:url(#linearGradient7207);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
809
+ <circle
810
+ transform="matrix(0.77022061,0,0,0.77022061,696.13935,4125.2984)"
811
+ r="48.57143"
812
+ cy="2232.3623"
813
+ cx="2185.7144"
814
+ id="path6773"
815
+ style="opacity:0.38636361;fill:#ffcc00;fill-opacity:0.9372549;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6979)" />
816
+ <circle
817
+ transform="matrix(0.24307965,0,0,0.24307965,1792.6046,5357.7822)"
818
+ style="opacity:0.22699998;fill:#ffcc00;fill-opacity:0.9372549;stroke:none;stroke-width:1.10599995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter7193)"
819
+ id="circle7119"
820
+ cx="2185.7144"
821
+ cy="2232.3623"
822
+ r="48.57143" />
823
+ <use
824
+ transform="translate(79.120253,-361.69061)"
825
+ height="100%"
826
+ width="100%"
827
+ y="0"
828
+ x="0"
829
+ xlink:href="#circle7119"
830
+ id="use7121" />
831
+ <use
832
+ transform="translate(200.48885,665.28449)"
833
+ height="100%"
834
+ width="100%"
835
+ y="0"
836
+ x="0"
837
+ xlink:href="#circle7119"
838
+ id="use7123" />
839
+ <use
840
+ transform="translate(437.54734,437.57589)"
841
+ height="100%"
842
+ width="100%"
843
+ y="0"
844
+ x="0"
845
+ xlink:href="#circle7119"
846
+ id="use7125" />
847
+ <use
848
+ transform="translate(496.50305,515.67609)"
849
+ height="100%"
850
+ width="100%"
851
+ y="0"
852
+ x="0"
853
+ xlink:href="#circle7119"
854
+ id="use7127" />
855
+ <use
856
+ transform="translate(540.48892,558.90379)"
857
+ height="100%"
858
+ width="100%"
859
+ y="0"
860
+ x="0"
861
+ xlink:href="#circle7119"
862
+ id="use7129" />
863
+ <use
864
+ transform="matrix(0.65363309,0,0,0.65363309,965.89479,1971.0077)"
865
+ height="100%"
866
+ width="100%"
867
+ y="0"
868
+ x="0"
869
+ xlink:href="#circle7119"
870
+ id="use7131" />
871
+ <use
872
+ transform="translate(610.75538,-434.42511)"
873
+ height="100%"
874
+ width="100%"
875
+ y="0"
876
+ x="0"
877
+ xlink:href="#circle7119"
878
+ id="use7133" />
879
+ <use
880
+ transform="translate(240.60928,286.88859)"
881
+ height="100%"
882
+ width="100%"
883
+ y="0"
884
+ x="0"
885
+ xlink:href="#circle7119"
886
+ id="use7135" />
887
+ <use
888
+ transform="translate(274.53818,-43.522512)"
889
+ height="100%"
890
+ width="100%"
891
+ y="0"
892
+ x="0"
893
+ xlink:href="#circle7119"
894
+ id="use7137" />
895
+ <use
896
+ transform="translate(-326.27336,314.27489)"
897
+ height="100%"
898
+ width="100%"
899
+ y="0"
900
+ x="0"
901
+ xlink:href="#circle7119"
902
+ id="use7139" />
903
+ <use
904
+ transform="translate(-613.73688,-61.637512)"
905
+ height="100%"
906
+ width="100%"
907
+ y="0"
908
+ x="0"
909
+ xlink:href="#circle7119"
910
+ id="use7141" />
911
+ <use
912
+ transform="translate(-243.02787,390.27059)"
913
+ height="100%"
914
+ width="100%"
915
+ y="0"
916
+ x="0"
917
+ xlink:href="#circle7119"
918
+ id="use7143" />
919
+ <use
920
+ transform="translate(-296.87141,668.02949)"
921
+ height="100%"
922
+ width="100%"
923
+ y="0"
924
+ x="0"
925
+ xlink:href="#circle7119"
926
+ id="use7145" />
927
+ <use
928
+ transform="translate(66.770893,272.33129)"
929
+ height="100%"
930
+ width="100%"
931
+ y="0"
932
+ x="0"
933
+ xlink:href="#circle7119"
934
+ id="use7147" />
935
+ <use
936
+ transform="translate(-18.378587,670.36569)"
937
+ height="100%"
938
+ width="100%"
939
+ y="0"
940
+ x="0"
941
+ xlink:href="#circle7119"
942
+ id="use7149" />
943
+ <use
944
+ transform="translate(371.93425,607.49879)"
945
+ height="100%"
946
+ width="100%"
947
+ y="0"
948
+ x="0"
949
+ xlink:href="#circle7119"
950
+ id="use7151" />
951
+ <use
952
+ transform="translate(218.52985,694.86929)"
953
+ height="100%"
954
+ width="100%"
955
+ y="0"
956
+ x="0"
957
+ xlink:href="#circle7119"
958
+ id="use7153" />
959
+ <use
960
+ transform="translate(271.54703,767.27429)"
961
+ height="100%"
962
+ width="100%"
963
+ y="0"
964
+ x="0"
965
+ xlink:href="#circle7119"
966
+ id="use7155" />
967
+ <use
968
+ transform="translate(1526.5314,-63.747512)"
969
+ height="100%"
970
+ width="100%"
971
+ y="0"
972
+ x="0"
973
+ xlink:href="#circle7119"
974
+ id="use7157" />
975
+ <use
976
+ transform="translate(1592.8883,168.63459)"
977
+ height="100%"
978
+ width="100%"
979
+ y="0"
980
+ x="0"
981
+ xlink:href="#circle7119"
982
+ id="use7159" />
983
+ <use
984
+ transform="translate(1282.1286,-535.58351)"
985
+ height="100%"
986
+ width="100%"
987
+ y="0"
988
+ x="0"
989
+ xlink:href="#circle7119"
990
+ id="use7161" />
991
+ <use
992
+ transform="translate(924.55547,-571.98431)"
993
+ height="100%"
994
+ width="100%"
995
+ y="0"
996
+ x="0"
997
+ xlink:href="#circle7119"
998
+ id="use7163" />
999
+ <use
1000
+ transform="translate(319.08974,-536.16451)"
1001
+ height="100%"
1002
+ width="100%"
1003
+ y="0"
1004
+ x="0"
1005
+ xlink:href="#circle7119"
1006
+ id="use7165" />
1007
+ <use
1008
+ transform="translate(318.14087,-478.37331)"
1009
+ height="100%"
1010
+ width="100%"
1011
+ y="0"
1012
+ x="0"
1013
+ xlink:href="#circle7119"
1014
+ id="use7167" />
1015
+ <use
1016
+ transform="translate(80.618593,-215.50771)"
1017
+ height="100%"
1018
+ width="100%"
1019
+ y="0"
1020
+ x="0"
1021
+ xlink:href="#circle7119"
1022
+ id="use7169" />
1023
+ <use
1024
+ transform="translate(-205.62468,-31.830912)"
1025
+ height="100%"
1026
+ width="100%"
1027
+ y="0"
1028
+ x="0"
1029
+ xlink:href="#circle7119"
1030
+ id="use7171" />
1031
+ <path
1032
+ inkscape:connector-curvature="0"
1033
+ id="path7199"
1034
+ d="m 3240.5684,4139.3887 -153.543,56.5683 -303.0449,133.3399 -56.5684,40.4062 -101.0156,56.5684 -96.9746,52.5273 c 0,0 -20.2032,20.2045 -60.6094,72.7324 -40.4061,52.528 -141.4219,161.6231 -141.4219,161.6231 l -80.8105,145.4629 -48.4883,101.0156 c 0,0 -16.1621,129.2989 -16.1621,149.502 0,20.203 -16.1621,96.9746 -16.1621,96.9746 l -44.4473,133.3398 -4.041,189.9082 189.9082,-404.0605 101.0156,-258.5996 145.4629,-169.7051 105.0547,-125.2578 44.4473,-64.6504 206.0722,-137.3809 331.3282,-230.3144 z"
1035
+ style="fill:#006c00;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter7217)" />
1036
+ <path
1037
+ transform="matrix(-0.39415524,-0.91904387,-0.91904387,0.39415524,4112.6821,6390.0943)"
1038
+ style="opacity:0.65899999;fill:#004000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter7421)"
1039
+ d="m 2075.7215,1013.8821 157.1428,-59.99998 185.7143,-54.2857 114.2857,-122.85718 -85.7143,134.28568 -80,28.5715 -217.1428,71.42848 -128.5715,60 z"
1040
+ id="path7233"
1041
+ inkscape:connector-curvature="0" />
1042
+ <path
1043
+ inkscape:connector-curvature="0"
1044
+ id="path7197"
1045
+ d="m 3256.7324,4127.2656 c 0,0 -461.8981,198.973 -650.539,359.6153 -114.6701,97.6504 -208.0615,222.6063 -278.8028,355.5742 -113.0309,212.4567 -222.2324,686.9023 -222.2324,686.9023 l 206.0703,-557.6035 117.1777,-214.1523 c 0,0 142.0041,-184.2657 230.3145,-258.5996 179.5661,-151.1469 598.0117,-371.7364 598.0117,-371.7364 z"
1046
+ style="fill:#009400;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
1047
+ <path
1048
+ inkscape:connector-curvature="0"
1049
+ id="path7221"
1050
+ d="m 2186.7643,5203.2811 -57.1428,-165.7142 -34.2857,-288.5715 5.7142,191.4286 0,105.7143 62.8572,154.2857 z"
1051
+ style="opacity:0.68800001;fill:#004000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter7385)" />
1052
+ <path
1053
+ inkscape:connector-curvature="0"
1054
+ id="path7223"
1055
+ d="m 2435.3358,4791.8526 157.1428,-60 185.7143,-54.2857 114.2857,-122.8572 -85.7143,134.2857 -80,28.5715 -217.1428,71.4285 -128.5715,60 z"
1056
+ style="opacity:0.656;fill:#004000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter7397)" />
1057
+ <path
1058
+ inkscape:connector-curvature="0"
1059
+ id="path7474"
1060
+ d="m 2136.7896,5582.1733 36.3654,-60.6091 32.3249,44.4467 0,84.8528 -28.2842,64.6498 -92.9341,-40.4061 -12.1218,-60.6092 z"
1061
+ style="fill:url(#linearGradient7586);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter7604)" />
1062
+ <path
1063
+ inkscape:connector-curvature="0"
1064
+ id="path7235"
1065
+ d="m 2796.1016,4276.7695 -270.7207,96.9746 -242.4356,88.8926 c 0,0 -121.2197,129.2998 -169.707,177.7871 -48.4873,48.4873 -52.5274,230.3145 -52.5274,230.3145 l 20.2032,428.3047 60.6093,60.6093 153.543,-60.6093 246.4766,-181.8262 238.3965,-299.0059 230.3144,-250.5175 44.4473,-193.9493 -440.4258,157.584 20.2031,-101.0156 161.6231,-153.543 z"
1066
+ style="opacity:0.756;fill:url(#radialGradient7251);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter7357)" />
1067
+ <path
1068
+ sodipodi:nodetypes="ccccccc"
1069
+ inkscape:connector-curvature="0"
1070
+ id="path7472"
1071
+ d="m 2123.3573,5452.5702 4.3785,34.0526 -16.9179,115.4758 6.7456,-2.0132 -36.6663,12.1197 6.0609,-56.5822 z"
1072
+ style="fill:#049604;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.96646482px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
1073
+ <path
1074
+ inkscape:connector-curvature="0"
1075
+ id="path7476"
1076
+ d="m 2076.8736,5622.7838 12.1219,-12.6133 14.1421,28.8302 -2.0203,27.0284 -12.1218,10.8115 z"
1077
+ style="fill:#906c2c;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
1078
+ <path
1079
+ inkscape:connector-curvature="0"
1080
+ id="path7478"
1081
+ d="m 2135.4625,5581.8862 21.2132,-5.0507 23.2335,29.2944 0,27.2741 -11.1117,24.2437 -29.2944,9.0913 17.1726,16.1625 c 0,0 -37.3757,-14.1422 -36.3655,-9.0914 1.0101,5.0508 57.5787,44.4467 57.5787,44.4467 l 29.2944,-70.7107 -2.0203,-84.8528 -32.3249,-41.4162 z"
1082
+ style="fill:url(#linearGradient7546);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter7576)" />
1083
+ <path
1084
+ inkscape:connector-curvature="0"
1085
+ id="path7480"
1086
+ d="m 2127.3813,5470.7694 -15.1523,77.7818 -12.1219,26.264 0,30.3045 11.1117,-3.0304 16.1625,-101.0153 z"
1087
+ style="opacity:0.35800003;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
1088
+ <path
1089
+ inkscape:connector-curvature="0"
1090
+ id="path7608"
1091
+ d="m 2206.1732,5638.4548 -56.5686,68.6903 -60.6091,84.8528 40.4061,202.0306 129.2995,189.9086 117.1777,40.4061 266.6803,-319.2082 48.4873,-315.1676 -214.1524,0 z"
1092
+ style="fill:url(#linearGradient7616);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter7650)" />
1093
+ </g>
1094
+ </g>
1095
+ </svg>