[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [gcompris/gsoc-share] src/activities: share, base version
From:       Stefan Toncu <stefan.toncu () cti ! pub ! ro>
Date:       2016-08-14 17:21:33
Message-ID: E1bYz6L-0005xF-KH () code ! kde ! org
[Download RAW message or body]

Git commit d6e64732f246c88749283d1d0b556c1f7f7fe823 by Stefan Toncu.
Committed on 14/08/2016 at 17:21.
Pushed by stefant into branch 'gsoc-share'.

share, base version

M  +1    -0    src/activities/activities.txt
A  +35   -0    src/activities/share/ActivityInfo.qml     [License: GPL (v3+)]
A  +1    -0    src/activities/share/CMakeLists.txt
A  +229  -0    src/activities/share/DropChild.qml     [License: GPL (v3+)]
A  +458  -0    src/activities/share/Share.qml     [License: GPL (v3+)]
A  +199  -0    src/activities/share/WidgetOption.qml     [License: GPL (v3+)]
A  +7    -0    src/activities/share/resource/README
A  +69   -0    src/activities/share/resource/board/board0.qml     [License: GPL \
(v3+)] A  +58   -0    src/activities/share/resource/board/board1.qml     [License: \
GPL (v3+)] A  +68   -0    src/activities/share/resource/board/board2.qml     \
[License: GPL (v3+)] A  +68   -0    src/activities/share/resource/board/board3.qml    \
[License: GPL (v3+)] A  +58   -0    src/activities/share/resource/board/board4.qml    \
[License: GPL (v3+)] A  +59   -0    src/activities/share/resource/board/board5.qml    \
[License: GPL (v3+)] A  +59   -0    src/activities/share/resource/board/board6.qml    \
[License: GPL (v3+)] A  +29   -0    src/activities/share/resource/board/board7.qml    \
[License: GPL (v3+)] A  +29   -0    src/activities/share/resource/board/board8.qml    \
[License: GPL (v3+)] A  +29   -0    src/activities/share/resource/board/board9.qml    \
[License: GPL (v3+)] A  +92   -0    src/activities/share/resource/images/basket.svg
A  +183  -0    src/activities/share/resource/images/boy.svg
A  +37   -0    src/activities/share/resource/images/candy.svg
A  +170  -0    src/activities/share/resource/images/girl.svg
A  +237  -0    src/activities/share/share.js
A  +183  -0    src/activities/share/share.svg

http://commits.kde.org/gcompris/d6e64732f246c88749283d1d0b556c1f7f7fe823

diff --git a/src/activities/activities.txt b/src/activities/activities.txt
index c22240b..7ea2826 100644
--- a/src/activities/activities.txt
+++ b/src/activities/activities.txt
@@ -117,6 +117,7 @@ roman_numerals
 scalesboard
 scalesboard_weight
 scalesboard_weight_avoirdupois
+share
 simplepaint
 smallnumbers
 smallnumbers2
diff --git a/src/activities/share/ActivityInfo.qml \
b/src/activities/share/ActivityInfo.qml new file mode 100644
index 0000000..da1eb06
--- /dev/null
+++ b/src/activities/share/ActivityInfo.qml
@@ -0,0 +1,35 @@
+/* GCompris - ActivityInfo.qml
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+import GCompris 1.0
+
+ActivityInfo {
+  name: "share/Share.qml"
+  difficulty: 2
+  icon: "share/share.svg"
+  author: "Stefan Toncu &lt;stefan.toncu29@gmail.com&gt;"
+  demo: true
+  title: qsTr("Share the candies")
+  description: qsTr("Try to split the candies to a given number of children")
+  //intro: "put here in comment the text for the intro voice"
+  goal: qsTr("Learn the division of numbers")
+  prerequisite: qsTr("Know how to count")
+  manual: qsTr("Follow the instructions shown on the screen: first, drag the given \
number of boys/girls to the middle, then drag candies to each child's rectangle.") +  \
credit: "" +  section: "math"
+  createdInVersion: 7000
+}
diff --git a/src/activities/share/CMakeLists.txt \
b/src/activities/share/CMakeLists.txt new file mode 100644
index 0000000..ea9805d
--- /dev/null
+++ b/src/activities/share/CMakeLists.txt
@@ -0,0 +1 @@
+GCOMPRIS_ADD_RCC(activities/share *.qml *.svg *.js resource/*)
diff --git a/src/activities/share/DropChild.qml b/src/activities/share/DropChild.qml
new file mode 100644
index 0000000..5665ad0
--- /dev/null
+++ b/src/activities/share/DropChild.qml
@@ -0,0 +1,229 @@
+/* GCompris - DropChild.qml
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ *   This program is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License as published by
+ *   the Free Software Foundation; either version 3 of the License, or
+ *   (at your option) any later version.
+ *
+ *   This program is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+import QtQuick 2.1
+import GCompris 1.0
+
+import "../../core"
+
+Rectangle {
+    id: dropChild
+    width: items.cellSize * 3
+    height: items.cellSize * 4.5
+    color: "transparent"
+    radius: 0.2
+    z: 5
+
+    property string name
+    property alias childImage: childImage
+    property alias area: area
+    property int indexS: index
+
+    Image {
+        id: childImage
+        sourceSize.width: items.cellSize * 1.5 * 0.7
+        sourceSize.height: items.cellSize * 1.5 - 5
+        anchors.bottom: area.top
+        anchors.left: parent.left
+        anchors.leftMargin: 20
+        source: "resource/images/" + name + ".svg"
+    }
+
+    //displays the number of candies each child has
+    GCText {
+        id: candyCount
+        anchors.bottom: area.top
+        anchors.right: parent.right
+        anchors.rightMargin: 20
+
+        //"listModel.get(index) ? ... " because of an error received at startup of \
each level +        text: (listModel.get(index) && background.showCount) ? \
listModel.get(index).countS : "" +
+    }
+
+    Rectangle {
+        id: area
+        width: items.cellSize * 3
+        height: items.cellSize * 3
+        anchors.bottom: parent.bottom
+        radius: width * 0.07
+
+        color: "#cfecf0"
+
+        property var childCoordinate: repeater_drop_areas.mapToItem(background, \
dropChild.x, dropChild.y) +        property var candyCoord: \
candyWidget.mapToItem(background, candyWidget.element.x, candyWidget.element.y) +
+        opacity: candyCoord.x > childCoordinate.x &&
+                 candyCoord.y > childCoordinate.y + childImage.height &&
+                 candyCoord.x < childCoordinate.x + childCoordinate.width &&
+                 candyCoord.y < childCoordinate.y + childCoordinate.height ? 0.5 : 1
+
+        MouseArea {
+            anchors.fill: parent
+
+            onClicked: {
+                if (items.acceptCandy)
+                    ////////////////////// START of EASY mode
+                    if (background.easyMode) {
+                        if (background.currentCandies < items.totalCandies) {
+                            if (listModel.get(index).countS + 1 <= 8) {
+                                //add candies in the first rectangle
+                                \
listModel.setProperty(index,"countS",listModel.get(index).countS+1) +                 \
//the current number of candies increases +                                \
background.currentCandies ++ +                                //on the last one, the \
candy image from top goes away (destroy) +                                if \
(background.currentCandies === items.totalCandies) { +                                \
background.resetCandy() +                                    \
candyWidget.element.opacity = 0.6 +                                }
+                                //show the basket if there is a rest
+                                if (background.rest!=0 && background.basketShown() \
=== false) +                                    items.basketWidget.element.opacity = \
1 +                            } else print("onclidked else: ", \
listModel.get(index).countS+1 + " -------------> NO MORE") +                        }
+                        else {
+                            background.resetCandy()
+                            candyWidget.element.opacity = 0.6
+                        }
+
+                    ////////////////////// END of EASY mode
+                    } else {
+                        if (background.currentCandies < items.candyWidget.total) {
+                            if (listModel.get(index).countS + 1 <= 8) {
+                                //add candies in the first rectangle
+                                \
listModel.setProperty(index,"countS",listModel.get(index).countS+1) +                 \
//the current number of candies increases +                                \
background.currentCandies ++ +
+                                //show the basket if there is a rest
+                                if (background.rest!=0 && background.basketShown() \
=== false) +                                    items.basketWidget.element.opacity = \
1 +
+                                if (background.currentCandies + 1 === \
items.candyWidget.total) { +                                    \
background.resetCandy() +                                }
+                            } else {
+                                background.wrongMove.fadeInOut.start()
+                                print("onclidked else: ", \
listModel.get(index).countS+1 + " -------------> NO MORE") +                          \
} +                        }
+                    }
+                    /////////////////// END of HARD mode
+            }
+        }
+
+
+        Flow {
+            id: candy_drop_area
+            spacing: 5
+            width: parent.width
+            height: parent.height
+
+            Repeater {
+                id: repeater_candy_drop_area
+                model: countS
+
+                Image {
+                    id: candyArea
+                    sourceSize.width: items.cellSize * 0.7
+                    sourceSize.height: items.cellSize * 1.5
+                    source: "resource/images/candy.svg"
+
+                    property int lastX
+                    property int lastY
+
+                    MouseArea {
+                        anchors.fill: parent
+
+                        //enables dragging the candie after placed
+                        drag.target: parent
+
+                        onPressed: {
+                            instruction.hide()
+                            //set the initial position
+                            candyArea.lastX = candyArea.x
+                            candyArea.lastY = candyArea.y
+                            //move this rectangle/grid on top of everything
+                            dropChild.z++
+                            grid.z++
+
+                            print("new dropChild.z " + dropChild.z + "   grid.z " +  \
grid.z) +                        }
+
+                        onReleased:  {
+                            //move this rectangle/grid to its previous state
+                            dropChild.z--
+                            grid.z--
+
+                            print("orig dropChild.z " + dropChild.z + "   grid.z " + \
grid.z) +
+                            //check where the candy is being dropped
+                            for (var i=0; i<listModel.count; i++) {
+                                var currentChild = repeater_drop_areas.itemAt(i)
+                                //coordinates of "boy/girl rectangle" in background \
coordinates +                                var childCoordinate = \
drop_areas.mapToItem(items.background, currentChild.x, currentChild.y) +
+                                var candyCoordinate = \
candyArea.parent.mapToItem(background, candyArea.x, candyArea.y) +                    \
var wid = items.leftWidget +
+                                if (currentChild !== dropChild) {
+                                    //check if the user wants to put a candy to \
another rectangle +                                    if (candyCoordinate.x > \
childCoordinate.x && +                                            candyCoordinate.x < \
childCoordinate.x + currentChild.area.width && +                                      \
candyCoordinate.y > childCoordinate.y + currentChild.childImage.height && +           \
candyCoordinate.y < childCoordinate.y + currentChild.childImage.height + \
currentChild.area.height) { +                                        //add the candy \
to the "i"th recthangle +                                        \
listModel.setProperty(i, "countS", listModel.get(i).countS + 1) +                     \
//remove the candy from current rectangle +                                        \
listModel.setProperty(rect2.indexS, "countS", listModel.get(rect2.indexS).countS - \
1); +                                        break;
+                                    }
+                                }
+                                else {
+                                    //check if the user wants to put back the candy \
to the leftWidget +                                    if (candyCoordinate.x > 0 && \
candyCoordinate.x < wid.width && +                                            \
candyCoordinate.y > 0 && candyCoordinate.y < wid.height) { +                          \
//restore the candy to the leftWidget +                                        \
background.currentCandies-- +                                        \
candyWidget.element.opacity = 1 +                                        \
items.candyWidget.canDrag = true +                                        //remove \
the candy from current rectangle +                                        \
listModel.setProperty(rect2.indexS, "countS", listModel.get(rect2.indexS).countS - \
1); +                                        break;
+                                    }
+                                }
+                            }
+
+                            //restore the candy to its initial position
+                            candyArea.x = candyArea.lastX
+                            candyArea.y = candyArea.lastY
+                        }
+
+                        //when clicked, it will restore the candy
+                        onClicked:  {
+                            background.currentCandies--
+                            candyWidget.element.opacity = 1
+                            items.candyWidget.canDrag = true
+                            listModel.setProperty(rect2.indexS, "countS", \
listModel.get(rect2.indexS).countS - 1); +                        }
+                    }
+                }
+            }
+        }
+    }
+}
diff --git a/src/activities/share/Share.qml b/src/activities/share/Share.qml
new file mode 100644
index 0000000..4e6c720
--- /dev/null
+++ b/src/activities/share/Share.qml
@@ -0,0 +1,458 @@
+/* GCompris - share.qml
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ *   This program is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License as published by
+ *   the Free Software Foundation; either version 3 of the License, or
+ *   (at your option) any later version.
+ *
+ *   This program is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+import QtQuick 2.1
+import GCompris 1.0
+
+import "../../core"
+import "share.js" as Activity
+
+ActivityBase {
+    id: activity
+
+    onStart: focus = true
+    onStop: {}
+
+    // TODO: handle Qt 5.7 listModel bug
+
+    pageComponent: Rectangle {
+        id: background
+        anchors.fill: parent
+        color: "#ffffb3"
+        signal start
+        signal stop
+
+        Component.onCompleted: {
+            activity.start.connect(start)
+            activity.stop.connect(stop)
+        }
+
+        // Add here the QML items you need to access in javascript
+        QtObject {
+            id: items
+            property Item main: activity.main
+            property alias background: background
+            property alias bar: bar
+            property alias bonus: bonus
+            property alias instruction: instruction
+            property int currentSubLevel: 0
+            property int nbSubLevel
+            property alias listModel: listModel
+            property bool acceptCandy: false
+            property alias dataset: dataset
+            property alias girlWidget: girlWidget
+            property alias boyWidget: boyWidget
+            property alias candyWidget: candyWidget
+            property alias basketWidget: basketWidget
+            property alias leftWidget: leftWidget
+            property int totalBoys
+            property int totalGirls
+            property int totalCandies
+            property int totalChildren: totalBoys + totalGirls
+            property int barHeightAddon: ApplicationSettings.isBarHidden ? 1 : 3
+            property int cellSize: Math.min(background.width / 11 , \
background.height / (9 + barHeightAddon)) +        }
+
+        Loader {
+            id: dataset
+            asynchronous: false
+        }
+
+        onStart: { Activity.start(items) }
+        onStop: { Activity.stop() }
+
+        property bool vert: background.width > background.height
+        property int currentBoys: 0
+        property int currentGirls: 0
+        property int currentCandies: 0
+        property int rest
+        property int placedInGirls
+        property int placedInBoys
+        property bool showCount: true
+        property bool easyMode: false
+        property alias wrongMove: wrongMove
+        property bool finished: false
+
+        //returns true if the x and y is in the "dest" area
+        function contains(x,y,dest) {
+            return (x > dest.x && x < dest.x + dest.width &&
+                    y > dest.y && y < dest.y + dest.height)
+        }
+
+        //stop the candy rotation
+        function resetCandy() {
+            items.acceptCandy = false;
+            candyWidget.element.rotation = 0
+        }
+
+        //searches in the board for the basket; if it exists, returns true
+        function basketShown() {
+            for (var i=0; i<listModel.count; i++) {
+                if (repeater_drop_areas.itemAt(i).name === "basket" && \
background.rest != 0) { +                    return true
+                }
+            }
+            return false
+        }
+
+        //check if the answer is correct
+        function check() {
+            background.resetCandy()
+            background.finished = true
+
+            var ok = 0
+            var okRest = 0
+            var rest = items.totalCandies - \
Math.floor(items.totalCandies/items.totalChildren) * items.totalChildren +
+            if (listModel.count >= items.totalChildren) {
+                for (var i=0; i<listModel.count; i++)
+                    if (listModel.get(i).nameS === "basket")
+                        okRest = listModel.get(i).countS
+                    else if (listModel.get(i).countS === \
Math.floor(items.totalCandies/items.totalChildren)) +                        ok++
+
+                //condition without rest
+                if (rest == 0 && ok == items.totalChildren) {
+                    bonus.good("flower")
+                    return
+                }
+
+                //condition with rest
+                else if (rest == okRest && ok == items.totalChildren) {
+                    bonus.good("tux")
+                    return
+                }
+            }
+
+            //else => bad
+            bonus.bad("flower")
+        }
+
+        //center zone
+        Rectangle {
+            id: grid
+            z: 4
+
+            //map the coordinates from widgets to grid
+            property var boy: leftWidget.mapFromItem(boyWidget, boyWidget.element.x, \
boyWidget.element.y) +            property var girl: \
leftWidget.mapFromItem(girlWidget, girlWidget.element.x, girlWidget.element.y) +      \
property var basket: leftWidget.mapFromItem(basketWidget, basketWidget.element.x, \
basketWidget.element.y) +
+            //show that the widget can be dropped here
+            color: background.contains(boy.x, boy.y, grid) ||
+                   background.contains(girl.x, girl.y, grid) ||
+                   background.contains(basket.x, basket.y, grid) ? "pink" : \
"transparent" +
+            anchors {
+                top: background.vert ? parent.top : leftWidget.bottom
+                left: background.vert ? leftWidget.right : parent.left
+                topMargin: 20
+                leftMargin: 20
+            }
+
+            width: background.vert ?
+                       background.width - leftWidget.width - 40 : background.width - \
40 +            height: ApplicationSettings.isBarHidden ?
+                        background.height : background.vert ?
+                            background.height - (bar.height * 1.1) :
+                            background.height - (bar.height * 1.1) - \
leftWidget.height +
+            //shows/hides the Instruction
+            MouseArea {
+                anchors.fill: parent
+                onClicked: (instruction.opacity === 0) ?
+                               instruction.show() : instruction.hide()
+            }
+
+            ListModel {
+                id: listModel
+            }
+
+            Flow {
+                id: drop_areas
+                spacing: 10
+
+                width: parent.width
+                height: parent.height
+
+                Repeater {
+                    id: repeater_drop_areas
+                    model: listModel
+
+                    DropChild {
+                        id: rect2
+                        //"nameS" from listModel
+                        name: nameS
+                    }
+                }
+            }
+        }
+
+        //instruction rectangle
+        Rectangle {
+            id: instruction
+            anchors.fill: instructionTxt
+            opacity: 0.8
+            radius: 10
+            border.width: 2
+            z: 10
+            border.color: "black"
+            gradient: Gradient {
+                GradientStop { position: 0.0; color: "#000" }
+                GradientStop { position: 0.9; color: "#666" }
+                GradientStop { position: 1.0; color: "#AAA" }
+            }
+
+            property alias text: instructionTxt.text
+
+            Behavior on opacity { PropertyAnimation { duration: 200 } }
+
+            function show() {
+                if(text)
+                    opacity = 1
+            }
+            function hide() {
+                opacity = 0
+            }
+        }
+
+        //instruction for playing the game
+        GCText {
+            id: instructionTxt
+            anchors {
+                top: background.vert ? parent.top : leftWidget.bottom
+                topMargin: -10
+                horizontalCenter: grid.horizontalCenter
+            }
+            opacity: instruction.opacity
+            z: instruction.z
+            fontSize: background.vert ? regularSize : smallSize
+            color: "white"
+            style: Text.Outline
+            styleColor: "black"
+            horizontalAlignment: Text.AlignHCenter
+            width: Math.max(Math.min(parent.width * 0.8, text.length * 8), \
parent.width * 0.3) +            wrapMode: TextEdit.WordWrap
+        }
+
+        //left widget, with girl/boy/candy/basket widgets in a grid
+        Rectangle {
+            id: leftWidget
+            width: background.vert ?
+                       items.cellSize * 1.74 : background.width
+            height: background.vert ?
+                        background.height : items.cellSize * 1.74
+            color: "#FFFF42"
+            border.color: "#FFD85F"
+            border.width: 4
+            z: 4
+
+            //grid with ok button and images of a boy, a girl, a candy and a basket
+            Grid {
+                id: view
+                x: 10
+                y: 10
+
+                width: background.vert ? leftWidget.width : 3 * bar.height
+                height: background.vert ? background.height - 2 * bar.height : \
bar.height +                spacing: 10
+                columns: background.vert ? 1 : 5
+
+                //ok button
+                Image {
+                    id: okButton
+                    source:"qrc:/gcompris/src/core/resource/bar_ok.svg"
+                    sourceSize.width: items.cellSize * 1.5
+                    fillMode: Image.PreserveAspectFit
+
+                    MouseArea {
+                        id: mouseArea
+                        anchors.fill: parent
+                        enabled: background.finished ? false : true
+                        onPressed: okButton.opacity = 0.6
+                        onReleased: okButton.opacity = 1
+                        onClicked: background.check()
+
+                    }
+                }
+
+                WidgetOption {
+                    id: girlWidget
+                    src: "resource/images/girl.svg"
+                    name: "girl"
+                    total: items.totalGirls
+                    current: background.currentGirls
+                }
+
+                WidgetOption {
+                    id: boyWidget
+                    src: "resource/images/boy.svg"
+                    name: "boy"
+                    total: items.totalBoys
+                    current: background.currentBoys
+                }
+
+                WidgetOption {
+                    id: candyWidget
+                    src: "resource/images/candy.svg"
+                    name: "candy"
+                    total: background.easyMode ? items.totalCandies : 8 * \
items.totalChildren + 1 +                    current: background.currentCandies
+
+                    //swing animation for candies
+                    SequentialAnimation {
+                        id: anim
+                        running: items.acceptCandy ? true : false
+                        loops: Animation.Infinite
+                        NumberAnimation {
+                            target: candyWidget.element
+                            property: "rotation"
+                            from: -10; to: 10
+                            duration: 400 + Math.floor(Math.random() * 400)
+                            easing.type: Easing.InOutQuad
+                        }
+                        NumberAnimation {
+                            target: candyWidget.element
+                            property: "rotation"
+                            from: 10; to: -10
+                            duration: 400 + Math.floor(Math.random() * 400)
+                            easing.type: Easing.InOutQuad
+                        }
+                    }
+                }
+
+                WidgetOption {
+                    id: basketWidget
+                    src: "resource/images/basket.svg"
+                    name: "basket"
+                    element {
+                        opacity: 0
+                        Behavior on opacity { PropertyAnimation { duration: 500 } }
+                    }
+                }
+            }
+        }
+
+        // show message warning for placing too many candies in one area
+        Rectangle {
+            id: wrongMove
+            anchors.fill: wrongMoveText
+            z: 5
+            color: "#FFFF42"
+            radius: width / height * 10
+            opacity: 0
+
+            property alias fadeInOut: fadeInOut
+
+            SequentialAnimation {
+                id: fadeInOut
+                PropertyAction { target: wrongMove; property: "z"; value: 5 }
+                NumberAnimation { target: wrongMove; property: "opacity"; to: 1; \
duration: 300 } +                NumberAnimation { target: wrongMove; property: \
"opacity"; to: 1; duration: 500 } +                NumberAnimation { target: \
wrongMove; property: "opacity"; to: 0; duration: 200 } +                \
PropertyAction { target: wrongMove; property: "z"; value: -5 } +            }
+        }
+
+        GCText {
+            id: wrongMoveText
+            anchors.horizontalCenter: grid.horizontalCenter
+            anchors.verticalCenter: parent.verticalCenter
+            fontSize: background.vert ? hugeSize : largeSize
+            opacity: wrongMove.opacity
+            z: wrongMove.z
+            color: "#404040"
+            text: qsTr(" Too many candies!! ")
+        }
+
+        DialogActivityConfig {
+            id: dialogActivityConfig
+            currentActivity: activity
+            content: Component {
+                Item {
+                    height: column.height
+
+                    Column {
+                        id: column
+                        spacing: 10
+                        width: parent.width
+
+                        GCDialogCheckBox {
+                            id: easyModeBox
+                            width: 250 * ApplicationInfo.ratio
+                            text: qsTr("Easy mode")
+                            checked: background.easyMode
+                            onCheckedChanged: {
+                                background.easyMode = checked
+                                if (checked == false)
+                                    candyWidget.element.opacity = 1
+                                else Activity.reloadRandom()
+                                print("easyModeBox: ",checked)
+                            }
+                        }
+                    }
+                }
+            }
+
+            onClose: home()
+        }
+
+        //bar buttons
+        DialogHelp {
+            id: dialogHelp
+            onClose: home()
+        }
+
+        Bar {
+            id: bar
+            content: BarEnumContent { value: help | home | level | reload | config}
+            onHelpClicked: {
+                displayDialog(dialogHelp)
+            }
+            onPreviousLevelClicked: Activity.previousLevel()
+            onNextLevelClicked: Activity.nextLevel()
+            onHomeClicked: activity.home()
+            onReloadClicked: Activity.reloadRandom()
+            onConfigClicked: {
+                dialogActivityConfig.active = true
+                displayDialog(dialogActivityConfig)
+            }
+        }
+
+        Bonus {
+            id: bonus
+            Component.onCompleted: {
+                win.connect(Activity.nextSubLevel)
+            }
+            onStop: background.finished = false
+        }
+
+        Score {
+            anchors {
+                bottom: parent.bottom
+                bottomMargin: 10 * ApplicationInfo.ratio
+                right: parent.right
+                rightMargin: 10 * ApplicationInfo.ratio
+                top: undefined
+                left: undefined
+            }
+            numberOfSubLevels: items.nbSubLevel
+            currentSubLevel: items.currentSubLevel + 1
+        }
+    }
+}
diff --git a/src/activities/share/WidgetOption.qml \
b/src/activities/share/WidgetOption.qml new file mode 100644
index 0000000..4e190d3
--- /dev/null
+++ b/src/activities/share/WidgetOption.qml
@@ -0,0 +1,199 @@
+/* GCompris - WidgetOption.qml
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ *   This program is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License as published by
+ *   the Free Software Foundation; either version 3 of the License, or
+ *   (at your option) any later version.
+ *
+ *   This program is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+import QtQuick 2.1
+import QtQuick.Window 2.2
+import GCompris 1.0
+
+import "../../core"
+
+Rectangle {
+    id: widget
+
+    width: items.cellSize * 1.5
+    height: items.cellSize * 1.5
+    color: "transparent"
+
+    //initial position of the element
+    //(these vars are assigned to element after release of click mouse)
+    property int lastX
+    property int lastY
+    property string src
+    property int current: 0
+    property int total: 0
+    property string name
+    property bool canDrag: true
+    property alias element: element
+
+    Image {
+        id: element
+        sourceSize.width: items.cellSize * 1.5
+        sourceSize.height: items.cellSize * 1.5
+        source: widget.src
+
+        property alias elementText: elementText
+
+        //number of available items
+        GCText {
+            id: elementText
+            anchors.left: parent.left
+            anchors.bottom: parent.bottom
+            text: (background.showCount && widget.name !== "basket" && \
background.easyMode) ? +                      widget.total - widget.current : ""
+        }
+
+        property alias dragAreaElement: dragAreaElement
+
+        MouseArea {
+            id: dragAreaElement
+            anchors.fill: parent
+            drag.target: (widget.canDrag) ? parent : null
+            onPressed: {
+                instruction.hide()
+                if (widget.name !== "candy")
+                    background.resetCandy()
+                //set the initial position
+                widget.lastX = element.x
+                widget.lastY = element.y
+            }
+
+            onReleased:  {
+                var newCoordinate = widget.mapToItem(background, element.x, \
element.y) +                var basketActive = false
+
+                switch(widget.name) {
+                case "candy":
+                    ////////////////////// START of EASY mode
+                    if (background.easyMode) {
+                        if (background.currentCandies < items.totalCandies) {
+                            items.acceptCandy = true
+
+                            for (var i = 0; i < listModel.count; i++) {
+                                var currentChild = repeater_drop_areas.itemAt(i)
+                                var childCoordinate = \
drop_areas.mapToItem(background, currentChild.x, currentChild.y) +                    \
//coordinates of "boy/girl rectangle" in background coordinates +                     \
if ((listModel.get(i).countS + 1) > 8) { +                                    \
print("in if: ", listModel.get(i).countS+1 + " -------------> CONINTUE ------->") +   \
continue +                                }
+
+                                var currentElement = \
element.parent.mapToItem(background, element.x, element.y) +
+                                if (currentElement.x > childCoordinate.x && \
currentElement.x < childCoordinate.x + currentChild.area.width && +                   \
currentElement.y > childCoordinate.y + currentChild.childImage.height && +            \
currentElement.y < childCoordinate.y + currentChild.childImage.height + \
currentChild.area.height) { +                                    \
listModel.setProperty(i, "countS", listModel.get(i).countS+1) +                       \
background.currentCandies ++ +                                }
+
+                                if (background.currentCandies == items.totalCandies) \
{ +                                    widget.canDrag = false
+                                    background.resetCandy()
+                                    candyWidget.element.opacity = 0.6
+                                }
+
+                                //find if the basket is already present on the board
+                                if (currentChild.name === "basket" && \
background.rest != 0) { +                                    basketActive = true
+                                }
+                            }
+
+                            //if there is rest and the basket is not yet present on \
the board, show the basket +                            if (background.rest != 0 && \
basketActive === false) +                                \
items.basketWidget.element.opacity = 1 +                        }
+                        else {
+                            widget.canDrag = false
+                            background.resetCandy()
+                            element.opacity = 0.6
+                        }
+
+                    ////////////////////// END of EASY mode
+                    } else {
+                        if (background.currentCandies < widget.total) {
+                            items.acceptCandy = true
+
+                            for (i = 0; i < listModel.count; i++) {
+                                currentChild = repeater_drop_areas.itemAt(i)
+                                childCoordinate = drop_areas.mapToItem(background, \
currentChild.x, currentChild.y) +                                //coordinates of \
"boy/girl rectangle" in background coordinates +                                \
currentElement = element.parent.mapToItem(background, element.x, element.y) +
+                                if (currentElement.x > childCoordinate.x && \
currentElement.x < childCoordinate.x + currentChild.area.width && +                   \
currentElement.y > childCoordinate.y + currentChild.childImage.height && +            \
currentElement.y < childCoordinate.y + currentChild.childImage.height + \
currentChild.area.height) { +
+                                    if ((listModel.get(i).countS + 1) > 8) {
+                                        print("in if: ", listModel.get(i).countS+1 + \
" -------------> CONINTUE ------->  i " + i) +                                        \
background.wrongMove.fadeInOut.start() +                                        \
continue +                                    }
+
+                                    listModel.setProperty(i, "countS", \
listModel.get(i).countS+1) +                                    \
background.currentCandies ++ +                                }
+                            }
+                            // if all the "dropAreas" are full with 8 candies, then \
stop the "swing" effect of the candy in leftWidget +                            if \
(background.currentCandies + 1 == widget.total) +                                \
background.resetCandy() +                        }
+                    }
+                    /////////////////// END of HARD mode
+                    break;
+
+                case "basket":
+                    if (background.contains(newCoordinate.x, newCoordinate.y, grid)) \
{ +                        if (widget.canDrag) {
+                            widget.canDrag = false
+                            widget.element.opacity = 0
+                            listModel.append({countS: 0, nameS: "basket"});
+                        }
+                    }
+                    break;
+
+                //default is for "boy" and "girl"
+                default:
+                    if (background.contains(newCoordinate.x, newCoordinate.y, grid)) \
{ +                        if (widget.current < widget.total) {
+                            if (widget.canDrag) {
+                                widget.current ++
+                                listModel.append({countS: 0, nameS: widget.name});
+
+                                // set the candies already "preset"
+                                if (widget.name == "boy")
+                                    listModel.setProperty(listModel.count-1, \
"countS", background.placedInBoys) +                                if (widget.name \
== "girl") +                                    \
listModel.setProperty(listModel.count-1, "countS", background.placedInGirls) +
+                                if (widget.current === widget.total) {
+                                    widget.canDrag = false
+                                    element.opacity = 0.6
+                                }
+                            }
+                        }
+                        else
+                            widget.canDrag = false
+                    }
+                }
+                //set the widget to its initial coordinates
+                element.x = widget.lastX
+                element.y = widget.lastY
+            }
+        }
+    }
+}
diff --git a/src/activities/share/resource/README \
b/src/activities/share/resource/README new file mode 100644
index 0000000..569d746
--- /dev/null
+++ b/src/activities/share/resource/README
@@ -0,0 +1,7 @@
+Image source:
+	https://openclipart.org/
+
+girl:	https://openclipart.org/detail/233385/girl-and-boy
+boy:	https://openclipart.org/detail/233385/girl-and-boy
+candy:	https://openclipart.org/detail/189393/candy-cane
+basket:	https://openclipart.org/detail/215766/basket-02
diff --git a/src/activities/share/resource/board/board0.qml \
b/src/activities/share/resource/board/board0.qml new file mode 100644
index 0000000..8e8f136
--- /dev/null
+++ b/src/activities/share/resource/board/board0.qml
@@ -0,0 +1,69 @@
+/* GCompris
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+import QtQuick 2.0
+
+/*	
+	Numbers of kids are given in the left widget which eases kid work.
+	No rest (basket).
+*/
+
+QtObject {
+	property variant levels : [
+		{
+			"instruction" : qsTr("Paul wants to equally share 2 candies between his friends. \
They are 2. One girl and one boy. Can you help him? Place first the children in \
center, then drag the candies to each of them."), +			"totalBoys" : 1,
+			"totalGirls" : 1,
+			"totalCandies" : 2,
+			"showCount": true,
+            "forceShowBakset": "false",
+            "placedInGirls": 0,
+            "placedInBoys": 0
+		},
+		{
+			"instruction" : qsTr("Now he wants to give 4 candies to his friends."),
+			"totalBoys" : 1,
+			"totalGirls" : 1,
+			"totalCandies" : 4,
+			"showCount": true,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+		},
+		{
+			"instruction" : qsTr("Can you now give 6 of Paul's candies to his friends?"),
+			"totalBoys" : 1,
+			"totalGirls" : 1,
+			"totalCandies" : 6,
+			"showCount": true,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+
+		},
+		{
+			"instruction" : qsTr("Paul has only 10 candies left. He eats 2 candies and he \
gives the rest to his friends. Can you help him equally split the 8 remaining \
candies?"), +			"totalBoys" : 1,
+			"totalGirls" : 1,
+			"totalCandies" : 8,
+			"showCount": true,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+		}
+	]
+}
diff --git a/src/activities/share/resource/board/board1.qml \
b/src/activities/share/resource/board/board1.qml new file mode 100644
index 0000000..ae2aeb2
--- /dev/null
+++ b/src/activities/share/resource/board/board1.qml
@@ -0,0 +1,58 @@
+/* GCompris
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+import QtQuick 2.0
+
+/*  
+    Numbers of kids are given in the left widget which eases kid work.
+    There is a rest (basket)
+*/
+
+QtObject {
+    property variant levels : [
+        {
+            "instruction" : qsTr("George wants to equally share 3 candies between \
his friends. They are 2. One girl and one boy. Can he equally split the candies to \
his friends? Place first the children in center, then drag the candies to each of \
them. Be careful, a rest will remain!"), +            "totalBoys" : 1,
+            "totalGirls" : 1,
+            "totalCandies" : 3,
+            "showCount": true,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+        },
+        {
+            "instruction" : qsTr("Maria wants to equally share 5 candies between her \
friends. They are 3. One girl and two boys. Can she equally split the candies to her \
friends? Place first the children in center, then drag the candies to each of them. \
Be careful, a rest will remain!"), +            "totalBoys" : 2,
+            "totalGirls" : 1,
+            "totalCandies" : 5,
+            "showCount": true,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+        },
+        {
+            "instruction" : qsTr("John wants to equally share 10 candies between his \
friends. They are 3. One boy and two girls. Can he equally split the candies to his \
friends? Place first the children in center, then drag the candies to each of \
them."), +            "totalBoys" : 1,
+            "totalGirls" : 2,
+            "totalCandies" : 10,
+            "showCount": true,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+        }
+    ]
+}
diff --git a/src/activities/share/resource/board/board2.qml \
b/src/activities/share/resource/board/board2.qml new file mode 100644
index 0000000..a5fdd62
--- /dev/null
+++ b/src/activities/share/resource/board/board2.qml
@@ -0,0 +1,68 @@
+/* GCompris
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+import QtQuick 2.0
+
+/*  
+    Numbers of kids are not given anymore in the left widget which forces kids to \
understand this part. +    No rest (basket).
+*/
+
+QtObject {
+    property variant levels : [
+        {
+            "instruction" : qsTr("Alice wants to equally share 3 candies between her \
friends. They are 3: One girl and two boys. Can you help her? Place first the \
children in the center, then drag the candies to each of them."), +            \
"totalBoys" : 2, +            "totalGirls" : 1,
+            "totalCandies" : 3,
+            "showCount": false,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+        },
+        {
+            "instruction" : qsTr("Now, Alice wants to give 6 candies to her \
friends"), +            "totalBoys" : 2,
+            "totalGirls" : 1,
+            "totalCandies" : 6,
+            "showCount": false,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+        },
+        {
+            "instruction" : qsTr("Can you help Alice give 9 candies to her friends: \
one girl and two boys?"), +            "totalBoys" : 2,
+            "totalGirls" : 1,
+            "totalCandies" : 9,
+            "showCount": false,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+        },
+        {
+            "instruction" : qsTr("Alice has 12 candies left. She wants to give them \
all to her friends. Can you help her split the candies equally?"), +            \
"totalBoys" : 2, +            "totalGirls" : 1,
+            "totalCandies" : 12,
+            "showCount": false,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+        }
+    ]
+}
diff --git a/src/activities/share/resource/board/board3.qml \
b/src/activities/share/resource/board/board3.qml new file mode 100644
index 0000000..3a484f5
--- /dev/null
+++ b/src/activities/share/resource/board/board3.qml
@@ -0,0 +1,68 @@
+/* GCompris
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+import QtQuick 2.0
+
+/*	
+	Numbers of kids are not given anymore in the left widget.
+	There is a rest (basket).
+*/
+
+QtObject {
+	property variant levels : [
+		{
+            "instruction" : qsTr("Michael wants to equally share 5 candies between \
his friends. They are 2. One girl and one boy. Can you help him? Place first the \
children in center, then drag the candies to each of them!"), +			"totalBoys" : 1,
+			"totalGirls" : 1,
+			"totalCandies" : 5,
+			"showCount": false,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+		},
+		{
+            "instruction" : qsTr("Helen has 3 friends: one boy and two girls. She \
wants to give them 7 candies. Help her split the candies between her friends!"), \
+			"totalBoys" : 1, +			"totalGirls" : 2,
+			"totalCandies" : 7,
+			"showCount": false,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+		},
+		{
+            "instruction" : qsTr("Michelle has 9 candies and wants to split them \
with two brothers and two sisters. Help her share the candies!"), +			"totalBoys" : \
2, +			"totalGirls" : 2,
+			"totalCandies" : 9,
+			"showCount": false,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+		},
+		{
+            "instruction" : qsTr("Thomas wants to share his 11 candies with his \
friends: three boys and one girl. Can you help him?"), +			"totalBoys" : 3,
+			"totalGirls" : 1,
+			"totalCandies" : 11,
+			"showCount": false,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+		}
+	]
+}
diff --git a/src/activities/share/resource/board/board4.qml \
b/src/activities/share/resource/board/board4.qml new file mode 100644
index 0000000..c50c487
--- /dev/null
+++ b/src/activities/share/resource/board/board4.qml
@@ -0,0 +1,58 @@
+/* GCompris
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+import QtQuick 2.0
+
+/*
+	Numbers of kids are not given anymore in the left widget.
+	There is always a basket even if the rest can be equal to 0
+*/
+
+QtObject {
+	property variant levels : [
+		{
+            "instruction" : qsTr("Charles wants to share his 8 candies to one boy \
and two girls. Can he split the candies equally?"), +			"totalBoys" : 1,
+            "totalGirls" : 2,
+            "totalCandies" : 8,
+            "showCount": true,
+            "forceShowBakset": true,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+		},
+		{
+            "instruction" : qsTr("For her birthday, Elizabeth has 12 candies to \
share with her friends. They are two girls and two boys. How should she split the \
candies to her friends?"), +            "totalBoys" : 2,
+            "totalGirls" : 2,
+            "totalCandies" : 12,
+            "showCount": true,
+            "forceShowBakset": true,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+		},
+		{
+            "instruction" : qsTr("Jason's father gave him 14 candies to share with \
his friends: two boys and three girls. Help him give the candies to his friends!"), + \
"totalBoys" : 2, +            "totalGirls" : 3,
+            "totalCandies" : 14,
+            "showCount": true,
+            "forceShowBakset": true,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+        }
+	]
+}
diff --git a/src/activities/share/resource/board/board5.qml \
b/src/activities/share/resource/board/board5.qml new file mode 100644
index 0000000..7b1e72b
--- /dev/null
+++ b/src/activities/share/resource/board/board5.qml
@@ -0,0 +1,59 @@
+/* GCompris
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+import QtQuick 2.0
+
+/*
+	Numbers of kids are not given anymore in the left widget.
+	No rest (basket).
+	Boy or Girl rectangles already contain a given number of candies.
+*/
+
+QtObject {
+	property variant levels : [
+				{
+            "instruction" : qsTr("Bob wants to give 5 candies to his friends: two \
boys and one girl, his girlfriend already has one candy. Can you help him equally \
split the candies so each friend will have the same amount of candies?"), \
+			"totalBoys" : 2, +			"totalGirls" : 1,
+            "totalCandies" : 6,
+			"showCount": true,
+            "forceShowBakset": false,
+            "placedInGirls": 1,
+            "placedInBoys": 0
+		},
+		{
+            "instruction" : qsTr("Harry wants to equally share 8 candies between his \
friends: one boy and two girls. Place the children in center, then drag the candies \
to each of them so each of them has an equal number of candies."), +			"totalBoys" : \
1, +			"totalGirls" : 2,
+            "totalCandies" : 9,
+			"showCount": true,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 1
+		},
+		{
+			"instruction" : qsTr("Can you now give 6 of Harry's candies to his friends?"),
+			"totalBoys" : 1,
+			"totalGirls" : 2,
+            "totalCandies" : 8,
+			"showCount": true,
+            "forceShowBakset": false,
+            "placedInGirls": 0,
+            "placedInBoys": 2
+		}
+	]
+}
diff --git a/src/activities/share/resource/board/board6.qml \
b/src/activities/share/resource/board/board6.qml new file mode 100644
index 0000000..392a068
--- /dev/null
+++ b/src/activities/share/resource/board/board6.qml
@@ -0,0 +1,59 @@
+/* GCompris
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+import QtQuick 2.0
+
+/*
+	Numbers of kids are not given anymore in the left widget.
+	No rest (basket).
+	Boy or Girl rectangles already contain a given number of candies.
+*/
+
+QtObject {
+	property variant levels : [
+				{
+            "instruction" : qsTr("Help Jon split 9 candies to three boys and two \
girls. The rest will remain to Jon."), +            "totalBoys" : 3,
+            "totalGirls" : 2,
+            "totalCandies" : 9,
+			"showCount": false,
+            "forceShowBakset": true,
+            "placedInGirls": 0,
+            "placedInBoys": 0
+		},
+		{
+            "instruction" : qsTr("Jon wants to share the rest of his candies with \
his brother and his sister. Can you split them equally, knowing that his brother \
already has two candies?"), +			"totalBoys" : 1,
+			"totalGirls" : 1,
+            "totalCandies" : 6,
+			"showCount": false,
+            "forceShowBakset": true,
+            "placedInGirls": 0,
+            "placedInBoys": 2
+		},
+		{
+            "instruction" : qsTr("Help Tux split some candies to his friends: 9 \
candies to one boy and two girls."), +			"totalBoys" : 1,
+            "totalGirls" : 2,
+            "totalCandies" : 13,
+            "showCount": false,
+            "forceShowBakset": true,
+            "placedInGirls": 2,
+            "placedInBoys": 0
+		}
+	]
+}
diff --git a/src/activities/share/resource/board/board7.qml \
b/src/activities/share/resource/board/board7.qml new file mode 100644
index 0000000..e22722f
--- /dev/null
+++ b/src/activities/share/resource/board/board7.qml
@@ -0,0 +1,29 @@
+/* GCompris
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+import QtQuick 2.0
+
+QtObject {
+	property variant levels : [
+        {
+			"maxBoys" : 2,
+			"maxGirls" : 2,
+			"maxCandies" : 16,
+            "alreadyPlaced": false
+		}
+	]
+}
diff --git a/src/activities/share/resource/board/board8.qml \
b/src/activities/share/resource/board/board8.qml new file mode 100644
index 0000000..91d87e9
--- /dev/null
+++ b/src/activities/share/resource/board/board8.qml
@@ -0,0 +1,29 @@
+/* GCompris
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+import QtQuick 2.0
+
+QtObject {
+	property variant levels : [
+        {
+			"maxBoys" : 3,
+			"maxGirls" : 3,
+			"maxCandies" : 24,
+            "alreadyPlaced": true
+		}
+	]
+}
diff --git a/src/activities/share/resource/board/board9.qml \
b/src/activities/share/resource/board/board9.qml new file mode 100644
index 0000000..e4dadd6
--- /dev/null
+++ b/src/activities/share/resource/board/board9.qml
@@ -0,0 +1,29 @@
+/* GCompris
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+import QtQuick 2.0
+
+QtObject {
+	property variant levels : [
+        {
+            "maxBoys" : 3,
+            "maxGirls" : 3,
+			"maxCandies" : 24,
+            "alreadyPlaced": true
+		}
+	]
+}
diff --git a/src/activities/share/resource/images/basket.svg \
b/src/activities/share/resource/images/basket.svg new file mode 100644
index 0000000..cd00f82
--- /dev/null
+++ b/src/activities/share/resource/images/basket.svg
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.2 r9819"
+   width="600"
+   height="600"
+   sodipodi:docname="basket-2.png">
+  <metadata
+     id="metadata8">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs6" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1664"
+     inkscape:window-height="985"
+     id="namedview4"
+     showgrid="false"
+     borderlayer="true"
+     inkscape:zoom="0.69644045"
+     inkscape:cx="-70.880883"
+     inkscape:cy="80.98044"
+     inkscape:window-x="131"
+     inkscape:window-y="-2"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="svg2" />
+  <g
+     transform="matrix(1.9609414,0,0,1.9081327,-825.28981,78.51064)"
+     id="g3774">
+    <path
+       inkscape:connector-curvature="0"
+       id="path3776"
+       d="m 553,222.98747 c -4.675,-0.48537 -11.425,-1.39649 -15,-2.02471 \
-3.575,-0.62822 -7.90032,-1.32341 -9.61182,-1.54487 -5.08152,-0.6575 \
-20.47519,-5.34058 -26.35866,-8.01885 -8.12547,-3.69888 -28.23414,-19.44158 \
-37.96464,-29.72181 -6.12925,-6.47553 -9.45101,-12.38916 -13.10967,-23.33878 \
-7.60897,-22.77207 -9.55098,-41.32811 -5.95914,-56.93967 2.52226,-10.962677 \
4.1934,-15.300459 8.40654,-21.820822 C 455.20723,76.785081 457.95408,72.25 \
459.50672,69.5 465.03081,59.71584 474.58223,46.417276 480,40.966924 \
485.93595,34.995275 494.56003,30.324366 514.34352,22.36604 533.86108,14.514692 \
546.30961,12.4962 581,11.557895 c 18.7821,-0.508018 32.56898,2.204122 55.5,10.9179 \
22.23293,8.448505 38.99819,22.50089 53.11979,44.524205 7.81867,12.19358 \
13.02354,23.306183 15.47097,33.03113 1.99304,7.91938 2.05144,9.21503 0.90009,19.96887 \
-1.69589,15.84003 -9.18305,37.82361 -16.4093,48.18054 -2.43477,3.4896 \
-20.85885,22.18026 -25.37339,25.74052 -14.89638,11.7476 -41.94688,22.52577 \
-69.20816,27.57574 -10.51979,1.94872 -30.69216,2.66468 -42,1.49067 z m \
102.12756,-32.65119 c 1.24448,-1.5086 1.16266,-1.55194 -0.87756,-0.46482 \
-2.32696,1.23991 -2.89993,2.12854 -1.37244,2.12854 0.48265,0 1.49515,-0.74867 \
2.25,-1.66372 z m 3.79855,-16.74725 c 0.75526,-0.91003 0.81654,-1.63004 \
0.17262,-2.02801 -0.54911,-0.33937 -1.48679,0.29557 -2.08374,1.41097 -1.23454,2.30676 \
0.14037,2.75067 1.91112,0.61704 z M 672,171.80968 c 0,-1.31439 -2.27278,-0.49134 \
-2.77106,1.0035 -0.24358,0.73075 0.21359,0.95424 1.1875,0.58051 C 671.2874,173.05947 \
672,172.34667 672,171.80968 z m -3,-15.43212 c 0,-1.64087 -0.13551,-1.65674 \
-3.4349,-0.40231 -2.96083,1.12571 -3.35304,2.70045 -0.8151,3.27267 2.1064,0.47493 \
4.25,-0.97281 4.25,-2.87036 z M 680.8,156.8 c 1.37094,-1.37094 1.62454,-4.8 \
0.35499,-4.8 -1.49912,0 -4.37207,3.83974 -3.69393,4.93699 0.85619,1.38535 \
1.85769,1.34426 3.33894,-0.13699 z m -8.27611,-20.60945 c -0.89036,-0.89035 \
-2.49812,1.91641 -2.46854,4.30945 0.0204,1.64913 0.29458,1.50204 1.56295,-0.83841 \
0.84602,-1.56112 1.25353,-3.12309 0.90559,-3.47104 z m 14.86912,-0.77234 c \
0.90904,-2.36891 0.73147,-6.22324 -0.31654,-6.87095 -1.31351,-0.81179 -5.37669,5.228 \
-4.70122,6.98823 0.7499,1.95421 4.25429,1.8723 5.01776,-0.11728 z m \
-13.57659,-12.74533 c 0.34258,-2.89378 -1.22132,-3.66608 -2.20943,-1.09109 \
-0.99905,2.60348 -0.68967,4.61202 0.64301,4.17442 0.6875,-0.22574 1.39239,-1.61324 \
1.56642,-3.08333 z m 13.99194,-9.68151 c 0.27674,-4.03074 0.15083,-4.33616 \
-1.22768,-2.97798 -0.84482,0.83237 -1.83645,3.01545 -2.20362,4.8513 -0.58255,2.91277 \
-0.42619,3.29207 1.22768,2.97798 1.466,-0.2784 1.9651,-1.37719 2.20362,-4.8513 z M \
672,107.05902 c 0,-1.06754 -0.35899,-2.16285 -0.79775,-2.43402 -1.4249,-0.88064 \
-3.51067,1.12888 -2.87935,2.77408 0.86709,2.2596 3.6771,1.99973 3.6771,-0.34006 z m \
13.25,-9.045365 c 1.21283,-0.02208 0.85965,-3.48144 -0.55261,-5.412825 \
-1.07441,-1.469335 -1.49831,-1.545638 -2.41961,-0.435535 -0.61435,0.740241 \
-1.44448,2.6507 -1.84474,4.245464 -0.67646,2.695234 -0.5588,2.854362 1.66961,2.25806 \
1.31854,-0.35283 2.73485,-0.647654 3.14735,-0.655164 z m -18.8326,-6.147302 c \
-0.70379,-1.138753 -3.14799,-1.11128 -3.86163,0.0434 -0.30924,0.500367 \
-0.2802,1.644794 0.0645,2.543172 0.57717,1.504074 0.77352,1.500637 2.47966,-0.0434 \
1.01908,-0.92225 1.61192,-2.066678 1.31743,-2.543172 z m 11.49218,-8.789307 c \
1.19204,-0.754618 1.20397,-1.388706 0.0773,-4.108741 -1.23704,-2.98649 \
-1.42716,-3.086656 -2.65958,-1.401229 -2.90956,3.979071 -1.09972,7.84085 \
2.58229,5.50997 z M 656,80.559017 c 0,-2.823717 -1.15159,-3.821812 -3.40976,-2.955273 \
-1.88858,0.724716 -2.05647,2.530029 -0.39024,4.196256 1.96654,1.966538 3.8,1.367777 \
3.8,-1.240983 z M 644,70.5 c 0,-0.825 -0.675,-1.5 -1.5,-1.5 -0.825,0 -1.5,0.675 \
-1.5,1.5 0,0.825 0.675,1.5 1.5,1.5 0.825,0 1.5,-0.675 1.5,-1.5 z m 23.35576,-1.602525 \
c 1.74371,-2.036511 1.72952,-2.177799 -0.45208,-4.5 -2.81151,-2.992722 \
-4.50047,-3.047348 -5.25294,-0.169895 -0.56184,2.148484 1.5889,6.77242 \
3.15007,6.77242 0.41509,0 1.56482,-0.946136 2.55495,-2.102525 z M 529.45729,62.069098 \
c 0.73955,-1.196602 -1.14162,-2.382227 -2.4736,-1.559017 C 525.86533,61.201265 \
526.59952,63 528,63 c 0.48508,0 1.14086,-0.418906 1.45729,-0.930902 z m \
100.36226,-1.24077 C 629.44383,58.274921 628.08888,57.638846 626,59.035259 c \
-1.29825,0.867876 -1.23892,1.201944 0.44113,2.483744 2.70446,2.063384 \
3.75215,1.849197 3.37842,-0.690675 z M 501,57 c 0,-0.55 -0.45,-1 -1,-1 -0.55,0 \
-1,0.45 -1,1 0,0.55 0.45,1 1,1 0.55,0 1,-0.45 1,-1 z m 45.8041,-2.877747 c \
-0.32589,-2.810181 -1.73629,-3.176863 -3.21325,-0.835396 -1.30449,2.068046 \
-0.007,4.810019 1.92539,4.068537 1.02218,-0.392246 1.48311,-1.549416 \
1.28786,-3.233141 z m 107.59504,1.616238 c 0.90591,-1.44956 0.56958,-2.195832 \
-1.89914,-4.214037 -1.65,-1.348891 -3.28504,-2.468711 -3.63342,-2.488491 \
-0.9359,-0.05314 -1.70648,4.860273 -1.11623,7.117373 0.63989,2.446945 \
5.03155,2.172931 6.64879,-0.414845 z M 615.40804,53.5 c 1.55077,-2.366768 \
1.53595,-2.5 -0.278,-2.5 -1.98592,0 -3.55821,2.498196 -2.57427,4.090242 \
0.80963,1.310008 1.03387,1.184986 2.85227,-1.590242 z M 562,51.567388 c 0,-1.583799 \
-0.72416,-2.662451 -2.07536,-3.091306 C 557.27842,47.636204 557.06251,47.90602 \
557.70488,51.25 558.4025,54.881541 562,55.147378 562,51.567388 z M 581.5,50 c \
0,-1.832728 -0.60174,-2.585447 -2.25447,-2.820137 -1.35228,-0.192025 \
-2.49559,0.308199 -2.85699,1.25 -0.99567,2.594671 0.39988,4.739185 2.85699,4.390274 C \
580.89826,52.585447 581.5,51.832728 581.5,50 z m 18.5,1.122445 c 0,-1.032656 \
-0.64623,-2.413883 -1.43608,-3.069394 C 596.62172,46.44117 593,48.38233 593,51.035184 \
593,52.614021 593.68756,53 596.5,53 c 2.75725,0 3.5,-0.398444 3.5,-1.877555 z m \
-75.18733,-3.39673 c 0.5905,-0.71151 0.81187,-3.106126 0.50123,-5.422099 \
-0.61701,-4.600121 -1.21646,-4.661775 -7.02583,-0.722605 -2.9806,2.021063 \
-3.08863,2.284552 -1.5,3.658471 1.89822,1.641659 5.36759,3.683015 6.33949,3.730109 \
0.34515,0.01673 1.10345,-0.543019 1.68511,-1.243876 z M 637.60795,46.25 c \
1.90464,-2.509039 1.74038,-2.932922 -1.58585,-4.09245 -3.47901,-1.212791 \
-4.51018,-0.238354 -3.59719,3.399285 0.71595,2.85258 3.28319,3.195914 \
5.18304,0.693165 z M 542,36.752555 c 0,-2.840029 -0.17197,-2.96816 -3.17708,-2.367138 \
-4.27802,0.855602 -4.33483,1.003173 -1.73833,4.515131 C 539.76972,42.532373 \
542,41.557758 542,36.752555 z m 79.20084,2.139958 c 1.65978,-0.888289 \
1.79522,-1.281105 0.68426,-1.984687 -0.76181,-0.48246 -2.41343,-0.884091 \
-3.67028,-0.892513 C 616.23824,36.002068 616.07418,36.270098 617,38 c \
1.24356,2.323604 1.44633,2.366685 4.20084,0.892513 z m -59.90252,-5.925272 c \
0.41684,-1.594008 0.0105,-1.964336 -2.14194,-1.951928 -1.46101,0.0084 \
-3.33138,0.467564 -4.15638,1.020315 -1.27943,0.857218 -1.15012,1.298326 \
0.87939,2.99975 2.61058,2.188575 4.49371,1.469877 5.41893,-2.068137 z m \
18.76365,1.750956 C 583.17223,32.292475 583.0687,30.26374 579.8013,29.610261 \
574.61729,28.573457 574,28.818869 574,31.916667 c 0,3.835689 2.9738,5.210025 \
6.06197,2.80153 z M 599,35.5651 C 599,33.601563 596.75092,30 595.52475,30 c \
-1.77876,0 -1.94162,1.35255 -0.48957,4.065741 C 595.91558,35.710768 599,36.877192 \
599,35.5651 z M 604.8,34.8 c 1.84019,-1.840188 1.4276,-3.8 -0.8,-3.8 -1.46667,0 \
-2,0.666667 -2,2.5 0,2.729605 0.93588,3.164121 2.8,1.3 z" +       \
style="fill:#ca9858" /> +    <path
+       inkscape:connector-curvature="0"
+       id="path3778"
+       d="m 552,221.94603 c -4.675,-0.42631 -14.00586,-1.70655 -20.73526,-2.84497 \
-21.97294,-3.71722 -31.6807,-8.01052 -48.26474,-21.3453 -21.16102,-17.015 \
-27.03316,-24.38233 -31.8312,-39.93622 -6.79496,-22.02735 -8.80213,-41.50515 \
-5.71533,-55.46198 2.32022,-10.490737 4.50043,-15.846835 9.77754,-24.020378 \
2.42787,-3.76045 6.16658,-9.762182 8.30825,-13.337182 6.139,-10.247591 \
12.42337,-18.88734 16.8672,-23.189022 4.86298,-4.707426 11.48895,-9.342399 \
14.74968,-10.317642 1.28912,-0.385559 4.14386,-1.71778 6.34386,-2.960492 \
2.2,-1.242711 6.44389,-3.059182 9.43087,-4.036603 2.98698,-0.97742 6.81198,-2.554191 \
8.5,-3.503937 2.97671,-1.674812 4.54133,-2.13189 18.75664,-5.479464 7.65721,-1.803202 \
27.57458,-3.290766 45.81249,-3.421589 20.12923,-0.14439 40.17133,4.897198 \
63.51818,15.977992 15.45916,7.337169 30.6426,21.705424 41.66788,39.430757 \
18.95294,30.470612 21.26814,48.98625 9.79183,78.30935 -6.69569,17.10815 \
-9.07871,20.94801 -20.59815,33.19065 -18.06339,19.19743 -32.50657,27.86188 \
-59.87974,35.92179 -25.39499,7.47745 -42.13703,9.24587 -66.5,7.02424 z M 596.5,197 c \
0.33992,-0.55 -0.057,-1 -0.88197,-1 -0.825,0 -1.77811,0.45 -2.11803,1 -0.33992,0.55 \
0.057,1 0.88197,1 0.825,0 1.77811,-0.45 2.11803,-1 z m 60.14219,-6.57732 c \
2.94679,-2.51753 5.35781,-4.99901 5.35781,-5.5144 0,-1.89399 -11.60035,4.91917 \
-12.77862,7.50518 -1.88738,4.14236 1.21657,3.30966 7.42081,-1.99078 z M 494,193 c \
0,-0.55 -0.70156,-1 -1.55902,-1 -0.85746,0 -1.2809,0.45 -0.94098,1 0.33992,0.55 \
1.04148,1 1.55902,1 0.51754,0 0.94098,-0.45 0.94098,-1 z m 7.5,0 c -0.33992,-0.55 \
-1.15398,-0.99311 -1.80902,-0.98469 -0.71561,0.009 -0.59227,0.40223 0.30902,0.98469 \
1.92112,1.24153 2.2673,1.24153 1.5,0 z m 136.10577,-3.47735 C 640.24539,187.79311 \
640.76528,186 638.62712,186 636.28155,186 628,190.03485 628,191.17764 c 0,1.47828 \
6.54472,0.35069 9.60577,-1.65499 z m 8.56549,-1.17764 c 2.61079,-2.36273 \
2.2585,-3.49795 -0.67126,-2.16306 -1.375,0.6265 -2.5,1.74185 -2.5,2.47857 0,1.78407 \
0.95639,1.68892 3.17126,-0.31551 z M 493,187.15499 c 0,-0.46476 -0.9,-1.6595 \
-2,-2.65499 -2.20097,-1.99185 -2.55837,-1.41184 -0.96482,1.56574 1.04351,1.94982 \
2.96482,2.65569 2.96482,1.08925 z M 524.5,186 c -0.33992,-0.55 -1.06803,-1 \
-1.61803,-1 -0.55,0 -0.72189,0.45 -0.38197,1 0.33992,0.55 1.06803,1 1.61803,1 0.55,0 \
0.72189,-0.45 0.38197,-1 z m 66.47664,0.25 c -0.0509,-1.63339 -5.53862,-10.7358 \
-6.47664,-10.74267 -0.55,-0.004 -1.1438,1.00517 -1.31955,2.24267 -0.21973,1.54713 \
0.19181,2.25 1.31739,2.25 1.19465,0 1.46131,0.55335 0.98693,2.04799 -0.3575,1.12639 \
-0.10773,2.70139 0.55506,3.5 1.2445,1.49954 4.97819,2.03047 4.93681,0.70201 z M \
622,184.94098 c 0,-0.58246 -0.45,-0.7809 -1,-0.44098 -0.55,0.33992 -1,0.81648 \
-1,1.05902 0,0.24254 0.45,0.44098 1,0.44098 0.55,0 1,-0.47656 1,-1.05902 z M \
489.5,178 c -0.33992,-0.55 -1.06803,-1 -1.61803,-1 -0.55,0 -0.72189,0.45 -0.38197,1 \
0.33992,0.55 1.06803,1 1.61803,1 0.55,0 0.72189,-0.45 0.38197,-1 z m \
169.43045,-3.42597 c 2.23492,-2.37896 2.11758,-4.6048 -0.23947,-4.54261 \
-1.63857,0.0432 -4.93946,4.75751 -4.18543,5.97757 0.94422,1.52777 1.94709,1.20255 \
4.4249,-1.43496 z m 12.15621,0.14417 c 2.16781,-1.6644 4.10353,-5.48262 \
3.09539,-6.10569 -1.52248,-0.94094 -7.18205,3.2929 -7.18205,5.37279 0,2.25822 \
1.70235,2.56351 4.08666,0.7329 z M 553,170.93632 c -1.21988,-0.80622 -0.0681,-2.3401 \
6.16759,-8.21383 4.21718,-3.97237 8.17549,-8.24429 8.79625,-9.49316 2.07519,-4.17496 \
-1.21569,-5.81849 -4.46384,-2.22933 -0.99549,1.1 -2.34549,2 -3,2 -0.65451,0 \
-1.99986,0.89486 -2.98966,1.98857 -0.9898,1.09372 -3.98454,3.39063 -6.65499,5.10425 \
-5.48817,3.52175 -6.09864,5.78405 -2.35535,8.72852 1.38339,1.08818 2.5,3.00288 \
2.5,4.28687 0,2.21004 0.0832,2.23714 1.75,0.56991 1.53287,-1.53327 1.56389,-1.87345 \
0.25,-2.7418 z m 28.29172,0.47922 c -0.37644,-5.26955 -1.22917,-10.81349 \
-1.90389,-12.37794 -1.71599,-3.97887 -2.44858,9.52215 -0.80284,14.79556 \
0.76669,2.45665 2.91769,0.5354 2.70673,-2.41762 z m 46.73052,0.33446 c 0.0122,-0.6875 \
0.90222,-2.375 1.97776,-3.75 2.3457,-2.99881 2.48504,-4 0.5567,-4 -1.92429,0 \
-4.5567,3.88359 -4.5567,6.72251 0,2.31364 1.98145,3.32041 2.02224,1.02749 z m \
-149.88302,-3.78327 c -1.29844,-1.0817 -3.09844,-1.95176 -4,-1.93346 -1.28503,0.0261 \
-1.12912,0.45822 0.72156,2 1.29844,1.0817 3.09844,1.95176 4,1.93346 1.28503,-0.0261 \
1.12912,-0.45822 -0.72156,-2 z M 598.25,167.79989 c 3.40365,-1.23217 3.4654,-2.28504 \
0.25729,-4.38707 -3.33229,-2.1834 -6.82127,-1.18498 -9.62662,2.75477 l \
-2.25212,3.16281 2.18473,-0.57132 c 1.2016,-0.31423 2.45569,-0.13289 2.78687,0.40297 \
0.33119,0.53587 1.34413,0.67259 2.251,0.30384 0.90687,-0.36875 2.88635,-1.11845 \
4.39885,-1.666 z m 26,-1.60688 c 2.34782,-2.01642 2.21679,-2.8559 -0.89602,-5.74076 \
-3.26031,-3.02155 -4.038,-3.04609 -6.41042,-0.20225 -1.74156,2.08762 -1.87942,2.11135 \
-1.91029,0.32874 -0.0183,-1.05669 -0.77967,-2.74602 -1.69193,-3.75406 \
-1.36137,-1.50429 -1.45099,-2.28861 -0.5,-4.3758 1.39075,-3.05237 1.52168,-8.10649 \
0.23066,-8.90438 -0.51041,-0.31545 -1.21573,0.33299 -1.56739,1.44098 -0.86976,2.74037 \
-5.14806,2.71328 -6.02132,-0.0381 -0.48433,-1.526 -0.97803,-1.78164 -1.92423,-0.99637 \
-0.70001,0.58096 -2.68604,0.77362 -4.41342,0.42815 -6.01637,-1.20328 -8.37634,3.87195 \
-3.2175,6.91935 2.83054,1.67204 2.94945,1.66256 3.56739,-0.28439 0.99026,-3.12003 \
2.75341,-2.42399 2.0438,0.80683 -0.5427,2.47092 -0.18317,3.05594 2.89771,4.71511 \
1.98801,1.07061 3.93938,3.10502 4.4881,4.67907 0.53395,1.5317 1.61413,2.7849 \
2.4004,2.7849 0.78626,0 2.03155,0.72534 2.7673,1.61186 2.82446,3.40327 \
6.61848,3.62035 10.15716,0.58115 z m 17.1933,-2.41552 c 1.92508,-2.74843 \
1.99791,-4.16077 0.17856,-3.46262 -0.75798,0.29086 -1.86391,0.0431 -2.45762,-0.55063 \
-1.40636,-1.40636 -4.16424,0.76915 -4.16424,3.28488 0,1.55057 1.14537,2.3249 \
4.1933,2.83488 0.38131,0.0638 1.39381,-0.88413 2.25,-2.10651 z M 652.75632,162.25 c \
0.277,-0.84379 -0.75414,-1.25 -3.17299,-1.25 -2.58306,0 -3.58333,0.4364 \
-3.58333,1.56336 0,1.92159 6.11576,1.63794 6.75632,-0.31336 z M 500.65016,158.25269 \
500.5,154.5 493,153.36217 c -4.125,-0.6258 -7.66809,-0.98271 -7.87354,-0.79312 \
-0.20544,0.18958 -0.0782,1.11435 0.28278,2.05504 0.50024,1.30358 0.93392,1.43275 \
1.82354,0.54313 C 489.26655,153.13345 490,153.88428 490,158 c 0,2.5415 \
0.45578,3.99442 1.25,3.98469 1.79893,-0.022 3.29928,-1.22285 4.04156,-3.23469 \
0.99594,-2.69935 2.69341,-2.07516 3.35519,1.23377 0.81482,4.07406 2.18821,2.88735 \
2.00341,-1.73108 z m 7.16626,1.07443 c -0.17403,-1.47009 -0.80276,-2.8322 \
-1.39718,-3.02692 -0.67532,-0.22122 -0.9141,0.78149 -0.6365,2.67288 0.54749,3.73031 \
2.47306,4.06552 2.03368,0.35404 z M 592,161 c 0,-0.55 -0.92656,-1 -2.05902,-1 \
-1.13246,0 -1.7809,0.45 -1.44098,1 0.33992,0.55 1.26648,1 2.05902,1 0.79254,0 \
1.44098,-0.45 1.44098,-1 z m 76.94897,-2.40465 c 1.71264,-3.20009 0.52779,-4.93183 \
-2.80247,-4.09598 -3.23224,0.81124 -5.1465,2.31896 -5.1465,4.05352 0,1.14118 \
1.61986,1.81192 5.58102,2.31093 0.59456,0.0749 1.66014,-0.94591 2.36795,-2.26847 z m \
11.85009,-0.85323 c 1.35836,-1.63672 4.24787,-10.02852 3.65665,-10.61974 \
-0.55063,-0.55064 -6.12147,4.70415 -7.47952,7.05518 -1.96185,3.39633 1.37797,6.51048 \
3.82287,3.56456 z m -206.23639,-2.34843 c -0.456,-1.81688 -0.1665,-2.96289 \
0.95579,-3.78353 1.45288,-1.06237 1.38491,-1.46328 -0.69677,-4.10971 l \
-2.3067,-2.9325 -0.6995,4.89013 c -0.70169,4.9054 0.28945,8.54192 2.3281,8.54192 \
0.6571,0 0.81959,-1.01055 0.41908,-2.60631 z m 70.0415,-2.12286 c -1.01652,-1.01651 \
-1.85525,0.51389 -1.02122,1.86338 0.63003,1.01942 0.86558,1.02021 1.2043,0.004 \
0.2316,-0.69479 0.14921,-1.53513 -0.18308,-1.86742 z M 483.5,153 c 0.33992,-0.55 \
-0.0835,-1 -0.94098,-1 -0.85746,0 -1.55902,0.45 -1.55902,1 0,0.55 0.42344,1 0.94098,1 \
0.51754,0 1.2191,-0.45 1.55902,-1 z m 41.5,-0.55902 c 0,-0.85746 -0.45,-1.2809 \
-1,-0.94098 -0.55,0.33992 -1,1.04148 -1,1.55902 0,0.51754 0.45,0.94098 1,0.94098 \
0.55,0 1,-0.70156 1,-1.55902 z m -17.33583,-3.87376 C 507.3334,147.70525 \
506.14865,147 505.03138,147 c -2.47005,0 -2.55495,0.76398 -0.35501,3.19489 \
1.88459,2.08245 3.97459,0.94387 2.9878,-1.62767 z M 463.1038,146.7038 c \
-1.28349,-1.28349 -2.58505,-0.2915 -1.63484,1.24598 0.36808,0.59556 1.12735,0.79971 \
1.68727,0.45366 0.683,-0.42212 0.66575,-0.98146 -0.0524,-1.69964 z m \
209.40573,-6.38085 c 1.04722,-2.50636 1.21069,-4.00273 0.51342,-4.7 -1.50474,-1.50474 \
-2.98861,0.39062 -3.6901,4.71336 -0.7867,4.84787 1.14893,4.83973 3.17668,-0.0134 z m \
-202.31887,-2.37324 c -1.653,-2.93865 -5.58724,-4.89621 -6.98723,-3.47663 \
-0.83573,0.84741 6.89153,7.58626 7.94933,6.93251 0.40071,-0.24765 -0.0322,-1.8028 \
-0.9621,-3.45588 z m 37.60021,0.008 c 2.22506,-4.49726 1.94578,-8.46953 \
-0.49928,-7.10121 -3.7589,2.10359 -10.62186,-2.54889 -8.15124,-5.5258 \
0.59587,-0.71798 0.79631,-2.05356 0.44543,-2.96795 -0.57013,-1.48574 \
-0.88131,-1.43393 -2.92633,0.48726 -2.68617,2.52353 -4.65945,2.78015 -4.65945,0.60596 \
0,-0.88558 -0.70192,-1.41855 -1.64626,-1.25 -2.49847,0.44595 -2.75144,-1.88521 \
-0.42111,-3.88051 1.13705,-0.97357 2.06737,-2.34953 2.06737,-3.05768 0,-0.70815 \
0.9,-2.05815 2,-3 1.12015,-0.9591 2,-2.94994 2,-4.52539 0,-2.58916 -0.1752,-2.71918 \
-2.2022,-1.63437 -1.64065,0.87806 -2.29939,0.88703 -2.58333,0.0352 -0.4616,-1.38461 \
-3.21447,-1.53755 -3.21447,-0.1784 0,0.53065 0.9,1.44648 2,2.03518 1.1,0.5887 \
2,1.85007 2,2.80305 0,2.51548 -4.6362,8.94671 -6.98758,9.69301 -2.78496,0.88391 \
-2.56205,4.34447 0.3512,5.45209 1.29998,0.49425 2.65378,1.6548 3.00842,2.579 \
0.36237,0.94431 1.27575,1.43825 2.0852,1.12763 0.87055,-0.33406 1.68841,0.22876 \
2.06735,1.42268 0.35558,1.12035 1.35166,1.85575 2.30119,1.69898 1.30218,-0.21501 \
1.64145,0.44576 1.52677,2.97356 -0.0811,1.7875 0.25641,3.25 0.75,3.25 0.4936,0 \
0.89745,-0.91412 0.89745,-2.03138 0,-2.58242 2.22209,-3.45531 5.00482,-1.96604 \
2.03656,1.08993 2.06423,1.26364 0.48018,3.01399 -0.92451,1.02157 -1.38528,2.33576 \
-1.02394,2.92042 1.31392,2.12597 3.37362,0.9747 5.32981,-2.97909 z m 39.72572,2.02833 \
c 1.14726,-0.95214 1.80751,-0.96214 2.91362,-0.0442 0.78662,0.65283 3.14912,1.04543 \
5.25,0.87245 3.04713,-0.25091 3.88275,-0.75687 4.13106,-2.50133 0.37159,-2.61059 \
-3.84498,-5.79915 -6.68627,-5.05614 -1.40031,0.36619 -1.75652,0.0499 \
-1.41492,-1.25641 0.47954,-1.83377 -4.34009,-6.02633 -6.86445,-5.97134 \
-2.13364,0.0465 -7.84563,5.75011 -7.84563,7.83415 0,1.04041 -0.66554,2.444 \
-1.47899,3.1191 -1.08587,0.9012 -1.21433,1.72196 -0.48329,3.08792 0.81214,1.51749 \
1.91743,1.79469 5.99558,1.50367 2.74994,-0.19624 5.66742,-0.91081 6.48329,-1.58792 z \
m 31.87642,0.43198 c 1.05872,-2.75898 0.6972,-3.73796 -0.89301,-2.41821 \
-1.63697,1.35856 -2.0378,4 -0.60699,4 0.49116,0 1.16616,-0.7118 1.5,-1.58179 z m \
-51.54223,-1.51604 C 532.08462,137.42625 532.26369,134 528.10699,134 525.29798,134 \
524,135.44803 524,138.58179 c 0,1.70155 -0.0898,1.69408 3.85078,0.32038 z m \
159.95401,-6.16116 c 0.36401,-5.66209 -1.27896,-6.29607 -4.61673,-1.7815 \
-2.64553,3.57827 -2.72235,4.62581 -0.43806,5.97383 3.34341,1.97303 4.7325,0.82096 \
5.05479,-4.19233 z m -228.52387,0.94817 c -0.245,-1.28163 0.19983,-2.84328 \
0.99878,-3.50635 1.68509,-1.3985 1.1619,-5.57145 -0.91461,-7.29479 -2.01516,-1.67244 \
-2.74874,-0.48294 -3.34462,5.42332 -0.3922,3.8874 -0.14692,5.49415 0.97803,6.40684 \
2.21873,1.80009 2.77527,1.54918 2.28242,-1.02902 z m 76.37912,-8.33249 c \
0.21887,-3.72777 -0.12869,-5.50075 -1.26285,-6.44202 -2.6548,-2.20329 \
-4.84266,0.11143 -4.89545,5.17929 -0.0539,5.17702 1.05657,7.11595 3.83979,6.7043 \
1.67406,-0.24761 2.06782,-1.17178 2.31851,-5.44157 z m -63.64481,1.62808 c \
1.46891,-1.46891 1.83677,-2.72628 1.35692,-4.63813 -0.64001,-2.55 -0.55746,-2.60399 \
2.96969,-1.94229 2.99971,0.56275 3.52712,0.41775 3.04552,-0.83729 -0.32036,-0.83485 \
-1.99391,-2.22203 -3.71899,-3.08261 -2.83887,-1.41622 -3.24459,-1.4169 \
-4.27539,-0.007 -0.65306,0.89312 -1.83292,1.29117 -2.76592,0.93314 -1.27279,-0.48841 \
-1.62706,0.009 -1.62706,2.28263 0,1.59885 0.5625,3.50324 1.25,4.23199 1,1.06 \
1,1.41667 0,1.78333 -1.76155,0.6459 -1.5606,3.29167 0.25,3.29167 0.825,0 \
2.40685,-0.90685 3.51523,-2.01523 z M 527,126 c 0,-0.55 -0.9,-1 -2,-1 -1.1,0 -2,0.45 \
-2,1 0,0.55 0.9,1 2,1 1.1,0 2,-0.45 2,-1 z m 51.11158,-6.94172 c -0.70226,-2.74004 \
-1.0196,-5.39809 -0.70521,-5.90678 0.76988,-1.2457 -2.04844,-3.49075 \
-3.36257,-2.67857 -0.57409,0.35481 -1.0438,3.74619 -1.0438,7.5364 0,5.51815 \
0.3487,7.08917 1.75,7.88436 1.256,0.71275 2.15768,0.5913 3.1942,-0.43022 \
1.22342,-1.20572 1.24901,-2.18487 0.16738,-6.40519 z m 96.31186,5.6322 c \
1.10815,-1.75677 0.0129,-4.67623 -1.88244,-5.0177 -1.05919,-0.19083 -2.6045,5.93038 \
-1.72035,6.81454 0.85415,0.85415 2.42467,0.0709 3.60279,-1.79684 z M 516,122.61735 c \
0,-1.9851 -10.87158,-7.14577 -12.21769,-5.79966 C 502.2991,118.3009 503.5867,121 \
505.77749,121 c 1.01214,0 2.71376,0.66069 3.78138,1.4682 2.47618,1.87288 \
6.44113,1.9647 6.44113,0.14915 z m 11,-2.67637 C 527,119.42344 526.55,119 526,119 c \
-0.55,0 -1,0.70156 -1,1.55902 0,0.85746 0.45,1.2809 1,0.94098 0.55,-0.33992 \
1,-1.04148 1,-1.55902 z m 29.80075,-1.90911 c 0.1639,-2.15106 -0.40828,-3.38383 \
-2.07853,-4.47822 -1.26758,-0.83055 -2.88725,-3.12113 -3.59927,-5.09018 \
-1.01098,-2.79582 -1.76643,-3.51254 -3.44855,-3.27178 -3.16015,0.45233 \
-3.32603,3.55428 -0.26466,4.94914 1.99072,0.90703 2.42486,1.66998 1.97353,3.46823 \
-0.4245,1.69135 0.15217,2.98267 2.16508,4.84817 3.58579,3.3232 4.97534,3.21067 \
5.2524,-0.42536 z m -98.36373,-2.41177 c 0.68077,-3.76072 0.62341,-3.86481 \
-1.86734,-3.38867 -2.01514,0.38522 -2.56968,0.0896 -2.56968,-1.3701 0,-2.25835 \
-1.55677,-2.45876 -2.38258,-0.30673 -0.5498,1.43277 2.58697,7.01726 4.85362,8.64103 \
1.21964,0.87372 1.13159,1.03387 1.96598,-3.57553 z M 688,112.94098 c 0,-5.75669 \
-1.03345,-5.7559 -3.97144,0.003 C 681.89301,117.13005 682.17487,118 685.66667,118 \
687.80363,118 688,117.57424 688,112.94098 z m -32,3.11804 c 0,-0.51754 -0.45,-1.2191 \
-1,-1.55902 -0.55,-0.33992 -1,0.0835 -1,0.94098 0,0.85746 0.45,1.55902 1,1.55902 \
0.55,0 1,-0.42344 1,-0.94098 z m -189,-4.03597 c 0,-2.22151 -4.34857,-5.54369 \
-5.95602,-4.55023 -1.80925,1.11818 -1.13479,4.00795 1.20602,5.16727 3.4574,1.71232 \
4.75,1.54441 4.75,-0.61704 z M 476.95846,107.5 c 0.0737,-2.42543 -2.15063,-8.5 \
-3.11245,-8.5 -0.62307,0 -0.75678,0.721339 -0.3244,1.75 1.86779,4.44359 \
1.67432,6.07551 -0.92193,7.77664 -2.77531,1.81846 -3.39885,4.01725 -1.34968,4.75942 \
1.27599,0.46214 5.65342,-3.9748 5.70846,-5.78606 z M 498,112 c 0,-0.55 -0.45,-1 -1,-1 \
-0.55,0 -1,0.45 -1,1 0,0.55 0.45,1 1,1 0.55,0 1,-0.45 1,-1 z m 22.9963,-3.49606 c \
1.2897,-1.37283 2.04137,-2.7996 1.67037,-3.17061 -0.73062,-0.73061 -5.66667,3.48621 \
-5.66667,4.84098 0,1.52683 1.63451,0.84364 3.9963,-1.67037 z M 672.07431,109.25 c \
0.0409,-0.4125 0.25959,-1.73983 0.48604,-2.94961 0.51846,-2.76985 -0.9236,-3.71153 \
-3.53968,-2.31145 -1.96131,1.04966 -2.70668,3.99172 -1.354,5.34439 0.90996,0.90996 \
4.3156,0.84558 4.40764,-0.0833 z M 651.5,107 c -0.33992,-0.55 -0.81648,-1 -1.05902,-1 \
-0.24254,0 -0.44098,0.45 -0.44098,1 0,0.55 0.47656,1 1.05902,1 0.58246,0 0.7809,-0.45 \
0.44098,-1 z m -137.95013,-1.84287 c -0.3419,-1.07722 0.2397,-2.89118 \
1.39986,-4.36609 3.00819,-3.824303 1.29262,-4.102835 -3.053,-0.49567 -4.48971,3.72677 \
-4.69868,4.44674 -1.64673,5.67347 3.36958,1.3544 3.94263,1.21344 3.29987,-0.81171 z m \
-50.2275,-5.246873 C 464.79507,97.660898 466,94.987456 466,93.969274 c 0,-2.782342 \
1.74891,-3.306957 3.03199,-0.909496 0.85164,1.591296 1.73171,1.965361 \
3.55018,1.508956 1.81461,-0.45544 2.41783,-0.201161 2.41783,1.019203 0,1.071894 \
0.53907,1.419182 1.58179,1.019052 0.86998,-0.333844 1.99498,-0.606989 2.5,-0.606989 \
1.01874,0 1.26405,-3.320826 0.31539,-4.269489 -0.33156,-0.331553 -1.69499,-0.187584 \
-3.02985,0.31993 -2.03079,0.772107 -2.58502,0.557612 -3.39479,-1.313844 \
-0.53227,-1.230128 -1.51744,-3.005712 -2.18927,-3.945742 -0.9966,-1.394469 \
-0.81293,-2.550102 0.99762,-6.276751 C 473.0014,78.00192 474,75.733535 474,75.473249 \
c 0,-1.167247 -2.40137,-0.3066 -3.558,1.275179 -0.70316,0.961635 -1.61251,1.414394 \
-2.02077,1.006131 -0.40827,-0.408264 0.0357,-1.60195 0.98653,-2.652636 \
1.43842,-1.58943 1.51926,-2.245923 0.48125,-3.908035 -1.03472,-1.65686 \
-0.94519,-2.459209 0.5248,-4.702694 1.78082,-2.717866 0.93846,-5.444976 \
+       style="fill:#b38959" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3780"
+       d="m 561.9733,222.64309 c -0.28968,-0.2914 -4.34674,-0.74602 \
-9.01568,-1.01027 -4.66894,-0.26425 -11.54735,-1.18973 -15.28535,-2.05664 C \
533.93426,218.70928 529.60416,218 528.04981,218 c -4.19357,0 -18.85419,-4.47178 \
-26.26285,-8.01069 -6.58913,-3.14745 -27.01819,-18.95224 -36.48569,-28.22689 \
-8.14433,-7.97843 -11.91773,-16.37171 -17.73417,-39.44661 -4.74701,-18.83231 \
-3.07809,-41.87128 4.05428,-55.968163 C 454.80793,80.049531 457,77.729503 \
457,80.655049 c 0,1.044966 0.73482,2.949039 1.63293,4.231273 1.36862,1.953972 \
1.40908,2.473105 0.25,3.207193 -0.76061,0.481723 -1.88625,0.88275 -2.50142,0.891172 \
-0.67644,0.0093 -1.30435,2.880715 -1.58875,7.265313 -0.25865,3.9875 -1.16082,8.6 \
-2.00483,10.25 -2.59037,5.06406 -2.94963,7.19544 -1.46336,8.68171 0.76585,0.76585 \
1.60565,3.96327 1.86622,7.10537 0.41831,5.04431 0.25931,5.71292 -1.35852,5.71292 \
-2.13069,0 -2.273,0.93861 -0.67429,4.44738 1.44428,3.16985 7.02872,6.55262 \
10.81739,6.55262 4.10005,0 6.02463,0.95342 6.02463,2.98454 0,2.63519 -2.4414,4.19376 \
-5.40435,3.45011 C 460.4218,144.88905 460,145.12271 460,146.87254 c 0,1.45557 \
0.83418,2.28588 2.75,2.73722 3.16693,0.74609 8.25,5.1265 8.25,7.10956 0,0.73982 \
-1.0125,1.73556 -2.25,2.21274 -1.92931,0.74396 -2.01171,0.96414 -0.57814,1.54478 \
0.91952,0.37244 2.62402,0.16759 3.78777,-0.45524 1.16375,-0.62282 2.99461,-0.85351 \
4.06856,-0.51265 1.89098,0.60017 1.89872,0.52579 0.24534,-2.35508 -1.47798,-2.57523 \
-1.52534,-3.31484 -0.35258,-5.50617 1.23022,-2.29868 1.11612,-2.81493 \
-1.24133,-5.6166 -1.42784,-1.69689 -2.35031,-3.72568 -2.04995,-4.50843 \
0.85553,-2.22946 -7.22043,-9.86295 -9.73809,-9.20457 -1.53271,0.40081 \
-1.90355,0.15548 -1.47057,-0.97285 0.31844,-0.82985 0.57899,-2.37202 0.57899,-3.42704 \
0,-2.26587 2.53175,-2.58083 3.36163,-0.41821 0.33442,0.8715 1.831,1.5 3.5718,1.5 \
3.19433,0 5.53984,-2.7434 5.55728,-6.5 0.01,-2.05114 0.61088,-2.19186 \
3.90084,-0.91278 1.71158,0.66542 1.82597,0.38581 1.20228,-2.93874 -0.4893,-2.6082 \
-0.24025,-4.3152 0.85845,-5.88381 2.3212,-3.31398 2.04777,-7.76467 -0.47703,-7.76467 \
-2.63815,0 -4.55651,-4.5947 -2.80134,-6.70955 1.0459,-1.260234 1.32544,-1.172881 \
1.98927,0.621637 1.40185,3.789563 2.82903,2.310233 2.19984,-2.280234 \
-0.57223,-4.174869 0.70045,-6.956208 2.1269,-4.648165 C 484.44596,93.5306 \
488,93.19595 488,91.559017 488,90.766476 487.55,89.839919 487,89.5 c -1.90912,-1.1799 \
-0.98605,-3.368884 1.55332,-3.683578 2.37395,-0.294193 2.44848,-0.456925 \
1.06091,-2.316422 -1.26415,-1.694087 -1.80056,-1.811937 -3.50697,-0.770479 \
-1.26775,0.773742 -2.23895,0.866416 -2.61992,0.25 -1.06045,-1.715852 \
-3.91191,-1.024486 -6.3423,1.537756 -4.97137,5.241083 -7.48713,2.048097 \
-3.91865,-4.973519 l 2.36481,-4.653163 2.76857,2.177764 c 2.15448,1.694713 \
3.64155,2.060674 6.70422,1.649884 2.16459,-0.290333 4.18727,-0.120711 \
4.49484,0.376939 C 490.27825,80.259242 500,80.284626 500,79.122445 500,78.639789 \
499.325,77.684689 498.5,77 497.675,76.315311 497,75.170854 497,74.456762 \
497,73.089967 489.45527,65 488.18059,65 486.77956,65 485.30708,59.402179 \
486.12588,57.188744 487.19966,54.286042 488.82779,54.41685 490,57.5 c 0.52277,1.375 \
1.61424,2.5 2.42548,2.5 0.81124,0 3.16767,2.025 5.23651,4.5 2.06884,2.475 4.32969,4.5 \
5.02409,4.5 1.69433,0 4.10682,-4.852702 4.91022,-9.876851 0.35943,-2.247738 \
1.0473,-3.843418 1.5286,-3.545956 C 509.60621,55.874656 510,55.641476 510,55.059017 \
510,54.476558 509.55,54 509,54 c -0.55,0 -1,-1.773442 -1,-3.940983 0,-2.167541 \
-0.43457,-4.20956 -0.9657,-4.537821 -0.53114,-0.32826 -2.76321,0.320182 \
-4.96017,1.440983 -4.81887,2.458404 -5.18632,2.49375 -4.39147,0.422422 \
0.4922,-1.28267 0.17894,-1.47545 -1.52089,-0.935944 -1.2916,0.409938 -2.9864,0.08716 \
-4.27259,-0.813725 -2.53587,-1.776189 -4.9571,-1.060321 -11.39502,3.369083 C \
476.42344,51.804748 474,52.721068 474,51.459507 474,48.597521 492.64276,32 \
495.85742,32 c 0.92307,0 3.3535,-1.138322 5.40096,-2.529605 2.04745,-1.391282 \
6.6329,-3.428491 10.18988,-4.52713 3.55698,-1.09864 6.71209,-2.393698 \
7.01135,-2.877907 0.66107,-1.069646 7.98592,-3.265084 20.04039,-6.006602 \
12.91069,-2.936246 53.01683,-4.456869 63.01185,-2.389093 3.84348,0.795143 \
9.01315,1.841818 11.48815,2.325945 11.73814,2.296061 35.07636,11.912929 \
44.855,18.483187 19.66927,13.215765 39.70748,41.876368 45.70666,65.374145 \
1.80927,7.0866 1.81179,7.40082 0.0694,8.67485 -2.73419,1.99933 -6.05815,16.47221 \
-3.7831,16.47221 1.1079,0 3.12588,-6.06329 3.16178,-9.5 0.0115,-1.1 0.4571,-2.675 \
0.99026,-3.5 2.50962,-3.88336 0.0395,18.44577 -3.01775,27.2801 -3.58501,10.35917 \
-10.70284,24.51015 -15.30977,30.43743 -6.78828,8.73376 -22.85019,23.83166 \
-31.29232,29.41418 -14.80821,9.79222 -43.73253,19.45631 -65.88016,22.01166 \
-11.27835,1.30127 -25.90207,2.12804 -26.5267,1.49972 z M 587.5,215 c 1.66816,-1.8433 \
1.67642,-2 0.10533,-2 -1.77882,0 -7.60533,2.70106 -7.60533,3.52568 0,1.39693 \
5.95055,0.18645 7.5,-1.52568 z m -26,0 c 0.33992,-0.55 -0.30852,-1 -1.44098,-1 \
-1.13246,0 -2.05902,0.45 -2.05902,1 0,0.55 0.64844,1 1.44098,1 0.79254,0 1.7191,-0.45 \
2.05902,-1 z m -12.06476,-0.89522 c 0.66883,-1.08219 -2.23752,-2.34501 \
-3.54179,-1.53893 -0.50934,0.31479 -0.66718,0.99125 -0.35074,1.50325 0.73258,1.18535 \
3.1682,1.20768 3.89253,0.0357 z m -11.97795,-2.03568 c 0.31644,-0.512 \
0.11397,-1.21604 -0.44993,-1.56455 -1.42561,-0.88108 -5.16454,0.43211 \
-4.46286,1.56745 0.74349,1.203 4.16876,1.20098 4.91279,-0.003 z M 524,208 c 0,-0.55 \
-0.92656,-1 -2.05902,-1 -1.13246,0 -1.7809,0.45 -1.44098,1 0.33992,0.55 1.26648,1 \
2.05902,1 0.79254,0 1.44098,-0.45 1.44098,-1 z m 106,-2.5 c 0,-0.825 -0.3949,-1.5 \
-0.87756,-1.5 -0.48265,0 -1.43775,0.675 -2.12244,1.5 -1.04007,1.2532 -0.89568,1.5 \
0.87756,1.5 1.21995,0 2.12244,-0.63782 2.12244,-1.5 z m -28.5,-1.5137 c 0,-0.81746 \
-1.0125,-1.6301 -2.25,-1.80585 -2.18881,-0.31086 -3.12347,1.61274 -1.54876,3.18745 \
1.16503,1.16503 3.79876,0.20716 3.79876,-1.3816 z m -4.95669,-6.05638 c \
0.36374,-0.58854 1.6278,-1.46002 2.80902,-1.93661 1.9754,-0.79703 1.92181,-0.87162 \
-0.66807,-0.92992 -3.89594,-0.0877 -7.44376,1.84171 -5.56936,3.02878 1.83703,1.16342 \
2.63237,1.12578 3.42841,-0.16225 z M 503,196.19113 c 0,-2.53427 -2.05712,-4.86811 \
-5,-5.6726 -2.4208,-0.66177 -2.40496,-0.60275 0.5,1.86306 2.21836,1.88301 \
2.56265,2.55585 1.32143,2.58245 -0.92322,0.0198 -2.2942,-0.57967 -3.04664,-1.33211 C \
494.48471,191.34185 491,190.61814 491,192.43261 c 0,0.88484 0.84524,1.56739 \
1.94098,1.56739 1.06754,0 2.23859,0.48153 2.60233,1.07008 0.71616,1.15877 \
4.19272,2.76441 6.20669,2.86653 0.6875,0.0349 1.25,-0.7506 1.25,-1.74548 z m \
150.59996,-2.03429 c 12.18116,-8.88018 13.38543,-13.43723 2.21216,-8.37103 \
-4.94397,2.2417 -6.74764,3.64431 -7.72708,6.00889 -1.22182,2.94972 -0.86479,5.2053 \
0.82394,5.2053 0.43502,0 2.54596,-1.27942 4.69098,-2.84316 z m -18.70218,-2.12752 c \
1.96162,-0.56259 4.03884,-0.60454 4.94077,-0.0998 2.07141,1.15922 6.14088,-0.46176 \
8.10024,-3.22655 2.37706,-3.35419 1.92291,-4.14761 -2.43879,-4.26064 -2.2,-0.057 \
-5.35,-0.40726 -7,-0.77835 -2.56624,-0.57715 -3.62659,-0.10135 -7.33367,3.29077 \
-5.88378,5.38391 -4.39705,7.40579 3.73145,5.07457 z M 494,188.96967 c \
1.25727,-0.83793 0.97152,-1.48275 -1.76578,-3.98469 C 490.43805,183.34324 \
487.85055,182 486.48422,182 484.92006,182 484,181.43283 484,180.46862 c 0,-0.84227 \
-0.64021,-1.77706 -1.42268,-2.07732 -0.78248,-0.30027 -1.66282,-1.17173 \
-1.95633,-1.93659 -0.97436,-2.53915 1.20207,-2.5232 3.95592,0.029 2.60682,2.41592 \
5.43057,3.33677 5.41626,1.7663 -0.004,-0.4125 -1.62891,-1.85487 -3.61144,-3.20526 \
-1.98254,-1.3504 -4.28449,-3.4929 -5.11546,-4.76112 -1.67855,-2.56179 \
-7.94955,-5.93367 -9.0286,-4.85462 -0.37995,0.37995 1.07877,2.17647 3.2416,3.99228 \
3.86232,3.24261 3.90294,3.34645 2.27862,5.82547 C 475.9563,177.99633 476.33302,179 \
479.16667,179 480.175,179 481,179.44085 481,179.97968 c 0,0.53882 1.81813,1.90721 \
4.04029,3.04088 2.22216,1.13366 4.46103,3.1678 4.97525,4.52032 1.0226,2.68964 \
1.7183,2.93912 3.98446,1.42879 z M 525,186.5 c 0,-0.825 -0.675,-1.5 -1.5,-1.5 \
-2.60246,0 -1.75909,1.97081 1.25,2.92105 0.1375,0.0434 0.25,-0.59605 0.25,-1.42105 z \
m 65.62469,0.0357 c 0.95188,-2.48056 -3.82713,-10.99339 -6.37469,-11.3552 \
-1.39389,-0.19797 -2.25,-1.01336 -2.25,-2.14301 0,-2.22957 2.33512,-3.24242 \
5.59124,-2.42518 2.90984,0.73032 13.40876,-3.2523 13.40876,-5.08643 0,-0.68304 \
-2.31203,-2.44141 -5.13785,-3.90749 -6.05348,-3.14066 -9.36781,-2.7692 \
-8.4355,0.94543 0.4534,1.80649 0.005,2.76229 -1.87128,3.99191 -2.78787,1.82668 \
-4.55537,1.22544 -4.55537,-1.5496 0,-2.66586 -1.93159,-7.40782 -2.70319,-6.63622 \
-0.35598,0.35598 -0.68089,4.03812 -0.72203,8.18253 -0.0696,7.01014 0.082,7.57463 \
2.17522,8.09986 1.30943,0.32856 2.25,1.33064 2.25,2.39714 0,1.00792 0.45,2.11069 \
1,2.45061 0.55,0.33992 1,1.56854 1,2.73028 0,4.1684 5.34441,7.64173 6.62469,4.30537 z \
m 32.80207,-2.68929 c 2.20632,-4.42267 1.99366,-4.62333 -1.42676,-1.34636 \
-3.29063,3.15262 -3.76168,4.5 -1.57324,4.5 0.78472,0 2.13472,-1.41914 3,-3.15364 z M \
497,177.94098 C 497,177.42344 496.55,177 496,177 c -0.55,0 -1,0.70156 -1,1.55902 \
0,0.85746 0.45,1.2809 1,0.94098 0.55,-0.33992 1,-1.04148 1,-1.55902 z M \
671.07237,176.75 c 3.97241,-2.25216 6.5942,-7.20118 4.8443,-9.14437 -0.92213,-1.02399 \
-6.34826,0.96882 -8.50184,3.1224 -1.33157,1.33156 -2.0556,8.27197 -0.86295,8.27197 \
0.30354,0 2.33776,-1.0125 4.52049,-2.25 z m -10.68738,-2.21482 c 2.14896,-3.27972 \
2.03804,-4.26614 -0.57292,-5.09483 -1.55384,-0.49317 -2.64852,-0.1256 -3.77723,1.2683 \
-0.87412,1.07949 -2.81456,2.27023 -4.31208,2.64608 -1.49752,0.37586 -2.72276,1.3498 \
-2.72276,2.16432 0,1.10582 1.23737,1.48095 4.88499,1.48095 4.08858,0 5.14829,-0.40185 \
6.5,-2.46482 z m -107.12371,-3.21275 c -0.20021,-2.59986 0.49879,-3.70432 \
4.33268,-6.84591 2.51428,-2.06026 6.1092,-5.32934 7.98872,-7.26462 3.64784,-3.75606 \
4.61659,-8.2119 1.78535,-8.2119 -2.23512,0 -8.03528,3.60624 -12.97245,8.06561 \
-2.25744,2.03896 -5.02837,4.00045 -6.15762,4.35887 -3.52547,1.11893 -3.67424,3.79651 \
-0.37476,6.7446 2.18507,1.95236 2.83738,3.25989 2.42089,4.85255 -0.45711,1.74799 \
-0.1949,2.10287 1.3229,1.79045 1.43505,-0.29539 1.83526,-1.13961 1.65429,-3.48965 z m \
76.69193,-1.94955 c 2.4648,-5.5721 2.55568,-6.78214 0.44863,-5.97359 -0.97252,0.37319 \
-3.1348,-0.60376 -5.52338,-2.49555 -2.81018,-2.2257 -4.58197,-2.94399 \
-6.23718,-2.52856 -1.54354,0.38741 -3.03268,-0.0912 -4.48036,-1.43989 \
-1.96351,-1.82928 -2.03967,-2.27599 -0.80605,-4.72773 1.59353,-3.16703 \
1.01999,-10.12648 -0.8951,-10.86137 -0.71692,-0.27511 -2.27671,0.0207 \
-3.46621,0.65726 -1.1895,0.6366 -4.77637,1.14495 -7.97082,1.12967 -4.47083,-0.0214 \
-6.2061,0.41201 -7.5367,1.88231 -2.28475,2.52461 -1.39951,4.44625 3.21524,6.97953 \
5.60607,3.07747 10.66326,6.90035 11.79872,8.919 1.70272,3.02714 8.15733,8.08604 \
10.31692,8.08604 1.12908,0 3.22599,-0.44601 4.65978,-0.99114 1.95262,-0.74239 \
2.56668,-0.67964 2.44662,0.25 -0.37124,2.8746 0.14298,5.74114 1.02989,5.74114 \
0.52426,0 1.87426,-2.0822 3,-4.62712 z M 608,145 c 0,-0.55 0.45,-1 1,-1 0.55,0 1,0.45 \
1,1 0,0.55 -0.45,1 -1,1 -0.55,0 -1,-0.45 -1,-1 z m 26,26 c 0,-0.55 -0.675,-1 -1.5,-1 \
-0.825,0 -1.5,0.45 -1.5,1 0,0.55 0.675,1 1.5,1 0.825,0 1.5,-0.45 1.5,-1 z m \
13,-0.55902 C 647,170.19844 646.55,170 646,170 c -0.55,0 -1,0.47656 -1,1.05902 \
0,0.58246 0.45,0.7809 1,0.44098 0.55,-0.33992 1,-0.81648 1,-1.05902 z M 640.5,166 c \
0.33992,-0.55 2.96635,-1 5.83651,-1 7.75151,0 12.90416,-4.18774 6.91349,-5.61884 \
-1.5125,-0.36131 -3.3612,-1.1404 -4.10821,-1.7313 -1.01531,-0.80312 -1.70171,-0.60461 \
-2.71875,0.78627 -0.97845,1.33811 -1.72035,1.57322 -2.64178,0.8372 -2.50997,-2.00491 \
-8.3023,-0.21286 -9.0937,2.81344 -0.85747,3.27898 4.12942,6.63641 5.81244,3.91323 z m \
-147.0651,-3.97525 c 1.41081,-0.53639 2.5651,-1.66139 2.5651,-2.5 0,-2.34602 \
1.81948,-1.8062 2.18045,0.64692 0.17575,1.19442 0.88205,2.35692 1.56955,2.58334 \
0.87515,0.28821 1.25,-0.93073 1.25,-4.06469 0,-4.95221 -0.35583,-5.23956 \
-6.89448,-5.56779 -2.41697,-0.12133 -5.68353,-0.88719 -7.25903,-1.70192 \
-2.14206,-1.1077 -3.36671,-1.21256 -4.85552,-0.41578 -2.61589,1.39999 \
-2.52916,2.77757 0.19992,3.17562 1.52883,0.22298 2.45088,1.32806 3.05123,3.65688 \
0.57015,2.21172 1.32105,3.16054 2.22634,2.81315 0.75131,-0.28831 1.61414,0.12239 \
1.9174,0.91266 0.65429,1.70506 0.74986,1.71596 4.04904,0.46161 z M 488.01531,157.25 C \
488.00689,156.0125 488.45,155 489,155 c 1.25292,0 1.25292,1.06124 0,3 \
-0.78387,1.21296 -0.9723,1.06944 -0.98469,-0.75 z m 19.55419,0.17091 c \
-0.85009,-3.38705 -2.75094,-3.07506 -2.00503,0.32909 0.33142,1.5125 0.85963,3.425 \
1.17381,4.25 0.88025,2.31144 1.58552,-1.57376 0.83122,-4.57909 z m 161.89774,1.64244 \
c 2.27795,-4.40507 1.08048,-6.38806 -3.35688,-5.55896 -4.56219,0.85243 \
-6.11036,2.13313 -6.11036,5.0547 0,1.86149 0.63577,2.39309 3.25,2.71751 \
1.7875,0.22183 3.57594,0.47534 3.97432,0.56336 0.39838,0.088 1.40769,-1.16145 \
2.24292,-2.77661 z M 681.29406,158.75 c 2.19559,-1.63721 4.98522,-10.87072 \
3.67893,-12.17701 -0.62546,-0.62546 -2.23998,0.25357 -4.55312,2.47896 -4.82558,4.6425 \
-5.73682,6.48731 -4.41987,8.94805 1.23026,2.29876 2.89989,2.53529 5.29406,0.75 z m \
-136.68989,-5.47917 c -1.01652,-1.01651 -1.85525,0.51389 -1.02122,1.86338 \
0.63003,1.01942 0.86558,1.02021 1.2043,0.004 0.2316,-0.69479 0.14921,-1.53513 \
-0.18308,-1.86742 z M 525.8125,152.0625 c 0.25,-0.75 -0.125,-1.125 -0.875,-0.875 \
-0.72187,0.24062 -1.50937,1.02812 -1.75,1.75 -0.25,0.75 0.125,1.125 0.875,0.875 \
0.72187,-0.24063 1.50937,-1.02813 1.75,-1.75 z M 508,149.54797 C 508,147.43428 \
506.34992,146 503.91821,146 c -1.4931,0 -1.04857,3.19848 0.71544,5.14768 \
1.98716,2.19579 3.36635,1.54039 3.36635,-1.59971 z m 36.1038,0.15583 c \
-1.28349,-1.28349 -2.58505,-0.2915 -1.63484,1.24598 0.36808,0.59556 1.12735,0.79971 \
1.68727,0.45366 0.683,-0.42212 0.66575,-0.98146 -0.0524,-1.69964 z m \
100.14318,-1.19215 C 643.70735,145.68875 642,146.10466 642,149.05902 c 0,1.06754 \
0.6126,1.94098 1.36133,1.94098 0.91116,0 1.20403,-0.82286 0.88565,-2.48835 z M \
580,138.81835 c 0,-2.89123 -1.43656,-2.13632 -4.32237,2.27139 -3.9627,6.05253 \
-3.43866,8.2671 0.82315,3.47861 1.92457,-2.16241 3.49922,-4.74991 3.49922,-5.75 z m \
9,6.68165 c -0.68469,-0.825 -2.20229,-1.48405 -3.37244,-1.46456 -2.00407,0.0334 \
-1.98245,0.11838 0.37244,1.46456 3.27489,1.87209 4.5537,1.87209 3,0 z m \
61.1038,-0.7962 c -1.28349,-1.28349 -2.58505,-0.2915 -1.63484,1.24598 0.36808,0.59556 \
1.12735,0.79971 1.68727,0.45366 0.683,-0.42212 0.66575,-0.98146 -0.0524,-1.69964 z m \
21.09404,-0.56619 c 0.38381,-0.35069 1.4066,-2.33528 2.27287,-4.41022 \
1.45027,-3.47379 1.44363,-3.82303 -0.0838,-4.40915 -0.91233,-0.35009 \
-2.38512,-0.10185 -3.27286,0.55165 -0.88775,0.65349 -2.40158,1.45259 -3.36408,1.77577 \
-0.9625,0.32318 -1.75,1.26522 -1.75,2.09342 0,1.22511 0.27961,1.27375 1.5,0.26092 \
1.26313,-1.0483 1.5,-0.86235 1.5,1.17756 0,1.33234 -0.5625,3.01302 -1.25,3.73483 \
-1.02189,1.07291 -0.79379,1.18014 1.25,0.58761 1.375,-0.39863 2.81403,-1.01171 \
3.19784,-1.36239 z m -8.53965,-3.81275 c -1.03181,-1.03181 -2.5595,0.76876 \
-1.96552,2.31662 0.54064,1.40891 0.70603,1.39748 1.54799,-0.10702 0.51847,-0.92646 \
0.70636,-1.92078 0.41753,-2.2096 z M 507.21402,140.25 c 0.64413,-1.5125 \
2.09698,-3.54302 3.22856,-4.51226 1.92655,-1.65017 1.9461,-1.82826 0.30742,-2.7997 \
-0.9625,-0.57058 -1.75,-2.00107 -1.75,-3.17886 0,-2.03268 -0.0679,-2.04856 \
-1.3372,-0.31271 -1.0973,1.50064 -1.85978,1.65344 -4.25,0.85169 -2.6161,-0.87752 \
-2.9128,-1.41658 -2.9128,-5.29213 0,-5.01223 -1.48643,-6.0196 -4.47397,-3.03206 \
-2.20634,2.20634 -4.02603,1.93876 -4.02603,-0.592 0,-0.825 -0.45,-1.22189 -1,-0.88197 \
-1.37824,0.8518 -1.28809,0.47194 1.02334,-4.31217 2.02433,-4.18988 3.4652,-5.2222 \
4.20234,-3.01078 0.5135,1.5405 2.77432,0.12576 2.77432,-1.73607 C 499,110.64844 \
498.28545,110 497.4121,110 c -1.29851,0 -1.46474,-0.72897 -0.9121,-4 0.73339,-4.34091 \
-0.26989,-5.19936 -2.29213,-1.96125 -1.13034,1.80997 -1.44113,1.87084 \
-2.76948,0.54249 -1.6314,-1.63139 -4.43839,-1.09672 -4.43839,0.84541 0,0.66698 \
1.13689,2.20119 2.52643,3.40938 3.01949,2.62542 2.58627,3.81597 -3.66234,10.06458 \
-4.5866,4.58661 -4.58043,6.53109 0.0273,8.59939 1.88049,0.84411 2.13735,1.54562 \
+       style="fill:#9a6e4f" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3782"
+       d="m 551.5,220.87969 c -4.95,-0.46752 -11.25,-1.32763 -14,-1.91136 \
-2.75,-0.58374 -6.95762,-1.29308 -9.35027,-1.57631 -6.65862,-0.78822 \
-20.58574,-5.07744 -26.94632,-8.29881 -3.13687,-1.5887 -9.26153,-5.7471 \
-13.61035,-9.24088 -4.34881,-3.49378 -9.74881,-7.76468 -12,-9.4909 -12.62389,-9.68001 \
-19.1657,-19.37968 -23.92584,-35.47526 -5.89387,-19.92908 -6.94903,-27.76446 \
-5.68328,-42.20294 1.07354,-12.24598 2.93104,-19.023726 5.99626,-21.879407 \
1.06023,-0.987756 2.22443,-3.377669 2.58711,-5.310917 0.89875,-4.790766 \
1.80861,-5.024822 3.74534,-0.963467 1.61685,3.390584 1.60591,3.452898 \
-0.70862,4.033808 -2.13456,0.535738 -2.39396,1.250032 -2.81935,7.763389 \
-0.30074,4.604574 -1.24132,8.681024 -2.62659,11.383524 -2.5303,4.93631 \
-2.61103,5.69405 -0.79958,7.5055 0.74719,0.74718 1.57171,3.92932 1.83228,7.07142 C \
453.6091,127.33139 453.4501,128 451.83227,128 450.82452,128 450,128.47235 \
450,129.04966 c 0,1.78539 2.99649,6.95034 4.03229,6.95034 0.53952,0 1.95911,1.125 \
3.15466,2.5 1.62869,1.87316 3.15827,2.5 6.10037,2.5 3.16976,0 3.80965,0.30491 \
3.31967,1.58179 -0.33385,0.86998 -0.60699,1.99498 -0.60699,2.5 0,1.56017 \
-3.02708,1.01122 -3.67055,-0.66564 -0.48935,-1.27522 -0.77253,-1.32393 -1.4533,-0.25 \
-1.76812,2.78927 -0.93405,4.87227 2.20207,5.49949 1.90949,0.3819 3.39912,1.45967 \
3.9234,2.83862 0.46484,1.22263 1.55464,2.49522 2.42178,2.82797 2.26413,0.86883 \
1.94191,2.59135 -0.6734,3.59983 -1.92931,0.74396 -2.01171,0.96414 -0.57814,1.54478 \
0.91952,0.37244 2.62402,0.16759 3.78777,-0.45524 1.16375,-0.62282 2.99461,-0.85351 \
4.06856,-0.51265 1.89806,0.60242 1.904,0.53472 0.21223,-2.42163 -1.4397,-2.51587 \
-1.52444,-3.38858 -0.49042,-5.05078 1.71958,-2.76427 1.60673,-3.35958 -1.21382,-6.403 \
-1.35511,-1.46218 -2.22795,-3.27321 -1.93965,-4.0245 0.58635,-1.52799 \
-4.87791,-7.77015 -8.34653,-9.53476 -1.41517,-0.71994 -2.25,-2.05918 -2.25,-3.60946 \
0,-2.71477 2.42322,-3.41026 3.36163,-0.96482 0.33442,0.8715 1.831,1.5 3.5718,1.5 \
3.19433,0 5.53984,-2.7434 5.55728,-6.5 0.01,-2.05359 0.60944,-2.19236 \
3.91786,-0.90625 1.70907,0.66437 1.84007,0.39945 1.25327,-2.53456 -0.54695,-2.73474 \
-0.24248,-3.60122 1.84143,-5.24042 1.3732,-1.08016 2.48242,-2.71877 2.46493,-3.64135 \
C 483.92299,107.79313 481.57452,105 479.61501,105 c -2.3047,0 -4.04338,-4.77892 \
-2.4411,-6.70955 1.0459,-1.260234 1.32544,-1.172881 1.98927,0.621637 1.30263,3.521343 \
2.99958,2.472403 2.27225,-1.404557 -0.92479,-4.929567 -0.0347,-6.898738 \
2.42416,-5.363142 1.90717,1.191046 1.83712,2.6871 -0.38192,8.156412 -0.62059,1.52956 \
-0.35147,1.70563 1.78675,1.16897 2.5522,-0.64056 5.27794,1.51611 2.91263,2.30455 \
-1.90904,0.63634 -1.35651,2.70897 1.34938,5.06171 3.01071,2.61778 2.58035,3.8219 \
-3.56086,9.96311 -3.94907,3.94907 -4.09103,4.29613 -2.87812,7.03629 0.94424,2.1332 \
1.78483,2.74922 3.23424,2.3702 1.77325,-0.46372 1.89594,-0.14313 1.29779,3.39112 \
-0.55724,3.29259 -0.47519,3.59035 0.5245,1.90325 2.18928,-3.6947 3.32798,-3.61533 \
3.97313,0.27693 0.54326,3.27751 0.70681,3.4538 1.36663,1.47307 1.1296,-3.39095 \
2.51626,-2.7021 2.51626,1.25 0,2.44444 0.45238,3.5 1.5,3.5 0.92366,0 1.5,-0.93789 \
1.5,-2.44098 0,-2.73002 1.4952,-4.18482 2.54885,-2.47998 0.37788,0.61142 \
0.10829,2.19308 -0.59907,3.51481 -1.47984,2.7651 -1.39937,2.89695 2.31167,3.7874 \
2.36142,0.56662 2.93255,0.26106 3.94258,-2.10932 0.64963,-1.52456 2.10697,-3.56495 \
3.23855,-4.53419 1.92655,-1.65017 1.9461,-1.82826 0.30742,-2.7997 -0.9625,-0.57058 \
-1.75,-2.00107 -1.75,-3.17886 0,-2.03268 -0.0679,-2.04856 -1.3372,-0.31271 \
-1.0973,1.50064 -1.85978,1.65344 -4.25,0.85169 -2.6161,-0.87752 -2.9128,-1.41658 \
-2.9128,-5.29213 0,-5.01223 -1.48643,-6.0196 -4.47397,-3.03206 -2.20634,2.20634 \
-4.02603,1.93876 -4.02603,-0.592 0,-0.825 -0.45,-1.22189 -1,-0.88197 -1.37824,0.8518 \
-1.28809,0.47194 1.02334,-4.31217 2.02433,-4.18988 3.4652,-5.2222 4.20234,-3.01078 \
0.5135,1.5405 2.77432,0.12576 2.77432,-1.73607 C 499,110.64844 498.28545,110 \
497.4121,110 c -1.29851,0 -1.46474,-0.72897 -0.9121,-4 0.76833,-4.5477 \
0.13765,-4.97942 -2.55644,-1.75 -1.49007,1.78616 -1.88388,1.91448 -1.91029,0.62244 \
-0.0183,-0.89515 0.60813,-2.15987 1.39206,-2.81047 1.98477,-1.64721 1.3122,-6.471971 \
-0.96462,-6.91982 -2.02523,-0.398364 -3.35342,-1.651752 -5.21071,-4.91725 \
-1.81539,-3.191835 -1.56063,-4.05356 1.30332,-4.408478 2.3748,-0.294298 \
2.44881,-0.45626 1.05857,-2.316422 -1.18012,-1.579016 -1.8642,-1.77366 \
-3.2499,-0.924711 -1.29381,0.792654 -2.48234,0.712518 -4.52176,-0.304881 \
-2.03278,-1.014083 -3.28944,-1.100365 -4.73768,-0.325289 -2.96883,1.588867 \
-3.38845,1.313744 -2.58543,-1.695119 0.40366,-1.5125 0.75245,-3.289738 \
0.77507,-3.949417 0.0259,-0.754499 1.07888,-0.460481 2.8387,0.792621 1.61284,1.148443 \
4.40077,1.990599 6.58334,1.988641 2.08217,-0.0019 6.37327,0.2456 9.53577,0.549929 \
5.83281,0.561295 7.12973,-0.24181 4.25,-2.631774 -0.825,-0.684689 -1.5,-1.981543 \
-1.5,-2.881898 0,-0.900355 -0.86952,-2.180035 -1.93227,-2.843733 -2.58649,-1.615288 \
-9.30823,-13.205244 -8.65135,-14.917065 0.82086,-2.139108 2.54489,-1.589372 \
3.58362,1.142696 0.52277,1.375 1.60985,2.5 2.41572,2.5 0.80588,0 3.34975,2.234933 \
5.65306,4.966518 3.50925,4.161769 4.49111,4.804207 6.05952,3.964816 1.02944,-0.550936 \
1.87447,-1.773369 1.87786,-2.716518 0.003,-0.943149 0.6089,-2.869809 \
1.34558,-4.281467 3.19698,-6.12622 2.94664,-15.162579 -0.52324,-18.887061 \
-1.77692,-1.907297 -2.12075,-1.946522 -4.82128,-0.550024 -3.36538,1.740307 \
-6.37046,1.914886 -8.97429,0.521359 -2.65231,-1.419473 -7.87503,0.628289 \
-11.83107,4.638815 C 479.38789,49.495397 477.47539,51 476.95186,51 c -1.86904,0 \
-0.90031,-1.86343 2.29814,-4.420653 3.60889,-2.885378 4.07533,-3.30335 \
6.53658,-5.857289 2.28307,-2.369046 8.11286,-6.407697 11.20899,-7.765143 \
1.37256,-0.601777 3.84756,-2.120354 5.5,-3.374615 1.65243,-1.25426 4.60467,-2.577404 \
6.56051,-2.94032 1.95585,-0.362916 5.33085,-1.580931 7.5,-2.7067 10.40587,-5.400538 \
25.80686,-8.870123 43.37807,-9.772353 30.55851,-1.56909 45.35355,-0.563253 \
58.56585,3.981586 1.65,0.567576 4.67963,1.44275 6.73251,1.94483 6.67104,1.63156 \
25.03362,10.200723 32.36177,15.102086 9.93796,6.646916 20.80874,17.623307 \
27.43791,27.704471 9.53177,14.495249 15.54217,26.935824 16.92648,35.035137 \
0.42951,2.512933 1.11266,5.356463 1.51811,6.318963 0.49813,1.18247 0.28496,1.75 \
-0.6573,1.75 -0.94436,0 -1.44847,1.3535 -1.5617,4.19311 -0.0998,2.50159 \
-1.03314,5.36434 -2.31374,7.09645 -2.04948,2.77207 -2.07957,3.13633 -0.66569,8.05689 \
1.46858,5.1109 1.4899,5.13079 2.57649,2.40355 3.24321,-8.14016 2.38854,3.40733 \
-0.90673,12.2508 -1.12701,3.02456 -2.86769,7.2992 -3.86816,9.4992 -1.00048,2.2 \
-2.1522,5.07277 -2.55939,6.38393 -2.55649,8.23194 -17.57041,25.89455 \
-31.94793,37.58407 -8.91586,7.24896 -26.31566,15.5071 -43.12252,20.46642 \
-24.66437,7.2779 -43.1376,9.19427 -66.95011,6.94527 z m 16.22146,-6.06385 c \
2.06903,0.0778 3.27854,-0.35118 3.27854,-1.16276 0,-0.98527 -1.41841,-1.11877 \
-6.06537,-0.57085 -6.58858,0.77686 -8.16023,1.54227 -5.95955,2.90237 0.84756,0.52382 \
2.2312,0.44019 3.4425,-0.20808 1.11393,-0.59616 3.50068,-1.02846 5.30388,-0.96068 z m \
21.2583,0.57558 c 4.42156,-1.76916 5.28033,-3.40372 1.77024,-3.36946 -2.35711,0.023 \
-10.75,3.48099 -10.75,4.42915 0,1.10422 5.06563,0.50644 8.97976,-1.05969 z m \
-39.54452,-1.28664 c 0.66883,-1.08219 -2.23752,-2.34501 -3.54179,-1.53893 \
-0.50934,0.31479 -0.66718,0.99125 -0.35074,1.50325 0.73258,1.18535 3.1682,1.20768 \
3.89253,0.0357 z m -11.97795,-2.03568 c 0.31644,-0.512 0.11397,-1.21604 \
-0.44993,-1.56455 -1.42561,-0.88108 -5.16454,0.43211 -4.46286,1.56745 0.74349,1.203 \
4.16876,1.20098 4.91279,-0.003 z m 76.29754,-2.81857 c 0.59712,-1.81315 \
-2.77994,-2.82109 -3.84044,-1.14625 -0.48607,0.76765 -0.89066,1.76452 \
-0.89908,2.21527 -0.0242,1.29297 4.28148,0.32181 4.73952,-1.06902 z m \
-89.2496,-1.25899 c 0.8456,-1.36822 -3.71831,-3.05374 -4.99687,-1.84542 \
-0.64774,0.61215 -0.47434,1.26421 0.5,1.88021 1.95188,1.23402 3.72116,1.22033 \
4.49687,-0.0348 z m 105.39049,-0.90593 C 631.5953,206.00945 630.63381,203 \
628.5904,203 c -1.88014,0 -2.92704,1.68036 -2.2104,3.54789 0.63721,1.66054 \
1.52742,1.7967 3.51572,0.53772 z M 601.5,203.9863 c 0,-0.81746 -1.0125,-1.6301 \
-2.25,-1.80585 -2.18881,-0.31086 -3.12347,1.61274 -1.54876,3.18745 1.16503,1.16503 \
3.79876,0.20716 3.79876,-1.3816 z m 38.21765,-1.63786 c 0.21086,-0.63335 \
-1.07133,-1.87726 -2.84931,-2.76424 -2.55335,-1.27377 -3.39925,-1.347 \
-4.0252,-0.34844 -0.50575,0.8068 -0.078,1.5909 1.18218,2.16705 1.08607,0.49655 \
1.97468,1.31705 1.97468,1.82333 0,1.29112 3.25113,0.52356 3.71765,-0.8777 z M \
502.66284,197.43623 C 503.38747,195.54788 501.47542,191 499.95688,191 c -0.5973,0 \
-2.23555,-1.36616 -3.64056,-3.03592 C 493.41984,184.52181 489.07876,182 486.04966,182 \
484.87574,182 484,181.3457 484,180.46862 c 0,-0.84227 -0.64021,-1.77706 \
-1.42268,-2.07732 -0.78248,-0.30027 -1.66282,-1.17173 -1.95633,-1.93659 \
-0.97436,-2.53915 1.20207,-2.5232 3.95592,0.029 2.3784,2.20422 5.42309,3.36516 \
5.42309,2.06782 C 490,177.5637 485.19783,173 484.15838,173 c -0.61175,0 \
-1.84245,-1.11439 -2.73489,-2.47643 C 479.93742,168.25554 474.88214,165 472.84636,165 \
c -2.1785,0 -0.48113,3.28294 2.65364,5.1325 3.95982,2.33635 4.06368,2.61772 \
2.03531,5.51363 -1.51128,2.15765 -1.1352,3.35387 1.05443,3.35387 1.17594,0 \
4.20253,2.44208 10.60461,8.5566 2.23819,2.13766 3.04238,2.38707 4.75,1.47318 \
1.13061,-0.60508 2.1119,-0.85931 2.18065,-0.56496 0.0688,0.29435 0.18125,0.93445 \
0.25,1.42245 0.0688,0.488 1.25,1.82303 2.625,2.96673 1.96493,1.6344 2.14074,2.08658 \
0.82143,2.11273 -0.92322,0.0183 -2.2942,-0.58236 -3.04664,-1.3348 C \
494.48471,191.34185 491,190.61814 491,192.43261 c 0,0.9088 0.85356,1.56739 \
2.03138,1.56739 1.11727,0 2.30486,0.71266 2.6391,1.58368 0.54234,1.4133 \
3.50188,3.18185 5.6109,3.35293 0.42977,0.0349 1.05142,-0.64031 1.38146,-1.50038 z m \
93.88047,0.49369 c 0.36374,-0.58854 1.6278,-1.46002 2.80902,-1.93661 1.9754,-0.79703 \
1.92181,-0.87162 -0.66807,-0.92992 -3.89594,-0.0877 -7.44376,1.84171 -5.56936,3.02878 \
1.83703,1.16342 2.63237,1.12578 3.42841,-0.16225 z m 56.9238,-1.87671 C \
654.23832,194.80537 662.86095,189 663.94314,189 c 1.30506,0 2.17133,-3.06396 \
1.48112,-5.23864 -0.44207,-1.39284 -1.24126,-1.81013 -2.77268,-1.44774 \
-1.18337,0.28002 -3.13488,0.74256 -4.33668,1.02784 -1.20181,0.28529 -3.19119,1.05715 \
-4.42084,1.71524 -1.79546,0.9609 -2.44824,0.92039 -3.31489,-0.20573 -0.74902,-0.97325 \
-3.2357,-1.39441 -8.12814,-1.37661 -6.66063,0.0242 -7.28596,0.2285 -11.35087,3.70791 \
-5.36661,4.59362 -4.73726,6.23056 2.03725,5.29883 3.25507,-0.44769 5.40579,-0.27517 \
6.3512,0.50945 0.83951,0.69673 2.63088,0.92248 4.34048,0.54699 2.38772,-0.52443 \
3.00743,-0.27069 3.44734,1.41155 0.56217,2.14973 5.0498,2.95011 6.19068,1.10412 z M \
525,186.5 c 0,-0.825 -0.675,-1.5 -1.5,-1.5 -2.60246,0 -1.75909,1.97081 1.25,2.92105 \
0.1375,0.0434 0.25,-0.59605 0.25,-1.42105 z m 65.62469,0.0357 c 0.95188,-2.48056 \
-3.82713,-10.99339 -6.37469,-11.3552 -1.39389,-0.19797 -2.25,-1.01336 -2.25,-2.14301 \
0,-2.22957 2.33512,-3.24242 5.59124,-2.42518 2.90984,0.73032 13.40876,-3.2523 \
13.40876,-5.08643 0,-0.68304 -2.31203,-2.44141 -5.13785,-3.90749 -6.05348,-3.14066 \
-9.36781,-2.7692 -8.4355,0.94543 0.4534,1.80649 0.005,2.76229 -1.87128,3.99191 \
-2.78787,1.82668 -4.55537,1.22544 -4.55537,-1.5496 0,-2.66586 -1.93159,-7.40782 \
-2.70319,-6.63622 -0.35598,0.35598 -0.68089,4.03812 -0.72203,8.18253 -0.0696,7.01014 \
0.082,7.57463 2.17522,8.09986 1.30943,0.32856 2.25,1.33064 2.25,2.39714 0,1.00792 \
0.45,2.11069 1,2.45061 0.55,0.33992 1,1.56854 1,2.73028 0,4.1684 5.34441,7.64173 \
6.62469,4.30537 z m 32.80207,-2.68929 c 2.20632,-4.42267 1.99366,-4.62333 \
-1.42676,-1.34636 -3.29063,3.15262 -3.76168,4.5 -1.57324,4.5 0.78472,0 \
2.13472,-1.41914 3,-3.15364 z M 497,177.94098 C 497,177.42344 496.55,177 496,177 c \
-0.55,0 -1,0.70156 -1,1.55902 0,0.85746 0.45,1.2809 1,0.94098 0.55,-0.33992 \
1,-1.04148 1,-1.55902 z M 675.54621,176.25 c 1.89433,-2.0625 3.51388,-4.7625 \
3.59901,-6 0.0851,-1.2375 0.19978,-2.8125 0.25478,-3.5 0.18161,-2.27008 \
-8.99441,-0.0434 -12.65,3.06968 -1.72862,1.47209 -2.48475,8.11224 -1.08333,9.51365 \
1.94296,1.94297 6.59718,0.49042 9.87954,-3.08333 z m -13.99214,-0.69218 c \
2.43137,-3.71074 1.55851,-6.98798 -1.96828,-7.39009 -1.86239,-0.21234 \
-3.22671,0.22614 -3.78003,1.21488 -0.69324,1.23875 -1.34346,1.32952 -3.26205,0.45535 \
-1.31793,-0.60049 -3.47941,-0.81993 -4.8033,-0.48765 -1.87249,0.46996 \
-2.40708,1.26929 -2.40708,3.59913 0,3.55351 2.57895,4.84945 9.89362,4.97161 \
3.95598,0.0661 4.98793,-0.31937 6.32712,-2.36323 z m -108.29279,-4.23539 c \
-0.20021,-2.59986 0.49879,-3.70432 4.33268,-6.84591 2.51428,-2.06026 6.1092,-5.32934 \
7.98872,-7.26462 3.64784,-3.75606 4.61659,-8.2119 1.78535,-8.2119 -2.23512,0 \
-8.03528,3.60624 -12.97245,8.06561 -2.25744,2.03896 -5.02837,4.00045 -6.15762,4.35887 \
-3.52547,1.11893 -3.67424,3.79651 -0.37476,6.7446 2.18507,1.95236 2.83738,3.25989 \
2.42089,4.85255 -0.45711,1.74799 -0.1949,2.10287 1.3229,1.79045 1.43505,-0.29539 \
1.83526,-1.13961 1.65429,-3.48965 z m 76.69193,-1.94955 c 2.4648,-5.5721 \
2.55568,-6.78214 0.44863,-5.97359 -0.97252,0.37319 -3.1348,-0.60376 -5.52338,-2.49555 \
-2.81018,-2.2257 -4.58197,-2.94399 -6.23718,-2.52856 -1.54354,0.38741 \
-3.03268,-0.0912 -4.48036,-1.43989 -1.96351,-1.82928 -2.03967,-2.27599 \
-0.80605,-4.72773 1.59353,-3.16703 1.01999,-10.12648 -0.8951,-10.86137 \
-0.71692,-0.27511 -2.27671,0.0207 -3.46621,0.65726 -1.1895,0.6366 -4.77637,1.14495 \
-7.97082,1.12967 -4.47083,-0.0214 -6.2061,0.41201 -7.5367,1.88231 -2.28475,2.52461 \
-1.39951,4.44625 3.21524,6.97953 5.60607,3.07747 10.66326,6.90035 11.79872,8.919 \
1.70272,3.02714 8.15733,8.08604 10.31692,8.08604 1.12908,0 3.22599,-0.44601 \
4.65978,-0.99114 1.95262,-0.74239 2.56668,-0.67964 2.44662,0.25 -0.37124,2.8746 \
0.14298,5.74114 1.02989,5.74114 0.52426,0 1.87426,-2.0822 3,-4.62712 z M 608,145 c \
0,-0.55 0.45,-1 1,-1 0.55,0 1,0.45 1,1 0,0.55 -0.45,1 -1,1 -0.55,0 -1,-0.45 -1,-1 z m \
26,26 c 0,-0.55 -0.675,-1 -1.5,-1 -0.825,0 -1.5,0.45 -1.5,1 0,0.55 0.675,1 1.5,1 \
0.825,0 1.5,-0.45 1.5,-1 z m 6.55,-4.89125 c 0.5225,-0.49019 3.77613,-1.08239 \
7.23029,-1.316 7.25848,-0.49091 9.75012,-2.18469 8.43672,-5.73516 -0.66344,-1.79345 \
-1.72087,-2.3595 -4.78434,-2.56113 -2.16297,-0.14236 -4.40208,0.11554 -4.9758,0.57311 \
-0.57372,0.45757 -2.59872,1.01894 -4.5,1.24749 -4.86982,0.58539 -6.6824,1.52535 \
-7.26931,3.76971 -0.86261,3.29861 3.46719,6.26911 5.86244,4.02198 z m \
-147.1151,-4.084 c 1.41081,-0.53639 2.5651,-1.66139 2.5651,-2.5 0,-2.34602 \
1.81948,-1.8062 2.18045,0.64692 0.17575,1.19442 0.88205,2.35692 1.56955,2.58334 \
0.87515,0.28821 1.25,-0.93073 1.25,-4.06469 0,-4.95221 -0.35583,-5.23956 \
-6.89448,-5.56779 -2.41697,-0.12133 -5.68353,-0.88719 -7.25903,-1.70192 \
-2.14206,-1.1077 -3.36671,-1.21256 -4.85552,-0.41578 -2.63555,1.41051 \
-2.52381,2.78039 0.25903,3.17562 1.74072,0.24722 2.32259,1.0774 2.57068,3.6677 \
0.25901,2.7043 0.67927,3.25437 2.18542,2.86051 1.04749,-0.27393 2.09842,0.12132 \
2.39793,0.90185 0.6347,1.654 0.74126,1.66495 4.03087,0.41424 z M 488.01531,157.25 C \
488.00689,156.0125 488.45,155 489,155 c 1.25292,0 1.25292,1.06124 0,3 \
-0.78387,1.21296 -0.9723,1.06944 -0.98469,-0.75 z m 19.55419,0.17091 c \
-0.85009,-3.38705 -2.75094,-3.07506 -2.00503,0.32909 0.33142,1.5125 0.85963,3.425 \
1.17381,4.25 0.88025,2.31144 1.58552,-1.57376 0.83122,-4.57909 z m 161.8738,3.35658 c \
2.07235,-2.95869 2.00672,-7.39082 -0.12153,-8.20751 -2.29137,-0.87928 \
-12.53417,2.4274 -11.85654,3.82764 0.29342,0.60631 0.81254,1.8948 1.15362,2.86332 \
0.34107,0.96851 1.80386,2.02038 3.25064,2.33747 1.44678,0.31709 3.08051,0.72664 \
3.63051,0.91011 1.96615,0.65587 2.40699,0.46235 3.9433,-1.73103 z m 13.8067,-2.58448 \
c 0.9625,-0.82664 1.75,-2.29644 1.75,-3.26621 0,-3.28647 1.23279,-4.99722 \
4.62129,-6.41303 2.2812,-0.95315 3.37871,-2.07795 3.37871,-3.46274 0,-2.3991 \
-2.21321,-2.70398 -4,-0.55103 -0.68469,0.825 -2.48743,1.5 -4.00608,1.5 -3.45688,0 \
-9.99392,6.83745 -9.99392,10.45319 0,4.32134 4.21038,5.20925 8.25,1.73982 z m \
-138.64583,-4.92218 c -1.01652,-1.01651 -1.85525,0.51389 -1.02122,1.86338 \
+       style="fill:#ac712e" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3784"
+       d="m 551.5,220.87969 c -4.95,-0.46752 -11.25,-1.35186 -14,-1.96521 \
-2.75,-0.61335 -6.86266,-1.29517 -9.13923,-1.51515 -6.19644,-0.59875 \
-20.69482,-5.03311 -27.15736,-8.30612 -3.13687,-1.5887 -9.26153,-5.7471 \
-13.61035,-9.24088 -4.34881,-3.49378 -9.74881,-7.7521 -12,-9.46293 -7.00384,-5.32271 \
-16.17686,-15.66343 -18.5305,-20.8894 -4.64971,-10.32408 -10.1488,-30.01373 \
-11.45082,-41 -0.78905,-6.65795 0.9162,-25.44854 2.43858,-26.87121 1.22315,-1.14304 \
1.13813,-0.35628 -0.66302,6.13607 -0.47018,1.69478 -0.27313,2.12856 0.78283,1.72335 \
1.19245,-0.45759 1.26794,0.89624 0.4871,8.73514 -0.64606,6.48582 -0.58307,10.55956 \
0.20936,13.541 0.62337,2.34539 1.13341,5.59879 1.13341,7.22976 0,1.63098 \
0.63665,4.66202 1.41477,6.73565 0.77813,2.07363 1.70901,5.12024 2.06862,6.77024 \
1.48856,6.82986 13.49423,27.98517 13.51164,23.80902 0.003,-0.65504 -0.44503,-1.4691 \
-0.99503,-1.80902 -1.72758,-1.0677 -1.08964,-2.5 1.1135,-2.5 2.107,0 2.27328,-1.47629 \
0.78577,-6.97626 -0.24684,-0.91264 0.42993,-1.60341 1.77262,-1.80931 1.71897,-0.26361 \
2.067,0.068 1.66892,1.59032 -0.34901,1.3346 0.48567,2.69711 2.72667,4.45096 \
3.53183,2.76407 3.5131,5.74429 -0.0361,5.74429 -2.31707,0 -2.43791,0.37188 \
-0.9962,3.06574 0.66611,1.24464 2.09223,1.93426 4,1.93426 1.63065,0 2.96482,0.46599 \
2.96482,1.03554 0,0.56954 2.025,1.90355 4.5,2.96446 2.54216,1.0897 4.5,2.597 \
4.5,3.46446 0,2.37869 -3.06194,1.81818 -8,-1.46446 -4.47674,-2.97597 -7,-3.75688 \
-7,-2.16639 0,1.42885 7.26004,8.59226 12.63398,12.4658 5.31761,3.83295 7.66648,4.6272 \
7.15986,2.42104 -0.45743,-1.99195 0.40615,-2.13958 4.5383,-0.77585 3.27013,1.07924 \
3.74833,1.59863 3.2607,3.54152 -0.49439,1.96981 0.10223,2.5666 4.42495,4.42619 \
2.74801,1.18216 6.56196,2.04395 8.47543,1.91509 2.41916,-0.16293 4.05225,0.38097 \
5.36063,1.78536 2.16815,2.32723 14.72055,4.96186 18.78274,3.94231 1.43695,-0.36065 \
3.16893,-0.13144 3.95852,0.52387 0.77209,0.64078 4.32964,1.77835 7.90565,2.52795 \
5.89969,1.23668 6.94163,1.19399 11.25054,-0.4609 5.86261,-2.25162 9.86251,-1.535 \
9.50568,1.70302 -0.23522,2.13448 -0.0266,2.18473 6.5,1.56572 4.80826,-0.45604 \
7.82671,-1.36897 10.51987,-3.18174 3.29002,-2.21452 4.07861,-2.38072 6.11787,-1.28934 \
1.92604,1.03079 3.64957,0.9429 9.72314,-0.49584 4.06018,-0.9618 9.15416,-2.58101 \
11.31997,-3.59826 C 617.60364,209.8323 620.88059,209 622.71995,209 627.25282,209 \
633,206.47508 633,204.48364 c 0,-1.16334 0.56237,-1.43993 2,-0.98364 3.20386,1.01687 \
6.26256,-0.38796 5.68162,-2.60949 -0.56367,-2.15548 2.73168,-4.64883 3.81898,-2.88954 \
0.80796,1.3073 5.12979,0.26495 9.302,-2.2435 4.0086,-2.41007 5.64832,-1.39755 \
2.18246,1.34766 -6.51326,5.15897 -22.81743,12.4762 -37.35023,16.76261 \
-24.9646,7.36323 -43.22347,9.27029 -67.13483,7.01195 z m 6.16326,-8.69054 c \
-1.0102,-0.42689 -5.01291,-0.65717 -8.8949,-0.51172 -4.55384,0.17062 \
-7.98249,-0.22596 -9.66326,-1.11772 -4.41312,-2.34143 -8.93753,-3.78131 \
-9.93826,-3.16282 -1.3326,0.82359 -9.19228,-2.08514 -11.63837,-4.30714 \
-1.11566,-1.01346 -3.82847,-2.16352 -6.02847,-2.55569 -4.89922,-0.87333 -6.5,-2.10507 \
-6.5,-5.00152 0,-2.4733 -2.36286,-4.94985 -5.68841,-5.9621 -2.10366,-0.64032 \
-8.31139,-6.88051 -8.31178,-8.35524 -1e-4,-0.39336 2.5874,-0.68075 5.75,-0.63864 \
5.68302,0.0757 5.7538,0.11291 6.05892,3.18799 0.35825,3.61045 2.78527,4.64987 \
5.49658,2.35403 1.6553,-1.40164 2.05658,-1.25981 4.82916,1.70684 2.67709,2.86448 \
3.44479,3.16181 6.69469,2.5928 2.01896,-0.35349 4.75835,-1.32672 6.08753,-2.16274 \
2.18086,-1.37169 2.53317,-1.36074 3.61025,0.11224 1.90448,2.60454 2.35126,1.94498 \
2.02171,-2.98454 -0.36684,-5.48732 -2.29367,-7.2785 -4.70894,-4.37742 -2.01992,2.4262 \
-6.83971,2.71691 -6.83971,0.41254 0,-0.86994 -1.62585,-3.56584 -3.613,-5.9909 \
-3.07642,-3.75436 -3.51975,-4.90626 -2.9851,-7.75619 0.51367,-2.73808 \
0.14833,-3.86447 -2.0081,-6.1913 -2.36062,-2.54715 -2.57847,-3.40173 \
-2.08529,-8.18018 C 509.84028,148.14737 513.195,141 515.08156,141 515.5867,141 \
516,142.32344 516,143.94098 c 0,1.61754 0.40285,3.18996 0.89522,3.49426 \
1.08344,0.6696 2.10478,-1.73626 2.10478,-4.95801 0,-3.58918 1.7341,-3.8921 \
3.43637,-0.60027 0.83685,1.61829 2.02726,3.11092 2.64534,3.31694 0.62606,0.20869 \
-0.29665,1.89519 -2.08334,3.80784 -2.94015,3.14745 -3.31235,3.28935 -4.4711,1.70466 \
-1.12502,-1.53854 -1.40297,-1.5611 -2.5283,-0.20516 -0.87481,1.05408 -1.6369,1.21421 \
-2.47366,0.51977 -2.93105,-2.43256 -3.53607,3.75429 -0.62479,6.38896 1.80496,1.63347 \
2.00122,1.61188 3.90304,-0.42949 1.91094,-2.05116 2.04959,-2.06556 3.0322,-0.31496 \
0.96588,1.72078 1.20432,1.73378 3.84697,0.20969 1.5495,-0.89363 4.90559,-1.92633 \
7.45797,-2.29488 4.51661,-0.65218 4.6997,-0.57463 6.84725,2.90017 2.36038,3.81918 \
2.11662,6.5195 -0.58853,6.5195 -2.46336,0 -8.39942,3.94462 -8.39942,5.58156 0,2.51822 \
4.4486,1.53928 7.18709,-1.58156 4.58035,-5.21987 8.9075,-3.35182 9.32373,4.02509 \
0.15826,2.80482 -0.17829,3.97491 -1.14327,3.97491 -1.72758,0 -1.8588,6.10875 \
-0.16755,7.8 1.58496,1.58496 3.8,1.53271 3.8,-0.0897 0,-1.82893 7.06067,-9.71035 \
8.69914,-9.71035 0.75017,0 4.11831,0.92788 7.48474,2.06195 5.45125,1.83639 \
6.28552,1.89722 7.62663,0.55611 1.33026,-1.33026 1.83744,-1.33435 4.34987,-0.0351 \
2.76731,1.43103 2.80625,1.56116 1.44333,4.82309 -1.3054,3.12426 -1.24548,3.51372 \
0.88043,5.72318 l 2.28115,2.37079 -2.04711,2.23952 c -1.91688,2.09704 \
-1.94123,2.35653 -0.38265,4.07874 0.91546,1.01157 1.66447,2.58625 1.66447,3.49928 \
0,1.18782 0.76027,1.59714 2.67254,1.43887 1.46989,-0.12165 2.86656,0.3609 \
3.10371,1.07233 0.32808,0.98426 0.88006,0.88728 2.3087,-0.40562 1.53308,-1.38742 \
2.15617,-1.4679 3.39629,-0.43869 0.83532,0.69325 1.51876,1.92073 1.51876,2.72772 \
0,1.55806 3.81952,5.20286 5.5,5.24842 0.55,0.0149 2.28894,-0.64512 3.86431,-1.46673 \
1.57537,-0.82161 3.48787,-1.49384 4.25,-1.49384 1.77774,0 1.74375,-0.52389 \
-0.22932,-3.53518 C 605.47183,201.07116 603.80594,200 602.55166,200 c -3.27006,0 \
-3.7386,-1.02804 -1.35003,-2.96219 C 603.94277,194.81817 602.77197,193 598.6015,193 c \
-2.52458,0 -3.54169,-0.57332 -4.41415,-2.48815 -0.62352,-1.36848 -0.90027,-3.09639 \
-0.615,-3.83979 0.28527,-0.7434 -0.17681,-1.92883 -1.02684,-2.63429 -0.85003,-0.70546 \
-1.54551,-2.101 -1.54551,-3.1012 0,-1.00019 -0.45,-2.09665 -1,-2.43657 \
-2.62718,-1.62369 -0.79751,-4.2159 4.53608,-6.42655 l 5.53608,-2.29457 \
2.99927,3.13845 c 1.64961,1.72616 3.42224,4.25091 3.93918,5.61057 1.48692,3.91091 \
6.0426,2.74057 6.49303,-1.66804 0.13261,-1.29792 0.29854,-2.6449 0.36874,-2.99328 \
0.31462,-1.56155 5.26354,-1.51433 6.41327,0.0612 0.83227,1.14048 2.63022,1.64961 \
5.71435,1.61814 2.67403,-0.0273 5.86612,0.73221 7.86673,1.87173 2.66414,1.51746 \
3.74791,1.6796 5.19331,0.77693 2.20524,-1.3772 18.09039,-0.42731 19.11374,1.14295 \
0.45274,0.69468 1.14737,0.64083 2.11733,-0.16416 1.13925,-0.9455 1.71233,-0.87415 \
2.71871,0.33846 1.43713,1.73164 1.49255,1.6524 -2.29354,3.27961 -2.32875,1.00087 \
-2.88011,0.94519 -3.37355,-0.34069 -0.51771,-1.34912 -0.78874,-1.35887 \
-2.21629,-0.0798 -1.93919,1.73754 -10.57543,1.52947 -14.0665,-0.33889 \
-2.16296,-1.15758 -4.11922,-1.05924 -10.42825,0.52422 -2.17354,0.54553 \
-2.76457,0.22439 -3.59191,-1.95166 C 626.49513,179.17209 625.68377,178 625.23675,178 \
c -0.44701,0 -3.20929,2.25 -6.13841,5 -3.16866,2.9749 -6.24731,5 -7.60122,5 \
-1.25155,0 -3.28337,0.81609 -4.51516,1.81352 l -2.2396,1.81353 4.07928,-0.0635 c \
2.24361,-0.0349 4.64158,-0.62602 5.32882,-1.31352 1.83786,-1.83854 5.29303,-1.52241 \
7.27301,0.66544 1.60047,1.7685 1.61063,2.10288 0.13246,4.35886 -1.44859,2.21082 \
-1.45261,2.56656 -0.0423,3.73701 1.30886,1.08626 1.99365,0.8987 4.27253,-1.17021 C \
630.14032,193.88811 638,191.36371 638,193.91821 638,196.13189 636.65149,198 \
635.05353,198 c -0.95288,0 -2.24508,1.125 -2.87158,2.5 -0.62649,1.375 -1.81089,2.5 \
-2.632,2.5 -0.82111,0 -4.05244,1.13194 -7.18075,2.51543 -4.04711,1.78982 \
-6.62352,2.33988 -8.93157,1.90689 -2.65287,-0.49768 -3.35744,-0.25034 \
-3.86785,1.35782 -0.52301,1.64786 -1.88321,2.07618 -8.39795,2.64447 -4.27562,0.37297 \
-12.47589,0.67088 -18.22284,0.66204 -5.74694,-0.009 -13.37399,0.18524 \
-16.94899,0.4313 -3.575,0.24606 -7.32653,0.0981 -8.33674,-0.3288 z m 2.91293,-3.31243 \
c 0.4396,-0.71129 2.42837,-0.91789 5.42232,-0.5633 C 571.69312,208.98786 \
573,207.95874 573,202.8 c 0,-3.26954 -0.31409,-3.80214 -2.25,-3.81531 \
-2.98451,-0.0203 -5.34361,-1.49978 -3.85676,-2.41871 0.60872,-0.37621 \
1.10676,-1.11384 1.10676,-1.63919 0,-0.52534 -1.82009,0.24931 -4.04466,1.72146 \
-2.68357,1.7759 -3.8509,3.18153 -3.4689,4.17701 0.33323,0.8684 -0.5883,2.7154 \
-2.18778,4.38489 -2.31553,2.4169 -2.52321,3.03647 -1.2811,3.82187 1.95273,1.23472 \
2.72025,1.20123 3.55863,-0.1553 z M 582,207.08179 C 582,203.84073 580.87458,202 \
578.89301,202 c -2.14475,0 -2.30658,0.78202 -0.91776,4.4349 1.13651,2.98925 \
4.02475,3.45347 4.02475,0.64689 z M 589.5,207 c 0.33992,-0.55 -0.0835,-1 -0.94098,-1 \
-0.85746,0 -1.55902,0.45 -1.55902,1 0,0.55 0.42344,1 0.94098,1 0.51754,0 1.2191,-0.45 \
1.55902,-1 z m -52.75,-5.63029 C 539.25336,200.69884 539.85404,198 537.5,198 c \
-0.98767,0 -1.5,-0.98811 -1.5,-2.89301 0,-3.28294 -2.25934,-4.70435 -4.04933,-2.54755 \
-0.65756,0.79231 -2.15296,1.45487 -3.32311,1.47236 -1.17016,0.0175 -3.00107,0.6925 \
-4.06869,1.5 -1.06762,0.80751 -3.30512,1.4682 -4.97222,1.4682 l -3.03109,0 \
2.21053,2.21053 c 2.04828,2.04828 2.54273,2.12168 6.73657,1 6.0873,-1.6281 \
7.84421,-1.55683 7.13571,0.28947 -0.61541,1.60375 0.49564,1.83876 4.11163,0.86971 z M \
542,187.55448 c 0,-0.73011 -1.35606,-1.52651 -3.01346,-1.76976 l -3.01347,-0.44229 \
2.15883,2.29797 c 2.19958,2.34135 3.8681,2.30429 3.8681,-0.0859 z m 27.66813,-1.13202 \
c 0.72462,-1.88834 -2.01618,-4.94342 -3.57217,-3.98177 -1.20758,0.74633 \
-1.47926,3.84268 -0.42929,4.89264 1.19819,1.19819 3.38298,0.70086 4.00146,-0.91087 z \
M 522.5,173 c -0.33992,-0.55 -1.04148,-1 -1.55902,-1 -0.51754,0 -0.94098,0.45 \
-0.94098,1 0,0.55 0.70156,1 1.55902,1 0.85746,0 1.2809,-0.45 0.94098,-1 z m \
63.77083,22.39583 c 0.33229,-0.33229 1.1948,-0.36781 1.91667,-0.0789 0.79773,0.31922 \
0.56078,0.55618 -0.60417,0.60416 -1.05416,0.0434 -1.64479,-0.19293 -1.3125,-0.52522 z \
m -74.03194,-12.84102 c -2.12128,-4.36624 -2.12498,-4.45619 -0.20821,-5.06455 \
1.07328,-0.34064 2.43321,-0.3216 3.02205,0.0423 1.64484,1.01657 3.0678,5.51229 \
2.40535,7.59949 -0.98095,3.0907 -2.93404,2.12625 -5.21919,-2.57727 z M 625,184.55902 \
c 0,-0.24254 0.45,-0.7191 1,-1.05902 0.55,-0.33992 1,-0.14148 1,0.44098 0,0.58246 \
-0.45,1.05902 -1,1.05902 -0.55,0 -1,-0.19844 -1,-0.44098 z m 50,-6.76226 c 0,-1.87261 \
2.50697,-4.12777 4.02584,-3.62148 0.6012,0.2004 -0.0587,1.44638 -1.46638,2.76886 C \
675.61264,178.77308 675,178.97717 675,177.79676 z m -186.5,-2.63844 c \
-4.6345,-2.83354 -5.76494,-4.67555 -5.00178,-8.15022 0.57397,-2.61324 \
0.13261,-3.67433 -2.94553,-7.08146 -3.99695,-4.42415 -3.95062,-6.12754 \
0.13693,-5.03436 1.76206,0.47125 3.0095,1.72568 3.64185,3.66224 0.52899,1.62001 \
1.57081,3.30534 2.31516,3.74517 0.74435,0.43983 1.35337,1.90233 1.35337,3.25 \
0,1.66979 0.55914,2.45031 1.75531,2.45031 1.15082,0 2.15668,1.28234 2.92079,3.72365 \
1.75986,5.62263 0.75467,6.44935 -4.1761,3.43467 z m 174.3719,1.1507 c \
-0.0705,-0.44496 -0.18296,-2.38402 -0.25,-4.30902 -0.10677,-3.06562 -0.47377,-3.54029 \
-2.95708,-3.82464 -1.78767,-0.2047 -3.28498,0.2905 -4.05261,1.3403 -1.10583,1.51231 \
-1.33746,1.52032 -2.5267,0.0874 -1.85633,-2.23674 -0.83864,-4.01777 3.4619,-6.05851 \
2.46923,-1.17172 5.03985,-1.59496 7.60093,-1.25145 3.16419,0.42441 4.14171,0.13092 \
5.36075,-1.60951 2.107,-3.00816 1.92299,-7.41165 -0.3397,-8.1298 -1.00684,-0.31956 \
-5.16934,0.48578 -9.25,1.78963 -10.06127,3.21477 -20.48459,2.73672 -15.75379,-0.72253 \
0.91435,-0.66859 1.83932,-2.54429 2.0555,-4.16824 l 0.39305,-2.95262 1.18348,2.79024 \
c 1.00986,2.38093 1.47488,2.63428 3.17,1.72708 1.09259,-0.58473 2.51397,-2.04867 \
3.1586,-3.25319 1.16563,-2.178 1.17625,-2.17875 1.93159,-0.13687 0.60027,1.62269 \
1.40766,1.95804 3.85085,1.59945 1.70023,-0.24954 3.09133,-0.90078 3.09133,-1.4472 \
0,-0.54642 0.70351,-0.72353 1.56335,-0.39358 C 668.63327,148.94771 675,142.02148 \
675,136.03212 c 0,-2.77832 -2.33269,-2.59698 -9.21588,0.7164 -4.45323,2.14368 \
-5.85408,3.37111 -6.34154,5.55651 -0.59625,2.67316 -0.73395,2.73408 -2.92902,1.29581 \
-2.29992,-1.50696 -9.51356,-1.19987 -9.51356,0.405 0,0.40929 -1.35,1.01416 -3,1.34416 \
-2.56025,0.51205 -3,1.05506 -3,3.70446 0,2.98042 -0.12984,3.07628 -3.25,2.39936 \
-1.7875,-0.38779 -3.475,-1.05318 -3.75,-1.47864 -0.275,-0.42545 -1.625,-0.93142 \
-3,-1.12436 -1.72937,-0.24268 -2.60227,-1.07316 -2.83178,-2.69416 -0.27247,-1.92442 \
0.0151,-2.23324 1.60881,-1.72743 2.51348,0.79775 4.59488,-1.68209 3.72149,-4.43389 \
-0.54528,-1.71802 -0.93454,-1.87836 -2.13714,-0.88029 -2.15835,1.79126 \
-4.993,-1.53567 -6.06225,-7.11505 -0.94539,-4.9331 -3.74685,-6.41527 -3.78023,-2 \
-0.0141,1.86193 -0.62354,2.58554 -2.3879,2.83515 -1.51532,0.21437 -2.75377,1.35451 \
-3.43674,3.1639 -1.1325,3.00033 -1.29305,3.06338 -13.30036,5.22291 -3.90835,0.70292 \
-7.78723,1.84699 -8.61972,2.54236 -1.23462,1.03128 -2.32102,0.91808 -5.8939,-0.61409 \
L 583.5,141.2718 l 3.77884,-1.59692 c 3.31081,-1.39914 3.69991,-1.91138 \
3.14159,-4.1359 -0.78861,-3.14207 0.74444,-3.35272 2.10314,-0.28898 0.62408,1.40725 \
1.74292,2.1619 2.98712,2.01478 7.61615,-0.90055 14.39478,-2.24616 16.73931,-3.32288 C \
615.33421,132.52549 615.95285,130 613.21561,130 611.02097,130 608,125.11775 \
608,121.57096 c 0,-1.87503 0.71117,-2.89085 2.5,-3.57096 3.00592,-1.14285 \
3.12976,-2.1201 0.56301,-4.44297 C 608.70844,111.42617 607,112.26798 607,115.55902 \
607,117.06211 606.42366,118 605.5,118 c -0.825,0 -1.5,0.675 -1.5,1.5 0,2.16336 \
-1.75536,1.84615 -2.48376,-0.44885 -0.3402,-1.07186 -1.60803,-2.25877 \
-2.81739,-2.63756 -1.20937,-0.37879 -3.257,-1.51498 -4.5503,-2.52487 \
-1.29329,-1.00989 -3.92724,-2.13178 -5.85321,-2.49309 -4.38262,-0.82219 \
-6.33654,-4.70175 -5.27945,-10.48253 0.47794,-2.613672 0.29,-4.480093 \
-0.5695,-5.655529 -1.69785,-2.321953 -2.25618,-1.576081 -2.82817,3.778196 C \
579.02266,104.61065 578.01324,108 576.94847,108 c -0.45005,0 -2.08507,0.53109 \
-3.63337,1.1802 -1.54831,0.64911 -4.56968,1.28662 -6.71417,1.41668 -2.14449,0.13006 \
-5.41015,0.51995 -7.25702,0.86643 -2.8779,0.53989 -3.48406,0.30163 -4.24006,-1.66668 \
C 553.74335,106.25449 549.32808,102 547.01257,102 c -1.75133,0 -1.9177,-0.30874 \
-1.04505,-1.93931 1.365,-2.550535 -0.0489,-3.394023 -5.68932,-3.394023 -3.8023,0 \
-4.18578,-0.187663 -2.93643,-1.437011 0.79036,-0.790356 2.94929,-1.744519 \
4.79762,-2.120362 4.42395,-0.899572 5.28275,-4.618099 1.40689,-6.0917 \
-2.1352,-0.811801 -2.48104,-1.429355 -1.96094,-3.501612 0.7169,-2.856337 \
-1.19217,-3.402982 -4.55343,-1.303837 -1.06752,0.66668 -2.29892,0.830073 \
-2.73643,0.363095 -0.43751,-0.466977 -0.239,-1.047936 0.44114,-1.291018 \
0.68014,-0.243083 2.25514,-1.274534 3.5,-2.292113 1.81565,-1.484158 2.01611,-2.101563 \
1.01338,-3.121126 -0.6875,-0.699041 -1.25277,-1.968483 -1.25616,-2.820983 \
-0.003,-0.8525 -0.67839,-2.838938 -1.5,-4.414307 C 535.67223,67.060324 535,64.558833 \
535,63.076823 c 0,-1.48201 -0.64854,-3.568072 -1.4412,-4.635693 -0.80188,-1.080048 \
-1.19291,-2.957101 -0.88148,-4.231425 0.34167,-1.398034 -0.0829,-3.000333 \
-1.08967,-4.112854 -0.90717,-1.002407 -1.92235,-4.246774 -2.25596,-7.209705 \
-0.91103,-8.091218 -1.70643,-8.611897 -9.58169,-6.272271 -0.9625,0.285945 \
-1.75,0.07533 -1.75,-0.468032 0,-0.543363 1.34484,-1.283309 2.98853,-1.644324 \
3.4585,-0.759615 4.69498,-2.219009 3.17114,-3.742847 -0.75143,-0.751437 \
-0.75366,-1.649787 -0.008,-3.043917 0.9938,-1.856924 0.82472,-1.933992 \
-2.76537,-1.260488 -2.10313,0.394551 -5.18803,1.316815 -6.85532,2.049475 \
-3.01418,1.324529 -3.00067,1.332574 2.37356,1.413684 L 522.30998,30 \
520.40735,32.102379 C 517.73279,35.057729 513.6252,37 510.04966,37 c -3.51428,0 \
-3.98119,1.431092 -0.98933,3.032288 1.13318,0.60646 1.91452,1.859793 1.73631,2.785184 \
C 510.39525,44.901701 507.5,45.062005 507.5,43 c 0,-2.618162 -1.76244,-2.906762 \
-5.64746,-0.924772 -5.17712,2.64117 -7.28883,2.601375 -5.61101,-0.105741 \
1.03724,-1.673566 1.00068,-2.190884 -0.20799,-2.942797 -0.90955,-0.565831 \
-1.93653,-0.522164 -2.70425,0.114985 -2.05447,1.70506 -8.32929,4.6913 \
-8.32929,3.963981 0,-1.852307 10.04363,-7.834663 15,-8.934548 7.25395,-1.609751 \
+       style="fill:#914e15" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3786"
+       d="m 556.5,221.3241 c -9.68382,-0.82238 -21.00903,-2.52399 -21.48318,-3.22784 \
-0.28425,-0.42195 -1.41682,-1.27754 -2.51682,-1.90131 -1.76331,-0.99991 \
-1.55204,-1.13773 1.78518,-1.16454 2.08185,-0.0167 4.78185,0.60212 6,1.37521 \
1.21815,0.77309 5.48537,1.71957 9.48271,2.10329 5.87833,0.56428 7.74363,0.38595 \
9.75617,-0.93272 4.05117,-2.65443 6.82279,-3.37805 9.34008,-2.43854 2.01055,0.75038 \
2.16974,1.11661 1.06431,2.44857 -1.85018,2.22932 0.56216,3.63778 5.07155,2.96104 \
1.925,-0.28889 4.94684,-0.5302 6.7152,-0.53625 2.15377,-0.007 4.37231,-1.02696 \
6.72021,-3.08844 3.45879,-3.03686 5.56459,-3.17444 5.56459,-0.36355 0,1.7692 \
4.24872,1.91906 7.31574,0.25804 2.01538,-1.09148 6.23875,-2.39882 20.61502,-6.38137 \
2.98692,-0.82744 8.71056,-2.95147 12.7192,-4.72006 5.78602,-2.55277 7.17783,-3.57637 \
6.75185,-4.96563 -0.35278,-1.15056 3.1e-4,-1.75 1.0308,-1.75 0.86207,0 1.56739,0.45 \
1.56739,1 0,0.55 1.2375,1.00542 2.75,1.01205 2.63542,0.0115 2.58335,0.10613 \
-1.25,2.27027 -9.53278,5.38181 -28.71432,11.90151 -44.54989,15.14226 \
-14.94703,3.05892 -30.57167,4.07812 -44.45011,2.89952 z m -37.40793,-5.85292 c \
-12.20054,-3.15193 -20.70068,-7.19363 -29.82181,-14.17985 -8.766,-6.71421 \
-10.66077,-8.96888 -3.25768,-3.87645 2.88945,1.9876 6.43117,3.89279 7.87049,4.23377 \
1.43931,0.34098 3.35393,1.25858 4.25472,2.0391 2.39992,2.0795 11.42374,5.31225 \
14.82853,5.31225 1.61967,0 4.60264,1.125 6.62882,2.5 2.02617,1.375 4.45141,2.5 \
5.38942,2.5 0.93801,0 2.51995,0.9 3.51544,2 2.22884,2.46284 2.15644,2.45877 \
-9.40793,-0.52882 z m 41.58327,-3.12917 c -2.48583,-2.48583 6.87038,-4.59428 \
10.32466,-2.3267 1.33333,0.87528 1.33333,1.0941 0,1.96938 -1.68598,1.10677 \
-9.3113,1.37068 -10.32466,0.35732 z m 24.81392,-1.35938 c -0.84644,-1.36958 \
-0.87702,-1.34811 3.91367,-2.74845 4.18659,-1.22376 8.05615,-0.12374 7.32923,2.08352 \
-0.51151,1.55319 -10.33486,2.13416 -11.2429,0.66493 z m -45.27313,-0.80328 c \
-3.52437,-2.30383 3.84251,-7.35655 12.53387,-8.59661 3.41574,-0.48734 4.25,-0.3054 \
4.25,0.92688 0,0.84329 -1.10825,2.03821 -2.46277,2.65537 -1.62609,0.7409 \
-2.39049,1.83775 -2.25,3.22856 0.19044,1.88536 -0.3645,2.13366 -5.28723,2.36575 \
-3.025,0.14261 -6.07774,-0.11837 -6.78387,-0.57995 z m 66.24275,-1.24588 c \
-0.36254,-0.5866 0.13402,-1.64653 1.10346,-2.3554 1.06341,-0.77758 1.51227,-1.94125 \
1.13152,-2.93346 -0.40031,-1.0432 -0.11947,-1.64461 0.76797,-1.64461 1.96012,0 \
2.33558,4.14648 0.56593,6.25 -1.69317,2.0126 -2.63585,2.19314 -3.56888,0.68347 z M \
522.25,205.98078 c -2.96659,-1.20817 -2.85677,-2.79039 0.24776,-3.56957 \
3.35469,-0.84198 5.72481,0.19456 5.31466,2.32428 -0.39625,2.05756 -2.44287,2.51574 \
-5.56242,1.24529 z m 102.10674,-3.49351 c -0.76938,-2.00498 1.17235,-4.20638 \
5.78652,-6.56036 C 634.82732,193.53728 635,193.53988 635,196 c 0,1.1 -0.41968,2 \
-0.93261,2 -0.51294,0 -1.20633,0.86239 -1.54086,1.91642 -0.33454,1.05403 \
-2.00701,2.40403 -3.71661,3 -3.90433,1.36105 -3.76091,1.37488 -4.45318,-0.42915 z m \
-127.79995,-1.82209 c -2.47116,-1.80695 -1.19981,-3.8386 1.72504,-2.75663 \
2.29021,0.84721 3.01243,3.16003 1.17773,3.7716 -0.57224,0.19074 -1.87849,-0.26599 \
-2.90277,-1.01497 z m 10.57133,-1.56484 c -2.13829,-1.35451 -0.90192,-3.19216 \
3.0653,-4.55602 3.56685,-1.22623 3.62986,-1.20177 4.03617,1.56664 0.53128,3.61983 \
-3.45634,5.29843 -7.10147,2.98938 z M 615,197.46862 c 0,-1.51309 2.63652,-3.16543 \
3.56667,-2.23529 0.26422,0.26423 0.19667,1.21982 -0.15012,2.12354 C \
617.62094,199.4302 615,199.51592 615,197.46862 z m -139.59996,-7.3274 c \
-2.14502,-1.57233 -6.64179,-5.73483 -9.99282,-9.25 C 457.3426,172.43159 \
454.006,165.11848 449.03184,145 c -3.36252,-13.60006 -4.40386,-21.50005 \
-3.48185,-26.41475 1.26357,-6.73543 2.14133,-3.59058 2.74878,9.84841 0.47918,10.60107 \
1.14452,15.03423 3.15538,21.02449 5.18679,15.45118 16.7193,35.02882 22.34924,37.94018 \
2.51914,1.3027 7.12506,5.60167 6.00164,5.60167 -0.27773,0 -2.25997,-1.28645 \
-4.40499,-2.85878 z M 526.5,191 c -1.08086,-1.74886 0.52195,-3.22667 2.08903,-1.92611 \
0.77603,0.64405 1.41097,1.5659 1.41097,2.04855 0,1.20559 -2.73844,1.10978 \
-3.5,-0.12244 z m 19.5,-2 c 0,-0.55 0.45,-1 1,-1 0.55,0 1,0.45 1,1 0,0.55 -0.45,1 \
-1,1 -0.55,0 -1,-0.45 -1,-1 z m 10.71025,-1 c 0.28947,-1.10692 1.36402,-2 2.40638,-2 \
2.15931,0 2.41906,1.06431 0.68337,2.8 -1.89766,1.89766 -3.67487,1.43751 -3.08975,-0.8 \
z m -61.53594,-1.31445 C 492.19852,183.51796 492.44764,182 495.9433,182 c 2.92982,0 \
6.0567,2.95434 6.0567,5.72251 0,2.11997 -4.50251,1.43594 -6.82569,-1.03696 z m \
-12.67986,-0.69168 c -0.99854,-1.10337 -1.63078,-2.1806 -1.40499,-2.39384 \
0.79077,-0.74678 7.26434,1.91225 7.66876,3.14997 0.67043,2.05176 -4.26144,1.45641 \
-6.26377,-0.75613 z m 176.73174,-3.56753 c 0.94941,-0.99401 2.00045,-1.53304 \
2.33565,-1.19784 0.3352,0.3352 -0.44159,1.14849 -1.72619,1.80729 -2.23286,1.14512 \
-2.25968,1.1183 -0.60946,-0.60945 z m -146.78004,-1.51347 c -0.36954,-0.59793 \
-0.15236,-1.60666 0.48262,-2.24164 0.87268,-0.87268 1.37235,-0.80204 2.04689,0.28938 \
C 515.92877,180.50279 515.44816,182 514,182 c -0.48508,0 -1.18431,-0.48921 \
-1.55385,-1.08713 z M 651.24379,179.75 c 0.22574,-0.6875 1.72574,-1.3693 \
3.33333,-1.51512 l 2.92288,-0.26512 -2.5,1.47969 c -3.09616,1.83253 -4.29064,1.92811 \
-3.75621,0.30055 z M 486.22251,173.4433 C 483.45718,171.50639 483.33167,169 486,169 c \
2.08345,0 6,3.26379 6,5 0,1.51323 -3.27243,1.19791 -5.77749,-0.5567 z m \
176.52516,-0.90367 C 663.01469,171.14284 663.84119,170 664.58435,170 c 0.97182,0 \
1.12285,0.61729 0.53792,2.1985 -1.16552,3.15072 -2.96099,3.40866 -2.3746,0.34113 z m \
-192.15742,0.27734 c -0.21911,-0.72433 -0.6469,-2.09006 -0.95064,-3.03494 \
-0.30375,-0.94489 -0.20634,-1.93177 0.21645,-2.19307 1.12604,-0.69593 6.64394,3.16184 \
6.64394,4.64503 0,1.7322 -5.40095,2.26499 -5.90975,0.58298 z m 183.00631,-2.66074 c \
-0.34605,-0.55992 -0.1419,-1.31919 0.45366,-1.68727 1.53748,-0.95021 2.52947,0.35135 \
1.24598,1.63484 -0.71818,0.71818 -1.27752,0.73543 -1.69964,0.0524 z m \
25.66216,-2.38889 c 0.20977,-1.97127 -0.15046,-2.2214 -2.75872,-1.91554 -1.65,0.1935 \
-3.82604,0.79245 -4.83565,1.33102 -2.42276,1.29241 -3.08779,0.4769 -1.71019,-2.09717 \
C 670.56808,163.93854 671.95453,163 673.03518,163 674.11583,163 675,162.325 675,161.5 \
c 0,-2.12309 -2.24745,-1.8598 -4.26797,0.5 -1.86145,2.17401 -8.73203,2.86249 \
-8.73203,0.875 0,-0.71377 1.08405,-0.90819 2.96562,-0.53188 3.4856,0.69712 \
6.03438,-2.04758 6.03438,-6.49824 0,-3.53901 -2.51494,-4.30717 -8.12935,-2.48305 \
-9.47303,3.07779 -16.23309,2.84371 -12.2937,-0.42569 0.85521,-0.70976 \
2.26486,-2.66335 3.13257,-4.34131 1.47865,-2.85939 1.62566,-2.92105 2.34273,-0.98262 \
0.60614,1.63854 1.40732,1.97395 3.85642,1.6145 1.70023,-0.24954 3.09133,-0.90078 \
3.09133,-1.4472 0,-0.54642 0.70351,-0.72353 1.56335,-0.39358 C 668.63327,148.94771 \
675,142.02148 675,136.03212 c 0,-2.77832 -2.33269,-2.59698 -9.21588,0.7164 \
-4.45323,2.14368 -5.85408,3.37111 -6.34154,5.55651 -0.60141,2.69631 -0.71739,2.74493 \
-2.99226,1.25437 -1.30163,-0.85286 -3.3795,-1.44012 -4.61747,-1.30503 \
-2.52347,0.27538 -3.89676,-2.97881 -1.80313,-4.27274 0.67458,-0.41691 0.9173,-1.25833 \
0.53938,-1.86983 C 649.57728,134.50701 648,134.74534 648,136.5 c 0,2.59216 \
-2.88036,1.63204 -4.5,-1.5 -1.9796,-3.82813 -3.96568,-3.99216 -3.02702,-0.25 l \
0.6898,2.75 -2.39584,-2.25 c -1.31771,-1.2375 -3.10946,-2.25 -3.98165,-2.25 \
-1.07725,0 -1.97208,-1.61016 -2.7903,-5.02088 -0.69993,-2.91764 -1.97087,-5.43103 \
-3.034,-6 -3.27112,-1.75065 -7.06254,-1.11974 -9.13965,1.52088 -2.23832,2.84556 \
-6.84976,3.37561 -8.81077,1.01273 -1.81461,-2.18647 -0.48597,-4.46765 3.00928,-5.1667 \
1.96162,-0.39232 3.57728,-1.60007 4.48267,-3.3509 1.27791,-2.47121 1.20073,-3.16342 \
-0.79346,-7.11631 -1.48369,-2.94098 -2.95676,-4.48491 -4.48611,-4.70192 \
-1.46404,-0.20773 -2.17813,-0.90949 -2,-1.96545 0.31849,-1.888 -4.67643,-4.567567 \
-10.47997,-5.622064 -3.41464,-0.620436 -3.84752,-0.444634 -4.75,1.929083 C \
595.44684,99.954921 595,103.14003 595,105.59648 c 0,2.92046 -0.48793,4.65353 \
-1.40974,5.00726 -2.09308,0.80319 -7.81784,-2.43048 -6.89791,-3.89633 \
0.41675,-0.66407 0.62554,-2.01048 0.46397,-2.99201 -0.16318,-0.99132 1.12151,-3.10665 \
2.89012,-4.758779 2.56547,-2.396514 2.95317,-3.252161 1.9961,-4.405368 \
-0.65328,-0.787151 -2.1676,-1.571156 -3.36516,-1.742234 -1.7074,-0.243911 \
-2.1346,-0.920093 -1.97917,-3.132699 0.16681,-2.374524 -0.37536,-3.061304 \
-3.42141,-4.334027 -2.76833,-1.156682 -3.28533,-1.723964 -2.19822,-2.412022 \
2.24504,-1.420933 4.69285,-1.085223 6.63246,0.909624 2.43348,2.502765 \
4.81849,3.230577 6.1671,1.88196 1.80452,-1.804518 1.29766,-3.557786 \
-1.12814,-3.902304 -1.60252,-0.227593 -2.22715,-0.967036 -2.1706,-2.569551 \
0.0697,-1.976241 -0.41694,-2.251863 -4,-2.265313 -2.24367,-0.0084 -4.74137,-0.433954 \
-5.55044,-0.945627 -1.59971,-1.011687 -1.50854,-1.189906 1.47104,-2.875598 \
1.95196,-1.104321 1.94412,-1.147174 -0.32672,-1.784174 -2.80242,-0.786117 \
-4.71952,-5.016182 -3.13736,-6.922564 1.31528,-1.58482 -0.89271,-5.725657 \
-2.6861,-5.037469 -2.01864,0.774626 -2.41347,-0.691437 -0.69701,-2.588103 C \
576.60596,55.777927 578.67902,55 580.53254,55 583.92701,55 587.634,52.056426 \
585.25,51.254045 584.5625,51.022654 584,50.040578 584,49.071654 584,47.052875 \
580.99026,44 579,44 c -0.73839,0 -2.16545,0.744744 -3.17126,1.654988 C \
574.18454,47.14297 574,47.149539 574,45.720087 574,42.8389 575.92485,39 577.36949,39 \
c 0.78045,0 2.84794,-1.334833 4.59443,-2.966296 2.37259,-2.216334 3.09461,-3.670092 \
2.85575,-5.75 C 584.50655,27.557061 584.36676,27.5 578,27.5 l -6.5,0 -7.1e-4,4.899153 \
c -5.9e-4,4.073311 -0.36914,5.063549 -2.18631,5.874394 -1.20208,0.536383 \
-3.31171,0.692604 -4.68807,0.347159 -2.38269,-0.598017 -2.4339,-0.759538 \
-1.06985,-3.374394 1.77494,-3.402539 1.84674,-6.154895 0.17728,-6.79553 \
-0.69722,-0.267547 -4.18472,-0.01312 -7.75,0.565396 -3.56529,0.578514 \
-7.45043,1.045255 -8.63366,1.037202 -3.11769,-0.02122 -1.86566,3.825795 \
1.73832,5.341152 2.98588,1.255468 2.77278,2.590702 -0.70552,4.42058 C \
545.65154,41.251295 545,40.507684 545,35.955778 c 0,-5.110168 -1.83791,-6.458187 \
-6.70156,-4.915266 -2.08914,0.662749 -4.58594,1.603572 -5.54844,2.090717 \
-1.2847,0.650219 -1.75,0.484637 -1.75,-0.622755 0,-1.70633 -0.86039,-1.882848 \
-2.89572,-0.594086 -0.79074,0.500697 -1.12079,1.600192 -0.76145,2.536625 \
0.36727,0.957099 0.22379,1.39918 -0.34085,1.050211 -0.53631,-0.331458 \
-2.64335,-0.142027 -4.68232,0.420958 -4.94241,1.364666 -5.54295,0.486888 \
-0.9732,-1.422475 3.65947,-1.529025 4.52855,-2.840885 2.65084,-4.001378 \
-0.6647,-0.410807 -0.64525,-1.287627 0.0577,-2.601116 1.01405,-1.894779 \
0.82835,-1.950758 -4.2473,-1.28034 -2.91924,0.385589 -6.75576,1.304534 \
-8.52559,2.042099 C 509.51228,29.396537 506.86968,30 505.40967,30 c -5.14294,0 \
-0.55498,-2.884247 5.71666,-3.593802 4.03138,-0.4561 6.35253,-1.251773 \
7.2059,-2.470141 1.36809,-1.953213 8.87866,-4.673825 20.66777,-7.486643 \
7.19525,-1.716749 11.01107,-1.927946 49,-2.71205 11.04206,-0.227912 21.50595,1.281341 \
30.5,4.399149 1.65,0.571976 4.8,1.469 7,1.993387 2.2,0.524387 7.6,2.6581 12,4.741585 \
4.4,2.083485 10.03769,4.710396 12.5282,5.837579 6.96564,3.152588 20.8148,14.067772 \
24.68602,19.456226 1.91036,2.65909 3.84662,4.83471 4.30279,4.83471 0.91436,0 \
7.75964,10.145042 13.15745,19.5 C 696.11124,81.322828 698,86.23452 698,89.649223 \
698,91.077731 698.59166,92 699.50808,92 c 1.14147,0 1.4675,1.07267 1.34117,4.4126 \
-0.11176,2.954613 0.38119,4.9607 1.49192,6.07143 2.0466,2.0466 2.13191,3.51597 \
0.20414,3.51597 -1.30885,0 -3.32728,6.12001 -2.73428,8.29051 0.11879,0.43478 \
-0.3526,1.78478 -1.04753,3 -0.69492,1.21522 -1.2635,4.45949 -1.2635,7.20949 0,4.46323 \
-0.24811,5.03517 -2.31115,5.32756 -1.27113,0.18016 -2.55678,0.96766 -2.85699,1.75 \
-0.30021,0.78234 -0.92038,1.42244 -1.37815,1.42244 -0.45777,0 -0.14475,-2.01788 \
0.6956,-4.48417 1.92467,-5.64859 1.393,-7.75603 -1.19435,-4.73422 -1.04469,1.22011 \
-2.6605,2.21839 -3.59069,2.21839 -0.93019,0 -3.07809,1.88581 -4.77312,4.19069 \
-2.74901,3.73808 -2.93505,4.41311 -1.72255,6.25 1.44961,2.19609 8.6314,3.55491 \
8.6314,1.6331 0,-0.57582 1.52904,-1.68583 3.39787,-2.46667 1.86883,-0.78085 \
3.78133,-2.10492 4.25,-2.94239 0.46867,-0.83746 1.30213,-1.54173 1.85213,-1.56503 \
0.55,-0.0233 1.83192,-1.51777 2.84871,-3.32103 l 1.84871,-3.27867 -0.60041,4.902 c \
-0.72566,5.92454 -4.21292,15.94548 -7.03572,20.21773 -8.81625,13.34322 \
-11.74907,17.27329 -13.98209,18.73642 -2.49615,1.63554 -2.55559,1.62046 \
-2.32048,-0.58881 z m 3.99128,-9.57433 c 0.9625,-0.82664 1.75,-2.29644 1.75,-3.26621 \
0,-3.28647 1.23279,-4.99722 4.62129,-6.41303 2.2812,-0.95315 3.37871,-2.07795 \
3.37871,-3.46274 0,-2.3991 -2.21321,-2.70398 -4,-0.55103 -0.68469,0.825 -2.48743,1.5 \
-4.00608,1.5 -3.45688,0 -9.99392,6.83745 -9.99392,10.45319 0,4.32134 4.21038,5.20925 \
8.25,1.73982 z M 678.5,142 c -0.33992,-0.55 -0.81648,-1 -1.05902,-1 -0.24254,0 \
-0.44098,0.45 -0.44098,1 0,0.55 0.47656,1 1.05902,1 0.58246,0 0.7809,-0.45 0.44098,-1 \
z m -21,-7 c 1.95846,-1.1 4.22215,-2 5.03042,-2 0.80827,0 1.46958,-0.45 1.46958,-1 \
0,-0.55 0.9,-1 2,-1 1.1,0 2,-0.45 2,-1 0,-0.55 1.0125,-1.01431 2.25,-1.0318 \
3.70057,-0.0523 5.75,-2.3191 5.75,-6.35983 0,-4.08077 -2.16102,-5.73824 \
-4.88592,-3.74741 -0.88775,0.64858 -3.07658,1.85124 -4.86408,2.67256 -1.7875,0.82133 \
-3.25,1.93728 -3.25,2.4799 0,0.54262 -0.86278,0.98658 -1.91729,0.98658 -1.35398,0 \
-2.42743,1.33577 -3.65359,4.54642 -1.20887,3.16538 -2.05415,4.22855 -2.7827,3.5 C \
652.93219,131.33219 652,131.84421 652,134.5 c 0,3.02254 0.86829,3.10148 5.5,0.5 z m \
1.57895,-4.41667 c -0.0434,-1.05416 0.19293,-1.64479 0.52522,-1.3125 0.33229,0.33229 \
0.36781,1.19479 0.0789,1.91667 -0.31922,0.79773 -0.55618,0.56078 -0.60416,-0.60417 z \
m -1.7339,-13.50885 c -0.14411,-2.98762 -0.0336,-3.10262 1.57874,-1.64345 \
2.11456,1.91365 5.07621,2.05559 5.07621,0.24328 0,-0.72912 -1.16127,-2.41662 \
-2.58059,-3.75 -2.41678,-2.27042 -2.66182,-2.31322 -3.86024,-0.67431 -0.70381,0.9625 \
-1.98005,1.75 -2.83608,1.75 -2.25399,0 -2.65741,2.08682 -1.02722,5.31378 \
1.82052,3.60373 3.84954,2.91465 3.64918,-1.2393 z m 31.21382,1.5033 c \
1.57632,-1.15494 1.90408,-2.49187 1.74398,-7.11382 -0.10843,-3.13038 \
-0.42653,-5.92097 -0.70687,-6.20132 -1.24063,-1.24063 -3.46132,0.94846 \
-6.12697,6.03978 -2.44396,4.66791 -2.67838,5.74037 -1.55153,7.09815 1.64234,1.9789 \
4.09309,2.04429 6.64139,0.17721 z m -15.59144,-8.05765 C 673.53534,110.16914 \
674,108.15667 674,106.04797 c 0,-4.6446 -1.86169,-5.68797 -6.17197,-3.45904 \
-2.65978,1.37543 -2.96824,1.96002 -2.43666,4.61792 0.33475,1.67373 0.60863,3.63049 \
0.60863,4.34834 0,0.97157 0.75853,1.08766 2.96743,0.45415 1.63209,-0.46807 \
3.43209,-1.13822 4,-1.48921 z m -20.225,-2.603 c 0.13333,-0.77942 -0.62625,-2.53919 \
-1.68796,-3.9106 -1.75745,-2.2701 -1.99251,-2.33158 -2.62388,-0.68623 -0.87696,2.2853 \
1.19026,6.9726 2.83376,6.42538 0.67961,-0.22628 1.34474,-1.04912 1.47808,-1.82855 z m \
3.46972,-5.27202 c -0.3089,-2.83853 0.65575,-3.377209 2.58785,-1.44511 \
0.93333,0.93333 1.2,0.74193 1.2,-0.86133 0,-1.601072 0.50455,-1.964875 \
2.25971,-1.629355 1.6545,0.316277 2.87697,-0.402906 4.56436,-2.685228 \
2.93978,-3.976259 2.51173,-6.426291 -1.19705,-6.851551 -3.68081,-0.422054 \
-8.94693,4.244148 -8.03444,7.119158 0.49566,1.561688 0.23696,1.788979 \
-1.43296,1.258969 -2.89727,-0.91956 -4.58567,2.420148 -2.99191,5.918087 \
1.47386,3.23476 3.42854,2.70594 3.04444,-0.82364 z m 38.20606,1.7479 c \
0.86999,-0.33384 1.58179,-1.45884 1.58179,-2.5 0,-2.327556 -0.79631,-2.387324 \
-3.17126,-0.23802 -3.00251,2.71724 -2.15607,4.17532 1.58947,2.73802 z m \
-9.63303,-4.11689 C 689.3633,97.36908 693,93.595997 693,91.753247 c 0,-2.370459 \
-1.68131,-2.217238 -3.01499,0.274761 C 688.48008,94.839999 687,93.557257 \
687,89.440983 687,87.548442 686.63828,86 686.19617,86 c -1.3911,0 -7.02927,6.382614 \
-8.06396,9.128683 -0.74401,1.974611 -0.62075,3.156511 0.49537,4.75 1.80017,2.570107 \
2.64967,2.624937 6.1576,0.397437 z M 645,96.11501 c 0,-1.261629 -4.90691,-4.312706 \
-6.22782,-3.872405 -0.62142,0.207141 -0.074,1.3299 1.24954,2.563007 C \
642.41871,97.038748 645,97.717684 645,96.11501 z M 628.5,93 c -0.33992,-0.55 \
+       style="fill:#784727" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3788"
+       d="m 557.5,220.3475 c -10.55768,-0.83482 -22.24808,-2.70495 -24.5,-3.9193 \
-2.47699,-1.33571 -2.46515,-1.34849 1.28518,-1.38816 2.08185,-0.022 4.94029,0.71681 \
6.35208,1.64185 1.92089,1.25862 4.93108,1.69904 11.96101,1.75 5.16677,0.0375 \
9.39583,0.37572 9.39793,0.75169 0.002,0.37597 1.2413,0.87104 2.7538,1.10017 \
2.67579,0.40534 2.66904,0.41609 -0.25,0.39831 -1.65,-0.01 -4.8,-0.1606 -7,-0.33456 z \
m 6,-3.3475 c 0.33992,-0.55 1.74303,-1 3.11803,-1 1.41203,0 2.23104,0.43519 1.88197,1 \
-0.33992,0.55 -1.74303,1 -3.11803,1 -1.41203,0 -2.23104,-0.43519 -1.88197,-1 z m \
40.5,-0.90218 c 0.825,-0.46275 3.3,-1.11071 5.5,-1.43991 l 4,-0.59855 -3.5,1.39424 c \
-3.97319,1.58274 -8.54914,2.07406 -6,0.64422 z m -86.5,-1.7096 C 510.77812,212.7692 \
493,204.4893 493,202.9777 c 0,-1.42052 0.67652,-1.24314 5.32193,1.39538 \
2.29794,1.30519 6.65307,3.168 9.67807,4.13957 3.025,0.97157 7.60842,2.60369 \
10.18538,3.62692 2.57696,1.02324 5.5879,1.86043 6.69098,1.86043 1.10309,0 \
2.28372,0.45 2.62364,1 0.83686,1.35407 -2.74899,1.13469 -10,-0.61178 z M 617.5,212 c \
2.77822,-1.19384 4.73784,-1.19384 4,0 -0.33992,0.55 -1.82898,0.96837 -3.30902,0.92971 \
C 615.78816,212.86696 615.71417,212.7674 617.5,212 z M 561,211.10699 c 0,-1.36875 \
2.32661,-1.95837 5.40533,-1.36984 2.00759,0.38378 2.40622,0.76716 1.43662,1.38169 C \
566.06054,212.2479 561,212.23914 561,211.10699 z m -16.31228,-0.91432 c \
-3.70906,-0.23688 -4.74069,-0.66132 -4.5,-1.8514 0.49915,-2.46805 8.39213,-6.34127 \
12.92245,-6.34127 6.07023,0 4.49691,2.47691 -1.64356,2.58749 -5.55287,0.10001 \
-7.2364,2.10855 -2.55255,3.04532 3.15991,0.63198 4.06749,1.87289 1.83594,2.5102 \
-0.6875,0.19635 -3.41553,0.21869 -6.06228,0.0497 z M 589,210.01905 c 0,-1.88395 \
5.07906,-2.36856 6.79892,-0.6487 1.5062,1.5062 1.31041,1.62965 -2.58463,1.62965 C \
590.89643,211 589,210.55857 589,210.01905 z m -65.75,-5.10424 c -2.7632,-1.04432 \
-2.82675,-1.53072 -0.28677,-2.19494 1.07978,-0.28237 2.45163,0.0751 3.04856,0.79434 \
1.44392,1.73982 0.0313,2.45622 -2.76179,1.4006 z M 626.5,200 c 1.8932,-2.09196 \
4.5,-2.69163 4.5,-1.03518 0,1.09604 -3.25146,3.03518 -5.08925,3.03518 -0.76455,0 \
-0.54436,-0.74738 0.58925,-2 z m -129,0 c -0.33992,-0.55 -0.16803,-1 0.38197,-1 \
0.55,0 1.27811,0.45 1.61803,1 0.33992,0.55 0.16803,1 -0.38197,1 -0.55,0 \
-1.27811,-0.45 -1.61803,-1 z m 9.95888,-2.06653 c -0.36253,-0.58659 -0.50159,-1.14909 \
-0.30902,-1.25 0.19258,-0.10091 1.7622,-0.96662 3.48806,-1.9238 l 3.13792,-1.74033 \
0.43889,2.99033 c 0.41094,2.79992 0.2308,2.99033 -2.82891,2.99033 -1.79728,0 \
-3.5644,-0.47994 -3.92694,-1.06653 z m 19.08383,-6.86437 c -0.31644,-0.512 \
-0.11799,-1.21356 0.44098,-1.55902 1.19337,-0.73755 3.01631,0.19857 3.01631,1.54894 \
0,1.2168 -2.70662,1.22469 -3.45729,0.0101 z M 546,189 c 0,-0.55 0.45,-1 1,-1 0.55,0 \
1,0.45 1,1 0,0.55 -0.45,1 -1,1 -0.55,0 -1,-0.45 -1,-1 z m 10.71025,-1 c \
0.28947,-1.10692 1.36402,-2 2.40638,-2 2.15931,0 2.41906,1.06431 0.68337,2.8 \
-1.89766,1.89766 -3.67487,1.43751 -3.08975,-0.8 z M 485,187 c -1.2819,-0.82843 \
-1.24555,-0.9716 0.25,-0.98469 0.9625,-0.008 1.75,0.43469 1.75,0.98469 0,1.21961 \
-0.11279,1.21961 -2,0 z m 10.55703,-0.93699 C 493.87609,184.2056 494.12745,182 \
496.02006,182 c 1.09197,0 4.97994,4.05085 4.97994,5.18856 0,1.56063 -3.70546,0.79438 \
-5.44297,-1.12555 z M 513,180.5 c -1.01957,-1.22851 -0.95124,-1.5 0.37756,-1.5 \
0.89234,0 1.62244,0.675 1.62244,1.5 0,0.825 -0.1699,1.5 -0.37756,1.5 -0.20765,0 \
-0.93775,-0.675 -1.62244,-1.5 z m 138,0.059 c 0,-0.24254 0.45,-0.7191 1,-1.05902 \
0.55,-0.33992 1,-0.14148 1,0.44098 0,0.58246 -0.45,1.05902 -1,1.05902 -0.55,0 \
-1,-0.19844 -1,-0.44098 z m -189.92768,-5.45746 c -2.65786,-3.73261 \
-6.41549,-12.09173 -5.73944,-12.76778 0.275,-0.275 1.42106,1.58219 2.54679,4.1271 \
1.12573,2.5449 3.01242,5.98321 4.19265,7.64068 1.18022,1.65748 1.92086,3.23859 \
1.64586,3.51359 -0.275,0.275 -1.46564,-0.85611 -2.64586,-2.51359 z M 489,173 c \
0,-0.55 0.45,-1 1,-1 0.55,0 1,0.45 1,1 0,0.55 -0.45,1 -1,1 -0.55,0 -1,-0.45 -1,-1 z m \
-18,-2.00847 c 0,-1.75815 0.24927,-1.85281 2,-0.75946 1.1,0.68696 2,1.59078 2,2.00848 \
0,0.4177 -0.9,0.75945 -2,0.75945 -1.33615,0 -2,-0.66667 -2,-2.00847 z M 518,166 c \
0,-0.55 0.19844,-1 0.44098,-1 0.24254,0 0.7191,0.45 1.05902,1 0.33992,0.55 0.14148,1 \
-0.44098,1 C 518.47656,167 518,166.55 518,166 z m 161.8985,-1.81937 -2.60151,-1.52431 \
4.93275,-2.4581 c 4.90386,-2.44369 7.20521,-5.2199 4.95017,-5.97158 -2.15812,-0.71938 \
-1.22219,-2.16442 2.69676,-4.16372 3.92689,-2.00335 5.12333,-3.67184 5.12333,-7.14471 \
0,-2.44376 -1.58774,-2.42302 -6.26118,0.0818 -2.05237,1.1 -4.56346,2 -5.58021,2 \
-1.01675,0 -2.66312,0.9 -3.65861,2 -0.99549,1.1 -2.44179,2 -3.214,2 -0.77222,0 \
-1.15486,0.40316 -0.85032,0.89592 0.30454,0.49276 -0.0783,2.11408 -0.85071,3.60294 \
-1.36217,2.62559 -1.43719,2.64579 -2.49363,0.6718 -1.61523,-3.01807 -4.27684,-3.43647 \
-10.91629,-1.71602 -6.7454,1.74791 -9.54809,1.95796 -8.74297,0.65526 0.30256,-0.48955 \
3.81662,-1.68519 7.80901,-2.65696 7.28539,-1.77331 11.56595,-3.80034 13.0623,-6.18554 \
0.52883,-0.84297 1.38321,-0.98279 2.5,-0.40914 2.34367,1.20385 4.19661,0.34657 \
4.19661,-1.9416 0,-1.2291 -0.69473,-1.91667 -1.93664,-1.91667 -1.45282,0 \
-2.01493,-0.80989 -2.25,-3.24181 -0.39849,-4.12251 -2.51461,-4.58893 -8.358,-1.84221 \
-2.43846,1.14621 -4.87809,2.08402 -5.42141,2.08402 -0.54331,0 -1.73251,1.13651 \
-2.64266,2.52557 -1.25614,1.91712 -2.16513,2.35765 -3.77305,1.82858 -1.16503,-0.38334 \
-2.91026,-0.64748 -3.87828,-0.58696 -3.75692,0.23486 2.90148,-4.09025 8.0314,-5.21697 \
1.76314,-0.38725 3.45715,-1.11094 3.76447,-1.6082 0.30733,-0.49726 3.46249,-2.24811 \
7.01147,-3.89077 3.54899,-1.64267 6.4527,-3.4512 6.4527,-4.01896 0,-0.56776 \
1.125,-1.03229 2.5,-1.03229 1.63572,0 2.5,-0.55889 2.5,-1.61663 0,-1.1387 \
-0.6075,-1.45777 -2.05489,-1.07927 -1.52678,0.39926 -2.29392,-0.0914 \
-2.98499,-1.90899 -1.6869,-4.43689 -2.79937,-4.21491 -16.00554,3.19367 \
-3.15976,1.77261 -5.95458,4.6238 -5.95458,6.07468 0,1.08685 -0.38025,1.11602 \
-1.93021,0.14805 -1.63994,-1.02416 -2.23648,-0.83745 -3.96674,1.24152 \
-1.12008,1.34584 -2.05148,3.00947 -2.06978,3.69697 C 646.99474,136.19746 \
645,136.48094 645,135.03896 645,133.90253 640.9816,130 639.81144,130 639.36515,130 \
639,130.59706 639,131.32681 c 0,0.90685 -0.95421,1.18676 -3.01473,0.88434 \
-2.61227,-0.3834 -3.16348,-1.03324 -4.12905,-4.86787 -1.83052,-7.26964 \
-7.87862,-9.0805 -12.1788,-3.64644 -2.10093,2.65491 -6.77539,3.09496 -8.66685,0.81589 \
-1.81323,-2.1848 -0.48682,-4.46748 3.00134,-5.16511 1.68252,-0.33651 3.57541,-1.56488 \
4.20644,-2.72972 C 620.82522,111.80571 617.76901,104 613.278,104 c -1.67264,0 \
-2.32282,-0.44081 -1.97751,-1.34068 0.90814,-2.36657 -0.73501,-3.555833 \
-7.20196,-5.212589 -4.49954,-1.15273 -6.63425,-1.311007 -7.39683,-0.548434 \
-0.58956,0.589561 -1.27031,3.814503 -1.51277,7.166533 -0.26666,3.68658 \
-0.94808,6.28925 -1.72463,6.58724 -2.00071,0.76775 -7.66038,-2.52901 \
-6.77195,-3.94466 0.41675,-0.66407 0.62554,-2.01048 0.46397,-2.99201 \
-0.16318,-0.99132 1.12151,-3.10665 2.89012,-4.758779 2.56547,-2.396514 \
2.95317,-3.252161 1.9961,-4.405368 -0.65328,-0.787151 -2.1676,-1.571156 \
-3.36516,-1.742234 -1.7074,-0.243911 -2.1346,-0.920093 -1.97917,-3.132699 \
0.16681,-2.374524 -0.37536,-3.061304 -3.42141,-4.334027 -2.76833,-1.156682 \
-3.28533,-1.723964 -2.19822,-2.412022 2.5127,-1.590342 4.93506,-0.994441 \
6.06833,1.492812 1.46075,3.205992 5.50162,4.204968 7.97068,1.970496 2.40585,-2.177262 \
2.36655,-2.864623 -0.30615,-5.354624 C 593.10939,79.453257 592.97102,79 594.18899,79 \
c 0.86137,0 2.13727,-0.688192 2.83534,-1.529315 1.05173,-1.26726 0.88518,-1.938099 \
-0.97195,-3.914924 -1.49781,-1.59435 -2.03015,-3.050438 -1.60498,-4.390034 \
0.47224,-1.487889 0.0841,-2.179656 -1.50627,-2.684413 -1.17835,-0.373993 \
-2.61965,-0.202796 -3.20288,0.380438 -1.79429,1.794286 -1.74554,6.034787 \
0.0811,7.057065 1.4533,0.813328 1.30983,1.081523 -1.0607,1.982812 -3.99083,1.517341 \
-7.84807,-0.492284 -4.69051,-2.443763 0.5875,-0.363092 0.84766,-1.234815 \
0.57815,-1.937162 -0.26952,-0.702346 0.003,-1.770481 0.60661,-2.373632 \
0.79552,-0.795518 0.16476,-1.488463 -2.29713,-2.523608 -3.22666,-1.356712 \
-3.2722,-1.444117 -0.92478,-1.775217 1.87225,-0.264078 2.5483,-1.042344 \
2.79716,-3.220069 0.49106,-4.297204 -1.02283,-5.167574 -5.71958,-3.288307 \
-2.2121,0.885105 -4.25237,1.236524 -4.53394,0.780933 C 573.91282,58.049927 \
578.41227,56 581.42461,56 c 3.69736,0 5.08646,-2.428149 3.79549,-6.634513 \
-0.7923,-2.581542 -0.78755,-4.220716 0.0173,-5.987246 0.84288,-1.849925 \
0.80459,-2.725363 -0.15991,-3.655367 -1.0064,-0.970411 -1.5834,-0.758361 \
-2.79485,1.027126 -1.79958,2.65231 -7.62669,3.310066 -6.6443,0.75 0.31659,-0.825 \
1.16794,-1.5 1.89189,-1.5 2.34479,0 7.30505,-4.973669 7.96729,-7.988836 \
1.11152,-5.060746 -0.47629,-6.421881 -7.14204,-6.122416 -4.12804,0.185456 \
-6.46456,0.830702 -7.91996,2.187158 -2.46757,2.299803 -3.78214,2.416329 \
-5.39093,0.477862 -0.92554,-1.115216 -3.07073,-1.349371 -9.37244,-1.023037 \
-12.7445,0.659972 -14.9171,0.538808 -17.20371,-0.959433 -1.17408,-0.769284 \
-4.24607,-1.71532 -6.82667,-2.102304 -3.78791,-0.568033 -4.47588,-0.963988 \
-3.57046,-2.054948 0.61683,-0.743238 3.76954,-1.872309 7.00601,-2.509046 \
3.23648,-0.636738 5.67539,-1.496058 5.41981,-1.909599 -1.33727,-2.163743 \
26.31095,-4.239322 37.90286,-2.845405 5.40402,0.64983 8.23175,0.618231 8.95,-0.100012 \
2.18148,-2.181486 19.21855,0.04406 31.14998,4.069105 1.65,0.556625 5.25,1.627501 \
8,2.379725 6.00109,1.641514 14.19053,5.191436 15.0008,6.502483 0.32101,0.519394 \
2.27998,1.40113 4.35329,1.959412 2.0733,0.558283 6.2168,2.813753 9.20777,5.012156 \
2.99098,2.198404 7.76245,5.568252 10.60327,7.488552 2.84082,1.9203 6.19013,4.964558 \
7.44292,6.765019 1.25278,1.80046 4.33693,5.558487 6.85366,8.351171 C \
685.65169,63.891479 691,73.756547 691,77.937943 c 0,2.055389 0.83812,3.92682 \
2.40048,5.360023 1.92663,1.767351 2.5114,3.534487 2.96238,8.952034 0.49229,5.913958 \
0.3498,6.755281 -1.15049,6.792637 -2.04821,0.051 -9.24629,6.337903 -11.716,10.232933 \
-1.30291,2.05485 -2.27573,2.61185 -3.74645,2.14506 -1.41501,-0.44911 \
-1.84462,-0.24069 -1.49323,0.72443 0.27132,0.74522 1.03814,1.22958 1.70404,1.07636 \
0.84519,-0.19447 1.01451,0.61482 0.56082,2.68047 -0.51737,2.35555 -0.23311,3.18211 \
1.39375,4.05278 3.06283,1.63918 6.51239,0.31666 10.54643,-4.04336 1.99038,-2.15122 \
4.27574,-3.91131 5.07858,-3.91131 2.55653,0 1.57044,3.76416 -1.61738,6.17394 \
-1.69239,1.27933 -4.18784,3.33856 -5.54545,4.57606 -1.35762,1.2375 -3.10232,2.25 \
-3.87713,2.25 -0.7748,0 -2.9933,2.07524 -4.92998,4.61164 -3.00686,3.93796 \
-3.35689,4.924 -2.3961,6.75 0.61882,1.1761 1.62027,2.46897 2.22543,2.87305 \
1.91401,1.27801 6.32397,0.8277 9.64307,-0.98469 2.42344,-1.32331 3.3169,-1.44522 \
3.66438,-0.5 0.25273,0.6875 1.09702,1.25 1.87618,1.25 3.68218,0 0.46498,7.83288 \
-7.66829,18.66992 -6.5212,8.68904 -5.97364,8.29366 -9.01654,6.51071 z m \
-29.08514,-44.00764 c 0.32152,-3.25564 -1.39496,-4.42691 -2.45173,-1.67299 \
-0.31659,0.825 -1.20246,1.5 -1.96862,1.5 -1.88963,0 -1.75158,1.00774 0.35699,2.6059 \
2.51351,1.90509 3.70542,1.19144 4.06336,-2.43291 z M 659.27287,120 c 1.39842,-1.1 \
3.04823,-2 3.66624,-2 0.61801,0 1.38268,-0.675 1.69926,-1.5 0.31659,-0.825 \
1.20246,-1.5 1.96862,-1.5 0.76615,0 1.39301,-0.44143 1.39301,-0.98095 0,-0.53952 \
1.1355,-1.26594 2.52333,-1.61426 1.38783,-0.34832 3.08005,-1.42815 3.76048,-2.3996 \
0.68044,-0.97146 2.12727,-1.93771 3.21519,-2.14722 1.08792,-0.20952 2.14024,-1.22323 \
2.3385,-2.25271 0.30113,-1.56363 -0.0674,-1.76438 -2.23851,-1.21946 -1.92405,0.48291 \
-2.59899,0.26696 -2.59899,-0.83156 0,-3.802904 -9.13364,-2.97551 -10.64551,0.96434 C \
664.04184,105.33336 663.20731,106 662.5,106 c -0.70731,0 -1.54504,0.675 -1.86163,1.5 \
-0.31658,0.825 -1.05795,1.5 -1.64748,1.5 -2.0034,0 -6.99089,4.36828 -6.99089,6.12296 \
0,2.99428 1.88597,6.87704 3.34039,6.87704 0.76444,0 2.53406,-0.9 3.93248,-2 z M \
641.5,116 c 0.33992,-0.55 -0.0835,-1 -0.94098,-1 -0.85746,0 -1.55902,0.45 -1.55902,1 \
0,0.55 0.42344,1 0.94098,1 0.51754,0 1.2191,-0.45 1.55902,-1 z m -4.5,-1 c 0,-0.55 \
-0.45,-1 -1,-1 -0.55,0 -1,0.45 -1,1 0,0.55 0.45,1 1,1 0.55,0 1,-0.45 1,-1 z m \
8.41367,-5.49141 c -0.89784,-1.37028 -2.09443,-2.20589 -2.65909,-1.85691 \
-0.59759,0.36933 -0.0295,1.40124 1.35939,2.46917 3.12197,2.40056 3.23797,2.34592 \
1.2997,-0.61226 z M 653.71025,109 c 0.28766,-1.1 0.97989,-2 1.5383,-2 0.55841,0 \
2.50071,-1.575 4.31622,-3.5 1.81551,-1.925 3.66864,-3.500013 4.11808,-3.500029 \
1.2654,-4.6e-5 6.31715,-6.709298 6.31715,-8.389838 0,-2.055662 -3.86652,-4.59437 \
-5.8648,-3.850759 -2.73141,1.016423 -8.13514,5.659899 -8.13517,6.990626 -2e-5,0.6875 \
-0.41439,1.25 -0.92082,1.25 -0.50644,0 -2.7607,1.821613 -5.00948,4.04803 \
-3.61197,3.57605 -3.95552,4.30476 -2.94653,6.25 2.66088,5.12988 5.63329,6.34915 \
6.58705,2.70197 z m 33.89643,-9.61459 c 7.25827,-4.81777 8.63041,-7.311335 \
6.00153,-10.906534 -1.19172,-1.629774 -1.62644,-1.708639 -3.02416,-0.548628 \
-2.19988,1.825738 -2.85399,0.909956 -1.63678,-2.29156 1.63161,-4.291468 \
-1.37816,-3.305486 -6.44492,2.111312 -6.01521,6.430768 -7.23574,9.481765 \
-5.09817,12.7441 2.18879,3.34052 3.75607,3.17021 10.2025,-1.10869 z m \
-52.31955,-0.498278 c -1.6878,-1.687805 -3.69343,-0.08162 -2.17807,1.744278 \
0.83681,1.0083 1.52538,1.13415 2.24856,0.41097 0.72317,-0.72317 0.70159,-1.383171 \
-0.0705,-2.155248 z M 648.25,95.546205 C 650.3125,93.651873 652,91.629023 \
652,91.050983 652,90.472942 652.64468,90 653.43261,90 c 0.78794,0 1.69974,-0.7875 \
2.02623,-1.75 0.91245,-2.689941 5.2686,-7.25 6.92581,-7.25 1.52805,0 \
3.25275,-3.695934 2.21088,-4.737801 -0.32289,-0.322894 -1.64798,-0.103701 \
-2.94464,0.487096 -1.93127,0.879945 -2.65354,0.728498 -3.99444,-0.837559 C \
656.75617,74.860281 655.29714,74 654.41416,74 651.8401,74 647,77.961367 647,80.068094 \
647,81.130642 646.55,82 646,82 c -0.55,0 -1,0.675 -1,1.5 0,0.833333 -0.88889,1.5 \
-2,1.5 -1.99934,0 -2.40309,0.865414 -2.03378,4.359311 0.10809,1.022621 \
-0.19907,1.614813 -0.68259,1.315983 -1.5949,-0.985702 -3.35791,0.942745 \
-3.57251,3.90775 -0.17279,2.387336 0.181,2.916956 1.94852,2.916956 1.18781,0 \
2.50031,0.3375 2.91667,0.75 1.38979,1.376897 2.89446,0.767293 6.67369,-2.703795 z M \
613,96.468615 c 0,-1.612079 -2.66157,-3.140377 -3.68563,-2.11632 C \
608.60214,95.064525 610.86193,98 612.12244,98 612.6051,98 613,97.310877 613,96.468615 \
z m 17.30698,-1.108931 C 631.06545,94.601212 627.93534,89 626.75301,89 c -1.76243,0 \
-1.90084,3.179168 -0.2193,5.037245 1.87489,2.071731 2.72577,2.369943 3.77327,1.322439 \
z M 615.41655,89.643128 C 614.77363,87.967711 613,87.348895 613,88.8 c 0,0.972866 \
2.23095,3.302381 2.70687,2.826461 0.18711,-0.187112 0.0565,-1.079612 \
-0.29032,-1.983333 z m -9.74452,-1.585193 C 606.94581,84.683311 606.56335,84 \
603.40072,84 c -2.69433,0 -4.14198,3.401911 -2.36089,5.547988 1.85733,2.237946 \
3.41405,1.737191 4.6322,-1.490053 z M 636,87.535184 c 0,-0.805649 0.94485,-1.970482 \
2.09966,-2.588518 1.50195,-0.803822 1.96843,-1.81017 1.63867,-3.535184 C \
639.48479,80.085167 639.69708,79 640.2101,79 c 0.51302,0 1.56758,-0.634821 \
2.34347,-1.410714 0.77589,-0.775893 1.89256,-1.571329 2.48148,-1.767635 \
0.58892,-0.196306 1.45828,-2.075153 1.93192,-4.175216 0.7133,-3.162685 \
0.53252,-4.146947 -1.0529,-5.732365 C 644.86133,64.861331 643.40344,64 642.67431,64 c \
-1.80227,0 -5.28059,3.941346 -6.17766,7 -0.40326,1.375 -1.24248,3.175 -1.86493,4 \
-2.06369,2.735252 -3.36933,5.528862 -4.0656,8.698974 -0.53694,2.444653 \
-0.29015,3.364864 1.12284,4.186768 C 634.26111,89.381903 636,89.240503 636,87.535184 \
z m -15,-1.674941 c 0,-1.176867 -0.7875,-2.729485 -1.75,-3.450264 -1.60657,-1.203097 \
-1.57539,-1.266606 0.38039,-0.77489 1.4934,0.375466 2.91365,-0.3091 4.75,-2.289519 C \
625.82117,77.791747 627,76.008438 627,75.382663 c 0,-0.625775 0.67005,-1.693862 \
1.48899,-2.373525 0.81894,-0.679663 1.25273,-1.618024 0.96397,-2.085246 \
-0.28876,-0.467222 0.64309,-2.699885 2.07076,-4.961474 3.08472,-4.886512 \
2.91108,-7.566531 -0.66247,-10.224281 l -2.63875,-1.962516 -3.11743,2.30482 c \
-1.79505,1.327134 -3.54195,3.813827 -4.11819,5.862189 -0.85832,3.051057 \
-0.72116,3.788775 0.96366,5.183228 1.08043,0.894222 1.6498,1.940473 1.26527,2.325003 \
+       style="fill:#652710" />
+  </g>
+</svg>
diff --git a/src/activities/share/resource/images/boy.svg \
b/src/activities/share/resource/images/boy.svg new file mode 100644
index 0000000..f01842a
--- /dev/null
+++ b/src/activities/share/resource/images/boy.svg
@@ -0,0 +1,183 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="210mm"
+   height="297mm"
+   viewBox="0 0 744.09448819 1052.3622047"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="boy.svg">
+  <defs
+     id="defs4" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.7"
+     inkscape:cx="-154.04284"
+     inkscape:cy="608.75021"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1920"
+     inkscape:window-height="1176"
+     inkscape:window-x="1680"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <g
+       id="g3498"
+       transform="matrix(1.2091367,0,0,1.2091367,-461.66557,40.043467)">
+      <ellipse
+         transform="matrix(-0.17917487,0.98381724,-0.98381724,-0.17917487,0,0)"
+         ry="31.818182"
+         rx="30.681818"
+         cy="-1009.4232"
+         cx="388.92398"
+         id="ellipse10648"
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <ellipse
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="ellipse10650"
+         cx="474.79758"
+         cy="-537.90649"
+         rx="30.681818"
+         ry="31.818182"
+         transform="matrix(-0.17917487,0.98381724,-0.98381724,-0.17917487,0,0)" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path10658"
+         d="m 565.97311,390.55974 c -54.26961,42.95093 -99.77167,88.82435 \
-131.21267,139.38482 l 47.0717,44.14441 C 515.04687,505.49481 564.09441,477.56689 \
615.902,437.5613 Z" +         \
style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap \
:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" \
/> +      <path
+         style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:5;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         d="m 807.54645,393.41688 c 54.26961,42.95093 99.7717,88.82435 \
131.21269,139.38482 L 891.6874,576.94611 C 858.47269,508.35195 809.42515,480.42403 \
757.61756,440.41844 Z" +         id="path10660"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+      <rect
+         style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:5;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         id="rect10662"
+         width="254.28572"
+         height="260"
+         x="561.04547"
+         y="369.46725"
+         ry="36.562519" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000080;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         d="m 597.60772,369.46749 c -20.25564,0 -36.5625,16.30686 -36.5625,36.5625 \
l 0,33.88281 a 145.71429,61.42857 0 0 0 120,26.69726 145.71429,61.42857 0 0 0 \
134.28515,-37.59179 l 0,-22.98828 c 0,-20.25564 -16.30686,-36.5625 -36.5625,-36.5625 \
l -181.16015,0 z" +         id="path10666" />
+      <circle
+         style="fill:#ffccaa;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="circle10668"
+         cx="683.90265"
+         cy="212.32439"
+         r="208.57143" />
+      <path
+         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         d="m 485.55537,142.57532 c 0,0 25.62326,44.7026 52.63298,41.17764 \
18.14081,-2.3675 34.28572,-42.85714 34.28572,-42.85714 0,0 28.22178,35.99772 \
48.57143,37.14285 22.17806,1.24802 57.14285,-34.28571 57.14285,-34.28571 0,0 \
21.3403,37.28498 40,40 25.72407,3.74289 68.57143,-37.14286 68.57143,-37.14286 0,0 \
32.36057,37.25989 54.28572,37.14286 11.62513,-0.062 28.57143,-20 28.57143,-20 l \
21.16426,16.57411 c 0.008,-114.60882 -47.17265,-205.92659 -206.87855,-202.2884 \
-112.77485,2.56907 -177.73369,66.4483 -198.34727,164.53665 z" +         \
id="path10670" +         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscscscsccsc" />
+      <ellipse
+         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="ellipse10672"
+         cx="566.75983"
+         cy="253.75298"
+         rx="11.428572"
+         ry="24.285715" />
+      <ellipse
+         ry="24.285715"
+         rx="11.428572"
+         cy="253.75298"
+         cx="775.33124"
+         id="ellipse10674"
+         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <path
+         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.94736838;st \
roke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
 +         id="path10676"
+         sodipodi:type="arc"
+         sodipodi:cx="681.04559"
+         sodipodi:cy="329.46725"
+         sodipodi:rx="46.240604"
+         sodipodi:ry="38.345867"
+         sodipodi:start="0"
+         sodipodi:end="3.1415927"
+         sodipodi:open="true"
+         d="m 727.2862,329.46725 a 46.240604,38.345867 0 0 1 -23.12031,33.2085 \
46.240604,38.345867 0 0 1 -46.2406,0 46.240604,38.345867 0 0 1 -23.1203,-33.2085" /> \
+      <circle +         r="27.272728"
+         cy="247.58412"
+         cx="479.35721"
+         id="path10694"
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <circle
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="circle10696"
+         cx="886.17535"
+         cy="247.58412"
+         r="27.272728" />
+      <rect
+         ry="0"
+         y="606.85272"
+         x="578.61835"
+         height="213.63637"
+         width="72.727272"
+         id="rect10698"
+         style="opacity:1;fill:#501616;fill-opacity:1;stroke:none;stroke-width:1;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" \
/> +      <path
+         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         d="m 652.82748,805.04257 c 0.86731,17.4697 -8.35078,25.8713 \
-48.58232,24.3193 -26.80808,-1.0342 -48.58236,-10.8881 -48.58231,-24.3193 \
-5e-5,-13.4312 21.751,-24.3193 48.58231,-24.3193 17.86831,0 47.04856,-6.5743 \
47.57496,4.0288 1.00736,20.2905 0,0 1.00736,20.2905 z" +         id="path10682"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ssssss" />
+      <rect
+         style="opacity:1;fill:#501616;fill-opacity:1;stroke:none;stroke-width:1;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         id="rect10704"
+         width="72.727272"
+         height="213.63637"
+         x="724.98938"
+         y="598.80933"
+         ry="0" />
+      <path
+         sodipodi:nodetypes="ssssss"
+         inkscape:connector-curvature="0"
+         id="path10706"
+         d="m 800.53451,802.21657 c 0.86731,17.4697 -8.35078,25.8713 \
-48.58232,24.3193 -26.80808,-1.0342 -48.58236,-10.8881 -48.58231,-24.3193 \
-5e-5,-13.4312 21.751,-24.3193 48.58231,-24.3193 17.86831,0 47.04856,-6.5743 \
47.57496,4.0288 1.00736,20.2905 0,0 1.00736,20.2905 z" +         \
style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <path
+         inkscape:connector-curvature="0"
+         id="rect10708"
+         d="m 560.76686,593.99232 c -1.6e-4,0.0406 -0.004,0.0804 -0.004,0.12109 l \
0,32.05274 c 0,16.93294 13.85223,30.56445 31.05688,30.56445 l 192.54665,0 c \
17.20464,0 31.05488,-13.63151 31.05488,-30.56445 l 0,-32.05274 c 0,-0.0407 \
-0.004,-0.0805 -0.004,-0.12109 l -254.65047,0 z" +         \
style="opacity:1;fill:#501616;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap \
:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" \
/> +    </g>
+  </g>
+</svg>
diff --git a/src/activities/share/resource/images/candy.svg \
b/src/activities/share/resource/images/candy.svg new file mode 100644
index 0000000..79e4dc3
--- /dev/null
+++ b/src/activities/share/resource/images/candy.svg
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" \
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" \
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" \
xmlns:ns1="http://sozi.baierouge.fr" xmlns:cc="http://creativecommons.org/ns#" \
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" \
xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="0 0 34.786 67.553" \
inkscape:version="0.91 r13725"> +  <g transform="translate(-110.08 -708.34)">
+    <path d="m143.14 770.77c0 4.8242-9.7614 6.133-9.7614-0.0435 \
0-17.952-0.0375-34.883 0-43.352 0.032-7.2182-0.85482-8.369-5.6105-8.369-7.2401 \
0-6.2949 7.3283-6.2949 9.3217 0 4.9429-0.64376 7.9806-5.8246 \
7.9806s-4.5515-6.5135-4.5515-8.7939c0-8.5335 5.5543-18.18 17.328-18.18 6.9292 0 \
12.283 4.3939 13.98 8.2494 2.7662 6.2831 0.73476 28.332 0.73476 53.187z" \
fill="#FFF"/> +    <g transform="matrix(.13469 0 0 .13439 87.903 702.53)" \
fill="#cd0909"> +      <path style="color:#000000" d="m176.56 184.96c20.329 21.95 \
41.984 33.293 67.617 35.355-3.6828 8.3969-7.3657 16.794-11.049 25.191-45.815 \
7.2184-61.798-1.0312-56.569-60.546z"/> +      <path style="color:#000000" d="m197.07 \
109.71c8.5876 16.315 28.942 36.852 49.53 \
45.175l25.19-30.91c-13.68-13.58-26.16-32.46-28.19-55.363-22.85 7.343-31.58 \
22.568-46.53 41.103z"/> +      <path style="color:#000000" d="m323.12 56.25c-11.823 \
6.6667-26.615 32.24-24.219 61.719 11.927 5.1042 23.854 10.208 35.781 15.312 \
6.6222-23.304 19.182-44.382 36.406-54.063 0 0-18.125-18.75-47.969-22.969z"/> +      \
<path style="color:#000000" d="m412.77 159.55c-25.853 2.7034-48.798 18.977-71.153 \
38.007l-3.0936 60.104c19.651-21.174 50.513-52.02 79.329-45.962z"/> +      <path \
style="color:#000000" d="m412.33 295.22c-25.493 4.1406-49.121 17.077-70.49 \
40.659l-1.7678 50.823c16.831-14.755 36.8-34.21 70.048-41.984z"/> +      <path \
style="color:#000000" d="m406.72 422.66c-21.635 4.2974-42.849 13.872-65.938 \
32.5l0.3125 48.125c26.771-26.875 44.635-38.125 65.312-40.312z"/> +    </g>
+    <path style="color:#000000" d="m128.21 716.2c-0.0855 0.68823-0.10795 \
1.4077-0.0505 2.1461 0.0193 0.00025 0.0397-0.00031 0.059 0 0.10968 0.002 0.21799 \
0.006 0.3241 0.009 0.25109 0.008 0.49188 0.0194 0.72398 0.0378 0.11565 0.009 0.22969 \
0.0214 0.34094 0.0336 0.0702 0.008 0.14195 0.0161 0.21045 0.0252 0.0392 0.006 0.0793 \
0.0112 0.11786 0.0168 0.0808 0.0119 0.16148 0.0237 0.23993 0.0378 0.0251 0.004 0.051 \
0.009 0.0757 0.0126 0.0269 0.006 0.0532 0.0114 0.0799 0.0168 0.17768 0.0358 0.3511 \
0.077 0.51773 0.126 0.75287 0.22112 1.4 0.60979 1.8815 1.1886 0.0344 0.0413 0.0683 \
0.0827 0.10099 0.126 0.0326 0.0433 0.066 0.0891 0.0968 0.1344 0.037 0.0542 0.0704 \
0.11156 0.1052 0.16799 0.12242-0.41527 0.26241-0.82528 \
0.41251-1.2264-0.99975-1.9073-2.8579-2.7185-4.7143-2.8307-0.17797-0.0107-0.35064-0.0171-0.52194-0.021zm-5.1436 \
1.3481c-1.3682 0.95376-2.3439 2.3577-3.1737 4.0402-0.14632 0.29667-0.27148 \
0.60995-0.37463 0.93657 0.51767 0.32062 1.047 0.59882 1.5784 0.81477 0.006-0.0223 \
0.0112-0.0449 0.0169-0.0672 0.0156-0.0619 0.0294-0.12305 0.0464-0.1848 0.0332-0.12265 \
0.0702-0.24357 0.10943-0.36537 0.36371-1.132 0.98988-2.2469 2.0499-3.0659 \
0.0765-0.0591 0.1549-0.11649 0.23571-0.17219 0.0582-0.0401 0.12051-0.0795 \
0.181-0.11759 0.002-0.00094 0.002-0.003 0.004-0.004 0.0655-0.0412 0.13391-0.0786 \
0.20203-0.1176 0.01-0.006 0.0196-0.0111 0.0295-0.0168 0.0573-0.0324 0.11349-0.0658 \
0.17258-0.0966 0.0549-0.0287 0.11176-0.0568 0.16836-0.084 0.0114-0.006 0.0222-0.0113 \
0.0337-0.0168-0.44444-0.4531-0.87645-0.9486-1.2796-1.4825zm19.88 6.5013c-0.38622 \
0.0622-0.76765 0.14367-1.1449 0.24779 0.082 2.1822 0.14604 4.4306 0.19361 6.7113 \
0.39532-0.0824 0.79224-0.12718 \
1.187-0.126-0.003-0.53116-0.008-1.0504-0.0169-1.5581-0.0134-0.8432-0.0349-1.645-0.0631 \
-2.4191-0.007-0.15844-0.0106-0.32335-0.0169-0.47878-0.00081-0.0188-0.003-0.0358-0.004- \
0.0546-0.0188-0.43805-0.0385-0.86336-0.0632-1.2768-0.0214-0.35985-0.0451-0.70497-0.0715-1.0458zm-23.98 \
7.8159c-0.0141 0.13359-0.0312 0.26448-0.0505 0.39058-0.25571 1.6712-1.4913 \
2.9214-1.9068 3.3011 0.0966-0.0128 0.19092-0.0263 0.28201-0.042 0.26835-0.0465 \
0.51236-0.10446 0.73661-0.17639 0.004-0.00095 0.008-0.003 0.0126-0.004 0.008-0.003 \
0.0167-0.006 0.0253-0.009 0.0667-0.0221 0.13055-0.0471 0.19363-0.0713 0.14243-0.055 \
0.27901-0.1142 0.40408-0.18059 0.0113-0.007 0.0225-0.0107 0.0337-0.0168 0.0513-0.0281 \
0.0988-0.0581 0.1473-0.0882 0.003-0.002 0.006-0.002 0.008-0.004 0.0556-0.0345 \
0.10775-0.0722 0.15995-0.10919 0.0547-0.0389 0.10884-0.0802 0.15995-0.12179 \
0.0495-0.0403 0.0968-0.0789 0.14311-0.1218l0.004-0.004c0.0578-0.0538 0.11517-0.11023 \
0.16836-0.16799 0.0345-0.0377 0.0682-0.0782 0.101-0.1176 0.0201-0.0241 0.0395-0.0468 \
0.059-0.0713 0.0294-0.0374 0.0563-0.0746 0.0842-0.11339 0.0197-0.0273 0.0399-0.056 \
0.059-0.084 0.0105-0.0149 0.0196-0.0311 0.0295-0.0462 0.0364-0.0552 0.0713-0.11015 \
0.1052-0.168 0.034-0.058 0.0652-0.119 0.0968-0.1806 0.008-0.0153 0.0176-0.0306 \
0.0252-0.0462 0.023-0.0461 0.0457-0.0947 0.0673-0.14278 0.002-0.006 0.007-0.0111 \
0.008-0.0168 0.0246-0.0556 0.0486-0.10989 0.0715-0.16799 0.002-0.004 0.002-0.009 \
0.004-0.0126 0.00094-0.004 0.003-0.009 0.004-0.0127 0.0518-0.1334 0.0993-0.27378 \
0.14312-0.41998 0.0008-0.003 0.003-0.006 0.004-0.009 0.0216-0.0718 0.0392-0.14775 \
0.0589-0.22258 0.0207-0.0786 0.0403-0.15757 0.059-0.2394 0.0187-0.0818 0.0378-0.16701 \
0.0547-0.25198-0.53208-0.053-1.0496-0.13777-1.5574-0.25199zm24.06 10.416c-0.30914 \
0.0591-0.61685 0.1312-0.92181 0.20999-0.00094 2.2722-0.0134 4.5004-0.0379 6.6609 \
0.25441-0.0782 0.51581-0.15083 0.7829-0.21839 0.0628-2.2777 0.12357-4.539 \
0.17679-6.6525zm-0.42933 17.072c-0.24829 0.0505-0.4973 0.10687-0.74503 0.168-0.0623 \
1.9938-0.12875 3.8164-0.20624 5.3926 0.28498-0.0633 0.57198-0.112 0.86287-0.147 \
0.0215-1.8319 0.0532-3.6316 0.0883-5.4136z" fill="#870101"/> +    <path \
style="color:#000000" d="m127.84 716.19c-2.0225 0.009-3.5563 0.50113-4.7774 1.3523 \
0.4036 0.53416 0.83893 1.0293 1.2838 1.4825 0.92332-0.43709 2.0576-0.68877 \
3.4221-0.68877 0.29802 0 0.58125 0.003 0.85447 \
0.0126-0.15253-0.006-0.30718-0.0105-0.46722-0.0126-0.0571-0.73739-0.0349-1.4546 \
0.0505-2.1419-0.12317-0.003-0.24661-0.004-0.36619-0.004zm13.604 0.99116c0.14338 \
2.2431 0.26037 4.636 0.35358 7.1145 0.37729-0.10414 0.75863-0.18975 \
1.1449-0.252-0.21613-2.7909-0.59989-4.9335-1.1533-6.1905-0.0972-0.22088-0.21221-0.44236-0.33674-0.66778v-0.004h-0.008zm-12.396 \
1.1885c0.12459 0.008 0.24662 0.0184 0.36621 \
0.0294-0.11991-0.011-0.2413-0.0216-0.36621-0.0294zm0.41672 0.0336c0.24545 0.0237 \
0.48128 0.0562 0.70713 0.0966-0.22594-0.0401-0.46157-0.073-0.70713-0.0966zm1.086 \
0.17219c0.10026 0.0239 0.19808 0.0514 0.29465 0.0797 0.21511 0.0631 0.42207 0.13985 \
0.61874 0.23098-0.19667-0.0915-0.40363-0.17201-0.61874-0.23518-0.0959-0.0282-0.19515-0.0519-0.29465-0.0756zm1.1996 \
0.45778c0.0744 0.042 0.14807 0.0877 0.21889 \
0.13439-0.0716-0.0476-0.14365-0.0916-0.21889-0.13439zm1.6921 0.009c-0.15124 \
0.40359-0.28928 0.81258-0.4125 1.2306 0.57993 0.9418 0.8462 2.185 0.95549 3.9016 \
0.0744-0.59114 0.24025-2.0885 \
0.13048-2.9189-0.11401-0.86254-0.34896-1.5952-0.67347-2.2133zm-13.928 3.4775c-0.90667 \
2.8711-0.28087 6.7652-0.55139 9.3362 0.50778 0.11415 1.0255 0.19887 1.5574 0.25199 \
0.20529-1.0357 0.2778-2.3068 0.2778-3.7798 0-0.81074-0.21516-2.9186 \
0.29464-4.9978-0.53061-0.2156-1.0616-0.49083-1.5784-0.81055zm1.006 9.5882c-0.0169 \
0.0851-0.036 0.17013-0.0548 0.25199 0.0189-0.0823 0.0377-0.16643 \
0.0548-0.25199zm-0.0548 0.25199c-0.0746 0.32743-0.16209 0.62915-0.26939 0.90296 \
0.10774-0.27324 0.19448-0.57608 0.26939-0.90296zm-0.26939 0.90296c-0.0248 \
0.063-0.0533 0.12465-0.0799 0.18479 0.0269-0.0604 0.0549-0.1214 \
0.0799-0.18479zm22.902-6.3627c0.0284 0.77358 0.0498 1.5766 0.0631 \
2.4191-0.0138-0.84205-0.0343-1.6462-0.0631-2.4191zm0.0631 2.4191c0.008 0.50734 0.0134 \
1.0232 0.0169 1.5539-0.003-0.52979-0.008-1.0478-0.0169-1.5539zm0.0169 \
1.5539c-0.39447-0.00094-0.79194 0.0438-1.187 0.126 0.0796 3.8083 0.11091 7.696 \
0.10945 11.487 0.30505-0.0789 0.61263-0.15504 0.92181-0.21419 0.0439-1.7461 \
0.0859-3.4535 0.11363-5.0692 0.0388-2.2539 0.0549-4.3689 0.0421-6.3291zm-0.15573 \
11.398c-0.0532 2.1135-0.11404 4.3748-0.1768 6.6525 0.0628-2.2777 0.12357-4.539 \
0.1768-6.6525zm-0.1768 6.6525c-0.26748 0.0677-0.52812 0.1442-0.7829 0.22259-0.0425 \
3.7558-0.11793 7.2817-0.21467 10.374 0.24773-0.0611 0.49674-0.12173 0.74503-0.17219 \
0.0717-3.6276 0.16022-7.0729 0.25254-10.424zm-23.058-14.88c-0.0465 0.0687-0.0967 \
0.13702-0.14732 0.20158 0.0513-0.065 0.10037-0.13218 0.14732-0.20158zm-0.14732 \
0.20158c-0.0505 0.0645-0.10057 0.12448-0.15574 0.18479 0.0545-0.0592 0.10574-0.12133 \
0.15574-0.18479zm22.864 30.516c-0.29088 0.035-0.57789 0.0837-0.86287 0.14698-0.12335 \
2.5087-0.26568 4.4201-0.40829 5.506-0.29032 2.2104-3.1294 3.1499-5.9476 3.0491 0.006 \
0.004 0.0112 0.009 0.0169 0.0127 0.75309 0.55177 1.8186 0.79749 2.9127 0.72656 \
1.0942-0.0709 2.1994-0.4592 2.9885-1.0668 0.78908-0.60754 1.2628-1.3846 1.2628-2.3645 \
0-2.0256 0.0146-4.0291 0.0379-6.01z" fill="#c4c4c4"/> +    <path d="m143.14 770.77c0 \
4.8242-9.7614 6.133-9.7614-0.0435 0-17.952-0.0375-34.883 0-43.352 \
0.032-7.2182-0.85481-8.369-5.6105-8.369-7.2401 0-6.2949 7.3283-6.2949 9.3217 0 \
4.943-0.64376 7.9806-5.8246 7.9806s-4.5515-6.5135-4.5515-8.7939c0-8.5335 5.5543-18.18 \
17.328-18.18 6.9292 0 12.283 4.3939 13.98 8.2494 2.7662 6.2831 0.73477 28.332 0.73477 \
53.187z" stroke="#000" stroke-width="2" fill="none"/> +  </g>
+  <metadata>
+    <rdf:RDF>
+      <cc:Work>
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+        <cc:license \
rdf:resource="http://creativecommons.org/licenses/publicdomain/"/> +        \
<dc:publisher> +          <cc:Agent rdf:about="http://openclipart.org/">
+            <dc:title>Openclipart</dc:title>
+          </cc:Agent>
+        </dc:publisher>
+      </cc:Work>
+      <cc:License rdf:about="http://creativecommons.org/licenses/publicdomain/">
+        <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/>
+        <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/>
+        <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/>
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+</svg>
diff --git a/src/activities/share/resource/images/girl.svg \
b/src/activities/share/resource/images/girl.svg new file mode 100644
index 0000000..8274664
--- /dev/null
+++ b/src/activities/share/resource/images/girl.svg
@@ -0,0 +1,170 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.1"
+   id="svg2"
+   viewBox="0 0 744.09448819 1052.3622047"
+   height="297mm"
+   width="210mm">
+  <defs
+     id="defs4" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1">
+    <g
+       transform="matrix(1.1610499,0,0,1.1610499,247.29322,81.407573)"
+       id="g3471">
+      <ellipse
+         transform="matrix(-0.17917487,0.98381724,-0.98381724,-0.17917487,0,0)"
+         ry="31.818182"
+         rx="30.681818"
+         cy="-437.02051"
+         cx="493.17117"
+         id="ellipse10573"
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <ellipse
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="path10571"
+         cx="579.04474"
+         cy="34.496262"
+         rx="30.681818"
+         ry="31.818182"
+         transform="matrix(-0.17917487,0.98381724,-0.98381724,-0.17917487,0,0)" />
+      <rect
+         y="692.68793"
+         x="148.37291"
+         height="110.08362"
+         width="48.21183"
+         id="rect10558"
+         style="opacity:1;fill:#ffccaa;fill-opacity:1;stroke:none;stroke-width:5;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" \
/> +      <rect
+         style="opacity:1;fill:#ffe680;fill-opacity:1;stroke:none;stroke-width:1;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         id="rect10569"
+         width="46.604771"
+         height="39.37294"
+         x="149.17644"
+         y="748.93506" />
+      <rect
+         style="opacity:1;fill:#ffccaa;fill-opacity:1;stroke:none;stroke-width:5;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         id="rect10556"
+         width="48.21183"
+         height="110.08362"
+         x="14.986865"
+         y="692.68793" />
+      <path
+         id="path10551"
+         d="m -15.84507,390.55974 c -54.26961,42.95093 -99.77167,88.82435 \
-131.21267,139.38482 l 47.0717,44.14441 C -66.77131,505.49481 -17.72377,477.56689 \
34.08382,437.5613 Z" +         \
style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap \
:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" \
/> +      <path
+         style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:5;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         d="m 225.72827,393.41688 c 54.26961,42.95093 99.7717,88.82435 \
131.21269,139.38482 l -47.07174,44.14441 C 276.65451,508.35195 227.60697,480.42403 \
175.79938,440.41844 Z" +         id="rect10546" />
+      <rect
+         style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:5;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         id="rect10539"
+         width="254.28572"
+         height="260"
+         x="-20.772718"
+         y="369.46725"
+         ry="36.562519" />
+      <path
+         style="fill:#800000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         d="m 104.94188,-61.9622 a 240,280 0 0 0 -240.00002,280 240,280 0 0 0 \
38.16408,151.47656 c 0.61049,-0.0213 1.22009,-0.0469 1.83594,-0.0469 l 401.58594,0 a \
240,280 0 0 0 38.41406,-151.42969 240,280 0 0 0 -240,-280 z" +         id="path10522" \
/> +      <path
+         style="fill:#ff8080;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         d="m 15.78954,369.46749 c -20.25564,0 -36.5625,16.30686 -36.5625,36.5625 l \
0,33.88281 a 145.71429,61.42857 0 0 0 120,26.69726 145.71429,61.42857 0 0 0 \
134.28515,-37.59179 l 0,-22.98828 c 0,-20.25564 -16.30686,-36.5625 -36.5625,-36.5625 \
l -181.16015,0 z" +         id="path10541" />
+      <circle
+         style="fill:#ffccaa;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="path10520"
+         cx="102.08446"
+         cy="212.32439"
+         r="208.57143" />
+      <path
+         style="fill:#800000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         d="m -109.34414,135.18153 c 0,0 38.70459,52.09639 65.71431,48.57143 \
18.14081,-2.3675 34.28572,-42.85714 34.28572,-42.85714 0,0 28.22178,35.99772 \
48.57143,37.14285 22.17806,1.24802 57.14285,-34.28571 57.14285,-34.28571 0,0 \
21.3403,37.28498 40,40 25.72407,3.74289 68.57143,-37.14286 68.57143,-37.14286 0,0 \
32.36057,37.25989 54.28572,37.14286 11.62513,-0.062 28.57143,-20 28.57143,-20 l \
25.71428,17.14286 C 313.5215,66.287 261.61877,-13.71436 102.08446,-21.96133 \
-9.79291,-7.53145 -88.73056,37.09318 -109.34414,135.18153 Z" +         id="path10527" \
/> +      <ellipse
+         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="path10531"
+         cx="-15.058362"
+         cy="253.75298"
+         rx="11.428572"
+         ry="24.285715" />
+      <ellipse
+         ry="24.285715"
+         rx="11.428572"
+         cy="253.75298"
+         cx="193.51305"
+         id="ellipse10533"
+         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <path
+         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.94736838;st \
roke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
 +         id="path10537"
+         d="m 145.46801,329.46725 a 46.240604,38.345867 0 0 1 -23.12031,33.2085 \
46.240604,38.345867 0 0 1 -46.240602,0 46.240604,38.345867 0 0 1 -23.120301,-33.2085" \
/> +      <path
+         style="opacity:1;fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:5;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         d="m -20.50661,582.94948 253.30697,0.58179 32.14122,140.67096 -320,0 z"
+         id="rect10553" />
+      <rect
+         y="748.93506"
+         x="15.790393"
+         height="39.37294"
+         width="46.604771"
+         id="rect10567"
+         style="opacity:1;fill:#ffe680;fill-opacity:1;stroke:none;stroke-width:1;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" \
/> +      <path
+         style="fill:#ff0000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         d="m 65.59402,805.04257 c 0.86731,17.4697 -8.35078,25.8713 \
-48.58232,24.3193 -26.80808,-1.0342 -48.58236,-10.8881 -48.58231,-24.3193 \
-5e-5,-13.4312 21.751,-24.3193 48.58231,-24.3193 17.86831,0 47.04856,-6.5743 \
47.57496,4.0288 1.00736,20.2905 0,0 1.00736,20.2905 z" +         id="path10560" />
+      <path
+         style="opacity:1;fill:#ff5555;fill-opacity:1;stroke:none;stroke-width:1;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         d="m 17.99266,636.22139 0,87.98047 11.36524,0 0,-87.98047 -11.36524,0 z"
+         id="rect10575" />
+      <path
+         style="opacity:1;fill:#ff5555;fill-opacity:1;stroke:none;stroke-width:1;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         d="m 86.17626,647.58467 0,76.61719 11.36328,0 0,-76.61719 -11.36328,0 z"
+         id="rect10577" />
+      <path
+         style="opacity:1;fill:#ff5555;fill-opacity:1;stroke:none;stroke-width:1;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         d="m 149.81102,627.12959 0,97.07227 11.36524,0 0,-97.07227 -11.36524,0 z"
+         id="rect10579" />
+      <path
+         style="opacity:1;fill:#ff5555;fill-opacity:1;stroke:none;stroke-width:1;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         d="m 202.08446,654.40303 0,69.79883 11.36328,0 0,-69.79883 -11.36328,0 z"
+         id="rect10581" />
+      <path
+         id="path10595"
+         d="m 201.68493,805.04257 c 0.86731,17.4697 -8.35078,25.8713 \
-48.58232,24.3193 -26.80808,-1.0342 -48.58236,-10.8881 -48.58231,-24.3193 \
-5e-5,-13.4312 21.751,-24.3193 48.58231,-24.3193 17.86831,0 47.04856,-6.5743 \
47.57496,4.0288 1.00736,20.2905 0,0 1.00736,20.2905 z" +         \
style="fill:#ff0000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <circle
+         r="27.272728"
+         cy="247.58412"
+         cx="-99.766739"
+         id="circle10713"
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <circle
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="circle10715"
+         cx="305.62"
+         cy="247.58412"
+         r="27.272728" />
+    </g>
+  </g>
+</svg>
diff --git a/src/activities/share/share.js b/src/activities/share/share.js
new file mode 100644
index 0000000..d496153
--- /dev/null
+++ b/src/activities/share/share.js
@@ -0,0 +1,237 @@
+/* GCompris - share.js
+ *
+ * Copyright (C) 2016 Stefan Toncu <stefan.toncu29@gmail.com>
+ *
+ *   This program is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License as published by
+ *   the Free Software Foundation; either version 3 of the License, or
+ *   (at your option) any later version.
+ *
+ *   This program is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+.pragma library
+.import QtQuick 2.0 as Quick
+
+var currentLevel = 0
+var numberOfLevel = 10
+var items
+
+var savedTotalBoys
+var savedTotalGirls
+var savedTotalCandies
+var savedPlacedInGrils
+var savedPlacedInBoys
+var savedCurrentCandies
+
+function start(items_) {
+    items = items_
+    currentLevel = 0
+    initLevel()
+}
+
+function stop() {
+}
+
+function initLevel() {
+    items.bar.level = currentLevel + 1
+    var filename = "resource/board/"+ "board" + currentLevel + ".qml"
+    items.dataset.source = filename
+
+    setUp()
+}
+
+function setUp() {
+    var levelData = items.dataset.item
+
+    // use board levels
+    if (currentLevel < 7) {
+        items.totalBoys = levelData.levels[items.currentSubLevel].totalBoys
+        items.totalGirls = levelData.levels[items.currentSubLevel].totalGirls
+        items.totalCandies = levelData.levels[items.currentSubLevel].totalCandies
+
+        items.instruction.text = levelData.levels[items.currentSubLevel].instruction
+        items.nbSubLevel = levelData.levels.length
+
+
+        items.background.currentCandies = items.totalGirls * \
levelData.levels[items.currentSubLevel].placedInGirls + +                \
items.totalBoys * levelData.levels[items.currentSubLevel].placedInBoys +
+        items.background.placedInGirls = \
levelData.levels[items.currentSubLevel].placedInGirls +        \
items.background.placedInBoys = levelData.levels[items.currentSubLevel].placedInBoys \
+        items.background.showCount = \
levelData.levels[items.currentSubLevel].showCount +
+
+        items.background.rest = items.totalCandies -
+                Math.floor(items.totalCandies / items.totalChildren) * \
(items.totalBoys+items.totalGirls) +        items.basketWidget.element.opacity = \
(levelData.levels[items.currentSubLevel].forceShowBakset === true || +                \
items.background.rest !== 0) ? 1 : 0 +
+    // create random (guided) levels
+    } else {
+        // get a random number between 1 and max for boys, girls and candies
+        var maxBoys = levelData.levels[0].maxBoys
+        var maxGirls = levelData.levels[0].maxGirls
+        var maxCandies = levelData.levels[0].maxCandies
+
+        items.totalBoys = Math.floor(Math.random() * maxBoys) + 1
+        items.totalGirls = Math.floor(Math.random() * maxGirls) + 1
+        var sum = items.totalBoys + items.totalGirls
+        // use sum * 4 as top margin (max 4 candies per rectangle)
+        items.totalCandies = Math.floor(Math.random() * (4 * sum - sum + 1)) + sum
+
+        // stay within the max margin
+        if (items.totalCandies > maxCandies)
+            items.totalCandies = maxCandies
+
+        // grammer correction depending the number of children: 1 (singular) or more \
(plural) +        var boys
+        var girls
+
+        if (items.totalBoys > 1)
+            boys = "boys"
+        else boys = "boy"
+
+        if (items.totalGirls > 1)
+            girls = "girls"
+        else girls = "girl"
+
+        items.instruction.text = qsTr("Place " + items.totalBoys + " " + boys + " \
and " + +                 items.totalGirls + " " + girls + " in the center, then \
equally split " + +                 items.totalCandies + " candies between them.")
+
+        items.background.showCount = false
+        items.nbSubLevel = 5
+
+        // depending on the levels configuration, add candies from start in a child \
rectangle +        if (levelData.levels[0].alreadyPlaced == false) {
+            items.background.placedInGirls = 0
+            items.background.placedInBoys = 0
+            items.background.currentCandies = 0
+        } else {
+            items.background.currentCandies = items.totalCandies * 2
+            while (items.background.currentCandies > items.totalCandies / 3) {
+                items.background.placedInGirls = Math.floor(Math.random() * 3) + 0
+                items.background.placedInBoys = Math.floor(Math.random() * 3) + 0
+                items.background.currentCandies = items.totalGirls * \
items.background.placedInGirls +                        + items.totalBoys * \
items.background.placedInBoys +            }
+            // update the total number of candies with the candies already added
+            items.totalCandies += items.background.currentCandies
+        }
+
+        items.background.rest = items.totalCandies -
+                Math.floor(items.totalCandies / items.totalChildren) * \
(items.totalBoys+items.totalGirls) +        items.basketWidget.element.opacity = 1
+
+        saveVariables()
+    }
+
+        items.background.currentGirls = 0
+        items.background.currentBoys = 0
+        items.background.resetCandy()
+        items.background.finished = false
+
+        items.acceptCandy = false
+        items.instruction.opacity = 1
+        items.listModel.clear()
+
+        items.girlWidget.current = 0
+        items.girlWidget.canDrag = true
+        items.girlWidget.element.opacity = 1
+
+        items.boyWidget.current = 0
+        items.boyWidget.canDrag = true
+        items.boyWidget.element.opacity = 1
+
+        items.candyWidget.canDrag = true
+        items.candyWidget.element.opacity = 1
+        if (items.totalCandies - items.background.currentCandies == 0)
+            items.candyWidget.element.opacity = 0.6
+
+        items.basketWidget.canDrag = true
+}
+
+function saveVariables() {
+    savedTotalBoys = items.totalBoys
+    savedTotalGirls = items.totalGirls
+    savedTotalCandies = items.totalCandies
+    savedPlacedInGrils = items.background.placedInGirls
+    savedPlacedInBoys = items.background.placedInBoys
+    savedCurrentCandies = items.background.currentCandies
+}
+
+function loadVariables() {
+    items.totalBoys = savedTotalBoys
+    items.totalGirls = savedTotalGirls
+    items.totalCandies = savedTotalCandies
+    items.background.placedInGirls = savedPlacedInGrils
+    items.background.placedInBoys = savedPlacedInBoys
+    items.background.currentCandies = savedCurrentCandies
+}
+
+function reloadRandom() {
+    if (currentLevel < 7) {
+        initLevel()
+    } else {
+        loadVariables()
+
+        items.background.currentGirls = 0
+        items.background.currentBoys = 0
+        items.background.rest = items.totalCandies -
+                Math.floor(items.totalCandies / items.totalChildren) * \
(items.totalBoys+items.totalGirls) +        items.background.resetCandy()
+        items.background.showCount = false
+        items.acceptCandy = false
+
+        items.instruction.opacity = 1
+        items.listModel.clear()
+
+        items.girlWidget.current = 0
+        items.girlWidget.canDrag = true
+        items.girlWidget.element.opacity = 1
+
+        items.boyWidget.current = 0
+        items.boyWidget.canDrag = true
+        items.boyWidget.element.opacity = 1
+
+        items.candyWidget.canDrag = true
+        items.candyWidget.element.opacity = 1
+        if (items.totalCandies - items.background.currentCandies == 0)
+            items.candyWidget.element.opacity = 0.6
+
+        items.basketWidget.canDrag = true
+        items.basketWidget.element.opacity = 1
+    }
+}
+
+function nextSubLevel() {
+    items.currentSubLevel ++
+    if (items.currentSubLevel === items.nbSubLevel) {
+        nextLevel()
+    }
+    else
+        setUp()
+}
+
+function nextLevel() {
+    if(numberOfLevel <= ++currentLevel ) {
+        currentLevel = 0
+    }
+    items.currentSubLevel = 0;
+    initLevel();
+}
+
+function previousLevel() {
+    if(--currentLevel < 0) {
+        currentLevel = numberOfLevel - 1
+    }
+    items.currentSubLevel = 0;
+    initLevel();
+}
diff --git a/src/activities/share/share.svg b/src/activities/share/share.svg
new file mode 100644
index 0000000..f01842a
--- /dev/null
+++ b/src/activities/share/share.svg
@@ -0,0 +1,183 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="210mm"
+   height="297mm"
+   viewBox="0 0 744.09448819 1052.3622047"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="boy.svg">
+  <defs
+     id="defs4" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.7"
+     inkscape:cx="-154.04284"
+     inkscape:cy="608.75021"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1920"
+     inkscape:window-height="1176"
+     inkscape:window-x="1680"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <g
+       id="g3498"
+       transform="matrix(1.2091367,0,0,1.2091367,-461.66557,40.043467)">
+      <ellipse
+         transform="matrix(-0.17917487,0.98381724,-0.98381724,-0.17917487,0,0)"
+         ry="31.818182"
+         rx="30.681818"
+         cy="-1009.4232"
+         cx="388.92398"
+         id="ellipse10648"
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <ellipse
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="ellipse10650"
+         cx="474.79758"
+         cy="-537.90649"
+         rx="30.681818"
+         ry="31.818182"
+         transform="matrix(-0.17917487,0.98381724,-0.98381724,-0.17917487,0,0)" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path10658"
+         d="m 565.97311,390.55974 c -54.26961,42.95093 -99.77167,88.82435 \
-131.21267,139.38482 l 47.0717,44.14441 C 515.04687,505.49481 564.09441,477.56689 \
615.902,437.5613 Z" +         \
style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap \
:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" \
/> +      <path
+         style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:5;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         d="m 807.54645,393.41688 c 54.26961,42.95093 99.7717,88.82435 \
131.21269,139.38482 L 891.6874,576.94611 C 858.47269,508.35195 809.42515,480.42403 \
757.61756,440.41844 Z" +         id="path10660"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+      <rect
+         style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:5;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         id="rect10662"
+         width="254.28572"
+         height="260"
+         x="561.04547"
+         y="369.46725"
+         ry="36.562519" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000080;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         d="m 597.60772,369.46749 c -20.25564,0 -36.5625,16.30686 -36.5625,36.5625 \
l 0,33.88281 a 145.71429,61.42857 0 0 0 120,26.69726 145.71429,61.42857 0 0 0 \
134.28515,-37.59179 l 0,-22.98828 c 0,-20.25564 -16.30686,-36.5625 -36.5625,-36.5625 \
l -181.16015,0 z" +         id="path10666" />
+      <circle
+         style="fill:#ffccaa;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="circle10668"
+         cx="683.90265"
+         cy="212.32439"
+         r="208.57143" />
+      <path
+         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         d="m 485.55537,142.57532 c 0,0 25.62326,44.7026 52.63298,41.17764 \
18.14081,-2.3675 34.28572,-42.85714 34.28572,-42.85714 0,0 28.22178,35.99772 \
48.57143,37.14285 22.17806,1.24802 57.14285,-34.28571 57.14285,-34.28571 0,0 \
21.3403,37.28498 40,40 25.72407,3.74289 68.57143,-37.14286 68.57143,-37.14286 0,0 \
32.36057,37.25989 54.28572,37.14286 11.62513,-0.062 28.57143,-20 28.57143,-20 l \
21.16426,16.57411 c 0.008,-114.60882 -47.17265,-205.92659 -206.87855,-202.2884 \
-112.77485,2.56907 -177.73369,66.4483 -198.34727,164.53665 z" +         \
id="path10670" +         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscscscsccsc" />
+      <ellipse
+         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="ellipse10672"
+         cx="566.75983"
+         cy="253.75298"
+         rx="11.428572"
+         ry="24.285715" />
+      <ellipse
+         ry="24.285715"
+         rx="11.428572"
+         cy="253.75298"
+         cx="775.33124"
+         id="ellipse10674"
+         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <path
+         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.94736838;st \
roke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
 +         id="path10676"
+         sodipodi:type="arc"
+         sodipodi:cx="681.04559"
+         sodipodi:cy="329.46725"
+         sodipodi:rx="46.240604"
+         sodipodi:ry="38.345867"
+         sodipodi:start="0"
+         sodipodi:end="3.1415927"
+         sodipodi:open="true"
+         d="m 727.2862,329.46725 a 46.240604,38.345867 0 0 1 -23.12031,33.2085 \
46.240604,38.345867 0 0 1 -46.2406,0 46.240604,38.345867 0 0 1 -23.1203,-33.2085" /> \
+      <circle +         r="27.272728"
+         cy="247.58412"
+         cx="479.35721"
+         id="path10694"
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <circle
+         style="fill:#ffccaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         id="circle10696"
+         cx="886.17535"
+         cy="247.58412"
+         r="27.272728" />
+      <rect
+         ry="0"
+         y="606.85272"
+         x="578.61835"
+         height="213.63637"
+         width="72.727272"
+         id="rect10698"
+         style="opacity:1;fill:#501616;fill-opacity:1;stroke:none;stroke-width:1;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" \
/> +      <path
+         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 +         d="m 652.82748,805.04257 c 0.86731,17.4697 -8.35078,25.8713 \
-48.58232,24.3193 -26.80808,-1.0342 -48.58236,-10.8881 -48.58231,-24.3193 \
-5e-5,-13.4312 21.751,-24.3193 48.58231,-24.3193 17.86831,0 47.04856,-6.5743 \
47.57496,4.0288 1.00736,20.2905 0,0 1.00736,20.2905 z" +         id="path10682"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ssssss" />
+      <rect
+         style="opacity:1;fill:#501616;fill-opacity:1;stroke:none;stroke-width:1;stro \
ke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 +         id="rect10704"
+         width="72.727272"
+         height="213.63637"
+         x="724.98938"
+         y="598.80933"
+         ry="0" />
+      <path
+         sodipodi:nodetypes="ssssss"
+         inkscape:connector-curvature="0"
+         id="path10706"
+         d="m 800.53451,802.21657 c 0.86731,17.4697 -8.35078,25.8713 \
-48.58232,24.3193 -26.80808,-1.0342 -48.58236,-10.8881 -48.58231,-24.3193 \
-5e-5,-13.4312 21.751,-24.3193 48.58231,-24.3193 17.86831,0 47.04856,-6.5743 \
47.57496,4.0288 1.00736,20.2905 0,0 1.00736,20.2905 z" +         \
style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" \
/> +      <path
+         inkscape:connector-curvature="0"
+         id="rect10708"
+         d="m 560.76686,593.99232 c -1.6e-4,0.0406 -0.004,0.0804 -0.004,0.12109 l \
0,32.05274 c 0,16.93294 13.85223,30.56445 31.05688,30.56445 l 192.54665,0 c \
17.20464,0 31.05488,-13.63151 31.05488,-30.56445 l 0,-32.05274 c 0,-0.0407 \
-0.004,-0.0805 -0.004,-0.12109 l -254.65047,0 z" +         \
style="opacity:1;fill:#501616;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap \
:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" \
/> +    </g>
+  </g>
+</svg>


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic