diff options
author | Chen Wei <chenwei@byzantine-lab.io> | 2019-06-27 14:32:17 +0800 |
---|---|---|
committer | Chen Wei <chenwei@byzantine-lab.io> | 2019-06-27 14:32:17 +0800 |
commit | 80a73fb05b6f40e4cbac383c4741d049e016ad54 (patch) | |
tree | 34a1672890528cc907d607bf3f20aa063a4642be | |
parent | 0d85e6724dd617447ae532750d6a04ca9df45964 (diff) | |
download | tangerine-official-website-80a73fb05b6f40e4cbac383c4741d049e016ad54.tar.gz tangerine-official-website-80a73fb05b6f40e4cbac383c4741d049e016ad54.tar.zst tangerine-official-website-80a73fb05b6f40e4cbac383c4741d049e016ad54.zip |
some basic pages, after handling the mobile header, everything should be alright
-rw-r--r-- | src/components/LandingPage/Harvest.js | 84 | ||||
-rw-r--r-- | src/components/LandingPage/PartnerList.js | 16 | ||||
-rw-r--r-- | src/components/LandingPage/Resources.js | 70 | ||||
-rw-r--r-- | src/components/LandingPage/Tech.js | 44 | ||||
-rw-r--r-- | src/constants/app.js | 12 | ||||
-rw-r--r-- | src/global.css | 13 | ||||
-rw-r--r-- | src/images/harvest-program.svg | 293 | ||||
-rw-r--r-- | src/images/light-house.svg | 7 | ||||
-rw-r--r-- | src/pages/index.js | 62 | ||||
-rw-r--r-- | src/translations/en.json | 9 | ||||
-rw-r--r-- | src/translations/zh-Hant.json | 15 |
11 files changed, 571 insertions, 54 deletions
diff --git a/src/components/LandingPage/Harvest.js b/src/components/LandingPage/Harvest.js new file mode 100644 index 0000000..fdf363e --- /dev/null +++ b/src/components/LandingPage/Harvest.js @@ -0,0 +1,84 @@ +import React from "react"; +import styled from 'styled-components'; +import { MOBILE_WIDTH } from 'src/constants/app'; +import { FormattedMessage } from 'react-intl'; + +import HarvestProgramSvg from 'src/images/harvest-program.svg'; + +const Wrapper = styled.div` + display: flex; + @media screen and (max-width: ${MOBILE_WIDTH}px) { + flex-direction: column; + padding: 20px 0px; + } +`; + +const HarvestLogo = styled.img` + width: 50%; + max-width: 481px; +`; +const ContextArea = styled.div` + flex: 1; + display: flex; + align-items: center; + justify-content: center; +`; + +const Context = styled.div` + /* border: 1px solid red; */ + width: 300px; + padding: 20px; + @media screen and (max-width: ${MOBILE_WIDTH}px) { + width: 100%; + } +`; + +const Title = styled.div` + color: #c45b26; + font-size: x-large; + font-weight: bold; + margin: 20px 0px; +`; +const Description = styled.div` +`; +const Button = styled.button` + border-radius: 5px; + box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2); + padding: 8px 20px; + color: #c45b26; + font-weight: bold; + border: none; + margin-top: 30px; + background-color: white; + &:hover { + background-color: #EEE; + cursor: pointer; + } +`; + +const Harvest = () => ( + <Wrapper> + <HarvestLogo src={HarvestProgramSvg} /> + <ContextArea> + <Context> + <Title> + <FormattedMessage + id={"Harvest Program"} + /> + </Title> + <Description> + <FormattedMessage + id={"harvest-description"} + /> + </Description> + <Button> + <FormattedMessage + id={"Join Partner Program"} + /> + </Button> + </Context> + </ContextArea> + </Wrapper> +); + +export default Harvest; diff --git a/src/components/LandingPage/PartnerList.js b/src/components/LandingPage/PartnerList.js index 33abee7..ffeea2d 100644 --- a/src/components/LandingPage/PartnerList.js +++ b/src/components/LandingPage/PartnerList.js @@ -7,27 +7,25 @@ import { } from 'src/constants/app'; const Wrapper = styled.div` width: 100%; + padding: 50px 100px; + @media screen and (max-width: ${MOBILE_WIDTH}px) { + padding: 50px 10px; + } `; const GridLayout = styled.div` display: flex; flex-wrap: wrap; - /* display: grid; - justify-content: space-evenly; - grid-template-columns: repeat(5, 1fr); - grid-gap: 40px 20px; - @media screen and (max-width: ${MOBILE_WIDTH}px) { - grid-template-columns: repeat(2, 1fr); - grid-gap: 40px 0px; - } */ + justify-content: center; `; const Item = styled.div` flex: 1 0 16%; display: flex; - padding: 20px 10px; + /* padding: 30px 10px; */ justify-content: center; /* border: 1px solid black; */ + margin: 10px; height: 60px; @media screen and (max-width: ${MOBILE_WIDTH}px) { flex: 1 0 34%; diff --git a/src/components/LandingPage/Resources.js b/src/components/LandingPage/Resources.js new file mode 100644 index 0000000..3a1f05d --- /dev/null +++ b/src/components/LandingPage/Resources.js @@ -0,0 +1,70 @@ +import React from "react"; +import styled from 'styled-components'; +import { FormattedMessage } from 'react-intl'; +import { MOBILE_WIDTH } from 'src/constants/app'; + +import lightHouse from 'src/images/light-house.svg'; + +const Wrapper = styled.div` + /* border: 1px solid red; */ + display: flex; + flex-direction: column; + align-items: center; + padding: 0px 0px 60px; +`; + +const LightHouseImage = styled.img` + width: 75px; +`; +const Card = styled.div` + border-radius: 5px; + box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1); + width: 100%; + padding: 30px 60px; + @media screen and (min-width: ${MOBILE_WIDTH}px) { + max-width: 784px; + } + @media screen and (max-width: ${MOBILE_WIDTH}px) { + width: 90%; + padding: 20px; + } +`; + +const Title = styled.div` + color: #c45b26; + font-size: larger; + font-weight: bold; + margin: 20px 0px; +`; +const Content = styled.div` + color: #282625; + font-size: normal; +`; +const ExtLink = styled.div` + color: #c45b26; + font-weight: bold; + margin-top: 20px;; + cursor: pointer; +`; + +const Resources = () => ( + <Wrapper> + <Card> + <LightHouseImage src={lightHouse} /> + <Title> + <FormattedMessage + id="dapp-dev-guide" + /> + </Title> + <Content>哈囉哈囉123, 你好哈哈哈</Content> + <ExtLink> + <FormattedMessage + id="Learn More" + /> + > + </ExtLink> + </Card> + </Wrapper> +); + +export default Resources; diff --git a/src/components/LandingPage/Tech.js b/src/components/LandingPage/Tech.js index 32a3aab..889e06b 100644 --- a/src/components/LandingPage/Tech.js +++ b/src/components/LandingPage/Tech.js @@ -5,6 +5,9 @@ import { FormattedMessage } from 'react-intl'; import fastSVG from 'src/images/tech-fast.svg'; import fairSVG from 'src/images/tech-fair.svg'; import secureRandomnessSVG from 'src/images/tech-secure-randomness.svg'; +import { + MOBILE_WIDTH, +} from 'src/constants/app'; const items = [{ img: fastSVG, @@ -21,15 +24,24 @@ const items = [{ }]; const Wrapper = styled.div` - padding: 0px 20px; + padding: 0px 100px 60px; + @media screen and (max-width: ${MOBILE_WIDTH}px) { + padding: 0px 50px 60px; + } `; const Item = styled.div` display: flex; - &:nth-child(even) { - flex-direction: row-reverse; - } + align-items: center; margin-top: 80px; + @media screen and (min-width: ${MOBILE_WIDTH}px) { + &:nth-child(even) { + flex-direction: row-reverse; + } + } + @media screen and (max-width: ${MOBILE_WIDTH}px) { + flex-direction: column; + } `; const ImgWrapper = styled.div` flex: 1; @@ -37,27 +49,39 @@ const ImgWrapper = styled.div` `; const Img = styled.img` height: 235px; + @media screen and (max-width: ${MOBILE_WIDTH}px) { + height: 200px; + } `; const Desc = styled.div` flex: 1; display: flex; flex-direction: column; justify-content: center; - ${p => p.reverse && ` - align-items: flex-end; - `} + @media screen and (min-width: ${MOBILE_WIDTH}px) { + ${p => p.reverse && ` + align-items: flex-end; + `} + } + @media screen and (max-width: ${MOBILE_WIDTH}px) { + text-align: center; + font-size: small; + } `; const Title = styled.div` color: #c45b26; font-weight: bold; font-size: x-large; - margin: 10px 0px; + margin: 20px 0px; `; const Content = styled.div` + font-size: larger; color: #282625; - max-width: 280px; - ${p => p.reverse && 'text-align: right;'} + @media screen and (min-width: ${MOBILE_WIDTH}px) { + ${p => p.reverse && 'text-align: right;'} + max-width: 280px; + } `; const Padding = styled.div` width: 76px; diff --git a/src/constants/app.js b/src/constants/app.js index 0eb3c47..73787ab 100644 --- a/src/constants/app.js +++ b/src/constants/app.js @@ -21,15 +21,15 @@ export const MENU_ITEMS = [ { localeKey: 'Technology', }, - { - localeKey: 'Team', - }, + // { + // localeKey: 'Team', + // }, { localeKey: 'Tech Support', }, - { - localeKey: 'Media', - }, + // { + // localeKey: 'Media', + // }, { localeKey: 'Language', subItems: [ diff --git a/src/global.css b/src/global.css index 08013be..5974ffe 100644 --- a/src/global.css +++ b/src/global.css @@ -11,4 +11,17 @@ body { * { margin: 0; padding: 0; + box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +*:focus { + outline: none; }
\ No newline at end of file diff --git a/src/images/harvest-program.svg b/src/images/harvest-program.svg new file mode 100644 index 0000000..6a3c824 --- /dev/null +++ b/src/images/harvest-program.svg @@ -0,0 +1,293 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="481" height="540" viewBox="0 0 481 540"> + <defs> + <linearGradient id="a" x1="23.044%" x2="53.234%" y1="7.849%" y2="40.698%"> + <stop offset="0%" stop-color="#F4B544"/> + <stop offset="100%" stop-color="#F27038"/> + </linearGradient> + <linearGradient id="b" x1="85.553%" x2="6.421%" y1="93.179%" y2="46.057%"> + <stop offset="0%" stop-color="#D3520C"/> + <stop offset="100%" stop-color="#ED662B"/> + </linearGradient> + </defs> + <g fill="none" fill-rule="evenodd" transform="translate(-47)"> + <path fill="#2B543A" d="M186.165 85.167c-6.887 7.543-16.746 11.704-27.611 9.01 2.979-12.797 6.776-26.327 13.805-37.332 5.433-8.507 14.778-15.183 25.021-15.845.905 14.94-1.567 33.597-11.215 44.167"/> + <path fill="#3D3104" d="M195.554 47c-1.537 1.851-3.026 3.788-4.543 5.674a145.966 145.966 0 0 1-4.129 6.475c-3.39 5.051-5.171 7.458-8.86 12.03-3.688 4.573-5.605 6.738-9.543 10.829a134.383 134.383 0 0 1-4.99 4.961c-1.62 1.77-3.28 3.45-4.935 5.15.275.75.41 1.126.677 1.881 1.805-1.33 3.567-2.783 5.328-4.244a135.49 135.49 0 0 0 5.024-5.045c3.966-4.156 5.894-6.356 9.603-10.999 3.71-4.642 5.5-7.086 8.906-12.212a148.11 148.11 0 0 0 4.156-6.549c1.176-2.558 2.306-5.163 3.306-7.951"/> + <path fill="#2B543A" d="M136.813 76.276c4.33 8.483 12.862 15.146 22.286 17.724 3.43-11.75 3.933-26.929-2.874-37.576-5.451-8.529-15.646-12.692-25.671-12.41.19 10.866 1.309 22.565 6.259 32.262"/> + <path fill="#3D3104" d="M132.554 47c1.086 1.934 2.207 3.81 3.289 5.723a122.65 122.65 0 0 1 3.72 5.166c2.897 4.227 4.277 6.43 6.868 11.002 2.591 4.572 3.808 6.943 6.062 11.838a135.043 135.043 0 0 1 2.705 6.215c.99 1.986 1.918 4.03 2.866 6.056.598-.533.896-.803 1.49-1.346-.678-2.291-1.457-4.5-2.246-6.708a137.314 137.314 0 0 0-2.857-6.16c-2.372-4.848-3.647-7.195-6.347-11.715-2.701-4.52-4.133-6.698-7.13-10.87a124.325 124.325 0 0 0-3.829-5.11c-1.488-1.432-2.995-2.827-4.591-4.091"/> + <path fill="#2B543A" d="M171.863 133.024c-8.627 5.477-19.306 6.957-29.31 1.771 5.912-11.375 12.902-23.246 22.49-31.768 7.51-6.676 18.355-10.436 28.51-8.534-2.811 14.213-9.843 31.01-21.69 38.53"/> + <path fill="#3D3104" d="M190.554 98c-1.956 1.369-3.885 2.833-5.828 4.244a152.528 152.528 0 0 1-5.61 5.126c-4.54 3.965-6.859 5.822-11.56 9.286-4.702 3.465-7.092 5.071-11.91 8.038a140.374 140.374 0 0 1-6.054 3.553c-2.001 1.31-4.02 2.526-6.038 3.764.09.794.134 1.19.215 1.989 2.076-.846 4.142-1.817 6.207-2.797a141.302 141.302 0 0 0 6.103-3.63c4.86-3.029 7.268-4.667 12.006-8.2 4.736-3.533 7.073-5.425 11.642-9.464a153.254 153.254 0 0 0 5.651-5.196c1.773-2.137 3.514-4.325 5.176-6.713"/> + <path fill="#2B543A" d="M125.705 111.821c2.136 9.157 8.728 17.504 17.07 22.179 6.003-10.324 10.176-24.616 6.24-36.26-3.183-9.422-11.965-15.628-21.487-17.74-2.523 10.256-4.215 21.561-1.823 31.821"/> + <path fill="#3D3104" d="M128.554 84c.6 2.082 1.25 4.12 1.855 6.189a118.206 118.206 0 0 1 2.432 5.789c1.85 4.709 2.683 7.136 4.15 12.12 1.467 4.984 2.104 7.544 3.164 12.777.529 2.616.768 3.94 1.191 6.613.509 2.145.938 4.335 1.397 6.512.725-.366 1.087-.552 1.81-.929-.122-2.365-.363-4.674-.616-6.981-.489-2.666-.76-3.984-1.355-6.591-1.187-5.213-1.887-7.762-3.474-12.718-1.587-4.959-2.48-7.372-4.44-12.049a119.42 119.42 0 0 0-2.552-5.758c-1.13-1.713-2.285-3.395-3.562-4.974"/> + <path fill="#2B543A" d="M145.897 175.05c-9.635 3.998-20.63 1.659-28.343-5.278 8.25-9.734 17.679-19.703 28.823-25.675 8.76-4.695 19.977-5.64 29.177-1.338-6.052 13.14-16.18 26.698-29.657 32.29"/> + <path fill="#3D3104" d="M171.554 146c-2.187.818-4.37 1.734-6.553 2.6a154.545 154.545 0 0 1-6.545 3.493c-5.252 2.661-7.896 3.866-13.185 6.033-5.289 2.167-7.942 3.127-13.229 4.808a139.39 139.39 0 0 1-6.6 1.953c-2.214.777-4.422 1.46-6.637 2.166-.097.777-.146 1.167-.251 1.947 2.178-.318 4.376-.759 6.574-1.205 2.663-.747 3.998-1.15 6.668-2.017 5.34-1.735 8.018-2.722 13.356-4.95 5.34-2.225 8.007-3.462 13.304-6.189 2.648-1.36 3.969-2.07 6.599-3.556 2.187-1.591 4.358-3.236 6.499-5.083"/> + <path fill="#2B543A" d="M106.555 143.333c-.091 9.434 4.319 19.129 11.292 25.667 8.226-8.618 15.665-21.509 14.606-33.723-.858-9.903-7.919-17.96-16.604-22.277-4.919 9.298-9.192 19.853-9.294 30.333"/> + <path fill="#3D3104" d="M116.554 117c.077 2.11.213 4.194.299 6.298.429 2.4.618 3.614.944 6.067.646 4.908.867 7.415 1.089 12.512.22 5.096.223 7.691 0 12.945a129.49 129.49 0 0 1-.424 6.61c-.022 2.175-.13 4.373-.208 6.568.775-.185 1.163-.28 1.94-.475.44-2.298.753-4.567 1.056-6.835.162-2.667.214-3.992.263-6.624.097-5.263.032-7.859-.309-12.955-.34-5.098-.62-7.603-1.379-12.503a116.599 116.599 0 0 0-1.064-6.062c-.667-1.89-1.368-3.754-2.207-5.546"/> + <path fill="#2B543A" d="M112.06 209.708c-10.371 1.568-20.595-3.298-26.506-11.806 10.35-7.396 21.894-14.782 34.208-17.87 9.658-2.42 20.827-.612 28.792 5.711-8.971 11.166-22.016 21.778-36.493 23.965"/> + <path fill="#3D3104" d="M143.554 188c-2.316.266-4.652.629-6.977.942-2.876.781-4.313 1.14-7.18 1.801-5.73 1.312-8.583 1.847-14.24 2.688-5.655.84-8.463 1.143-14.01 1.527-2.775.192-4.153.26-6.894.34-2.342.23-4.658.372-6.987.536-.28.72-.422 1.081-.712 1.802 2.201.197 4.449.284 6.699.364 2.773-.097 4.169-.175 6.976-.387 5.613-.422 8.454-.746 14.174-1.633 5.72-.888 8.604-1.448 14.394-2.815a159.598 159.598 0 0 0 7.25-1.848c2.499-1.005 4.994-2.062 7.507-3.317"/> + <path fill="#2B543A" d="M80.525 169.32c-2.315 9.164-.398 19.65 4.77 27.68 9.958-6.466 20.151-17.28 21.992-29.425 1.488-9.825-3.402-19.317-10.733-25.575-6.916 7.887-13.464 17.162-16.03 27.32"/> + <path fill="#3D3104" d="M95.769 146c-.411 2.064-.762 4.118-1.166 6.18-.151 2.43-.253 3.652-.513 6.111-.526 4.92-.897 7.41-1.87 12.419-.97 5.01-1.568 7.536-3 12.601-.716 2.533-1.102 3.8-1.936 6.34-.528 2.112-1.143 4.23-1.73 6.349.768-.001 1.152-.004 1.923-.014.95-2.136 1.773-4.274 2.585-6.414.773-2.56 1.13-3.838 1.787-6.388 1.313-5.102 1.853-7.644 2.712-12.68.858-5.037 1.174-7.539 1.593-12.475.214-2.47.294-3.696.4-6.134-.19-1.988-.414-3.96-.785-5.895"/> + <path fill="#2B543A" d="M70.47 234.692c-10-1.451-18.951-7.182-22.916-17.497 11.866-4.63 24.843-9.076 37.567-9.194 9.894-.091 20.25 4.227 26.433 12.142-11.341 8.672-27.449 16.527-41.085 14.549"/> + <path fill="#3D3104" d="M105.554 221.347c-2.314-.273-4.67-.457-7.006-.686-2.987.1-4.472.122-7.423.106-5.896-.036-8.807-.17-14.53-.653-5.725-.484-8.542-.837-14.063-1.747-2.76-.455-4.128-.708-6.832-1.266-2.352-.32-4.659-.718-6.987-1.101-.458.638-.69.957-1.16 1.593 2.112.706 4.296 1.314 6.482 1.916 2.744.548 4.13.797 6.93 1.242 5.6.888 8.457 1.227 14.257 1.68 5.8.454 8.75.57 14.72.569a160.11 160.11 0 0 0 7.506-.138c2.676-.407 5.359-.866 8.106-1.515"/> + <path fill="#2B543A" d="M48.653 188.871c-4.58 8.354-5.343 19.037-2.185 28.129 11.55-3.889 24.415-12 29.233-23.482 3.866-9.217 1.34-19.65-4.416-27.518-8.785 6.085-17.54 13.584-22.632 22.871"/> + <path fill="#3D3104" d="M70.554 170c-.926 1.925-1.79 3.855-2.709 5.782a113.927 113.927 0 0 1-2.036 5.871c-1.757 4.699-2.756 7.052-5.006 11.73-2.249 4.679-3.497 7.01-6.248 11.626a126.362 126.362 0 0 1-3.6 5.739c-1.08 1.94-2.254 3.863-3.401 5.795.791.188 1.189.278 1.986.457 1.523-1.86 2.915-3.753 4.292-5.652a127.188 127.188 0 0 0 3.452-5.825c2.637-4.682 3.828-7.044 5.965-11.776 2.138-4.732 3.083-7.11 4.733-11.852.828-2.37 1.212-3.556 1.922-5.921.297-1.997.554-3.986.65-5.974"/> + <path fill="#2B543A" d="M3.554 227.706c12.927-1.517 27.237-2.984 39.941.133 9.761 2.395 18.925 8.927 23.059 18.24-13.479 5.894-31.422 9.682-44.544 4.415-9.513-3.82-17.151-11.557-18.456-22.788"/> + <path fill="#3D3104" d="M17.83 233.831c5.325 2.22 8.063 3.237 13.67 5.064 5.608 1.826 8.48 2.641 14.343 4.05 2.928.708 4.41 1.036 7.396 1.635 2.725.231 5.466.412 8.315.42-2.193-.81-4.45-1.542-6.68-2.315-2.95-.604-4.41-.933-7.3-1.643-5.776-1.428-8.605-2.248-14.122-4.084-5.518-1.835-8.212-2.854-13.447-5.072A147.953 147.953 0 0 1 13.554 229"/> + <path fill="#2B543A" d="M202.57 347.994c-11.594 3.744-24.823 4.644-37.016 3.604 5.98-12.677 17.415-21.44 29.831-26.021 12.666-4.674 28.814-2.676 41.169 3.461-10.129 7.837-21.892 15.051-33.984 18.956M137.985 338.81c-3.85 9.498-3.44 20.313 3.5 29.19 10.169-8.099 20.646-17.258 27.522-28.335 5.316-8.562 7.365-19.957 3.676-29.665-13.7 5.42-29.305 15.505-34.698 28.81"/> + <path fill="#3D3104" d="M168.554 314c-1.019 2.185-2.136 4.361-3.195 6.543a146.272 146.272 0 0 0-4.08 6.502c-3.116 5.227-4.53 7.868-7.093 13.166-2.562 5.298-3.706 7.961-5.735 13.284a136.639 136.639 0 0 0-2.373 6.652c-.913 2.226-1.728 4.45-2.564 6.68-.783.065-1.175.1-1.96.173.443-2.209 1.013-4.432 1.592-6.657.907-2.687 1.393-4.03 2.431-6.719 2.077-5.374 3.247-8.065 5.863-13.411 2.618-5.347 4.062-8.012 7.237-13.284a147.852 147.852 0 0 1 4.136-6.557c1.8-2.153 3.662-4.283 5.74-6.372"/> + <path fill="#2B543A" d="M166.753 379.979c-9.463-.303-18.998-5.135-25.2-12.483 9.241-8.022 22.788-14.867 35.228-13.26 9.963 1.287 17.916 8.66 21.773 17.752-9.925 4.409-20.983 8.336-31.8 7.99"/> + <path fill="#3D3104" d="M194.554 372c-2.192-.188-4.346-.434-6.518-.628a116.331 116.331 0 0 0-6.195-1.28c-5.009-.91-7.566-1.259-12.756-1.725-5.192-.466-7.832-.587-13.173-.588-2.67 0-4.015.03-6.717.15-2.2-.075-4.425-.06-6.641-.078.23-.805.348-1.208.59-2.013 2.344-.36 4.655-.588 6.969-.804a126.76 126.76 0 0 1 6.73.022c5.35.135 7.992.32 13.183.914 5.19.592 7.744 1.003 12.746 2.033 2.502.51 3.741.793 6.192 1.408 1.906.793 3.79 1.619 5.59 2.589M124.554 341c-.416 2.327-.932 4.668-1.393 7.001a151.315 151.315 0 0 0-2.278 7.17c-1.68 5.725-2.385 8.582-3.543 14.246-1.16 5.664-1.61 8.48-2.27 14.045-.33 2.783-.464 4.167-.674 6.918-.344 2.343-.596 4.662-.87 6.993-.753.246-1.13.372-1.885.627-.106-2.218-.093-4.478-.074-6.742.227-2.784.372-4.183.722-6.996.699-5.627 1.17-8.473 2.376-14.199 1.206-5.724 1.936-8.609 3.67-14.392a150.114 150.114 0 0 1 2.325-7.236c1.187-2.479 2.434-4.951 3.894-7.435"/> + <path fill="#3D3104" d="M163.554 391.02c-2.127.324-4.236.588-6.354.903-2.474.052-3.72.103-6.225.26-5.012.319-7.548.584-12.653 1.334-5.105.752-7.678 1.235-12.843 2.43-2.582.596-3.876.922-6.466 1.632-2.148.427-4.303.94-6.46 1.421.038-.757.057-1.137.103-1.898 2.19-.84 4.376-1.558 6.566-2.264 2.61-.651 3.913-.948 6.512-1.488 5.2-1.077 7.79-1.504 12.92-2.144 5.128-.639 7.675-.848 12.702-1.062 2.515-.11 3.766-.138 6.249-.144 2.009.268 4.002.572 5.949 1.02"/> + <path fill="#2B543A" d="M73.593 412.356c.482 10.43 7.301 19.48 16.896 23.644 5.32-11.536 10.35-24.244 11.018-36.865.525-9.92-3.405-20.531-11.241-27.135-9.353 10.94-17.345 25.766-16.673 40.356"/> + <path fill="#3D3104" d="M89.315 377c.189 2.338.277 4.714.418 7.069-.25 2.992-.343 4.481-.464 7.437-.232 5.908-.217 8.826.053 14.56s.53 8.555 1.274 14.084a131.47 131.47 0 0 0 1.075 6.84c.242 2.344.573 4.645.883 6.961-.72.415-1.08.625-1.799 1.049-.675-2.12-1.238-4.309-1.796-6.501a131.777 131.777 0 0 1-1.042-6.928c-.718-5.6-.961-8.456-1.196-14.26-.233-5.805-.228-8.757.048-14.734.135-2.986.234-4.49.5-7.514.571-2.663 1.202-5.333 2.046-8.063"/> + <path fill="#6C5C00" d="M118.742 435.902c-8.58 3.995-19.289 4.071-28.188.546 4.421-10.933 13.076-22.934 24.68-27.054 9.406-3.34 19.73-.367 27.32 5.611-6.43 8.258-14.28 16.458-23.812 20.897"/> + <path fill="#3D3104" d="M138.554 416c-1.973.82-3.947 1.578-5.92 2.389-2.386.628-3.582.97-5.974 1.712-4.785 1.491-7.184 2.35-11.965 4.303-4.782 1.954-7.17 3.045-11.91 5.465a135.044 135.044 0 0 0-5.904 3.171c-1.99.938-3.969 1.963-5.955 2.96-.153-.776-.227-1.164-.372-1.944 1.929-1.366 3.886-2.606 5.847-3.837a135.272 135.272 0 0 1 5.983-3.032c4.801-2.31 7.217-3.346 12.048-5.192 4.831-1.844 7.253-2.652 12.077-4.037a120.57 120.57 0 0 1 6.022-1.602c2.016-.197 4.024-.355 6.023-.356"/> + <path fill="#2B543A" d="M57.14 457.984c2.87 10.025 11.427 17.23 21.466 19.016 2.349-12.441 4.199-25.957 1.887-38.372-1.813-9.739-8.028-19.074-16.958-23.628-6.287 12.77-10.4 28.99-6.395 42.984"/> + <path fill="#3D3104" d="M63.614 421c.706 2.22 1.334 4.501 2.001 6.751.47 2.954.731 4.416 1.304 7.307 1.155 5.778 1.837 8.604 3.39 14.111 1.554 5.508 2.43 8.192 4.353 13.403.963 2.606 1.467 3.89 2.516 6.418.751 2.23 1.57 4.397 2.376 6.587-.54.565-.81.849-1.346 1.423-1.084-1.917-2.083-3.925-3.079-5.938a145.246 145.246 0 0 1-2.508-6.512c-1.915-5.288-2.785-8.011-4.32-13.597-1.538-5.585-2.21-8.45-3.34-14.305-.57-2.925-.827-4.404-1.29-7.392-.11-2.706-.17-5.43-.057-8.256"/> + <path fill="#2B543A" d="M105.576 470.36c-7.313 5.988-17.598 8.65-27.022 7.293 1.67-11.866 7.174-25.777 17.382-32.586 8.258-5.508 18.888-5.021 27.618-.932-4.23 9.67-9.871 19.589-17.978 26.226"/> + <path fill="#3D3104" d="M120.554 446c-1.704 1.27-3.425 2.478-5.133 3.74a115.586 115.586 0 0 0-5.35 3.095c-4.257 2.597-6.367 4.011-10.516 7.068-4.15 3.057-6.196 4.7-10.197 8.215a131.38 131.38 0 0 0-4.946 4.536c-1.699 1.401-3.364 2.885-5.045 4.346-.328-.725-.491-1.09-.813-1.823 1.539-1.81 3.134-3.5 4.735-5.18a133.314 133.314 0 0 1 5.057-4.415c4.085-3.42 6.17-5.015 10.393-7.977 4.223-2.962 6.366-4.328 10.685-6.832a117.166 117.166 0 0 1 5.42-2.996c1.894-.671 3.787-1.301 5.71-1.777"/> + <path fill="#2B543A" d="M50.669 507.519c5.57 8.475 14.66 14.18 25.885 13.412-.728-12.751-2.098-26.434-7.369-38.052-4.097-9.032-12.473-16.616-22.415-18.879-3.233 13.989-3.696 31.962 3.899 43.519"/> + <path fill="#3D3104" d="M47.554 469c1.232 1.982 2.4 4.04 3.599 6.06a156.624 156.624 0 0 0 3.035 6.778c2.526 5.333 3.88 7.916 6.75 12.9 2.868 4.985 4.387 7.39 7.568 12.008a142.706 142.706 0 0 0 4.069 5.656c1.292 1.998 2.639 3.918 3.979 5.868-.402.687-.602 1.034-.998 1.73-1.552-1.613-3.041-3.334-4.526-5.059a142.267 142.267 0 0 1-4.087-5.756c-3.195-4.699-4.718-7.144-7.592-12.212-2.873-5.068-4.228-7.692-6.748-13.109a156.173 156.173 0 0 1-3.04-6.865c-.75-2.6-1.455-5.23-2.01-7.999"/> + <path fill="#2B543A" d="M101.267 507.334c-5.63 7.56-14.918 12.694-24.381 13.666-1.233-11.912.788-26.756 9.133-35.833 6.7-7.286 17.109-9.382 26.535-7.531-1.871 10.364-5.027 21.29-11.287 29.698"/> + <path fill="#3D3104" d="M109.554 480c-1.366 1.632-2.762 3.209-4.132 4.837a116.182 116.182 0 0 0-4.49 4.275c-3.54 3.536-5.263 5.412-8.582 9.377-3.32 3.964-4.923 6.055-7.98 10.44a127.322 127.322 0 0 0-3.728 5.612c-1.316 1.776-2.58 3.627-3.86 5.459-.494-.627-.74-.943-1.228-1.576 1.06-2.137 2.208-4.17 3.364-6.192a128.262 128.262 0 0 1 3.868-5.52c3.163-4.308 4.816-6.36 8.231-10.249 3.415-3.887 5.183-5.725 8.807-9.183a117.246 117.246 0 0 1 4.58-4.196c1.688-1.102 3.388-2.164 5.15-3.084"/> + <path fill="#2B543A" d="M85.554 565c-4.016-12.511-8.654-26.27-16.79-36.602-6.252-7.94-16.016-13.57-26.21-13.394.267 14.88 4.312 32.963 14.577 42.763"/> + <path fill="#3D3104" d="M62.603 545c-3.993-4.37-5.928-6.66-9.648-11.445a159.984 159.984 0 0 1-4.562-6.095c-1.343-2.404-2.647-4.847-3.84-7.46 1.65 1.667 3.254 3.428 4.884 5.145a160.691 160.691 0 0 0 4.53 6.005c3.7 4.696 5.623 6.944 9.587 11.228"/> + <path fill="#2B543A" d="M85.55 564c-4.282-11.519-6.188-26.83-.232-38.031 4.688-8.822 14.31-13.483 23.96-13.969.68 10.74.326 22.32-3.602 32.289"/> + <path fill="#3D3104" d="M88.554 549.172c1.932-5.093 3-7.55 5.299-12.266 2.299-4.714 3.538-6.977 6.16-11.3a113.276 113.276 0 0 1 3.361-5.288c1.348-1.507 2.716-2.976 4.18-4.318-.915 1.95-1.87 3.856-2.787 5.805a111.994 111.994 0 0 0-3.251 5.348c-2.521 4.382-3.707 6.675-5.892 11.446-2.186 4.772-3.193 7.255-4.999 12.401"/> + <path fill="#3D3104" d="M86.536 569c-5.257-14.818-8.686-29.617-10.448-45.238-2.222-30.718 2.485-59.557 14.139-88.069 12.77-27.952 30.522-51.125 54.37-70.574 12.585-9.41 25.492-16.974 39.845-23.383 7.446-2.983 15.04-5.29 22.774-7.386 4.716-1.185 7.113-1.704 11.98-2.585 4.871-.864 7.344-1.22 12.358-1.765-4.987.752-7.438 1.21-12.254 2.275-4.818 1.047-7.185 1.649-11.829 2.995-7.595 2.35-15.042 4.905-22.316 8.132-14.195 6.365-26.956 13.872-39.396 23.206-23.539 19.274-41.056 42.218-53.636 69.9-11.452 28.182-16.056 56.68-13.799 87.037 1.816 15.49 5.194 29.939 10.4 44.643"/> + <path fill="#2B543A" d="M185.352 157.017c-4.38 11.427-6.059 24.668-5.766 36.983 12.841-5.253 22.153-16.219 27.408-28.423 5.36-12.447 4.36-28.794-.943-41.577-8.323 9.71-16.13 21.099-20.699 33.017M190.09 222.198c-9.585 3.349-20.212 2.28-28.536-5.323 8.588-9.866 18.24-19.984 29.562-26.32 8.753-4.897 20.1-6.297 29.438-1.955-6.163 13.624-17.036 28.907-30.464 33.598"/> + <path fill="#3D3104" d="M216.554 193c-2.22.895-4.438 1.889-6.659 2.823a144.46 144.46 0 0 1-6.67 3.717c-5.353 2.821-8.049 4.087-13.438 6.35-5.39 2.261-8.091 3.254-13.473 4.977-2.691.863-4.034 1.26-6.716 1.99-2.254.787-4.5 1.475-6.755 2.183a151.44 151.44 0 0 1-.29 1.96c2.21-.315 4.442-.755 6.675-1.206 2.71-.752 4.066-1.162 6.784-2.046 5.436-1.77 8.165-2.786 13.607-5.1 5.44-2.313 8.162-3.606 13.562-6.486a146.558 146.558 0 0 0 6.73-3.769c2.235-1.683 4.453-3.427 6.643-5.393"/> + <path fill="#2B543A" d="M150.566 190.724c-.267 9.601 3.918 19.551 10.779 26.276 8.442-8.873 15.984-22.179 15.145-34.875-.672-10.168-7.452-18.668-16.168-23.125-4.927 9.785-9.45 20.747-9.756 31.724"/> + <path fill="#3D3104" d="M160.554 164c.04 2.193.134 4.35.18 6.523.35 2.474.503 3.722.758 6.24.505 5.038.664 7.603.78 12.797.115 5.195.074 7.828-.215 13.146a147.155 147.155 0 0 1-.492 6.678c-.057 2.193-.19 4.408-.296 6.616.7-.184 1.05-.28 1.752-.474.435-2.312.755-4.6 1.065-6.891.192-2.695.26-4.036.348-6.702.176-5.333.16-7.973-.063-13.175-.224-5.2-.436-7.766-1.043-12.803-.3-2.52-.475-3.77-.868-6.242-.573-1.944-1.176-3.865-1.906-5.713"/> + <path fill="#2E4C2E" d="M155.15 256.896c-10.189.794-20.275-2.932-26.596-12.265 10.61-7.32 22.404-14.57 34.887-17.618 9.777-2.387 21.095-.607 29.113 5.878-9.239 11.306-23.414 22.915-37.404 24.005"/> + <path fill="#3D3104" d="M187.554 235c-2.362.276-4.743.653-7.113.973-2.942.81-4.409 1.18-7.334 1.855-5.85 1.34-8.758 1.876-14.515 2.697-5.757.82-8.61 1.102-14.238 1.427-2.812.161-4.21.212-6.985.255-2.373.204-4.717.316-7.073.448-.291.744-.44 1.116-.742 1.86 2.22.242 4.49.367 6.765.485 2.807-.06 4.22-.118 7.066-.299 5.692-.36 8.578-.661 14.397-1.525 5.82-.864 8.76-1.423 14.67-2.814 2.954-.69 4.436-1.07 7.405-1.897 2.559-1.044 5.116-2.147 7.697-3.465"/> + <path fill="#2B543A" d="M123.666 217.32c-2.512 9.115-.667 19.612 4.509 27.68 10.32-6.315 20.926-17.005 23.035-29.17 1.707-9.844-3.122-19.474-10.582-25.83-7.19 7.894-14.146 17.109-16.962 27.32"/> + <path fill="#3D3104" d="M139.851 194c-.462 2.085-.862 4.155-1.313 6.232a119.73 119.73 0 0 1-.638 6.147c-.63 4.94-1.055 7.434-2.135 12.44-1.082 5.006-1.736 7.523-3.28 12.56a132.035 132.035 0 0 1-2.076 6.299c-.57 2.1-1.228 4.2-1.855 6.304.787.012 1.18.016 1.971.018 1-2.114 1.873-4.234 2.736-6.357a133.447 133.447 0 0 0 1.926-6.354c1.426-5.079 2.022-7.616 2.988-12.654.968-5.037 1.337-7.545 1.857-12.508.264-2.481.368-3.717.522-6.175-.159-2.005-.355-3.996-.703-5.952M148.554 269.516c-2.331-.32-4.704-.549-7.055-.825-3.011.055-4.507.05-7.474-.016-5.93-.142-8.85-.333-14.577-.937-5.728-.603-8.539-1.019-14.033-2.056a140.443 140.443 0 0 1-6.789-1.427c-2.335-.37-4.62-.821-6.923-1.255-.456.652-.685.978-1.15 1.628 2.086.764 4.246 1.426 6.41 2.085 2.72.613 4.096.894 6.88 1.401 5.565 1.017 8.414 1.42 14.213 1.993 5.799.574 8.755.749 14.756.853 3 .056 4.51.054 7.552-.012 2.7-.376 5.41-.805 8.19-1.432"/> + <path fill="#2E4C2E" d="M91.674 236.228c-4.607 8.222-5.334 18.78-2.264 27.772 11.453-3.703 24.255-11.515 29.173-22.713 3.988-9.077 1.57-19.44-4.087-27.287-8.838 5.845-17.704 13.094-22.822 22.228"/> + <path fill="#3D3104" d="M113.554 217c-.946 1.886-1.827 3.778-2.762 5.663a117.063 117.063 0 0 1-2.082 5.758c-1.79 4.603-2.8 6.905-5.053 11.478-2.253 4.572-3.497 6.85-6.218 11.354a131.717 131.717 0 0 1-3.548 5.602c-1.063 1.897-2.214 3.776-3.337 5.665.771.196 1.158.293 1.934.48 1.491-1.81 2.858-3.656 4.214-5.506a132.467 132.467 0 0 0 3.413-5.688c2.613-4.57 3.803-6.878 5.951-11.507 2.148-4.628 3.106-6.954 4.792-11.603a117.832 117.832 0 0 0 1.975-5.81c.32-1.966.599-3.925.72-5.886"/> + <path fill="#2B543A" d="M66.239 296.573c-9.838-3.525-16.512-12.665-17.685-22.988 12.567-1.637 26.178-2.7 38.437.4 9.614 2.433 18.558 9.32 22.563 18.68-13.135 5.625-29.583 8.83-43.315 3.908"/> + <path fill="#3D3104" d="M103.554 292c-2.174-.874-4.412-1.669-6.617-2.505a154.096 154.096 0 0 1-7.213-1.811c-5.696-1.56-8.475-2.447-13.877-4.407-5.4-1.96-8.027-3.038-13.111-5.369a141.436 141.436 0 0 1-6.25-3.021c-2.18-.923-4.294-1.91-6.43-2.887-.596.53-.896.795-1.502 1.32 1.846 1.25 3.789 2.416 5.736 3.58a141.306 141.306 0 0 0 6.347 3.019c5.161 2.325 7.826 3.4 13.306 5.349 5.48 1.949 8.3 2.827 14.074 4.365 2.886.774 4.345 1.134 7.298 1.8 2.694.282 5.41.511 8.239.567"/> + <path fill="#2B543A" d="M56.667 246.414c-6.478 6.957-9.788 17.082-8.998 26.586 12.05-.964 26.398-5.64 33.88-15.441 6.053-7.929 6.213-18.587 2.63-27.559-9.999 3.654-20.333 8.704-27.512 16.414"/> + <path fill="#3D3104" d="M81.554 234c-1.353 1.618-2.646 3.257-3.99 4.877a116.271 116.271 0 0 1-3.37 5.133c-2.814 4.075-4.332 6.088-7.591 10.03-3.26 3.94-5.001 5.877-8.703 9.644a130.274 130.274 0 0 1-4.764 4.647c-1.481 1.604-3.044 3.17-4.582 4.753.695.37 1.044.553 1.746.916 1.873-1.422 3.634-2.907 5.385-4.4a130.807 130.807 0 0 0 4.652-4.762c3.612-3.856 5.309-5.833 8.479-9.853 3.17-4.02 4.644-6.068 7.37-10.211a116.744 116.744 0 0 0 3.275-5.207c.775-1.841 1.509-3.685 2.093-5.567"/> + <path fill="#2B543A" d="M4.554 273c12.672 1.482 26.235 3.652 37.507 9.55 8.764 4.583 15.828 13.305 17.493 23.253-14.142 2.356-32.094 1.737-43.167-6.451"/> + <path fill="#3D3104" d="M15.554 282.401c4.505 3.443 6.858 5.098 11.75 8.246 4.892 3.147 7.435 4.645 12.698 7.465a157.701 157.701 0 0 0 6.679 3.42c2.554.9 5.14 1.754 7.873 2.468-1.906-1.338-3.894-2.616-5.841-3.925-2.682-1.321-4-2.004-6.592-3.411-5.178-2.82-7.68-4.314-12.489-7.452-4.81-3.138-7.122-4.786-11.549-8.212"/> + <path fill="#2B543A" d="M4.554 272.165c11.883 1.952 26.907.816 36.525-7.007 7.72-6.281 10.456-16.595 9.17-26.158-10.518 1.254-21.677 3.762-30.497 9.536-7.932 5.193-13.648 14.199-15.198 23.63"/> + <path fill="#3D3104" d="M13.554 271a128.94 128.94 0 0 0 5.738-3.573c4.49-2.935 6.636-4.481 10.72-7.696 4.084-3.214 6.024-4.89 9.693-8.34 1.837-1.724 2.73-2.6 4.461-4.375 1.202-1.639 2.364-3.291 3.388-5.016-1.71 1.281-3.37 2.597-5.075 3.882a115.592 115.592 0 0 1-4.535 4.276c-3.74 3.363-5.717 4.99-9.872 8.104-4.155 3.114-6.336 4.608-10.896 7.43"/> + <path fill="#3D3104" d="M2.554 273.239c30.568 4.057 59.675 1.098 88.873-8.8 28.704-11.045 52.932-27.337 73.802-49.926 10.162-11.972 18.497-24.375 25.764-38.287 3.43-7.238 6.191-14.666 8.75-22.244 1.468-4.625 2.13-6.982 3.304-11.778 1.155-4.8 1.659-7.241 2.507-12.204-1.052 4.923-1.657 7.338-3.01 12.07-1.337 4.737-2.08 7.058-3.705 11.603-2.805 7.425-5.805 14.69-9.467 21.743-7.215 13.758-15.484 26.02-25.56 37.85-20.677 22.29-44.662 38.364-73.086 49.235-28.854 9.717-57.616 12.593-87.822 8.524"/> + <path fill="#2B543A" d="M234.83 262.085c-11.591 4.085-24.926 5.402-37.276 4.761 5.637-12.767 16.908-21.825 29.304-26.768 12.644-5.041 29.02-3.577 41.696 2.115-9.981 8.098-21.633 15.63-33.723 19.892M169.616 255.931c-3.544 9.62-2.796 20.42 4.408 29.069 9.895-8.428 20.063-17.924 26.578-29.22 5.037-8.734 6.724-20.194 2.738-29.78-13.502 5.864-28.758 16.453-33.724 29.931"/> + <path fill="#3D3104" d="M199.554 230c-.976 2.223-2.05 4.44-3.067 6.662a146.716 146.716 0 0 0-3.978 6.649c-3.028 5.34-4.396 8.034-6.855 13.427-2.458 5.393-3.546 8.1-5.456 13.501-.956 2.7-1.4 4.05-2.222 6.744-.865 2.26-1.63 4.517-2.416 6.78-.8.089-1.202.137-2.006.237.385-2.23.897-4.476 1.42-6.725.845-2.722 1.3-4.085 2.279-6.812 1.958-5.454 3.072-8.189 5.585-13.633 2.513-5.444 3.91-8.163 6.998-13.55a147.781 147.781 0 0 1 4.033-6.707c1.778-2.216 3.62-4.412 5.685-6.573"/> + <path fill="#2B543A" d="M199.085 296c-9.448.002-19.114-4.49-25.531-11.584 8.962-8.257 22.26-15.483 34.72-14.285 9.978.959 18.144 8.022 22.28 16.923-9.761 4.692-20.668 8.942-31.47 8.946"/> + <path fill="#3D3104" d="M226.554 286c-2.193-.1-4.348-.252-6.521-.358a129.729 129.729 0 0 0-6.219-.944c-5.025-.652-7.586-.883-12.778-1.137-5.193-.257-7.83-.285-13.159-.125-2.664.079-4.004.144-6.696.33-2.196 0-4.416.078-6.627.13.206-.715.31-1.074.528-1.79 2.326-.387 4.625-.656 6.928-.916 2.7-.125 4.044-.16 6.715-.18 5.34-.041 7.981.044 13.178.411 5.195.367 7.756.652 12.777 1.411 2.511.375 3.756.587 6.218 1.057 1.926.64 3.83 1.312 5.656 2.111"/> + <path fill="#2B543A" d="M133.742 289.344c-1.062 10.058 2.318 20.142 11.305 26.656 7.48-10.295 14.925-21.763 18.262-34.029 2.614-9.608 1.18-20.857-4.965-28.971-11.355 8.827-23.144 22.53-24.602 36.344"/> + <path fill="#3D3104" d="M155.554 258c-.33 2.364-.756 4.746-1.13 7.118a156.968 156.968 0 0 0-1.98 7.316c-1.447 5.838-2.04 8.746-2.986 14.507-.945 5.76-1.292 8.618-1.757 14.261-.233 2.824-.32 4.226-.437 7.012-.26 2.378-.432 4.73-.623 7.093-.723.272-1.084.411-1.806.693-.171-2.236-.23-4.52-.281-6.81.133-2.818.229-4.237.479-7.09.502-5.707.87-8.598 1.858-14.42.988-5.823 1.605-8.761 3.102-14.66a156.788 156.788 0 0 1 2.025-7.385c1.07-2.541 2.2-5.08 3.536-7.635"/> + <path fill="#2B543A" d="M172.434 322.134c-9.292 2.203-19.861.104-27.88-5.183 6.68-9.92 17.794-19.994 30.163-21.717 10.007-1.394 19.617 3.597 25.837 11.072-8.189 6.812-17.707 13.36-28.12 15.828"/> + <path fill="#3D3104" d="M196.554 305.89c-2.127.412-4.238.76-6.357 1.163-2.486.134-3.737.229-6.25.476-5.027.5-7.567.863-12.674 1.824-5.106.962-7.678 1.558-12.83 2.99a133.261 133.261 0 0 0-6.445 1.942c-2.144.522-4.294 1.134-6.444 1.715.01-.805.018-1.207.038-2.016 2.173-.961 4.347-1.792 6.524-2.614a134.226 134.226 0 0 1 6.497-1.786c5.19-1.31 7.78-1.847 12.914-2.69 5.136-.844 7.69-1.15 12.736-1.537 2.523-.2 3.78-.27 6.275-.357 2.03.22 4.043.478 6.016.89"/> + <path fill="#2B543A" d="M107.667 330.884c.801 10.417 7.758 19.253 17.272 23.116 4.839-11.705 9.355-24.573 9.608-37.216.198-9.938-3.981-20.425-11.854-26.784-8.8 11.236-16.146 26.314-15.026 40.884"/> + <path fill="#3D3104" d="M121.52 295c.26 2.334.426 4.708.64 7.061a148.614 148.614 0 0 0-.202 7.456c-.027 5.92.084 8.84.537 14.57s.797 8.546 1.704 14.057c.453 2.755.707 4.118 1.268 6.812.312 2.34.709 4.632 1.087 6.942-.685.436-1.025.656-1.707 1.102-.725-2.1-1.343-4.276-1.956-6.453-.552-2.73-.8-4.11-1.24-6.903-.882-5.58-1.212-8.432-1.632-14.235-.42-5.8-.514-8.756-.444-14.746.03-2.992.075-4.5.232-7.533.465-2.682.987-5.375 1.713-8.13"/> + <path fill="#2B543A" d="M152.557 353.384c-8.4 4.313-19.043 4.732-28.003 1.448 4.043-11.198 12.258-23.612 23.66-28.148 9.243-3.677 19.602-.998 27.34 4.808-6.126 8.557-13.665 17.1-22.997 21.892"/> + <path fill="#3D3104" d="M172.554 333c-1.93.863-3.863 1.664-5.791 2.516a120.731 120.731 0 0 0-5.867 1.856c-4.695 1.604-7.046 2.519-11.722 4.572-4.677 2.055-7.01 3.195-11.63 5.705a134.152 134.152 0 0 0-5.751 3.278c-1.943.977-3.87 2.039-5.808 3.073-.177-.75-.263-1.13-.431-1.886 1.87-1.393 3.77-2.664 5.673-3.926a135.128 135.128 0 0 1 5.834-3.145c4.685-2.403 7.046-3.491 11.776-5.442 4.73-1.951 7.104-2.814 11.841-4.317a122.368 122.368 0 0 1 5.917-1.75c1.992-.255 3.977-.47 5.959-.534"/> + <path fill="#2B543A" d="M91.6 377.533c3.281 10.012 12.325 16.995 22.72 18.467 2.014-12.616 3.48-26.3.696-38.739-2.183-9.755-8.885-18.962-18.228-23.261-6.058 13.076-9.767 29.56-5.188 43.533"/> + <path fill="#3D3104" d="M96.556 339c.793 2.218 1.505 4.496 2.257 6.743.573 2.965.886 4.43 1.563 7.328 1.361 5.789 2.148 8.617 3.907 14.12 1.76 5.504 2.737 8.182 4.867 13.376a144.528 144.528 0 0 0 2.77 6.388c.838 2.224 1.742 4.384 2.634 6.565-.534.588-.8.884-1.33 1.48-1.165-1.898-2.248-3.89-3.328-5.886a145.155 145.155 0 0 1-2.765-6.486c-2.123-5.27-3.096-7.99-4.841-13.571-1.746-5.583-2.523-8.45-3.862-14.32a162.284 162.284 0 0 1-1.55-7.411c-.198-2.726-.346-5.471-.322-8.326"/> + <path fill="#2B543A" d="M141.382 387.603c-7.134 6.243-17.35 9.245-26.828 8.19 1.296-11.955 6.368-26.087 16.374-33.247 8.095-5.79 18.755-5.648 27.626-1.83-3.93 9.838-9.264 19.969-17.172 26.887"/> + <path fill="#3D3104" d="M155.554 363c-1.661 1.31-3.341 2.562-5.005 3.866a116.206 116.206 0 0 0-5.242 3.233c-4.167 2.708-6.228 4.175-10.274 7.333-4.044 3.159-6.035 4.85-9.918 8.458a130.117 130.117 0 0 0-4.794 4.648c-1.652 1.44-3.267 2.963-4.898 4.462-.351-.707-.525-1.063-.87-1.778 1.48-1.84 3.02-3.564 4.564-5.279a132.937 132.937 0 0 1 4.908-4.531c3.97-3.515 6.001-5.161 10.123-8.227 4.12-3.067 6.217-4.489 10.449-7.105a119.447 119.447 0 0 1 5.314-3.14c1.869-.724 3.739-1.408 5.643-1.94"/> + <path fill="#2B543A" d="M87.446 426.292c5.796 8.28 14.996 13.684 26.108 12.56-1.13-12.697-2.927-26.304-8.526-37.727-4.352-8.882-12.903-16.183-22.839-18.125-2.761 14.057-2.647 32.003 5.257 43.292"/> + <path fill="#3D3104" d="M83.554 388c1.27 1.939 2.48 3.956 3.722 5.933 1.232 2.71 1.87 4.044 3.19 6.668 2.646 5.239 4.056 7.773 7.027 12.656 2.972 4.883 4.537 7.234 7.804 11.743a141.583 141.583 0 0 0 4.168 5.513c1.33 1.953 2.712 3.827 4.089 5.728-.373.7-.559 1.051-.925 1.759-1.572-1.561-3.088-3.23-4.598-4.905a141.995 141.995 0 0 1-4.19-5.613c-3.283-4.588-4.854-6.98-7.833-11.945-2.978-4.964-4.39-7.542-7.033-12.865a159.894 159.894 0 0 1-3.2-6.755c-.817-2.57-1.59-5.172-2.221-7.917"/> + <path fill="#2B543A" d="M138.17 424.536c-5.413 7.75-14.575 13.186-24.044 14.464-1.619-11.885-.063-26.81 8.026-36.164 6.494-7.509 16.879-9.94 26.402-8.392-1.548 10.436-4.367 21.475-10.385 30.092"/> + <path fill="#3D3104" d="M145.554 397c-1.323 1.673-2.678 3.295-4.005 4.964a115.057 115.057 0 0 0-4.383 4.414c-3.45 3.645-5.126 5.574-8.34 9.64-3.217 4.066-4.764 6.204-7.7 10.682a127.486 127.486 0 0 0-3.574 5.725c-1.268 1.815-2.48 3.705-3.711 5.575-.518-.61-.775-.917-1.287-1.536 1-2.168 2.089-4.234 3.189-6.291a126.666 126.666 0 0 1 3.717-5.635c3.046-4.406 4.645-6.508 7.959-10.5 3.313-3.993 5.034-5.884 8.571-9.456a117.644 117.644 0 0 1 4.478-4.336c1.664-1.156 3.34-2.271 5.086-3.246"/> + <path fill="#2B543A" d="M95.629 476.067c7.74 6.822 18.18 10.183 28.925 6.273-4.452-12.307-9.571-25.831-18.114-35.839-6.563-7.69-16.6-12.97-26.886-12.468.742 14.782 5.4 32.625 16.075 42.034"/> + <path fill="#3D3104" d="M81.554 439c1.736 1.617 3.432 3.33 5.15 4.998 1.893 2.4 2.856 3.575 4.82 5.87 3.928 4.586 5.963 6.777 10.148 10.94 4.184 4.165 6.34 6.142 10.746 9.875a149.375 149.375 0 0 0 5.57 4.53c1.83 1.64 3.696 3.194 5.566 4.777-.182.8-.272 1.203-.444 2.01-1.976-1.19-3.92-2.504-5.86-3.822a149.393 149.393 0 0 1-5.626-4.63c-4.448-3.813-6.622-5.83-10.839-10.08-4.217-4.25-6.267-6.483-10.218-11.156a161.778 161.778 0 0 1-4.855-5.961c-1.448-2.366-2.857-4.77-4.158-7.351"/> + <path fill="#2B543A" d="M144.313 461.55c-3.283 9.01-10.853 16.811-19.957 20.45-4.757-11.432-7.204-26.749-1.472-38.195 4.511-9.012 14.208-14.006 24.067-14.805 1.044 10.765 1.059 22.409-2.638 32.55"/> + <path fill="#3D3104" d="M144.554 433c-.876 1.952-1.795 3.864-2.672 5.815a109.83 109.83 0 0 0-3.163 5.378c-2.444 4.402-3.586 6.7-5.676 11.474-2.087 4.777-3.04 7.258-4.727 12.39-.844 2.566-1.24 3.87-1.973 6.523-.754 2.103-1.431 4.268-2.129 6.42a158.39 158.39 0 0 1-1.66-1.215c.396-2.391.908-4.7 1.438-7a121.159 121.159 0 0 1 2.14-6.465c1.819-5.084 2.835-7.54 5.042-12.263 2.207-4.724 3.404-6.995 5.954-11.343a111.824 111.824 0 0 1 3.278-5.32c1.334-1.531 2.69-3.022 4.148-4.394"/> + <path fill="#2B543A" d="M116.574 523.858c9.204 5.495 20.943 5.734 29.98-.557-7.86-11.388-16.515-23.902-27.683-32.096-8.243-6.05-19.348-9.055-29.317-5.99 4.628 14.855 13.663 30.668 27.02 38.643"/> + <path fill="#3D3104" d="M93.554 490c2.095 1.183 4.178 2.472 6.275 3.712a167.31 167.31 0 0 0 6.206 4.67c5.014 3.613 7.571 5.306 12.757 8.46 5.186 3.158 7.82 4.62 13.14 7.314a158.838 158.838 0 0 0 6.685 3.223c2.244 1.216 4.503 2.336 6.78 3.49.056.85.088 1.276.157 2.131-2.268-.733-4.537-1.597-6.798-2.463a160.731 160.731 0 0 1-6.778-3.316c-5.392-2.77-8.06-4.272-13.31-7.508-5.248-3.238-7.833-4.972-12.9-8.673a168.057 168.057 0 0 1-6.271-4.754c-2.024-2-4.015-4.045-5.943-6.286"/> + <path fill="#2B543A" d="M159.468 497.437c-.567 9.705-5.43 19.582-13.271 25.563-7.955-10.474-14.485-25.054-12.17-38.355 1.74-10.007 9.796-17.438 19.107-20.645 3.824 10.592 6.988 22.225 6.334 33.437"/> + <path fill="#3D3104" d="M152.554 468c-.335 2.19-.72 4.35-1.046 6.546-.71 2.45-1.039 3.698-1.635 6.232-1.187 5.072-1.666 7.692-2.36 13.079-.694 5.385-.916 8.157-1.067 13.834a117.27 117.27 0 0 0-.009 7.182c-.116 2.347-.133 4.739-.17 7.127-.812-.339-1.218-.51-2.028-.858-.335-2.56-.522-5.062-.685-7.555.01-2.897.053-4.328.205-7.156.306-5.654.6-8.412 1.433-13.77.832-5.359 1.378-7.962 2.69-13.002a106.34 106.34 0 0 1 1.77-6.2c.899-1.875 1.832-3.716 2.902-5.459"/> + <path fill="#3D3104" d="M261.554 243c-4.95.912-7.381 1.448-12.15 2.667-4.775 1.203-7.115 1.88-11.706 3.376-7.5 2.594-14.848 5.389-22.001 8.85-13.958 6.822-26.448 14.742-38.558 24.48-22.866 20.038-39.607 43.558-51.275 71.66-10.524 28.566-14.207 57.233-10.987 87.538 2.306 15.442 6.137 29.793 11.798 44.341 6.453 15.136 14.404 28.875 24.164 42.11l-1.25.978c-10.062-13.235-18.31-27.007-25.07-42.205-5.716-14.66-9.61-29.36-11.865-44.936-3.198-30.668.578-59.676 11.293-88.581 11.848-28.38 28.816-52.134 51.985-72.358 12.254-9.819 24.887-17.8 39-24.672 7.332-3.222 14.835-5.773 22.483-8.118 4.666-1.336 7.041-1.932 11.868-2.97 4.831-1.019 7.286-1.453 12.27-2.16"/> + <path fill="#466E34" d="M147.476 155.227c-.776 5.798-7.328 9.773-7.328 9.773s-5.293-5.428-4.516-11.227c.776-5.798 7.327-9.773 7.327-9.773s5.293 5.428 4.517 11.227"/> + <path fill="#5D8A48" d="M142.554 147s-3.911 9.805-2.802 18"/> + <path fill="#3D3104" d="M130.586 149.947S129.4 158.605 141.535 170l2.019-1.914s-7.917-7.712-9.312-16.785c-.647-4.21-3.656-1.354-3.656-1.354"/> + <path fill="#C45B26" d="M137.351 167.416l.194.821c.377 1.628.658 3.18.824 4.556.029.235.046.457.064.68.06.447.072.868.096 1.275.291 6.886-2.021 12.69-5.073 15.608-.263.25-.538.49-.823.714a22.557 22.557 0 0 0-2.926 2.798c-.24.277-.49.54-.753.792-3.04 2.905-8.895 4.91-15.64 4.195-1.854-.194-3.797-.612-5.76-1.204 9.111-.372 14.324-1.21 17.918-5.198 5.894-6.544 10.42-11.232 7.252-24.303-3.425-14.166-16.45-17.768-24.278-7.554.246-.498.467-.997.642-1.523.837-2.406 2.091-4.515 3.792-6.142 1.139-1.088 2.268-1.929 3.393-2.549 9.6-5.344 18.04 5.756 21.078 17.034"/> + <circle cx="116.5" cy="174.5" r="24.5" fill="url(#a)"/> + <path fill="url(#b)" d="M116.5 199c10.436 0 19.348-6.525 22.879-15.717 1.047-2.727-10.294 12.217-23.825 12.217-13.531 0-22.5-13.5-23.554-21 0 13.531 10.969 24.5 24.5 24.5z"/> + <path fill="#466E34" d="M113.266 352.098c-4.096 4.408-11.63 3.883-11.63 3.883s-.892-7.672 3.205-12.08 11.63-3.881 11.63-3.881.892 7.67-3.205 12.078"/> + <path fill="#3D3104" d="M114.554 343s-8.932 5.743-13 13M103.082 338.022s-5.57 6.077-2.713 21.978l2.538-.33s-1.713-10.59 2.162-18.48c1.798-3.662-1.987-3.168-1.987-3.168"/> + <circle cx="189.5" cy="438.5" r="24.5" fill="url(#a)"/> + <path fill="url(#b)" d="M189.5 463c10.436 0 19.348-6.525 22.879-15.717 1.047-2.727-10.294 12.217-23.825 12.217-13.531 0-22.5-13.5-23.554-21 0 13.531 10.969 24.5 24.5 24.5z"/> + <circle cx="100.5" cy="365.5" r="24.5" fill="url(#a)"/> + <path fill="url(#b)" d="M100.5 390c10.436 0 19.348-6.525 22.879-15.717 1.047-2.727-10.294 12.217-23.825 12.217-13.531 0-22.5-13.5-23.554-21 0 13.531 10.969 24.5 24.5 24.5z"/> + <path fill="#F6F2DA" d="M84.267 365c-.242 4.416 1.598 8.121-.438 7.997-2.036-.125-3.49-3.808-3.249-8.224.241-4.416 2.088-7.895 4.124-7.77 2.036.125-.196 3.58-.437 7.997M88.539 377.757a2 2 0 1 1-3.969.487 2 2 0 0 1 3.969-.487"/> + <path fill="#2B543A" d="M202.267 424.098c-4.097 4.407-11.631 3.883-11.631 3.883s-.892-7.672 3.205-12.08c4.096-4.407 11.63-3.882 11.63-3.882s.893 7.671-3.204 12.079"/> + <path fill="#3D3104" d="M203.554 415s-8.932 5.743-13 13M192.082 410.022s-5.57 6.076-2.713 21.978l2.538-.33s-1.713-10.59 2.162-18.48c1.798-3.663-1.987-3.168-1.987-3.168"/> + <path fill="#F6F2DA" d="M173.267 438c-.242 4.416 1.598 8.122-.438 7.997s-3.49-3.807-3.249-8.224c.241-4.416 2.088-7.895 4.124-7.77 2.036.126-.196 3.58-.437 7.998"/> + <path fill="#FFDBB6" d="M464.554 299.187s-24.299 14.592-49.339 17.357c-20.914 2.323-42.36-3.578-50.661-33.042 0 0 7.72-.278 15.952-2.997 8.857-2.928 11.222-14.383 7.234-20.054-9.9-14.057 52.77-16.451 52.77-16.451s-1.808 5.043-3.083 11.735c-1.924 10.085-2.667 23.864 5.68 29.812 13.912 9.852 21.447 13.64 21.447 13.64"/> + <path fill="#F9CA99" d="M464.554 299.874S440.44 314.272 415.59 317c-7.938-6.764-9.824-16.53 1.243-25.38 28.07-22.445-24.32-29.439-28.28-29.943 18.546 1.765 36.148-1.237 49.08-4.677-1.91 9.95-2.647 23.547 5.637 29.415 13.806 9.721 21.284 13.459 21.284 13.459"/> + <path fill="#FFDBB6" d="M201.444 294.937c-20.764-12.07-49.768-49.925-65.33-72.911a.61.61 0 0 0-.068-.092c-4.098-6.059-10.752-18.302-20.072-19.791-3.138-.502-11.336-3.552-12.417-6.42-.208-1.225 10.846.55 12.911.795 9.716 1.158 15.387-3.831 19.395-9.567 2.264-3.241 3.198-7.317 2.712-17.438-.249-5.176-5.708-13.513-5.708-13.513s10.776 4.35 11.926 10.409c1.152 6.081 3.982 34.874 6.86 40.957 2.877 6.058 47.075 44.745 75.55 53.694 2.625 4.37 4.396 8.718 5.386 12.834 4.765 19.772-8.517 34.201-31.145 21.043"/> + <path fill="#F9CA99" d="M201.26 294.935c-20.884-12.074-50.055-49.941-65.706-72.935 2.246 2.915 62.72 80.732 84.412 54.245 3.68-4.488 8.103-4.812 12.618-2.36 4.792 19.778-8.567 34.213-31.325 21.05"/> + <path fill="#FFD17D" d="M527.36 436.356v.023c-1.018 9.947-6.196 15.869-19.209 12.816 3.767-14.412-11.21-29.078-25.867-31.09l-6.933-27.666s-13.476 31.228-13.476 58.756h-170.29s2.382-8.398 5.641-20.357c7.143-26.07 18.446-69.049 18.284-78.464 0-.138 0-.277-.023-.416 0 0-26.582-1.919-65.115-19.269-15.857-7.148-26.606-12.099-33.979-16.955-.024-.024-.046-.024-.046-.024-2.704-1.757-5.985-3.259-7.858-5.109-5.408-5.39-6.935-13.582-6.935-13.582s10.678-1.735 14.909-16.385c6.314-21.869 11.61-20.62 11.61-20.62.092 0 3.46-.283 12.29 9.432 0 0 0 .024.023.047.971 1.04 3.144 2.244 6.172 3.539 18.377 7.911 68.606 19.107 77.204 18.783 10.01-.393 34.973-8.768 47.085-2.036 12.482 6.94 12.737 11.913 12.737 11.913l3.93 15.174 12.481-8.767 2.219-1.549 50.021-8.952s.833-2.477 3.908-1.598c3.628 1.042 10.4 5.623 22.674 8.144 14.864 3.077 22.653 21.629 28.224 41.776h.023v.07c3.536 12.7 6.172 26 9.13 36.433 4.646 16.285 12.714 40.782 11.165 55.933"/> + <path fill="#C6953D" d="M475.554 390.234S462.06 421.468 462.06 449H291.554s2.384-8.399 5.648-20.36c28.954 6.871 85.889 16.15 117.852-6.78 44.113-31.626 49.9-62.86 49.9-62.86l10.6 31.234zM457.554 294.261C443.632 309.241 407.64 327 407.64 327l-8.086-21.423 2.205-1.559 49.713-9s3.026-1.64 6.082-.757M364.93 287l-2.376 30 21-17.611z"/> + <path fill="#876635" d="M507.065 343.465v.07c-.022-.047-.022-.07-.022-.07h.022z"/> + <path fill="#C6953D" d="M527.362 436c-2.487-7.557-1.272-18.175-22.808-24.71 14.928-8.642 3.193-64.71 2.782-67.29 3.49 12.648 6.09 25.896 9.009 36.288 4.585 16.22 12.545 40.62 11.017 55.712M328.554 289c-15.883 78.506-100.289 28.422-107.528 25.81-2.604-.955-4.215-1.566-4.472-1.663 7.358 4.885 18.083 9.864 33.906 17.054 33.129 15.035 57.388 18.546 63.471 19.23l1.526.569c1.661-8.19 1.24-6.328 2.671-13.05l-.047.01c6.04-29.534 10.473-47.96 10.473-47.96"/> + <path fill="#FFD17D" d="M443.371 278l-44.817 21.235L411.932 320l49.622-27.61zM387.554 297.141l-27 17.859 4.936-31.058L377.706 282z"/> + <path fill="#FFDBB6" d="M456.39 184.718c14.398 20.807 9.25 49.38-11.496 63.82-20.745 14.44-76.679 17.123-83.867 3.857-2.562-4.729 5.705-28.499 14.7-49.32 5.51-12.755 9.151-24.403 17.032-29.888 20.746-14.44 49.235-9.277 63.632 11.53"/> + <path fill="#282625" d="M406.674 161.13c-7.772.399-24.12 7.336-24.12 19.693 12.059-6.565 38.784-6.179 39.17 5.792.386 11.97-12.634 39.515-6.896 41.767 5.739 2.251 8.142-5.25 15.58-1.452 7.436 3.797 6.327 5.608 6.13 37.87-.046 7.284 25.92-19.807 27.848-48.38 1.93-28.574-12.56-57.607-57.712-55.29"/> + <path fill="#112129" d="M364.671 231c1.256.01 2.313.192 3.36.39 1.043.18 1.974.681 3.01.932 1.028.258 2.084.407 3.16.487 1.086.115 2.168.003 3.287-.106l.066.196c-1.032.43-2.143.772-3.297.936-1.153.165-2.34.216-3.511.108-1.165-.091-2.402-.108-3.464-.615-1.053-.493-2.049-1.137-2.728-2.152l.117-.176z"/> + <path fill="#FFDBB6" d="M375.554 203s-7 6.013-14 12.803c0 0 5.53 5.042 9.467 4.073 3.937-.97 4.533-16.876 4.533-16.876M436.657 233.1c-3.888 5.482-14.644 7.408-18.569 4.654-3.925-2.754.468-9.147 4.356-14.63 3.887-5.482 10.22-7.694 14.146-4.939 3.924 2.755 3.956 9.432.067 14.915"/> + <path fill="#FFD17D" d="M471.25 174.425a72.665 72.665 0 0 1-3.15 10.978c-1.77 4.729-3.793 8.626-5.724 11.694-.024.046-.047.069-.07.093-.045.09-.115.184-.183.276-3.655 5.766-6.828 8.534-6.828 8.534l-21.75-13.608-12.69-7.934-10.116-6.343-12.692-7.912-1.493-.945s.826-2.238 2.206-5.605c1.172-2.86 2.759-6.573 4.598-10.401 5.058-10.588 12.047-22.328 17.704-21.173 5.677 1.152 22.001 7.518 34.578 16.628v.023a77.63 77.63 0 0 1 2.16 1.615c8.875 6.942 15.243 15.292 13.45 24.08"/> + <path fill="#C6953D" d="M472.247 173.573a71.475 71.475 0 0 1-3.184 10.927c-1.79 4.706-3.834 8.586-5.786 11.639-.024.046-.047.068-.07.092-.046.09-.117.183-.186.275-3.694 5.739-6.901 8.494-6.901 8.494l-21.985-13.544c.42-11.707-19.239-36.594-11.965-34.299 14.105 4.453 34.577-8.261 34.299-9.157a78.386 78.386 0 0 1 2.183 1.607c8.97 6.91 15.407 15.22 13.595 23.966"/> + <path fill="#FFD17D" d="M497.146 231.238c-.738 2.83-2.306 4.696-4.565 5.732-.414.184-.854.345-1.314.483a8.894 8.894 0 0 1-1.13.276c-6.453 1.22-16.596-1.795-28.767-6.768.506-1.427 1.29-4.213 1.821-7.114 0-.068.023-.138.046-.207.253-1.45.438-2.9.46-4.236.024-.391.024-.76.024-1.105-.023-.137-.023-.276-.023-.391-.047-.875-.992-2.049-2.606-3.453-.068-.046-.137-.093-.206-.161l-.023-.023c-3.826-3.2-11.18-7.505-19.801-11.995-6.247-3.246-13.162-6.607-19.894-9.715-1.198-.552-2.374-1.104-3.549-1.634-.322-.138-.6-.277-.877-.414-14.314-6.47-26.878-11.443-29.02-11.443h-.209s-4.495 7.322-6.2 10.292c-.023.045-.023.068-.046.091-19.063-11.395-31.419-20.006-31.696-26.221-.045-.46 0-.899.116-1.335 3.596-13.722 29.574-13.836 53.848-9.002 9.081 1.796 17.934 4.282 25.286 7.022a88.225 88.225 0 0 1 7.147 3.039l.045.045c5.602 2.648 11.342 6.055 16.966 9.9 1.89 1.311 3.78 2.67 5.625 4.052 0 0 0 .022.023.045 3.389 2.533 6.662 5.227 9.82 7.989 10.787 9.508 19.938 20.075 24.965 29.445 3.433 6.4 4.932 12.247 3.734 16.806"/> + <path fill="#C6953D" d="M490.554 237.724c-6.444 1.244-16.57-1.83-28.723-6.899.505-1.454 1.288-4.294 1.818-7.251a.7.7 0 0 1 .046-.21c.253-1.48.437-2.957.46-4.319.024-.399.024-.773.024-1.126-.024-.14-.024-.28-.024-.399-.046-.891-.99-2.088-2.601-3.52 2.187 1.62 18.85 14.15 29 23.724"/> + <path fill="#466E34" d="M312.267 423.098c-4.097 4.407-11.631 3.883-11.631 3.883s-.892-7.672 3.204-12.079c4.097-4.408 11.632-3.883 11.632-3.883s.89 7.671-3.205 12.079"/> + <path fill="#3D3104" d="M313.554 414s-8.933 5.743-13 13M302.081 409.022s-5.57 6.076-2.711 21.978l2.538-.33s-1.715-10.59 2.16-18.48c1.8-3.662-1.987-3.168-1.987-3.168"/> + <circle cx="295.5" cy="444.5" r="24.5" fill="url(#a)"/> + <path fill="url(#b)" d="M295.5 469c10.436 0 19.348-6.525 22.879-15.717 1.047-2.727-10.294 12.217-23.825 12.217-13.531 0-22.5-13.5-23.554-21 0 13.531 10.969 24.5 24.5 24.5z"/> + <path fill="#F6F2DA" d="M287.539 448.756a2 2 0 1 1-3.97.488 2 2 0 0 1 3.97-.488"/> + <path fill="#2B543A" d="M357.463 428.638c-5.8-1.62-8.91-8.568-8.91-8.568s6.294-4.326 12.092-2.708c5.8 1.62 8.909 8.568 8.909 8.568s-6.292 4.326-12.091 2.708"/> + <path fill="#6C5C00" d="M366.554 425s-8.94-4.852-17-5"/> + <path fill="#3D3104" d="M365.892 413.236s-8.349-2.32-21.338 7.59l1.589 2.174s8.747-6.425 17.882-6.49c4.24-.031 1.867-3.274 1.867-3.274"/> + <path fill="#F27038" d="M341.881 451.74l-.84.076c-1.567.158-3.118.22-4.622.164-.238-.005-.46-.02-.683-.034-.45-.006-.866-.055-1.272-.09-6.846-.714-12.24-3.895-14.67-7.403a11.576 11.576 0 0 1-.585-.936 22.966 22.966 0 0 0-2.332-3.363 11.367 11.367 0 0 1-.67-.876c-2.422-3.492-3.536-9.696-1.834-16.4.465-1.842 1.166-3.742 2.04-5.636 5.657-12.187 18.862-23.47 27.91-10.421 1.366 1.97 2.179 4.305 2.506 6.832.551 4.012 2.786 7.635 6.062 9.91.457.32.918.617 1.41.87 2.254 1.196 4.153 2.77 5.508 4.726.907 1.306 1.571 2.572 2.017 3.797 3.861 10.471-8.354 17.366-19.945 18.784"/> + <circle cx="335.5" cy="423.5" r="24.5" fill="url(#a)" transform="rotate(59 335.5 423.5)"/> + <circle cx="363.5" cy="446.5" r="24.5" fill="url(#a)" transform="rotate(59 363.5 446.5)"/> + <path fill="url(#b)" d="M353.376 464.393c10.436 0 19.348-6.524 22.88-15.717 1.047-2.726-10.295 12.217-23.826 12.217-13.53 0-22.5-13.5-23.554-21 0 13.531 10.97 24.5 24.5 24.5z" transform="rotate(59 352.6 452.143)"/> + <circle cx="401.5" cy="438.5" r="24.5" fill="url(#a)" transform="rotate(59 401.5 438.5)"/> + <path fill="url(#b)" d="M391.376 456.393c10.436 0 19.348-6.524 22.88-15.717 1.047-2.726-10.295 12.217-23.826 12.217-13.53 0-22.5-13.5-23.554-21 0 13.531 10.97 24.5 24.5 24.5z" transform="rotate(59 390.6 444.143)"/> + <path fill="url(#b)" d="M325.376 441.393c10.436 0 19.348-6.524 22.88-15.717 1.047-2.726-10.295 12.217-23.826 12.217-13.53 0-22.5-13.5-23.554-21 0 13.531 10.97 24.5 24.5 24.5z" transform="rotate(59 324.6 429.143)"/> + <path fill="#2B543A" d="M382.606 425.883c-5.246 2.74-12.052-.422-12.052-.422s1.7-7.605 6.947-10.344c5.247-2.74 12.053.423 12.053.423s-1.701 7.605-6.948 10.343"/> + <path fill="#3D3104" d="M386.554 417s-9.936 2.435-16 8M377.384 408s-8.077 3.827-10.83 20.37l2.796.63s2.034-10.947 8.98-17.174c3.225-2.89-.946-3.826-.946-3.826"/> + <path fill="#F6F2DA" d="M350.502 441.45a2 2 0 1 1-3.897-.9 2 2 0 0 1 3.897.9"/> + <path fill="#9E8E01" d="M428.888 453.148c-4.103-4.405-3.263-12.123-3.263-12.123s7.491-.577 11.594 3.827c4.104 4.404 3.264 12.123 3.264 12.123s-7.491.578-11.595-3.827"/> + <path fill="#6C5C00" d="M437.554 454s-5.167-8.797-12-13M443.547 443.416s-5.855-6.238-21.993-3.886l.212 2.734s10.74-1.364 18.499 3.14c3.601 2.09 3.282-1.988 3.282-1.988"/> + <path fill="#9E8E01" d="M429.554 556c22.08 0 40-17.92 40-40 0 22.08-17.92 40-40 40"/> + <path fill="#466E34" d="M267.554 446v69.474c0 2.826.296 5.581.846 8.245C272.148 542.153 288.24 556 307.554 556c60.408-11.782 97.074-22.542 110-32.28 33.702-25.393 15.436-62.27 12-71.72-3.476-9.557-57.476-11.557-162-6z"/> + <path fill="#112129" d="M469.554 443h-202v3.496h202V516 446.496z"/> + <path fill="#2B543A" d="M429.554 556c22.08 0 40-18.156 40-40.527V446"/> + <path fill="#2B543A" d="M469.554 447h-202v3.456h160.144c3.911 28.672-1.05 81.534-90.866 81.534-18.84 0-41.412-2.326-68.423-7.688 3.785 18.335 20.038 32.107 39.545 32.107 71.378.788 111.778.788 121.2 0 21.732-1.817 35.199-38.287 40.4-109.409z"/> + <path fill="#466E34" d="M264.554 448h208v-12h-208z"/> + <path fill="#FFDBB6" d="M511.554 443.403c0 11.99-32.737 5.754-45.418 3.06-12.056-2.553-19.48-4.096-24.852-4.579-2.95-.23-5.255-.161-7.377.254-.139 0-.253.022-.368.045l-.484.138c-2.168.506-4.173 1.382-6.503 2.624-5.048 2.692-5.186 8.238-13.256 7.94-3.25-.116-3.85-.713-3.388-1.428-3.527 1.773-8.116 3.315-9.475.393-.692-1.497-.577-2.233-.347-2.579-1.406.945-4.849 3.722-9.46 2.858-1.183-.221-2.297-2.374-1.628-3.525-4.542 4.397-10.675 9.413-13.994 8.217-2.998-1.06 9.66-14.96 17.729-22.232 8.069-7.296 26.904-17.652 43.433-16.5 16.508 1.15 51.872 0 51.872 0s9.937 3.565 16.876 10.723c.022-.023.022 0 .022 0 3.736 3.82 6.618 8.7 6.618 14.591"/> + <path fill="#F9CA99" d="M511.554 443.804c0 12.156-32.612 5.833-45.244 3.103-12.01-2.589-19.405-4.153-24.756-4.643 54.52-2.24 62.904-12.577 63.385-13.254.023-.023.023 0 .023 0 3.721 3.874 6.592 8.82 6.592 14.794M399.554 449.826c.428-.71.904-1.37 1.354-2.057.465-.67.945-1.327 1.44-1.968.495-.643.832-1.443 1.53-1.882.688-.451 1.444-.833 2.5-.919l.176.174c-.084 1.051-.464 1.807-.915 2.494-.437.697-1.237 1.036-1.88 1.531-.642.496-1.3.977-1.97 1.444-.688.452-1.35.928-2.06 1.357l-.175-.174zM410.554 451.846c.42-.778.892-1.513 1.336-2.27.46-.745.936-1.477 1.428-2.195.49-.72.816-1.577 1.52-2.116.691-.55 1.456-1.038 2.532-1.265l.184.154c-.06 1.081-.431 1.9-.875 2.659-.432.767-1.243 1.218-1.89 1.806a55.831 55.831 0 0 1-1.98 1.73c-.69.55-1.356 1.121-2.07 1.651l-.185-.154zM388.554 448.852c.59-.857 1.232-1.674 1.845-2.513a82.62 82.62 0 0 1 1.937-2.435c.658-.8 1.157-1.734 2.025-2.362.856-.638 1.783-1.216 3.014-1.542l.179.15c-.24 1.149-.783 2.045-1.397 2.884-.602.847-1.573 1.389-2.385 2.064a89.418 89.418 0 0 1-2.474 1.988c-.856.637-1.685 1.296-2.565 1.914l-.18-.148z"/> + <path fill="#466E34" d="M213.57 54.994c-11.594 3.744-24.823 4.644-37.016 3.604 5.98-12.677 17.415-21.44 29.831-26.022 12.666-4.673 28.814-2.674 41.169 3.462-10.129 7.837-21.892 15.05-33.984 18.956M147.985 45.81c-3.85 9.498-3.44 20.314 3.5 29.19 10.169-8.099 20.646-17.258 27.522-28.334 5.316-8.563 7.365-19.958 3.676-29.666-13.7 5.42-29.305 15.505-34.698 28.81"/> + <path fill="#5D8A48" d="M179.554 21c-1.02 2.185-2.136 4.361-3.195 6.543a146.269 146.269 0 0 0-4.08 6.501c-3.116 5.227-4.53 7.869-7.093 13.166-2.562 5.298-3.706 7.962-5.735 13.285a136.978 136.978 0 0 0-2.373 6.65c-.913 2.227-1.728 4.452-2.564 6.682-.783.064-1.175.1-1.96.173.443-2.21 1.013-4.433 1.592-6.658.906-2.686 1.393-4.03 2.431-6.718 2.077-5.375 3.246-8.065 5.863-13.412 2.617-5.346 4.062-8.012 7.237-13.283a146.953 146.953 0 0 1 4.136-6.557c1.8-2.152 3.662-4.283 5.74-6.372"/> + <path fill="#466E34" d="M176.753 86.979c-9.463-.302-18.998-5.134-25.2-12.483 9.241-8.022 22.788-14.867 35.228-13.26 9.962 1.287 17.916 8.66 21.773 17.753-9.925 4.408-20.983 8.334-31.8 7.99"/> + <path fill="#466E34" d="M204.554 79c-2.192-.188-4.346-.434-6.518-.627a116.532 116.532 0 0 0-6.195-1.282c-5.009-.91-7.566-1.258-12.756-1.724-5.192-.466-7.832-.587-13.174-.588-2.67 0-4.014.03-6.716.15-2.2-.076-4.425-.061-6.641-.078.23-.805.348-1.208.59-2.013 2.343-.36 4.655-.588 6.969-.804 2.709-.05 4.055-.046 6.73.022 5.35.134 7.992.32 13.183.913 5.19.593 7.744 1.003 12.746 2.033 2.502.511 3.741.794 6.19 1.41 1.908.793 3.792 1.618 5.592 2.588M110.874 78.796C109.48 88.888 112.57 99.15 121.44 106c7.886-10.123 15.773-21.428 19.538-33.67 2.948-9.59 1.86-20.962-4.087-29.33-11.752 8.521-24.1 21.936-26.016 35.796"/> + <path fill="#5D8A48" d="M134.554 48c-.416 2.327-.932 4.668-1.393 7.001a150.952 150.952 0 0 0-2.278 7.17c-1.68 5.725-2.385 8.582-3.544 14.245-1.159 5.665-1.609 8.481-2.268 14.046-.33 2.782-.465 4.167-.675 6.917-.344 2.344-.596 4.663-.87 6.994-.753.245-1.13.37-1.885.627-.106-2.218-.093-4.48-.074-6.743.227-2.783.372-4.182.722-6.996.699-5.627 1.17-8.472 2.376-14.198 1.206-5.725 1.936-8.61 3.67-14.392.861-2.891 1.326-4.34 2.325-7.237 1.187-2.478 2.434-4.951 3.894-7.434"/> + <path fill="#466E34" d="M149.095 112.346c-9.306 1.938-19.744-.525-27.541-6.141 6.96-9.845 18.332-19.709 30.68-21.063 9.991-1.096 19.38 4.27 25.32 12.048-8.359 6.647-18.031 12.983-28.459 15.156"/> + <path fill="#5D8A48" d="M173.554 98.02c-2.127.324-4.236.59-6.354.904-2.474.05-3.72.102-6.225.259-5.012.319-7.548.583-12.653 1.334-5.105.75-7.678 1.235-12.843 2.43-2.582.597-3.876.922-6.466 1.633-2.148.426-4.303.937-6.46 1.42.038-.757.057-1.137.103-1.898 2.19-.84 4.376-1.558 6.566-2.264 2.61-.651 3.913-.948 6.512-1.487 5.2-1.078 7.79-1.504 12.918-2.144 5.13-.639 7.677-.85 12.704-1.063a125.55 125.55 0 0 1 6.249-.144c2.009.268 4.002.572 5.949 1.02"/> + <path fill="#466E34" d="M83.593 119.356c.482 10.43 7.301 19.48 16.895 23.644 5.321-11.536 10.352-24.244 11.02-36.865.525-9.92-3.405-20.531-11.241-27.135-9.354 10.94-17.346 25.766-16.674 40.356"/> + <path fill="#5D8A48" d="M99.315 84c.188 2.338.277 4.713.418 7.068-.25 2.994-.343 4.481-.464 7.438-.232 5.908-.217 8.825.053 14.56.27 5.734.53 8.556 1.274 14.085.373 2.763.588 4.132 1.074 6.84.243 2.344.574 4.645.884 6.961-.72.415-1.08.625-1.799 1.048-.675-2.12-1.238-4.31-1.796-6.501a131.47 131.47 0 0 1-1.042-6.928c-.718-5.599-.961-8.456-1.196-14.26-.233-5.805-.228-8.756.048-14.733.135-2.987.234-4.49.5-7.515.571-2.663 1.202-5.334 2.046-8.063"/> + <path fill="#466E34" d="M128.742 142.901c-8.58 3.996-19.288 4.073-28.188.547 4.422-10.934 13.076-22.934 24.68-27.054 9.407-3.34 19.731-.367 27.32 5.611-6.43 8.258-14.28 16.458-23.812 20.896"/> + <path fill="#5D8A48" d="M148.554 123c-1.973.821-3.947 1.578-5.92 2.39-2.386.627-3.582.97-5.974 1.711-4.785 1.491-7.184 2.351-11.965 4.303-4.782 1.953-7.17 3.045-11.91 5.465a135.044 135.044 0 0 0-5.904 3.171c-1.99.938-3.969 1.963-5.956 2.96-.152-.776-.227-1.164-.371-1.945 1.929-1.365 3.886-2.605 5.846-3.836a135.857 135.857 0 0 1 5.984-3.032c4.801-2.31 7.217-3.346 12.048-5.192 4.831-1.844 7.253-2.65 12.077-4.037a120.57 120.57 0 0 1 6.022-1.602c2.016-.197 4.024-.355 6.023-.356"/> + <path fill="#466E34" d="M67.14 164.984c2.87 10.026 11.428 17.23 21.467 19.016 2.348-12.44 4.197-25.957 1.886-38.373-1.812-9.738-8.027-19.073-16.958-23.627-6.286 12.77-10.401 28.99-6.394 42.984"/> + <path fill="#5D8A48" d="M73.614 128c.706 2.222 1.334 4.501 2.001 6.751.47 2.954.731 4.416 1.304 7.307 1.155 5.778 1.837 8.604 3.39 14.111 1.554 5.507 2.43 8.192 4.353 13.404.963 2.606 1.467 3.89 2.516 6.417.751 2.23 1.57 4.398 2.376 6.587-.54.565-.81.849-1.347 1.423-1.083-1.917-2.082-3.925-3.078-5.937a145.709 145.709 0 0 1-2.508-6.513c-1.916-5.288-2.785-8.011-4.32-13.597-1.538-5.585-2.21-8.45-3.34-14.305-.57-2.925-.827-4.404-1.29-7.392-.11-2.706-.17-5.43-.057-8.256"/> + <path fill="#466E34" d="M115.576 177.361c-7.313 5.988-17.598 8.65-27.022 7.291 1.67-11.864 7.174-25.775 17.382-32.585 8.258-5.508 18.888-5.022 27.618-.933-4.23 9.671-9.871 19.59-17.978 26.227"/> + <path fill="#5D8A48" d="M130.554 153c-1.704 1.27-3.425 2.478-5.133 3.74a116.504 116.504 0 0 0-5.35 3.094c-4.257 2.598-6.367 4.011-10.516 7.069-4.15 3.057-6.196 4.7-10.197 8.215-2 1.757-2.99 2.665-4.947 4.536-1.698 1.401-3.363 2.885-5.044 4.346-.328-.726-.491-1.09-.813-1.823 1.539-1.81 3.134-3.5 4.735-5.18a132.458 132.458 0 0 1 5.057-4.416c4.085-3.419 6.17-5.014 10.393-7.976 4.223-2.962 6.366-4.329 10.685-6.833a118.555 118.555 0 0 1 5.42-2.996c1.894-.671 3.787-1.3 5.71-1.776"/> + <path fill="#466E34" d="M60.669 214.52c5.57 8.475 14.66 14.18 25.885 13.41-.728-12.75-2.098-26.433-7.369-38.051-4.097-9.032-12.473-16.616-22.415-18.879-3.233 13.988-3.696 31.962 3.899 43.52"/> + <path fill="#5D8A48" d="M58.554 176c1.232 1.982 2.4 4.04 3.599 6.06a156.665 156.665 0 0 0 3.035 6.779c2.526 5.332 3.88 7.915 6.75 12.9 2.868 4.984 4.387 7.389 7.568 12.008 1.592 2.309 2.405 3.44 4.069 5.655 1.292 1.997 2.639 3.92 3.979 5.867-.402.688-.602 1.035-.998 1.731-1.552-1.613-3.041-3.334-4.526-5.059a142.267 142.267 0 0 1-4.087-5.756c-3.195-4.699-4.718-7.144-7.592-12.212-2.873-5.068-4.228-7.692-6.748-13.108a156.732 156.732 0 0 1-3.04-6.866c-.75-2.6-1.455-5.23-2.01-7.999"/> + <path fill="#466E34" d="M111.267 214.333c-5.63 7.562-14.918 12.694-24.381 13.667-1.233-11.913.788-26.756 9.133-35.834 6.7-7.286 17.109-9.38 26.535-7.53-1.871 10.364-5.027 21.29-11.287 29.697"/> + <path fill="#5D8A48" d="M119.554 187c-1.366 1.632-2.762 3.21-4.132 4.837a116.182 116.182 0 0 0-4.49 4.275c-3.54 3.536-5.263 5.412-8.583 9.377-3.319 3.965-4.922 6.054-7.979 10.44a127.322 127.322 0 0 0-3.728 5.612c-1.316 1.776-2.58 3.627-3.86 5.459-.494-.627-.74-.942-1.228-1.576 1.06-2.137 2.208-4.17 3.364-6.192a129.096 129.096 0 0 1 3.867-5.518c3.164-4.31 4.817-6.362 8.232-10.25 3.415-3.888 5.183-5.726 8.807-9.184a116.44 116.44 0 0 1 4.58-4.195c1.688-1.102 3.388-2.165 5.15-3.085"/> + <path fill="#466E34" d="M67.131 264.447c7.442 7.051 17.666 10.737 28.423 7.177-4.016-12.416-8.654-26.072-16.79-36.327-6.251-7.88-16.016-13.467-26.21-13.293.267 14.769 4.31 32.716 14.577 42.443"/> + <path fill="#5D8A48" d="M54.554 227c1.697 1.66 3.35 3.414 5.029 5.124a159.856 159.856 0 0 0 4.667 5.981c3.81 4.676 5.79 6.914 9.872 11.181 4.083 4.267 6.191 6.296 10.51 10.142A148.899 148.899 0 0 0 90.1 264.1c1.792 1.687 3.622 3.287 5.455 4.918-.21.79-.312 1.185-.512 1.981-1.953-1.244-3.87-2.61-5.782-3.98a150.834 150.834 0 0 1-5.518-4.773c-4.36-3.927-6.485-5.998-10.598-10.35-4.113-4.351-6.106-6.633-9.937-11.397a159.901 159.901 0 0 1-4.699-6.071c-1.383-2.395-2.726-4.826-3.954-7.429"/> + <path fill="#6C5C00" d="M117.554 222c-.919 1.95-1.878 3.858-2.797 5.808a112.26 112.26 0 0 0-3.264 5.35c-2.53 4.384-3.721 6.676-5.915 11.45-2.194 4.773-3.205 7.256-5.018 12.405a125.003 125.003 0 0 0-2.136 6.548c-.803 2.108-1.535 4.28-2.285 6.439-.636-.51-.953-.766-1.585-1.285.463-2.41 1.037-4.734 1.627-7.049.87-2.639 1.33-3.936 2.3-6.483 1.94-5.095 3.01-7.552 5.319-12.269 2.308-4.717 3.552-6.98 6.184-11.305a113.774 113.774 0 0 1 3.374-5.29c1.353-1.506 2.726-2.976 4.196-4.319"/> + <path fill="#466E34" d="M86.446 312.377c9.062 5.777 20.837 6.393 30.108.409-7.529-11.613-15.817-24.374-26.765-32.907-8.082-6.3-19.132-9.654-29.235-6.918 4.172 14.967 12.74 31.03 25.892 39.416"/> + <path fill="#5D8A48" d="M64.554 278c2.06 1.262 4.103 2.63 6.163 3.95a167.42 167.42 0 0 0 6.063 4.915c4.904 3.811 7.41 5.603 12.5 8.957 5.091 3.353 7.681 4.916 12.921 7.808 2.62 1.446 3.938 2.14 6.588 3.47 2.21 1.299 4.434 2.504 6.677 3.741.028.86.046 1.294.088 2.159-2.246-.814-4.49-1.76-6.726-2.707a161.598 161.598 0 0 1-6.68-3.566c-5.309-2.971-7.932-4.574-13.082-8.012-5.15-3.438-7.684-5.273-12.64-9.172a170.538 170.538 0 0 1-6.124-5.005c-1.962-2.084-3.89-4.212-5.748-6.538"/> + <path fill="#466E34" d="M131.344 287.768c-.877 9.723-6.07 19.482-14.13 25.232-7.649-10.771-13.735-25.616-10.99-38.894 2.066-9.986 10.385-17.187 19.83-20.106 3.5 10.755 6.304 22.534 5.29 33.768"/> + <path fill="#5D8A48" d="M124.554 258c-.388 2.188-.82 4.344-1.201 6.537a110.412 110.412 0 0 0-1.753 6.204c-1.289 5.053-1.828 7.667-2.657 13.05-.829 5.385-1.127 8.16-1.448 13.853-.16 2.847-.208 4.29-.232 7.208-.184 2.352-.274 4.753-.384 7.148-.764-.365-1.146-.55-1.908-.925-.239-2.58-.34-5.097-.417-7.604.1-2.907.185-4.343.418-7.176.467-5.666.834-8.424 1.795-13.775.96-5.352 1.563-7.948 2.97-12.964.7-2.511 1.077-3.744 1.88-6.168.915-1.854 1.863-3.673 2.937-5.388"/> + <path fill="#5D8A48" d="M241.554 37c-4.987.753-7.438 1.21-12.254 2.275-4.818 1.049-7.185 1.65-11.829 2.996-7.594 2.35-15.042 4.907-22.316 8.134-14.196 6.367-26.957 13.876-39.397 23.211-23.538 19.279-41.055 42.23-53.636 69.918-11.452 28.187-16.055 56.694-13.798 87.057 1.815 15.493 5.194 29.946 10.399 44.653 5.98 15.318 13.503 29.293 22.854 42.82l-1.283.936c-9.655-13.537-17.473-27.552-23.759-42.944-5.255-14.82-8.685-29.623-10.446-45.248-2.224-30.726 2.484-59.57 14.137-88.09 12.771-27.959 30.523-51.136 54.372-70.59 12.584-9.413 25.49-16.979 39.845-23.388 7.445-2.985 15.04-5.292 22.774-7.388 4.715-1.186 7.112-1.705 11.98-2.586 4.87-.865 7.343-1.22 12.357-1.766"/> + <path fill="#466E34" d="M193.57 222.994c-11.593 3.744-24.823 4.644-37.016 3.604 5.981-12.677 17.415-21.44 29.832-26.021 12.665-4.673 28.813-2.676 41.168 3.46-10.13 7.838-21.891 15.052-33.984 18.957M128.985 213.81c-3.85 9.498-3.44 20.314 3.5 29.19 10.169-8.099 20.646-17.258 27.522-28.334 5.316-8.562 7.365-19.957 3.676-29.666-13.7 5.42-29.305 15.506-34.698 28.81"/> + <path fill="#5D8A48" d="M159.554 190c-1.02 2.185-2.136 4.361-3.195 6.543a147.178 147.178 0 0 0-4.08 6.502c-3.116 5.227-4.53 7.868-7.092 13.166-2.563 5.298-3.707 7.962-5.736 13.284a136.639 136.639 0 0 0-2.373 6.652c-.913 2.226-1.728 4.45-2.564 6.68-.783.064-1.175.1-1.96.173.443-2.209 1.013-4.432 1.592-6.658a138.63 138.63 0 0 1 2.431-6.718c2.077-5.374 3.246-8.065 5.863-13.411 2.617-5.347 4.062-8.012 7.237-13.284a146.956 146.956 0 0 1 4.136-6.557c1.8-2.153 3.662-4.284 5.74-6.372"/> + <path fill="#466E34" d="M157.753 255.979c-9.462-.302-18.998-5.134-25.2-12.483 9.241-8.022 22.788-14.867 35.228-13.26 9.963 1.287 17.916 8.66 21.773 17.753-9.925 4.408-20.983 8.335-31.8 7.99"/> + <path fill="#5D8A48" d="M184.554 247c-2.192-.188-4.346-.433-6.518-.627a115.29 115.29 0 0 0-6.195-1.281c-5.009-.91-7.566-1.26-12.756-1.725-5.192-.466-7.832-.587-13.173-.587-2.67-.001-4.015.028-6.717.148-2.2-.074-4.425-.06-6.641-.077.23-.805.348-1.207.59-2.014 2.344-.36 4.655-.588 6.969-.803 2.709-.05 4.055-.046 6.73.021 5.35.135 7.992.32 13.183.914 5.19.592 7.744 1.004 12.746 2.033 2.502.511 3.741.794 6.19 1.41 1.908.793 3.792 1.619 5.592 2.588"/> + <path fill="#466E34" d="M91.875 247.796c-1.396 10.092 1.694 20.355 10.564 27.204 7.885-10.124 15.773-21.428 19.538-33.67 2.948-9.59 1.86-20.962-4.087-29.33-11.752 8.521-24.1 21.935-26.015 35.796"/> + <path fill="#5D8A48" d="M114.554 217c-.416 2.327-.932 4.668-1.393 7.002a151.747 151.747 0 0 0-2.278 7.17c-1.68 5.724-2.385 8.58-3.543 14.245-1.16 5.665-1.61 8.48-2.27 14.046a137.58 137.58 0 0 0-.674 6.917c-.344 2.343-.596 4.663-.87 6.994-.753.245-1.13.37-1.885.626-.106-2.217-.093-4.478-.074-6.742.228-2.783.372-4.183.722-6.996.699-5.627 1.17-8.473 2.376-14.198s1.936-8.61 3.67-14.394c.861-2.89 1.326-4.339 2.325-7.236 1.187-2.479 2.434-4.951 3.894-7.434"/> + <path fill="#466E34" d="M129.095 280.346c-9.306 1.938-19.744-.526-27.541-6.141 6.96-9.845 18.332-19.709 30.68-21.063 9.991-1.096 19.38 4.27 25.32 12.048-8.359 6.647-18.031 12.983-28.459 15.156"/> + <path fill="#5D8A48" d="M153.554 266.02c-2.127.324-4.236.589-6.353.904-2.475.05-3.721.103-6.226.259-5.012.319-7.548.584-12.653 1.334-5.105.751-7.678 1.235-12.843 2.43-2.582.596-3.876.923-6.466 1.632-2.148.427-4.303.939-6.46 1.421.038-.758.057-1.138.103-1.899 2.19-.84 4.376-1.556 6.566-2.264 2.61-.65 3.913-.948 6.512-1.486 5.2-1.078 7.79-1.505 12.918-2.144 5.13-.639 7.677-.849 12.704-1.062a125.57 125.57 0 0 1 6.249-.145c2.009.269 4.002.573 5.949 1.02"/> + <path fill="#466E34" d="M63.593 288.356c.48 10.43 7.3 19.481 16.895 23.644 5.321-11.536 10.352-24.243 11.02-36.865.525-9.92-3.406-20.53-11.241-27.135-9.355 10.94-17.346 25.767-16.674 40.356"/> + <path fill="#5D8A48" d="M79.315 253c.189 2.339.277 4.714.418 7.069-.25 2.992-.343 4.48-.464 7.437-.232 5.908-.217 8.825.053 14.56.27 5.734.53 8.555 1.275 14.084.372 2.764.587 4.133 1.074 6.84.242 2.344.573 4.645.883 6.961-.72.415-1.08.625-1.799 1.049-.675-2.12-1.238-4.31-1.796-6.501a131.777 131.777 0 0 1-1.042-6.928c-.718-5.6-.961-8.456-1.196-14.26-.233-5.805-.228-8.757.048-14.734.135-2.986.234-4.49.5-7.514.571-2.663 1.202-5.334 2.046-8.063"/> + <path fill="#466E34" d="M108.742 310.902c-8.58 3.995-19.289 4.071-28.188.546 4.421-10.933 13.076-22.933 24.68-27.054 9.406-3.34 19.73-.367 27.32 5.612-6.43 8.257-14.28 16.457-23.812 20.896"/> + <path fill="#5D8A48" d="M129.554 291c-1.973.82-3.947 1.578-5.92 2.389-2.386.627-3.582.97-5.974 1.712-4.785 1.491-7.184 2.35-11.965 4.303-4.782 1.953-7.17 3.044-11.91 5.465a133.986 133.986 0 0 0-5.904 3.171c-1.99.938-3.969 1.963-5.955 2.96-.153-.776-.228-1.164-.372-1.945 1.929-1.365 3.886-2.605 5.847-3.836a135.825 135.825 0 0 1 5.983-3.032c4.801-2.31 7.217-3.346 12.048-5.192 4.831-1.844 7.253-2.652 12.078-4.037a120.248 120.248 0 0 1 6.02-1.602c2.017-.198 4.025-.355 6.024-.356"/> + <path fill="#466E34" d="M47.14 333.983c2.87 10.026 11.427 17.23 21.467 19.017 2.348-12.441 4.198-25.957 1.886-38.373-1.813-9.738-8.028-19.073-16.959-23.627-6.286 12.77-10.4 28.99-6.394 42.983"/> + <path fill="#5D8A48" d="M53.614 296c.706 2.22 1.334 4.501 2.001 6.75.47 2.955.731 4.416 1.304 7.308 1.155 5.778 1.837 8.604 3.39 14.111 1.554 5.507 2.43 8.192 4.353 13.403.963 2.606 1.467 3.89 2.516 6.418.751 2.23 1.57 4.397 2.376 6.587-.54.564-.81.849-1.347 1.423-1.083-1.917-2.082-3.925-3.078-5.938a145.246 145.246 0 0 1-2.508-6.512c-1.915-5.288-2.785-8.011-4.32-13.597-1.538-5.585-2.21-8.45-3.34-14.305-.57-2.925-.827-4.404-1.29-7.392-.11-2.706-.17-5.43-.057-8.256"/> + <path fill="#5D8A48" d="M95.576 345.36c-7.313 5.988-17.598 8.65-27.022 7.293 1.67-11.865 7.175-25.776 17.382-32.586 8.258-5.508 18.888-5.022 27.618-.932-4.23 9.671-9.87 19.588-17.978 26.226"/> + <path fill="#5D8A48" d="M110.554 321c-1.704 1.27-3.425 2.478-5.132 3.74a115.098 115.098 0 0 0-5.35 3.095c-4.258 2.597-6.368 4.011-10.517 7.068-4.15 3.057-6.196 4.7-10.197 8.215-2 1.758-2.99 2.665-4.947 4.536-1.698 1.401-3.363 2.885-5.044 4.346-.328-.725-.491-1.09-.813-1.823 1.539-1.81 3.134-3.5 4.735-5.18a132.427 132.427 0 0 1 5.057-4.415c4.085-3.42 6.17-5.015 10.393-7.977 4.223-2.962 6.366-4.329 10.685-6.832a116.656 116.656 0 0 1 5.42-2.996c1.894-.671 3.787-1.301 5.71-1.777"/> + <path fill="#466E34" d="M40.669 382.52c5.569 8.475 14.659 14.18 25.885 13.41-.73-12.75-2.1-26.433-7.37-38.051-4.097-9.032-12.472-16.616-22.414-18.879-3.233 13.988-3.696 31.962 3.899 43.52"/> + <path fill="#5D8A48" d="M38.554 344c1.232 1.982 2.4 4.04 3.6 6.06a155.411 155.411 0 0 0 3.034 6.778c2.526 5.333 3.88 7.916 6.75 12.9 2.868 4.985 4.388 7.39 7.569 12.008 1.59 2.31 2.404 3.44 4.068 5.656 1.292 1.997 2.639 3.918 3.979 5.867-.402.688-.602 1.035-.998 1.731-1.552-1.613-3.041-3.334-4.526-5.059a142.267 142.267 0 0 1-4.087-5.756c-3.195-4.699-4.718-7.144-7.592-12.212-2.873-5.068-4.228-7.692-6.748-13.109a156.173 156.173 0 0 1-3.04-6.865c-.75-2.6-1.455-5.23-2.01-7.999"/> + <path fill="#466E34" d="M91.266 382.334c-5.63 7.56-14.917 12.694-24.38 13.666-1.234-11.912.788-26.756 9.133-35.833 6.699-7.286 17.109-9.382 26.535-7.531-1.871 10.364-5.027 21.29-11.288 29.698"/> + <path fill="#5D8A48" d="M100.554 355c-1.366 1.632-2.762 3.209-4.132 4.837a116.911 116.911 0 0 0-4.49 4.275c-3.54 3.536-5.263 5.412-8.582 9.377-3.32 3.964-4.924 6.054-7.98 10.44a126.737 126.737 0 0 0-3.728 5.612c-1.316 1.776-2.58 3.627-3.86 5.459-.494-.627-.74-.943-1.228-1.576 1.06-2.137 2.208-4.17 3.364-6.192a128.508 128.508 0 0 1 3.867-5.52c3.164-4.308 4.817-6.36 8.232-10.249 3.415-3.887 5.183-5.725 8.807-9.183a117.246 117.246 0 0 1 4.58-4.196c1.688-1.102 3.388-2.164 5.15-3.084"/> + <path fill="#466E34" d="M47.131 432.447c7.442 7.051 17.666 10.737 28.423 7.177-4.016-12.416-8.654-26.073-16.79-36.327-6.251-7.88-16.016-13.467-26.21-13.293.268 14.769 4.312 32.716 14.577 42.443"/> + <path fill="#5D8A48" d="M34.554 395c1.698 1.66 3.35 3.414 5.029 5.124a160.671 160.671 0 0 0 4.667 5.981c3.81 4.676 5.79 6.914 9.873 11.181 4.082 4.266 6.19 6.296 10.51 10.142a148.899 148.899 0 0 0 5.466 4.673c1.792 1.686 3.622 3.287 5.455 4.918-.21.79-.312 1.185-.512 1.981-1.953-1.244-3.87-2.61-5.782-3.98a150.805 150.805 0 0 1-5.518-4.773c-4.36-3.927-6.485-5.998-10.598-10.35-4.113-4.351-6.106-6.633-9.937-11.397a160.693 160.693 0 0 1-4.699-6.071c-1.383-2.395-2.726-4.826-3.954-7.429"/> + <path fill="#466E34" d="M96.676 420.289c-3.49 8.857-11.123 16.378-20.125 19.711-4.283-11.519-6.189-26.83-.233-38.032 4.688-8.82 14.31-13.483 23.96-13.968.68 10.74.326 22.32-3.602 32.289"/> + <path fill="#5D8A48" d="M97.554 391c-.919 1.95-1.878 3.858-2.797 5.808a112.762 112.762 0 0 0-3.264 5.35c-2.53 4.384-3.721 6.677-5.915 11.45-2.194 4.774-3.205 7.257-5.018 12.405a125.309 125.309 0 0 0-2.136 6.548c-.803 2.108-1.535 4.28-2.285 6.439-.636-.51-.953-.765-1.585-1.285.463-2.41 1.037-4.734 1.627-7.048.87-2.64 1.33-3.936 2.3-6.484 1.94-5.094 3.01-7.55 5.319-12.269 2.308-4.717 3.552-6.98 6.184-11.304a114.058 114.058 0 0 1 3.374-5.29c1.353-1.507 2.726-2.977 4.196-4.32"/> + <path fill="#466E34" d="M67.446 481.377c9.062 5.777 20.837 6.393 30.108.409-7.529-11.613-15.817-24.374-26.765-32.907-8.082-6.3-19.132-9.654-29.235-6.918 4.172 14.967 12.74 31.03 25.892 39.416"/> + <path fill="#5D8A48" d="M45.554 446c2.06 1.262 4.104 2.63 6.164 3.95a168.708 168.708 0 0 0 6.062 4.917c4.904 3.81 7.41 5.602 12.5 8.955 5.091 3.353 7.681 4.916 12.921 7.808 2.62 1.446 3.938 2.14 6.588 3.47 2.21 1.3 4.434 2.504 6.677 3.742.03.862.046 1.293.088 2.158-2.246-.814-4.49-1.758-6.726-2.705a160.451 160.451 0 0 1-6.68-3.568c-5.309-2.97-7.932-4.574-13.082-8.013-5.15-3.436-7.684-5.273-12.638-9.171a168.58 168.58 0 0 1-6.126-5.003c-1.962-2.085-3.89-4.215-5.748-6.54"/> + <path fill="#466E34" d="M111.344 456.768c-.877 9.724-6.07 19.482-14.13 25.232-7.649-10.77-13.735-25.617-10.99-38.894 2.066-9.987 10.385-17.187 19.83-20.106 3.5 10.755 6.304 22.534 5.29 33.768"/> + <path fill="#6C5C00" d="M104.554 427c-.388 2.188-.821 4.344-1.202 6.536a110.9 110.9 0 0 0-1.752 6.204c-1.288 5.054-1.828 7.668-2.657 13.053-.83 5.383-1.126 8.157-1.448 13.851a124.596 124.596 0 0 0-.232 7.208c-.183 2.351-.274 4.752-.383 7.148-.764-.365-1.146-.551-1.908-.926-.239-2.579-.34-5.096-.418-7.603.1-2.908.186-4.343.42-7.176.466-5.665.833-8.425 1.794-13.775.96-5.352 1.562-7.948 2.969-12.964a111.97 111.97 0 0 1 1.88-6.168c.916-1.854 1.863-3.673 2.937-5.388"/> + <path fill="#5D8A48" d="M221.554 205c-4.987.753-7.438 1.21-12.254 2.275-4.818 1.049-7.185 1.65-11.829 2.997-7.594 2.35-15.042 4.906-22.316 8.133-14.196 6.367-26.957 13.876-39.397 23.212-23.538 19.277-41.054 42.228-53.635 69.916-11.453 28.188-16.056 56.694-13.8 87.058 1.816 15.493 5.195 29.945 10.4 44.652 5.98 15.32 13.503 29.293 22.854 42.82l-1.283.937c-9.655-13.537-17.473-27.553-23.759-42.944-5.255-14.822-8.685-29.624-10.446-45.248-2.224-30.726 2.484-59.57 14.137-88.09 12.771-27.959 30.523-51.136 54.372-70.59 12.584-9.413 25.49-16.979 39.845-23.388 7.445-2.984 15.04-5.291 22.774-7.388 4.715-1.186 7.112-1.705 11.98-2.586 4.87-.864 7.343-1.22 12.357-1.766"/> + <path fill="#466E34" d="M243.57 389.994c-11.594 3.744-24.823 4.643-37.016 3.604 5.98-12.677 17.415-21.44 29.831-26.02 12.666-4.675 28.814-2.677 41.169 3.46-10.13 7.837-21.892 15.05-33.984 18.956M177.985 380.81c-3.85 9.497-3.44 20.313 3.5 29.19 10.169-8.1 20.646-17.257 27.522-28.334 5.316-8.562 7.365-19.958 3.676-29.666-13.7 5.42-29.305 15.505-34.698 28.81"/> + <path fill="#5D8A48" d="M208.554 356c-1.019 2.184-2.136 4.36-3.194 6.543a146.297 146.297 0 0 0-4.081 6.502c-3.116 5.227-4.53 7.868-7.092 13.165-2.563 5.299-3.707 7.963-5.736 13.285a136.639 136.639 0 0 0-2.373 6.652c-.913 2.226-1.728 4.45-2.564 6.68-.783.064-1.175.1-1.96.173.443-2.209 1.013-4.433 1.592-6.658a138.65 138.65 0 0 1 2.432-6.718c2.076-5.374 3.246-8.065 5.862-13.411 2.618-5.347 4.062-8.012 7.237-13.284 1.584-2.638 2.41-3.95 4.136-6.557 1.8-2.153 3.662-4.284 5.74-6.372"/> + <path fill="#466E34" d="M206.753 422.979c-9.462-.302-18.998-5.134-25.2-12.482 9.241-8.022 22.788-14.868 35.228-13.261 9.963 1.288 17.916 8.66 21.773 17.753-9.924 4.408-20.983 8.335-31.8 7.99"/> + <path fill="#5D8A48" d="M234.554 414c-2.192-.188-4.345-.433-6.518-.627a115.484 115.484 0 0 0-6.194-1.281c-5.01-.91-7.566-1.26-12.758-1.725-5.19-.466-7.83-.586-13.172-.587-2.67 0-4.015.028-6.717.148-2.198-.074-4.424-.06-6.641-.077.23-.804.349-1.207.59-2.014 2.343-.359 4.656-.588 6.97-.803 2.709-.05 4.055-.046 6.73.022 5.35.134 7.991.32 13.181.914 5.19.592 7.746 1.003 12.747 2.032 2.502.512 3.741.795 6.19 1.41 1.907.793 3.79 1.619 5.592 2.588"/> + <path fill="#466E34" d="M140.875 413.796c-1.396 10.093 1.694 20.356 10.564 27.204 7.885-10.123 15.773-21.428 19.538-33.67 2.948-9.59 1.86-20.962-4.087-29.33-11.752 8.522-24.1 21.936-26.015 35.796"/> + <path fill="#5D8A48" d="M164.554 383c-.416 2.327-.932 4.668-1.393 7.002a152.442 152.442 0 0 0-2.278 7.168c-1.68 5.726-2.384 8.582-3.543 14.248-1.16 5.664-1.61 8.48-2.27 14.045-.33 2.783-.464 4.166-.674 6.917-.344 2.343-.596 4.663-.87 6.994-.754.246-1.13.37-1.885.626-.106-2.217-.094-4.478-.075-6.742.229-2.783.372-4.183.723-6.995.699-5.628 1.17-8.474 2.376-14.199s1.936-8.61 3.67-14.394c.862-2.89 1.326-4.339 2.325-7.235 1.187-2.479 2.433-4.951 3.894-7.435"/> + <path fill="#466E34" d="M179.094 447.346c-9.306 1.938-19.744-.525-27.54-6.141 6.959-9.846 18.331-19.71 30.68-21.063 9.99-1.097 19.38 4.271 25.32 12.047-8.36 6.648-18.032 12.985-28.46 15.157"/> + <path fill="#5D8A48" d="M203.554 433.02c-2.126.324-4.236.588-6.353.903-2.475.052-3.721.103-6.226.259-5.011.32-7.548.584-12.653 1.335-5.105.75-7.678 1.235-12.843 2.43-2.582.596-3.876.922-6.466 1.632-2.148.426-4.303.938-6.46 1.421.038-.758.057-1.138.103-1.899 2.19-.84 4.377-1.557 6.566-2.263 2.61-.652 3.913-.95 6.512-1.488 5.2-1.078 7.79-1.504 12.92-2.144 5.128-.639 7.675-.849 12.702-1.062 2.515-.11 3.766-.138 6.249-.144 2.009.268 4.002.572 5.949 1.02"/> + <path fill="#466E34" d="M113.593 454.356c.48 10.43 7.3 19.48 16.895 23.644 5.321-11.535 10.352-24.243 11.02-36.865.525-9.92-3.405-20.53-11.241-27.135-9.355 10.94-17.346 25.766-16.674 40.356"/> + <path fill="#5D8A48" d="M129.315 420c.189 2.338.277 4.714.419 7.07-.251 2.992-.344 4.48-.465 7.435-.232 5.909-.217 8.826.053 14.56.27 5.735.53 8.557 1.275 14.085.372 2.764.587 4.133 1.074 6.84.242 2.345.573 4.645.883 6.962-.72.414-1.08.624-1.798 1.048-.676-2.12-1.24-4.31-1.797-6.501a131.47 131.47 0 0 1-1.042-6.928c-.718-5.599-.961-8.456-1.196-14.26-.233-5.805-.228-8.756.048-14.734.135-2.986.235-4.49.5-7.514.571-2.663 1.202-5.334 2.046-8.063"/> + <path fill="#466E34" d="M158.742 477.902c-8.58 3.995-19.289 4.072-28.188.546 4.422-10.933 13.076-22.934 24.68-27.054 9.406-3.34 19.73-.366 27.32 5.612-6.43 8.257-14.28 16.458-23.812 20.896"/> + <path fill="#5D8A48" d="M178.554 458c-1.974.821-3.948 1.58-5.92 2.39-2.386.627-3.581.97-5.974 1.712-4.785 1.491-7.184 2.35-11.965 4.303-4.781 1.953-7.17 3.044-11.91 5.465a133.503 133.503 0 0 0-5.904 3.171c-1.99.938-3.969 1.963-5.955 2.959a151.88 151.88 0 0 1-.372-1.944c1.93-1.365 3.887-2.606 5.847-3.837a136.353 136.353 0 0 1 5.983-3.031c4.8-2.31 7.217-3.346 12.048-5.193 4.83-1.844 7.252-2.65 12.077-4.037a121.653 121.653 0 0 1 6.022-1.602c2.016-.197 4.023-.354 6.023-.356"/> + <path fill="#466E34" d="M97.14 500.984c2.87 10.026 11.427 17.23 21.467 19.016 2.348-12.441 4.198-25.957 1.886-38.373-1.813-9.738-8.028-19.074-16.959-23.627-6.286 12.77-10.4 28.99-6.394 42.984"/> + <path fill="#5D8A48" d="M103.614 463c.706 2.222 1.333 4.502 2.001 6.751.47 2.955.73 4.416 1.305 7.308 1.154 5.777 1.837 8.604 3.39 14.11 1.553 5.508 2.428 8.193 4.352 13.404a144.63 144.63 0 0 0 2.515 6.417c.751 2.23 1.57 4.397 2.377 6.586-.541.565-.811.85-1.347 1.424-1.084-1.918-2.083-3.925-3.078-5.938a145.246 145.246 0 0 1-2.508-6.512c-1.916-5.288-2.785-8.011-4.321-13.597-1.538-5.585-2.21-8.45-3.339-14.305-.57-2.924-.827-4.405-1.29-7.39-.11-2.707-.17-5.431-.057-8.258"/> + <path fill="#466E34" d="M145.576 512.36c-7.313 5.989-17.598 8.65-27.022 7.293 1.67-11.865 7.174-25.776 17.382-32.586 8.258-5.508 18.888-5.022 27.618-.932-4.231 9.67-9.871 19.588-17.978 26.226"/> + <path fill="#5D8A48" d="M160.554 488c-1.705 1.27-3.426 2.478-5.133 3.74-2.149 1.18-3.22 1.8-5.35 3.095-4.258 2.597-6.367 4.011-10.516 7.067-4.15 3.057-6.196 4.701-10.198 8.216-2 1.757-2.99 2.664-4.946 4.535-1.698 1.402-3.364 2.886-5.044 4.347-.329-.725-.492-1.09-.813-1.823 1.539-1.81 3.134-3.5 4.735-5.18a133.283 133.283 0 0 1 5.057-4.415c4.085-3.42 6.17-5.015 10.392-7.978 4.223-2.961 6.367-4.328 10.686-6.831a116.68 116.68 0 0 1 5.42-2.997c1.893-.67 3.787-1.3 5.71-1.776"/> + <path fill="#466E34" d="M116.554 563c-.73-12.767-2.098-26.466-7.369-38.099-4.098-9.043-12.473-16.636-22.414-18.901-3.234 14.004-3.698 32.001 3.897 43.571"/> + <path fill="#5D8A48" d="M106.987 551c-3.202-4.678-4.73-7.111-7.609-12.156-2.88-5.043-4.237-7.657-6.763-13.048a155.615 155.615 0 0 1-3.048-6.835c-.752-2.588-1.457-5.205-2.013-7.961 1.236 1.973 2.405 4.022 3.608 6.033 1.17 2.74 1.78 4.09 3.042 6.747 2.53 5.306 3.888 7.878 6.764 12.84 2.875 4.96 4.397 7.355 7.586 11.952"/> + <path fill="#466E34" d="M116.886 563c-1.233-11.912.787-26.757 9.133-35.833 6.699-7.286 17.11-9.382 26.535-7.531-1.871 10.364-5.026 21.29-11.287 29.697"/> + <path fill="#5D8A48" d="M122.554 549c3.19-4.357 4.859-6.43 8.303-10.36 3.444-3.929 5.227-5.786 8.883-9.282 1.825-1.751 2.75-2.599 4.62-4.24 1.703-1.114 3.416-2.188 5.194-3.118-1.377 1.65-2.786 3.244-4.167 4.89a116.54 116.54 0 0 0-4.529 4.32c-3.57 3.574-5.308 5.47-8.657 9.478"/> + <path fill="#5D8A48" d="M116.089 566c-2.224-30.755 2.484-59.629 14.138-88.177 12.771-27.986 30.522-51.187 54.371-70.66 12.585-9.422 25.492-16.995 39.845-23.412 7.446-2.986 15.04-5.296 22.774-7.394 4.715-1.187 7.112-1.707 11.98-2.588 4.871-.865 7.343-1.222 12.357-1.769-4.986.754-7.438 1.212-12.253 2.278-4.819 1.05-7.185 1.652-11.829 3-7.595 2.353-15.043 4.91-22.317 8.141-14.196 6.373-26.957 13.89-39.396 23.234-23.539 19.297-41.055 42.271-53.636 69.986-11.452 28.216-16.055 56.751-13.8 87.145"/> + <path fill="#466E34" d="M128.028 260.749c5.534 10.982 14.28 21.166 23.685 29.251 4.884-13.148 3.08-27.509-2.437-39.668-5.626-12.404-18.53-22.679-31.722-27.332 1.547 12.774 4.701 26.294 10.474 37.749M179.805 302.234c-3.997 9.4-11.892 16.63-22.977 17.766-1.391-13.016-2.254-26.993.744-39.692 2.317-9.816 8.905-19.232 18.307-23.308 5.74 13.716 9.525 32.061 3.926 45.234"/> + <path fill="#5D8A48" d="M175.554 262c-.84 2.241-1.602 4.546-2.411 6.813-.64 3.011-.99 4.497-1.749 7.425-1.525 5.848-2.408 8.689-4.377 14.188-1.97 5.5-3.063 8.16-5.43 13.291a132.54 132.54 0 0 1-3.074 6.296c-.944 2.193-1.957 4.313-2.96 6.452.513.61.768.917 1.275 1.535 1.267-1.844 2.454-3.786 3.635-5.737a133.42 133.42 0 0 0 3.08-6.383c2.37-5.201 3.464-7.898 5.429-13.47 1.966-5.573 2.845-8.45 4.358-14.375.761-2.959 1.113-4.46 1.751-7.502.258-2.783.458-5.594.473-8.533"/> + <path fill="#466E34" d="M130.078 309.513c6.823 6.575 16.919 10.06 26.476 9.41-.748-12.19-5.34-26.651-15.17-34.457-7.873-6.25-18.67-6.838-27.83-3.297 3.796 10.174 8.724 20.827 16.524 28.344"/> + <path fill="#5D8A48" d="M116.554 284c1.655 1.467 3.322 2.866 4.967 4.315a122.372 122.372 0 0 1 5.184 3.643c4.107 3.03 6.125 4.654 10.058 8.114 3.932 3.46 5.855 5.295 9.578 9.176 1.861 1.94 2.779 2.936 4.582 4.979 1.583 1.547 3.125 3.173 4.681 4.773.383-.707.573-1.062.95-1.776-1.391-1.942-2.85-3.774-4.316-5.6a136.655 136.655 0 0 0-4.706-4.875c-3.82-3.796-5.787-5.59-9.806-8.964-4.018-3.374-6.076-4.955-10.258-7.9a122.137 122.137 0 0 0-5.27-3.555c-1.863-.855-3.734-1.67-5.644-2.33"/> + <path fill="#466E34" d="M182.233 351.38c-6.205 7.995-15.647 12.904-26.68 11.325 1.719-12.645 4.274-26.11 10.36-37.285 4.767-8.752 13.607-15.86 23.688-17.42 2.11 14.294 1.154 32.405-7.368 43.38"/> + <path fill="#5D8A48" d="M187.554 313c-1.39 1.921-2.72 3.924-4.083 5.88a150.094 150.094 0 0 1-3.586 6.629c-2.96 5.194-4.53 7.69-7.81 12.472-3.281 4.782-5 7.067-8.557 11.425a138.595 138.595 0 0 1-4.523 5.311c-1.452 1.882-2.95 3.682-4.441 5.504.349.707.52 1.064.863 1.779 1.674-1.475 3.298-3.062 4.92-4.659 1.848-2.105 2.76-3.183 4.546-5.399 3.573-4.428 5.299-6.751 8.59-11.608 3.292-4.856 4.866-7.39 7.83-12.664a151.744 151.744 0 0 0 3.603-6.708c.96-2.576 1.875-5.19 2.648-7.962"/> + <path fill="#466E34" d="M131.657 346.772c5.157 7.908 14.292 13.585 23.845 15.228 2.21-11.69 1.323-26.508-6.4-36.163-6.249-7.81-16.742-10.75-26.548-9.595 1.087 10.478 3.324 21.67 9.103 30.53"/> + <path fill="#5D8A48" d="M124.554 320c1.243 1.746 2.517 3.434 3.76 5.166a119.428 119.428 0 0 1 4.158 4.61c3.26 3.79 4.834 5.783 7.838 9.953 3.004 4.169 4.44 6.348 7.152 10.88a131.826 131.826 0 0 1 3.292 5.775c1.18 1.835 2.304 3.736 3.447 5.616.544-.575.814-.864 1.353-1.447-.899-2.164-1.889-4.236-2.888-6.303a133.226 133.226 0 0 0-3.435-5.703c-2.824-4.472-4.314-6.62-7.418-10.727-3.105-4.106-4.727-6.066-8.08-9.791a119.559 119.559 0 0 0-4.256-4.542c-1.607-1.233-3.227-2.428-4.923-3.487"/> + <path fill="#466E34" d="M172.11 399.293c-7.803 6.983-18.975 8.5-28.556 4.614 4.605-11.88 10.249-24.374 18.83-33.712 6.746-7.34 17.05-12.001 27.17-11.08-1.406 14.324-6.53 30.409-17.444 40.178"/> + <path fill="#5D8A48" d="M186.554 364c-1.801 1.525-3.565 3.144-5.348 4.711a156.639 156.639 0 0 1-5.038 5.567c-4.092 4.328-6.197 6.38-10.49 10.248-4.293 3.87-6.488 5.688-10.941 9.091a142.59 142.59 0 0 1-5.61 4.109c-1.84 1.494-3.707 2.896-5.573 4.324.17.777.254 1.167.416 1.95 1.961-1.043 3.9-2.21 5.836-3.384a144.58 144.58 0 0 0 5.652-4.192c4.486-3.471 6.696-5.327 11.016-9.269s6.436-6.032 10.549-10.44c2.057-2.2 3.072-3.327 5.07-5.643 1.54-2.265 3.05-4.576 4.46-7.072"/> + <path fill="#466E34" d="M124.122 383.603c3.074 8.902 10.473 16.56 19.23 20.397 4.861-10.83 7.551-25.415 2.463-36.55-4.124-9.03-13.471-14.267-23.097-15.45-1.52 10.373-2.009 21.715 1.404 31.603"/> + <path fill="#5D8A48" d="M124.554 355c.767 1.984 1.579 3.923 2.352 5.899a120.482 120.482 0 0 1 2.866 5.464c2.21 4.46 3.24 6.773 5.124 11.553 1.883 4.78 2.742 7.25 4.27 12.327.764 2.54 1.122 3.826 1.792 6.436.696 2.076 1.324 4.206 1.976 6.321.649-.432.973-.651 1.62-1.094-.354-2.334-.816-4.599-1.287-6.859a136.865 136.865 0 0 0-1.943-6.394c-1.647-5.043-2.562-7.494-4.557-12.234-1.993-4.741-3.075-7.035-5.386-11.45a121.575 121.575 0 0 0-2.975-5.42c-1.235-1.577-2.491-3.119-3.852-4.549"/> + <path fill="#466E34" d="M151.318 442.963c-9.2 4.877-20.397 3.71-28.764-2.28 7.242-10.308 15.606-21.002 26.12-27.939 8.248-5.439 19.315-7.432 28.88-4.158-4.698 13.37-13.395 27.567-26.236 34.377"/> + <path fill="#5D8A48" d="M173.554 413c-2.116 1.019-4.217 2.135-6.324 3.2a158.117 158.117 0 0 1-6.222 4.09c-5.008 3.142-7.543 4.594-12.644 7.26-5.1 2.67-7.672 3.885-12.827 6.08a144.872 144.872 0 0 1-6.453 2.6c-2.153.99-4.311 1.891-6.474 2.815-.018.78-.03 1.172-.056 1.955 2.166-.536 4.338-1.196 6.51-1.86a145.258 145.258 0 0 0 6.517-2.67c5.204-2.255 7.8-3.502 12.945-6.235 5.145-2.733 7.7-4.22 12.747-7.434a159.086 159.086 0 0 0 6.272-4.157c2.034-1.784 4.047-3.616 6.009-5.644"/> + <path fill="#466E34" d="M107.733 416.337c.883 9.48 6.317 18.787 14.056 24.663 7.436-9.497 13.614-23.201 11.254-35.35-1.908-9.827-9.879-17.185-19.108-20.65-4.007 9.818-7.181 20.832-6.202 31.337"/> + <path fill="#5D8A48" d="M115.554 389c.29 2.101.637 4.173.935 6.27.662 2.36.97 3.557 1.538 5.982 1.128 4.852 1.6 7.345 2.332 12.438.733 5.092 1 7.698 1.31 12.999.155 2.65.206 3.989.25 6.687.196 2.187.31 4.409.452 6.624.735-.264 1.102-.399 1.837-.674.2-2.354.28-4.668.346-6.98-.11-2.695-.192-4.032-.41-6.68-.436-5.297-.763-7.896-1.612-12.976-.85-5.079-1.379-7.563-2.616-12.396a119.582 119.582 0 0 0-1.654-5.963c-.84-1.825-1.71-3.62-2.708-5.331"/> + <path fill="#466E34" d="M120.359 481.37c-10.025 1.952-20.51-.52-27.805-9.02 9.73-8.366 20.582-16.925 32.67-21.278 9.397-3.386 20.738-2.726 29.33 2.75-7.853 12.037-20.526 24.887-34.195 27.549"/> + <path fill="#5D8A48" d="M149.554 457c-2.276.518-4.562 1.137-6.843 1.705a155.529 155.529 0 0 1-6.967 2.622c-5.576 1.965-8.368 2.82-13.932 4.289-5.566 1.469-8.344 2.079-13.864 3.062-2.759.49-4.135.707-6.877 1.079-2.328.485-4.64.877-6.967 1.292-.215.78-.325 1.17-.55 1.951 2.232-.025 4.5-.172 6.766-.324 2.776-.394 4.17-.621 6.963-1.136 5.586-1.03 8.396-1.668 14.023-3.191 5.628-1.524 8.45-2.41 14.083-4.437a156.285 156.285 0 0 0 7.034-2.68c2.385-1.306 4.76-2.665 7.13-4.232"/> + <path fill="#466E34" d="M84.935 444.885c-1.467 9.34 1.372 19.618 7.315 27.115 9.403-7.437 18.623-19.266 19.271-31.621.52-9.917-5.282-18.881-13.223-24.379-6.115 8.591-11.732 18.499-13.363 28.885"/> + <path fill="#5D8A48" d="M98.015 421c-.204 2.101-.35 4.187-.548 6.287.083 2.441.099 3.672.075 6.154-.052 4.965-.184 7.49-.677 12.596-.494 5.106-.852 7.692-1.81 12.902a129.16 129.16 0 0 1-1.347 6.536c-.335 2.165-.757 4.345-1.154 6.525a127.51 127.51 0 0 0 1.899-.217c.753-2.235 1.377-4.456 1.988-6.68.535-2.638.772-3.953 1.19-6.569.834-5.234 1.133-7.83 1.51-12.95.376-5.12.452-7.65.396-12.622a119.18 119.18 0 0 0-.19-6.164c-.375-1.963-.783-3.907-1.332-5.798"/> + <path fill="#466E34" d="M79.768 511.972c-10.32-.448-20.181-5.261-25.214-15.527 11.757-5.78 24.843-11.977 37.952-13.267 10.075-.992 20.98 2.16 28.048 9.65C109.75 502.964 94 512.592 79.768 511.973"/> + <path fill="#5D8A48" d="M115.554 495.013c-2.382-.037-4.802.015-7.207.022a174.81 174.81 0 0 1-7.573.812c-6.033.53-9.03.68-14.958.768-5.926.088-8.862.021-14.648-.318-2.894-.17-4.331-.28-7.184-.554-2.467-.082-4.898-.243-7.353-.388-.425.646-.64.969-1.077 1.613 2.258.47 4.58.842 6.9 1.206 2.897.262 4.356.367 7.293.523 5.873.313 8.852.364 14.86.242 6.01-.123 9.048-.293 15.16-.866a177.58 177.58 0 0 0 7.66-.848c2.695-.643 5.389-1.335 8.127-2.212"/> + <path fill="#466E34" d="M54.522 468.41c-3.955 8.796-3.972 19.673.038 28.59 11.453-5.003 23.966-14.416 27.865-26.665 3.071-9.644-.414-19.954-6.963-27.335-8.307 7.082-16.488 15.511-20.94 25.41"/> + <path fill="#5D8A48" d="M74.517 447c-.737 2.016-1.413 4.03-2.15 6.048-.534 2.419-.833 3.633-1.492 6.067-1.326 4.868-2.113 7.317-3.953 12.21-1.841 4.895-2.891 7.346-5.267 12.222a121.62 121.62 0 0 1-3.141 6.081c-.93 2.04-1.957 4.074-2.96 6.112.811.109 1.219.16 2.033.26 1.385-2.003 2.631-4.028 3.857-6.058a122.634 122.634 0 0 0 2.98-6.153c2.248-4.932 3.236-7.408 4.956-12.346 1.72-4.937 2.449-7.406 3.662-12.306.61-2.45.884-3.673 1.372-6.106.115-2.024.188-4.036.103-6.031"/> + <path fill="#466E34" d="M10.554 510.363c13.44-2.707 28.22-5.67 41.85-3.75 10.06 1.418 20.088 7.041 25.15 16.252-13.492 7.481-30.804 12.558-45.854 8.943-10.37-2.492-18.962-10.56-21.146-21.445"/> + <path fill="#5D8A48" d="M18.587 513.335a163.6 163.6 0 0 0 7.213 2.292c5.83 1.729 8.805 2.49 14.856 3.785 6.052 1.296 9.131 1.834 15.373 2.675 3.118.424 4.688.607 7.848.913 2.856-.038 5.721-.13 8.677-.409-2.339-.595-4.744-1.106-7.124-1.662a170.57 170.57 0 0 1-7.742-.929c-6.143-.866-9.173-1.415-15.121-2.725-5.949-1.31-8.874-2.078-14.598-3.81a160.557 160.557 0 0 1-7.08-2.295c-2.47-.675-4.884-1.428-7.335-2.17"/> + <path fill="#466E34" d="M10.554 510c12.87-1.983 27.534-7.888 34.99-19.002 5.608-8.361 4.93-19.257.461-27.998-9.995 4.925-20.23 11.054-27.441 19.526"/> + <path fill="#5D8A48" d="M3.779 512c16.437-2.545 31.937-6.741 47.354-12.996 14.288-6.594 27.29-14.483 39.717-24.144 23.569-19.885 40.957-43.42 53.264-71.704 11.126-28.695 15.35-57.613 12.65-88.299-2.035-15.597-5.619-30.132-11.04-44.896-3.056-7.421-6.702-14.475-10.596-21.482-2.44-4.207-3.74-6.288-6.505-10.39-2.78-4.095-4.251-6.114-7.357-10.089 2.94 4.1 4.322 6.176 6.918 10.37 2.612 4.185 3.832 6.301 6.107 10.57 3.614 7.084 6.98 14.207 9.743 21.675 5.342 14.621 8.864 29.013 10.854 44.45 2.608 30.34-1.617 58.934-12.681 87.302-12.21 27.909-29.428 51.133-52.763 70.74-12.37 9.528-25.084 17.21-39.256 23.762-15.15 6.424-30.414 10.801-46.634 13.558"/> + <path fill="#466E34" d="M117.11 61.292c-7.802 6.984-18.975 8.5-28.556 4.615 4.605-11.88 10.249-24.375 18.83-33.712 6.747-7.34 17.05-12.002 27.17-11.079-1.405 14.323-6.53 30.408-17.443 40.176"/> + <path fill="#5D8A48" d="M131.554 26c-1.801 1.525-3.565 3.143-5.348 4.711a156.603 156.603 0 0 1-5.038 5.566c-4.092 4.33-6.197 6.38-10.49 10.25-4.293 3.867-6.488 5.686-10.941 9.09a141.578 141.578 0 0 1-5.61 4.108c-1.84 1.494-3.707 2.897-5.573 4.324.17.778.254 1.168.416 1.951 1.96-1.044 3.9-2.21 5.836-3.384a144.61 144.61 0 0 0 5.652-4.193c4.486-3.471 6.696-5.326 11.016-9.268 4.32-3.943 6.436-6.032 10.549-10.44 2.057-2.2 3.072-3.328 5.07-5.643 1.54-2.266 3.05-4.576 4.46-7.072"/> + <path fill="#466E34" d="M69.122 45.603C72.196 54.506 79.595 62.162 88.352 66c4.861-10.83 7.551-25.414 2.463-36.55C86.691 20.422 77.344 15.183 67.718 14c-1.52 10.373-2.009 21.715 1.404 31.603"/> + <path fill="#5D8A48" d="M69.554 17c.767 1.984 1.579 3.923 2.352 5.898a120.482 120.482 0 0 1 2.866 5.464c2.21 4.46 3.24 6.774 5.124 11.553 1.883 4.78 2.742 7.25 4.27 12.328a135.483 135.483 0 0 1 1.792 6.435c.696 2.077 1.324 4.207 1.976 6.322.648-.433.973-.651 1.62-1.095-.355-2.333-.816-4.598-1.287-6.859a136.025 136.025 0 0 0-1.944-6.393c-1.646-5.044-2.561-7.495-4.556-12.235-1.993-4.74-3.075-7.034-5.387-11.449a120.58 120.58 0 0 0-2.974-5.42c-1.235-1.577-2.491-3.12-3.852-4.549"/> + <path fill="#466E34" d="M96.318 105.962c-9.2 4.879-20.397 3.71-28.764-2.28 7.242-10.308 15.606-21.001 26.12-27.938 8.248-5.439 19.315-7.432 28.88-4.158-4.698 13.37-13.395 27.566-26.236 34.376"/> + <path fill="#5D8A48" d="M119.554 75c-2.116 1.018-4.217 2.134-6.324 3.2a159.196 159.196 0 0 1-6.221 4.088c-5.009 3.143-7.544 4.595-12.644 7.263-5.101 2.669-7.673 3.884-12.827 6.08a144.867 144.867 0 0 1-6.453 2.598c-2.153.992-4.311 1.891-6.474 2.816a129.1 129.1 0 0 1-.057 1.955c2.167-.536 4.34-1.196 6.511-1.86a146.395 146.395 0 0 0 6.517-2.67c5.204-2.255 7.799-3.502 12.944-6.235 5.145-2.734 7.7-4.22 12.747-7.434a160.182 160.182 0 0 0 6.272-4.157c2.034-1.784 4.047-3.616 6.009-5.644"/> + <path fill="#466E34" d="M53.733 79.338c.883 9.48 6.317 18.786 14.056 24.662 7.436-9.497 13.614-23.2 11.254-35.349C77.135 58.824 69.164 51.466 59.935 48c-4.007 9.819-7.181 20.832-6.202 31.338"/> + <path fill="#5D8A48" d="M60.554 52c.29 2.101.637 4.173.935 6.27.662 2.36.97 3.557 1.538 5.982 1.128 4.852 1.6 7.344 2.332 12.437.733 5.092 1 7.698 1.31 13 .155 2.65.206 3.988.25 6.686.196 2.187.31 4.41.452 6.625.735-.265 1.102-.4 1.837-.674.2-2.355.28-4.668.346-6.98-.11-2.696-.192-4.032-.41-6.68-.436-5.297-.763-7.897-1.613-12.976-.85-5.08-1.378-7.563-2.615-12.397a119.841 119.841 0 0 0-1.654-5.962c-.84-1.825-1.71-3.62-2.708-5.331"/> + <path fill="#466E34" d="M65.359 144.37c-10.025 1.953-20.51-.52-27.805-9.021 9.73-8.365 20.582-16.923 32.67-21.277 9.396-3.386 20.738-2.726 29.33 2.75-7.853 12.038-20.526 24.886-34.195 27.548"/> + <path fill="#5D8A48" d="M94.554 119c-2.276.518-4.562 1.137-6.844 1.705a153.827 153.827 0 0 1-6.966 2.622c-5.576 1.964-8.369 2.82-13.933 4.289-5.565 1.468-8.343 2.079-13.863 3.061-2.759.492-4.135.708-6.877 1.08-2.328.485-4.64.877-6.967 1.292-.215.78-.325 1.17-.55 1.951 2.232-.025 4.5-.172 6.766-.324 2.776-.394 4.17-.621 6.963-1.136 5.586-1.03 8.396-1.667 14.023-3.191 5.628-1.524 8.45-2.41 14.083-4.437a156.286 156.286 0 0 0 7.034-2.68c2.385-1.306 4.76-2.665 7.13-4.232"/> + <path fill="#466E34" d="M30.935 107.885c-1.467 9.341 1.372 19.618 7.315 27.115 9.403-7.436 18.623-19.266 19.271-31.621.52-9.918-5.282-18.882-13.223-24.379-6.115 8.592-11.732 18.5-13.363 28.885M.554 158.446c11.757-5.78 24.842-11.978 37.953-13.269 10.074-.99 20.978 2.16 28.047 9.651C55.75 164.963 40 174.59 25.768 173.972c-10.319-.45-20.181-5.261-25.214-15.526"/> + <path fill="#5D8A48" d="M15.554 160.697c5.77.313 8.695.364 14.599.242 5.903-.123 8.887-.294 14.891-.867 3.001-.281 4.506-.451 7.527-.848 2.647-.642 5.293-1.334 7.983-2.211-2.341-.037-4.717.015-7.08.022-2.986.382-4.474.544-7.44.812-5.928.529-8.872.68-14.694.768-5.822.087-8.706.021-14.391-.319"/> + <path fill="#466E34" d="M121.54 463.676c.334 6.075-5.381 11.324-5.381 11.324s-6.258-4.601-6.591-10.676c-.334-6.076 5.38-11.324 5.38-11.324s6.257 4.601 6.592 10.676"/> + <path fill="#5D8A48" d="M115.059 457s-1.417 10.21.495 18M103.554 462.31s.388 8.714 14.36 17.69l1.64-2.246s-9.164-6.128-12.163-14.78c-1.392-4.015-3.837-.663-3.837-.663"/> + <circle cx="125.5" cy="482.5" r="24.5" fill="url(#a)"/> + <path fill="url(#b)" d="M125.5 507c10.436 0 19.348-6.525 22.879-15.717 1.047-2.727-10.294 12.217-23.825 12.217-13.531 0-22.5-13.5-23.554-21 0 13.531 10.969 24.5 24.5 24.5z"/> + <path fill="#466E34" d="M180.266 75.098c-4.097 4.408-11.63 3.883-11.63 3.883s-.89-7.672 3.205-12.08c4.097-4.407 11.63-3.882 11.63-3.882s.892 7.67-3.205 12.079"/> + <path fill="#5D8A48" d="M181.554 66s-8.932 5.743-13 13"/> + <path fill="#3D3104" d="M154.528 59.022s-5.57 6.076-2.713 21.978l2.539-.33s-1.714-10.59 2.161-18.48c1.799-3.662-1.987-3.168-1.987-3.168"/> + <circle cx="170.5" cy="225.5" r="24.5" fill="url(#a)"/> + <path fill="url(#b)" d="M170.5 250c10.436 0 19.348-6.525 22.879-15.717 1.047-2.727-10.294 12.217-23.825 12.217-13.531 0-22.5-13.5-23.554-21 0 13.531 10.969 24.5 24.5 24.5z"/> + </g> +</svg> diff --git a/src/images/light-house.svg b/src/images/light-house.svg new file mode 100644 index 0000000..dafedd6 --- /dev/null +++ b/src/images/light-house.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="75" height="75" viewBox="0 0 75 75"> + <g fill="#F00" fill-opacity="0" fill-rule="evenodd" stroke="#C45B26"> + <path d="M29 14c0-4.418-4.03-8-9-8s-9 3.582-9 8M11 14h18v15.858L33 74H7l4-44.142zM33 57h35v17H33"/> + <path d="M30.6 48h26.412l10.426 9h-36.13M11 14h6v16h-6zM17 14h6v16h-6zM23 14h6v16h-6zM33.032 17.687l34.406-5.337M33.032 25l34.406 5.337M29.814 41.081H14.906M30.6 47H9M15.5 73.5h9V65a4.5 4.5 0 1 0-9 0v8.5zM37.5 62.5h5v5h-5zM47.5 62.5h5v5h-5zM57.5 62.5h5v5h-5z"/> + <path stroke-width="2" d="M19.5 6V0"/> + </g> +</svg> diff --git a/src/pages/index.js b/src/pages/index.js index 1d40181..87c4524 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -1,7 +1,7 @@ import React from "react"; import { graphql, useStaticQuery } from 'gatsby'; import styled, { keyframes } from "styled-components"; -import Link from 'src/components/Link'; +// import Link from 'src/components/Link'; import { FormattedMessage } from 'react-intl'; import Layout from "../components/layout"; import SEO from "../components/seo"; @@ -13,32 +13,38 @@ import { } from 'src/constants/app'; import PartnerList from 'src/components/LandingPage/PartnerList'; import Tech from 'src/components/LandingPage/Tech'; -import chain_lines from 'src/images/main-chainlines-3.svg'; +import Resources from 'src/components/LandingPage/Resources'; +import Harvest from 'src/components/LandingPage/Harvest'; +import chain_lines from 'src/images/main-chainlines-2.svg'; +import chain_lines_blur from 'src/images/main-chainlines-3.svg'; const CIRCLE_SHADOW = '0 0 10px 2px rgba(255, 255, 0, 0.5)'; const rotate = keyframes` 0% { - transform: scale(1, 0.8) rotate(5deg) skew(0deg, 0deg); + transform: scale(1, 0.8) skew(0deg, 0deg); } 50% { - transform: scale(1, 1.2) rotate(0deg) skew(-10deg, 0deg); + transform: scale(1, 1.1) skew(-10deg, 0deg); } 100% { - transform: scale(1, 0.8) rotate(5deg) skew(0deg, 0deg); + transform: scale(1, 0.8) skew(0deg, 0deg); } `; const ChainLine = styled.img` + content: url(${chain_lines_blur}); position: absolute; - width: 120%; - top: 100px; - animation: ${rotate} 10s ease-in-out infinite; + width: 110%; + top: 50px; + animation: ${rotate} 8s ease-in-out infinite; @media screen and (max-width: 1300px) { + width: 120%; top: 180px; } @media screen and (max-width: ${MOBILE_WIDTH}px) { top: 120px; width: 800px; + content: url(${chain_lines}); } `; @@ -54,8 +60,8 @@ const BigCircle = styled.div` align-items: center; box-shadow: inset ${CIRCLE_SHADOW}, ${CIRCLE_SHADOW}; @media screen and (max-width: ${MOBILE_WIDTH}px) { - width: 300px; - height: 300px; + width: 273px; + height: 273px; } `; const Padding = styled.div` @@ -70,7 +76,7 @@ const BigTitle = styled.div` margin: 10px; text-shadow: 0 0 10px rgba(100, 100, 0, 0.3); @media screen and (max-width: ${MOBILE_WIDTH}px) { - font-size: 35px; + font-size: 33px; } `; const BigContext = styled.div` @@ -82,23 +88,19 @@ const BigContext = styled.div` const Sections = styled.div` `; const SectionWrapper = styled.div` - padding: 60px 20px; &:nth-child(even) { background-color: #F8F8F8; } &:nth-child(odd) { background-color: white; } - @media screen and (max-width: ${MOBILE_WIDTH}px) { - padding: 60px 5px; - } `; const SectionTitle = styled.div` text-align: center; font-weight: bold; font-size: 30px; - padding: 25px; - margin-bottom: 60px; + /* border: 1px solid red; */ + padding: 60px 0px 30px; color: #282625; `; const Section = ({ children, title }) => ( @@ -134,11 +136,13 @@ const MainBgImg = ({ className }) => { /> </BigTitle> <BigContext> - Tangerine Network is a distributed ledger technology designed to solve the problems inherent in other blockchain systems. + <FormattedMessage + id="tangerine-description" + /> </BigContext> <Padding /> </BigCircle> - <ChainLine src={chain_lines} /> + <ChainLine /> </BackgroundImage>; } @@ -172,12 +176,22 @@ const IndexPage = React.memo(({ pathContext: { locale } }) => { > <Tech /> </Section> - <Section>123</Section> - <Section>123</Section> - <Section>123</Section> - <Section>123</Section> + <Section + title={ + <FormattedMessage + id="technical-resources" + defaultMessage="Technical Resources" + /> + } + > + <Resources /> + </Section> + <Section> + <Harvest /> + </Section> + </Sections> - <Link to="/page-2/">Go to page 2</Link> + {/* <Link to="/page-2/">Go to page 2</Link> */} </Layout> ); }); diff --git a/src/translations/en.json b/src/translations/en.json index f8bd526..416d9cd 100644 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -1,5 +1,6 @@ { "Tangerine Network": "Tangerine Network", + "tangerine-description": "Tangerine Network is a distributed ledger technology designed to solve the problems inherent in other blockchain systems.", "Language": "Language", "Technology": "Technology", "Team": "Team", @@ -10,5 +11,11 @@ "Secure Randomness": "Secure Randomness", "tech-fast-description": "Dream applications come true with the amazing sub-second finality.", "tech-fair-description": "Our cutting-edge fair consensus algorithm makes Tangerine network achieve much stabler than other blockchains.", - "tech-secure-randomness": "Applications which need randomness such as gaming and sortition complete their functionality securely." + "tech-secure-randomness": "Applications which need randomness such as gaming and sortition complete their functionality securely.", + "technical-resources": "Technical Resources", + "dapp-dev-guide": "DApp Development Guide", + "Harvest Program": "Harvest Program", + "harvest-description": "Be part of the Tangerine Network ecosystem and earn up to 6 million TAN.", + "Join Partner Program": "Join Partner Program", + "Learn More": "Learn More" }
\ No newline at end of file diff --git a/src/translations/zh-Hant.json b/src/translations/zh-Hant.json index c7a178d..16f1a48 100644 --- a/src/translations/zh-Hant.json +++ b/src/translations/zh-Hant.json @@ -1,5 +1,6 @@ { - "Tangerine Network": "橘子網路", + "Tangerine Network": "橘子區塊鏈", + "tangerine-description": "橘子區塊鏈是一個分散式帳本技術 that 解決了其他區塊鏈怪怪的地方", "Language": "語言", "Technology": "技術", "Team": "團隊", @@ -8,7 +9,13 @@ "Fast": "超級快", "Fair": "頗公平", "Secure Randomness": "很隨機", - "tech-fast-description": "Dream applications come true with the amazing sub-second finality.", - "tech-fair-description": "Our cutting-edge fair consensus algorithm makes Tangerine network achieve much stabler than other blockchains.", - "tech-secure-randomness": "Applications which need randomness such as gaming and sortition complete their functionality securely." + "tech-fast-description": "夢想的應用要成真啦! 執行結果不用一秒就出來囉~", + "tech-fair-description": "我們最潮的公平共識演算法使得橘子鍊比其他區塊鏈還要穩定", + "tech-secure-randomness": "類似賭博或是樂透這種需要隨機數的應用有福了, 我們送你安全的亂數!", + "technical-resources": "技術支援", + "dapp-dev-guide": "DApp 開發指南", + "Harvest Program": "收成計畫", + "harvest-description": "成為橘子鍊生態園的歡樂小果農, 來賺取多六百萬顆橘子幣吧", + "Join Partner Program": "參加果農養成計劃", + "Learn More": "來瞧瞧更多" }
\ No newline at end of file |