flipping cards example
authorJohn Kern <johnk@symbian.org>
Mon, 25 Oct 2010 10:35:32 -0700
changeset 3 2e16639599b7
parent 0 061910b224a4
child 4 ebd5cf1fc7e9
flipping cards example
MixedView/main.cpp
cards/cards.png
cards/cards.pro
cards/main.cpp
cards/qml/cards/Button.qml
cards/qml/cards/Cards.qml
cards/qml/cards/images/getem.sh
cards/qml/cards/images/nicubunu_Card_backs_suits_red.svg
cards/qml/cards/images/nicubunu_White_deck_Black_Joker.svg
cards/qml/cards/images/nicubunu_White_deck_Queen_of_hearts.svg
cards/qml/cards/images/readme
cards/qml/cards/main.qml
cards/qmlapplicationviewer/qmlapplicationviewer.cpp
cards/qmlapplicationviewer/qmlapplicationviewer.h
cards/qmlapplicationviewer/qmlapplicationviewer.pri
readme
--- a/MixedView/main.cpp	Wed Oct 20 12:55:41 2010 -0700
+++ b/MixedView/main.cpp	Mon Oct 25 10:35:32 2010 -0700
@@ -21,7 +21,7 @@
     a.installEventFilter(&w);
     w.setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
 
-    // Symbian specific code
+    // Symbian specific code to keep the screen orientation of the game in Portrait mode.
 #ifdef Q_OS_SYMBIAN
     CAknAppUi* appUi = dynamic_cast<CAknAppUi*> (CEikonEnv::Static()->AppUi());
     if(appUi){
Binary file cards/cards.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/cards.pro	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,29 @@
+# Add more folders to ship with the application, here
+folder_01.source = qml/cards
+folder_01.target = qml
+DEPLOYMENTFOLDERS = folder_01
+
+# Additional import path used to resolve Qml modules in Creator's code model
+QML_IMPORT_PATH =
+
+# Avoid auto screen rotation
+#DEFINES += ORIENTATIONLOCK
+
+# Needs to be defined for Symbian
+#DEFINES += NETWORKACCESS
+
+symbian:TARGET.UID3 = 0xE76A0DD4
+
+# Define QMLJSDEBUGGER to enable basic debugging (setting breakpoints etc)
+# Define QMLOBSERVER for advanced features (requires experimental QmlInspector plugin!)
+#DEFINES += QMLJSDEBUGGER
+#DEFINES += QMLOBSERVER
+
+# The .cpp file which was generated for your project. Feel free to hack it.
+SOURCES += main.cpp
+
+# Please do not modify the following two lines. Required for deployment.
+include(qmlapplicationviewer/qmlapplicationviewer.pri)
+qtcAddDeployment()
+
+RESOURCES +=
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/main.cpp	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,15 @@
+#include <QtGui/QApplication>
+#include "qmlapplicationviewer.h"
+
+int main(int argc, char *argv[])
+{
+    QApplication app(argc, argv);
+
+    QmlApplicationViewer viewer;
+    viewer.setOrientation(QmlApplicationViewer::Auto);
+    viewer.setMainQmlFile(QLatin1String("qml/cards/main.qml"));
+    //viewer.setSource(QUrl("qrc:/qml/cards/flipable.qml"));
+    viewer.show();
+
+    return app.exec();
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/qml/cards/Button.qml	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,76 @@
+/****************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the QtDeclarative module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial Usage
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Nokia.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file.  Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights.  These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3.0 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file.  Please review the following information to
+** ensure the GNU General Public License version 3.0 requirements will be
+** met: http://www.gnu.org/copyleft/gpl.html.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import Qt 4.7
+
+BorderImage {
+    id: button
+    property string color: "blue"
+
+    signal clicked
+
+   // source: "images/button-" + color + ".png"; clip: true
+    border { left: 10; top: 10; right: 10; bottom: 10 }
+
+    Rectangle {
+        id: shade
+        anchors.fill: button; radius: 10; color: "black"; opacity: 0
+    }
+
+    Text {
+        id: buttonText
+        text: "Exit"
+        anchors.centerIn: parent; anchors.verticalCenterOffset: -1
+        font.pixelSize: parent.width > parent.height ? parent.height * .5 : parent.width * .5
+        style: Text.Sunken; color: "white"; styleColor: "black"; smooth: true
+    }
+
+    MouseArea {
+        id: mouseArea
+        anchors.fill: parent
+        onClicked: Qt.quit()
+    }
+
+    states: State {
+        name: "pressed"; when: mouseArea.pressed == true
+        PropertyChanges { target: shade; opacity: .4 }
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/qml/cards/Cards.qml	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,52 @@
+import Qt 4.7
+
+// This is a Qt Quick component. The name of the component is defined by the
+// name of the file (ie Cards).
+
+// Here we have taken some SVG file from Open Clipart(http://www.openclipart.org/people/nicubunu) to
+// demonstrate how to use the QML Flipable element. Think of two images. One a playing card. The
+// other is simply a pattern representing back of a playing card. When the user taps on the
+// Flipable element, it rotates and displays the other side of the card.
+
+// The key point here is the transition from one state to another. We have to faces to the
+// card: front and back.
+
+Flipable {
+    id: container
+
+    property alias image: frontImage.source
+    property bool flipped: true
+    property int xAxis: 0
+    property int yAxis: 0
+    property int angle: 0
+
+    width: front.width; height: front.height
+
+    // callee will define the front image
+    front: Image { id: frontImage; smooth: true }
+    back: Image { source: "images/nicubunu_Card_backs_suits_red.svg"; smooth: true }
+
+    state: "back"
+
+    MouseArea { anchors.fill: parent; onClicked: container.flipped = !container.flipped }
+
+    transform: Rotation {
+        id: rotation; origin.x: container.width / 2; origin.y: container.height / 2
+        axis.x: container.xAxis; axis.y: container.yAxis; axis.z: 0
+    }
+
+    states: State {
+        name: "back"; when: container.flipped
+        PropertyChanges { target: rotation; angle: container.angle }
+    }
+
+    transitions: Transition {
+        ParallelAnimation {
+            NumberAnimation { target: rotation; properties: "angle"; duration: 600 }
+            SequentialAnimation {
+                NumberAnimation { target: container; property: "scale"; to: 0.75; duration: 300 }
+                NumberAnimation { target: container; property: "scale"; to: 1.0; duration: 300 }
+            }
+        }
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/qml/cards/images/getem.sh	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,18 @@
+
+clubs_cards="nicubunu_White_deck_8_of_clubs.svg nicubunu_White_deck_10_of_clubs.svg  nicubunu_White_deck_9_of_clubs.svg nicubunu_White_deck_2_of_clubs.svg   nicubunu_White_deck_Ace_of_clubs.svg nicubunu_White_deck_3_of_clubs.svg   nicubunu_White_deck_Black_Joker.svg nicubunu_White_deck_4_of_clubs.svg   nicubunu_White_deck_Jack_of_clubs.svg nicubunu_White_deck_5_of_clubs.svg   nicubunu_White_deck_King_of_clubs.svg nicubunu_White_deck_6_of_clubs.svg   nicubunu_White_deck_Queen_of_clubs.svg nicubunu_White_deck_7_of_clubs.svg"
+
+
+diamonds_cards="nicubunu_White_deck_8_of_diamonds.svg nicubunu_White_deck_10_of_diamonds.svg  nicubunu_White_deck_9_of_diamonds.svg nicubunu_White_deck_2_of_diamonds.svg   nicubunu_White_deck_Ace_of_diamonds.svg nicubunu_White_deck_3_of_diamonds.svg   nicubunu_White_deck_Black_Joker.svg nicubunu_White_deck_4_of_diamonds.svg   nicubunu_White_deck_Jack_of_diamonds.svg nicubunu_White_deck_5_of_diamonds.svg   nicubunu_White_deck_King_of_diamonds.svg nicubunu_White_deck_6_of_diamonds.svg   nicubunu_White_deck_Queen_of_diamonds.svg nicubunu_White_deck_7_of_diamonds.svg"
+
+
+hearts_cards="nicubunu_White_deck_8_of_hearts.svg nicubunu_White_deck_10_of_hearts.svg  nicubunu_White_deck_9_of_hearts.svg nicubunu_White_deck_2_of_hearts.svg   nicubunu_White_deck_Ace_of_hearts.svg nicubunu_White_deck_3_of_hearts.svg   nicubunu_White_deck_Black_Joker.svg nicubunu_White_deck_4_of_hearts.svg   nicubunu_White_deck_Jack_of_hearts.svg nicubunu_White_deck_5_of_hearts.svg   nicubunu_White_deck_King_of_hearts.svg nicubunu_White_deck_6_of_hearts.svg   nicubunu_White_deck_Queen_of_hearts.svg nicubunu_White_deck_7_of_hearts.svg"
+
+spades_cards="nicubunu_White_deck_8_of_spades.svg nicubunu_White_deck_10_of_spades.svg  nicubunu_White_deck_9_of_spades.svg nicubunu_White_deck_2_of_spades.svg   nicubunu_White_deck_Ace_of_spades.svg nicubunu_White_deck_3_of_spades.svg   nicubunu_White_deck_Black_Joker.svg nicubunu_White_deck_4_of_spades.svg   nicubunu_White_deck_Jack_of_spades.svg nicubunu_White_deck_5_of_spades.svg   nicubunu_White_deck_King_of_spades.svg nicubunu_White_deck_6_of_spades.svg   nicubunu_White_deck_Queen_of_spades.svg nicubunu_White_deck_7_of_spades.svg"
+
+for d in $clubs_cards $diamonds_cards $hearts_cards $spades_cards
+do
+	echo "$d"
+	# curl http://www.openclipart.org/people/nicubunu/$d > $d
+	
+	
+done
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/qml/cards/images/nicubunu_Card_backs_suits_red.svg	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,247 @@
+<?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://web.resource.org/cc/"
+   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:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   sodipodi:docbase="/home/nicu/Desktop/cards"
+   sodipodi:docname="back08.svg"
+   inkscape:version="0.41"
+   sodipodi:version="0.32"
+   version="1.0"
+   x="0.0000000"
+   y="0.0000000"
+   width="140.00000"
+   height="190.00000"
+   id="svg2">
+  
+  <sodipodi:namedview
+     inkscape:current-layer="svg2"
+     inkscape:window-y="26"
+     inkscape:window-x="0"
+     inkscape:cy="95.000000"
+     inkscape:cx="70.000000"
+     inkscape:zoom="1.0000000"
+     inkscape:window-height="791"
+     inkscape:window-width="1152"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base" />
+  <defs
+     id="defs3">
+    <linearGradient
+       id="linearGradient8308">
+      <stop
+         style="stop-color:#830007;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8314" />
+      <stop
+         style="stop-color:#ff0000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop8316" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2060">
+      <stop
+         style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop2062" />
+      <stop
+         style="stop-color:#ffffeb;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop2064" />
+    </linearGradient>
+    <linearGradient
+       x1="2.0000000"
+       y1="63.099518"
+       x2="109.00000"
+       y2="128.69501"
+       id="linearGradient4853"
+       xlink:href="#linearGradient2060"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0.000000,-1.000000)" />
+    <linearGradient
+       x1="138.23376"
+       y1="146.61710"
+       x2="36.519855"
+       y2="18.728254"
+       id="linearGradient8318"
+       xlink:href="#linearGradient8308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.854242,1.170628)" />
+    <linearGradient
+       x1="22.029089"
+       y1="17.152563"
+       x2="146.39938"
+       y2="140.45406"
+       id="linearGradient9086"
+       xlink:href="#linearGradient8308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.855373,1.169081)" />
+    <linearGradient
+       x1="96.483070"
+       y1="145.20065"
+       x2="21.316402"
+       y2="62.768166"
+       id="linearGradient5604"
+       xlink:href="#linearGradient8308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.130132,0.884852)" />
+    <linearGradient
+       x1="31.777254"
+       y1="69.896172"
+       x2="96.605362"
+       y2="143.28015"
+       id="linearGradient5592"
+       xlink:href="#linearGradient8308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.131842,0.883515)" />
+    <linearGradient
+       x1="-14.811357"
+       y1="236.48587"
+       x2="-19.597466"
+       y2="369.85428"
+       id="linearGradient1469"
+       xlink:href="#linearGradient8308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(3.018130,0.331331)" />
+    <linearGradient
+       x1="-8.6704397"
+       y1="405.74072"
+       x2="-6.5410118"
+       y2="279.00073"
+       id="linearGradient1471"
+       xlink:href="#linearGradient8308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(2.951602,0.338799)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8308"
+       id="linearGradient2481"
+       gradientTransform="scale(0.885071,1.129853)"
+       x1="24.314270"
+       y1="31.254068"
+       x2="128.44019"
+       y2="134.97331"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       y2="128.69501"
+       x2="109.00000"
+       y1="63.099518"
+       x1="2.0000000"
+       gradientTransform="translate(0.000000,-1.000000)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4520"
+       xlink:href="#linearGradient2060"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="18.728254"
+       x2="36.519855"
+       y1="146.61710"
+       x1="138.23376"
+       gradientTransform="scale(0.854242,1.170628)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4522"
+       xlink:href="#linearGradient8308"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="140.45406"
+       x2="146.39938"
+       y1="17.152563"
+       x1="22.029089"
+       gradientTransform="scale(0.855373,1.169081)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4524"
+       xlink:href="#linearGradient8308"
+       inkscape:collect="always" />
+  </defs>
+  <g
+     id="g4503">
+    <g
+       id="g4505">
+      <path
+         id="path4507"
+         style="fill:#000000;fill-opacity:0.49803922;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         d="M 21.000000,5.0000000 L 124.00000,5.0000000 C 132.86400,5.0000000 140.00000,12.136000 140.00000,21.000000 L 140.00000,174.00000 C 140.00000,182.86400 132.86400,190.00000 124.00000,190.00000 L 21.000000,190.00000 C 12.136000,190.00000 5.0000000,182.86400 5.0000000,174.00000 L 5.0000000,21.000000 C 5.0000000,12.136000 12.136000,5.0000000 21.000000,5.0000000 z " />
+      <path
+         id="path4509"
+         style="fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         d="M 17.000000,1.0000000 L 120.00000,1.0000000 C 128.86400,1.0000000 136.00000,8.1360000 136.00000,17.000000 L 136.00000,170.00000 C 136.00000,178.86400 128.86400,186.00000 120.00000,186.00000 L 17.000000,186.00000 C 8.1360000,186.00000 1.0000000,178.86400 1.0000000,170.00000 L 1.0000000,17.000000 C 1.0000000,8.1360000 8.1360000,1.0000000 17.000000,1.0000000 z " />
+      <path
+         id="path4511"
+         style="fill:#c7891f;fill-opacity:1.0000000;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         d="M 19.000000,3.0000000 L 122.00000,3.0000000 C 130.86400,3.0000000 138.00000,10.136000 138.00000,19.000000 L 138.00000,172.00000 C 138.00000,180.86400 130.86400,188.00000 122.00000,188.00000 L 19.000000,188.00000 C 10.136000,188.00000 3.0000000,180.86400 3.0000000,172.00000 L 3.0000000,19.000000 C 3.0000000,10.136000 10.136000,3.0000000 19.000000,3.0000000 z " />
+      <path
+         id="path4513"
+         style="fill:url(#linearGradient4520);fill-opacity:1.0000000;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z " />
+    </g>
+    <path
+       id="path4515"
+       style="fill:url(#linearGradient4522);fill-opacity:1.0000000;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+       d="M 22.166666,10.000000 L 116.58333,10.000000 C 124.70867,10.000000 131.25000,16.541333 131.25000,24.666666 L 131.25000,164.91666 C 131.25000,173.04200 124.70867,179.58333 116.58333,179.58333 L 22.166666,179.58333 C 14.041333,179.58333 7.5000000,173.04200 7.5000000,164.91666 L 7.5000000,24.666666 C 7.5000000,16.541333 14.041333,10.000000 22.166666,10.000000 z " />
+    <path
+       id="path4517"
+       style="fill:url(#linearGradient4524);fill-opacity:1.0000000;stroke:none;stroke-width:1.2500000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+       d="M 22.156250,9.3750000 C 13.695478,9.3750000 6.8750000,16.195478 6.8750000,24.656250 L 6.8750000,164.90625 C 6.8750000,173.36703 13.695478,180.21875 22.156250,180.21875 L 116.59375,180.21875 C 125.05453,180.21875 131.87500,173.36703 131.87500,164.90625 L 131.87500,24.656250 C 131.87500,16.195478 125.05453,9.3750000 116.59375,9.3750000 L 22.156250,9.3750000 z M 22.156250,10.625000 L 116.59375,10.625000 C 124.38365,10.625000 130.62500,16.866356 130.62500,24.656250 L 130.62500,164.90625 C 130.62500,172.69615 124.38365,178.96875 116.59375,178.96875 L 22.156250,178.96875 C 14.366356,178.96875 8.1250000,172.69615 8.1250000,164.90625 L 8.1250000,24.656250 C 8.1250000,16.866356 14.366356,10.625000 22.156250,10.625000 z " />
+    <path
+       style="fill:url(#linearGradient2481);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+       d="M 38.906250,21.250000 C 33.180229,21.250000 28.531250,28.263310 28.531250,36.906250 C 28.531250,44.269419 37.960050,56.647920 37.593750,62.531250 C 34.565261,64.212549 25.210700,48.718750 20.375000,48.718750 C 14.648980,48.718749 10.000000,55.732060 10.000000,64.375000 C 10.000000,73.017958 14.648980,80.031250 20.375000,80.031250 C 25.341120,80.031252 33.849840,64.506650 37.593750,65.906250 C 37.663741,67.913271 37.460430,86.417350 36.406250,87.750000 C 34.127049,90.631234 31.250000,90.437500 31.250000,90.437500 L 31.312500,93.593750 L 46.375000,93.500000 L 46.437500,90.343750 C 46.437511,90.343749 43.591700,90.568730 41.312500,87.687500 C 40.263789,86.361732 39.789450,66.665370 39.781250,66.031250 L 39.875000,66.031250 L 39.875000,66.062500 C 43.541409,64.687870 52.350310,80.312480 57.281250,80.312500 C 63.007280,80.312497 67.656260,73.299210 67.656250,64.656250 C 67.656246,56.013303 63.007280,49.000000 57.281250,49.000000 C 52.465250,49.000001 43.739690,64.261590 39.906250,62.687500 C 39.960108,56.659078 49.281250,44.261320 49.281250,36.906250 C 49.281249,28.263309 44.632280,21.250000 38.906250,21.250000 z M 98.500000,25.156250 C 89.639806,42.874480 83.169570,52.022270 69.843750,61.781250 C 82.454634,71.423121 91.346580,81.392350 98.750000,97.500000 C 105.36265,82.197630 113.44812,70.795660 127.50000,61.312500 C 113.36529,54.116220 105.19547,42.697780 98.500000,25.156250 z M 25.125000,98.750000 C 23.406005,98.761561 21.528535,99.204993 19.437500,100.15625 C -3.3566500,117.86996 27.368941,146.44082 40.343750,170.96875 L 40.718750,171.09375 C 54.977599,144.28398 82.115020,114.77595 61.375000,100.15625 C 44.944213,92.681541 40.559584,117.54040 40.406250,118.43750 C 40.272434,117.65456 36.913381,98.670728 25.125000,98.750000 z M 99.000000,98.906250 C 88.425081,115.72021 55.974747,144.37883 76.531250,153.21875 C 89.009294,157.28810 94.953715,148.95255 97.468750,143.43750 L 97.968750,143.43750 C 97.949827,144.47452 97.478192,164.73721 96.156250,165.93750 C 93.255971,168.57084 89.593750,168.37500 89.593750,168.37500 L 89.656250,171.25000 L 108.87500,171.15625 L 108.93750,168.34375 C 108.93750,168.34375 105.30653,168.50834 102.40625,165.87500 C 101.08412,164.67455 100.58132,144.42943 100.56250,143.40625 L 100.78125,143.40625 C 102.81267,147.91276 110.52054,157.24038 119.00000,153.68750 C 143.79457,143.72788 107.29153,115.37123 99.000000,98.906250 z "
+       id="path4078" />
+  </g>
+
+  
+
+  <metadata>
+    <rdf:RDF 
+     xmlns="http://web.resource.org/cc/"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+      <Work rdf:about="">
+        <dc:title>card</dc:title>
+        <dc:description></dc:description>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>card</rdf:li>
+            <rdf:li>back</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:publisher>
+           <Agent>
+             <dc:title></dc:title>
+           </Agent>
+         </dc:publisher>
+         <dc:creator>
+           <Agent>
+             <dc:title>Nicu Buculei</dc:title>
+           </Agent>
+        </dc:creator>
+         <dc:rights>
+           <Agent>
+             <dc:title>Nicu Buculei</dc:title>
+           </Agent>
+        </dc:rights>
+        <dc:date></dc:date>
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+        <dc:language>en</dc:language>
+      </Work>
+
+      <License rdf:about="http://web.resource.org/cc/PublicDomain">
+         <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+         <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+         <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+      </License>
+
+    </rdf:RDF>
+  </metadata>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/qml/cards/images/nicubunu_White_deck_Black_Joker.svg	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,490 @@
+<?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://web.resource.org/cc/"
+   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:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   sodipodi:docbase="/home/nicu/Desktop/simple"
+   sodipodi:docname="jk_b.svg"
+   inkscape:version="0.41"
+   sodipodi:version="0.32"
+   version="1.0"
+   x="0.0000000"
+   y="0.0000000"
+   width="140.00000"
+   height="190.00000"
+   id="svg2">
+  
+  <sodipodi:namedview
+     inkscape:current-layer="svg2"
+     inkscape:window-y="26"
+     inkscape:window-x="0"
+     inkscape:cy="76.801300"
+     inkscape:cx="70.000000"
+     inkscape:zoom="1.0000000"
+     inkscape:window-height="791"
+     inkscape:window-width="1152"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base" />
+  <defs
+     id="defs3">
+    <linearGradient
+       id="linearGradient2060">
+      <stop
+         style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop2062" />
+      <stop
+         style="stop-color:#ffffeb;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop2064" />
+    </linearGradient>
+    <linearGradient
+       x1="2.0000000"
+       y1="63.099518"
+       x2="109.00000"
+       y2="128.69501"
+       id="linearGradient4853"
+       xlink:href="#linearGradient2060"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0.000000,-1.000000)" />
+    <linearGradient
+       id="linearGradient6214">
+      <stop
+         id="stop6216"
+         offset="0.0000000"
+         style="stop-color:#c10000;stop-opacity:1.0000000;" />
+      <stop
+         id="stop6218"
+         offset="1.0000000"
+         style="stop-color:#ff433e;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5417">
+      <stop
+         style="stop-color:#f0a700;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5419" />
+      <stop
+         style="stop-color:#ffed00;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5421" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5407">
+      <stop
+         id="stop5409"
+         offset="0.0000000"
+         style="stop-color:#f0eb00;stop-opacity:1.0000000;" />
+      <stop
+         id="stop5411"
+         offset="1.0000000"
+         style="stop-color:#ffff00;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3865">
+      <stop
+         id="stop3867"
+         offset="0"
+         style="stop-color:#0083cc;stop-opacity:1;" />
+      <stop
+         id="stop3869"
+         offset="1.0000000"
+         style="stop-color:#24a4cc;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3857">
+      <stop
+         id="stop3859"
+         offset="0.0000000"
+         style="stop-color:#ffd8c1;stop-opacity:1.0000000;" />
+      <stop
+         id="stop3861"
+         offset="1.0000000"
+         style="stop-color:#ffeded;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2580"
+       inkscape:collect="always">
+      <stop
+         id="stop2582"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop2584"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3196">
+      <stop
+         id="stop3198"
+         offset="0.0000000"
+         style="stop-color:#008200;stop-opacity:1.0000000;" />
+      <stop
+         id="stop3200"
+         offset="1.0000000"
+         style="stop-color:#00d000;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4408">
+      <stop
+         id="stop4410"
+         offset="0.0000000"
+         style="stop-color:#ff44ab;stop-opacity:1.0000000;" />
+      <stop
+         id="stop4412"
+         offset="1.0000000"
+         style="stop-color:#ff66cc;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       y2="76.889107"
+       x2="182.72025"
+       y1="79.186508"
+       x1="168.50224"
+       gradientTransform="matrix(0.999895,0.000000,0.000000,1.000000,-106.8745,-3.645850)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1578"
+       xlink:href="#linearGradient5407"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="66.479034"
+       x2="154.42813"
+       y1="68.058495"
+       x1="152.34610"
+       gradientTransform="matrix(0.999895,0.000000,0.000000,1.000000,-61.86458,-7.522710)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1583"
+       xlink:href="#linearGradient5407"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="66.479034"
+       x2="154.42813"
+       y1="68.058495"
+       x1="152.34610"
+       gradientTransform="matrix(0.999895,0.000000,0.000000,1.000000,-106.8745,-3.645850)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1586"
+       xlink:href="#linearGradient5407"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="66.479034"
+       x2="154.42813"
+       y1="68.058495"
+       x1="152.34610"
+       gradientTransform="matrix(0.999895,0.000000,0.000000,1.000000,-97.25514,-12.90723)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1590"
+       xlink:href="#linearGradient5407"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="65.100365"
+       x2="185.69273"
+       y1="73.100365"
+       x1="165.46875"
+       gradientTransform="matrix(0.999895,0.000000,0.000000,1.000000,-106.8745,-3.645850)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1593"
+       xlink:href="#linearGradient6214"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="310.92441"
+       x2="319.80237"
+       y1="336.44974"
+       x1="298.10107"
+       gradientTransform="matrix(0.144842,0.000000,0.000000,0.144857,18.21219,50.44299)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1598"
+       xlink:href="#linearGradient6214"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="256.17966"
+       x2="484.79608"
+       y1="437.49887"
+       x1="356.44232"
+       gradientTransform="matrix(0.186805,0.000000,0.000000,0.144857,-4.578319,37.10964)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1609"
+       xlink:href="#linearGradient3857"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="111.38054"
+       x2="196.72330"
+       y1="111.38054"
+       x1="154.61981"
+       gradientTransform="matrix(0.999895,0.000000,0.000000,1.000000,-106.8745,-3.645850)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1612"
+       xlink:href="#linearGradient3196"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="123.97391"
+       x2="173.85988"
+       y1="124.37165"
+       x1="171.07565"
+       gradientTransform="matrix(0.999895,0.000000,0.000000,1.000000,-106.5654,-2.420410)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1615"
+       xlink:href="#linearGradient5407"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="122.95744"
+       x2="175.18570"
+       y1="124.59262"
+       x1="169.79402"
+       gradientTransform="matrix(0.999895,0.000000,0.000000,1.000000,-106.5654,-2.420410)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1618"
+       xlink:href="#linearGradient3196"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="415.53949"
+       x2="449.32318"
+       y1="540.53918"
+       x1="298.98572"
+       gradientTransform="matrix(0.144842,0.000000,0.000000,0.144857,18.35057,50.40963)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1621"
+       xlink:href="#linearGradient6214"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="67.840782"
+       x2="95.058792"
+       y1="28.208555"
+       x1="142.73665"
+       gradientTransform="scale(0.729335,1.371112)"
+       id="linearGradient2396"
+       xlink:href="#linearGradient2580"
+       inkscape:collect="always" />
+  </defs>
+  <g
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Layer 1">
+    <g
+       id="g5630">
+      <path
+         id="rect2070"
+         d="M 21.000000,5.0000000 L 124.00000,5.0000000 C 132.86400,5.0000000 140.00000,12.136000 140.00000,21.000000 L 140.00000,174.00000 C 140.00000,182.86400 132.86400,190.00000 124.00000,190.00000 L 21.000000,190.00000 C 12.136000,190.00000 5.0000000,182.86400 5.0000000,174.00000 L 5.0000000,21.000000 C 5.0000000,12.136000 12.136000,5.0000000 21.000000,5.0000000 z "
+         style="fill:#000000;fill-opacity:0.49803922;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+      <path
+         id="rect1300"
+         d="M 17.000000,1.0000000 L 120.00000,1.0000000 C 128.86400,1.0000000 136.00000,8.1360000 136.00000,17.000000 L 136.00000,170.00000 C 136.00000,178.86400 128.86400,186.00000 120.00000,186.00000 L 17.000000,186.00000 C 8.1360000,186.00000 1.0000000,178.86400 1.0000000,170.00000 L 1.0000000,17.000000 C 1.0000000,8.1360000 8.1360000,1.0000000 17.000000,1.0000000 z "
+         style="fill:#e7e7e7;fill-opacity:1.0000000;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+      <path
+         id="path5624"
+         d="M 19.000000,3.0000000 L 122.00000,3.0000000 C 130.86400,3.0000000 138.00000,10.136000 138.00000,19.000000 L 138.00000,172.00000 C 138.00000,180.86400 130.86400,188.00000 122.00000,188.00000 L 19.000000,188.00000 C 10.136000,188.00000 3.0000000,180.86400 3.0000000,172.00000 L 3.0000000,19.000000 C 3.0000000,10.136000 10.136000,3.0000000 19.000000,3.0000000 z "
+         style="fill:#c7891f;fill-opacity:1.0000000;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+      <path
+         id="rect1306"
+         d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
+         style="fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    </g>
+    <g
+       inkscape:label="Layer 1"
+       inkscape:groupmode="layer"
+       id="g5495"
+       transform="translate(-448.5000,-231.5000)" />
+  </g>
+  <g
+     transform="matrix(0.286429,0.000000,0.000000,0.388772,-29.61360,-4.469200)"
+     style="fill:#ff0000;fill-opacity:1.0000000"
+     id="g1390" />
+  <path
+     d="M 19.173147,12.281247 L 22.105707,12.281247 L 22.105707,22.549017 C 22.105703,23.965786 21.719773,25.024554 20.947917,25.725323 C 20.181132,26.426088 19.018265,26.776471 17.459312,26.776475 L 16.865183,26.776475 L 16.865183,24.559916 L 17.322206,24.559916 C 17.931569,24.559915 18.391130,24.389801 18.700890,24.049574 C 19.015726,23.709346 19.173145,23.209161 19.173147,22.549017 L 19.173147,12.281247 M 20.635618,29.800439 C 19.741880,29.800448 19.048730,30.130519 18.556166,30.790654 C 18.063594,31.450805 17.817310,32.380083 17.817313,33.578490 C 17.817310,34.771831 18.063594,35.698570 18.556166,36.358710 C 19.048730,37.018856 19.741880,37.348927 20.635618,37.348925 C 21.534421,37.348927 22.230110,37.018856 22.722687,36.358710 C 23.215247,35.698570 23.461531,34.771831 23.461540,33.578490 C 23.461531,32.380083 23.215247,31.450805 22.722687,30.790654 C 22.230110,30.130519 21.534421,29.800448 20.635618,29.800439 M 20.635618,27.675284 C 22.463699,27.675296 23.895701,28.198332 24.931629,29.244395 C 25.967534,30.290477 26.485493,31.735174 26.485505,33.578490 C 26.485493,35.416740 25.967534,36.858898 24.931629,37.904969 C 23.895701,38.951043 22.463699,39.474079 20.635618,39.474079 C 18.812602,39.474079 17.380600,38.951043 16.339608,37.904969 C 15.303689,36.858898 14.785731,35.416740 14.785731,33.578490 C 14.785731,31.735174 15.303689,30.290477 16.339608,29.244395 C 17.380600,28.198332 18.812602,27.675296 20.635618,27.675284 M 16.019692,43.480642 L 18.952252,43.480642 L 18.952252,47.631928 L 23.179710,43.480642 L 26.584527,43.480642 L 21.107875,48.865889 L 27.148187,54.852882 L 23.476774,54.852882 L 18.952252,50.374063 L 18.952252,54.852882 L 16.019692,54.852882 L 16.019692,43.480642 M 16.735694,59.080335 L 24.649798,59.080335 L 24.649798,61.296894 L 19.668254,61.296894 L 19.668254,63.414431 L 24.352734,63.414431 L 24.352734,65.630989 L 19.668254,65.630989 L 19.668254,68.236017 L 24.817373,68.236017 L 24.817373,70.452576 L 16.735694,70.452576 L 16.735694,59.080335 M 20.231915,79.722516 C 20.846350,79.722523 21.285599,79.608267 21.549663,79.379750 C 21.818791,79.151245 21.953359,78.775472 21.953366,78.252428 C 21.953359,77.734477 21.818791,77.363782 21.549663,77.140340 C 21.285599,76.916916 20.846350,76.805199 20.231915,76.805190 L 18.997955,76.805190 L 18.997955,79.722516 L 20.231915,79.722516 M 18.997955,81.748649 L 18.997955,86.052277 L 16.065394,86.052277 L 16.065394,74.680036 L 20.544214,74.680036 C 22.042224,74.680047 23.139077,74.931409 23.834775,75.434123 C 24.535533,75.936858 24.885916,76.731568 24.885927,77.818256 C 24.885916,78.569812 24.703108,79.186791 24.337500,79.669197 C 23.976950,80.151615 23.431063,80.507077 22.699836,80.735583 C 23.100992,80.826992 23.458992,81.035191 23.773839,81.360180 C 24.093745,81.680100 24.416199,82.167590 24.741203,82.822652 L 26.333164,86.052277 L 23.210178,86.052277 L 21.823876,83.226355 C 21.544578,82.657619 21.260209,82.269150 20.970768,82.060948 C 20.686392,81.852753 20.305541,81.748653 19.828212,81.748649 L 18.997955,81.748649"
+     transform="scale(1.023957,0.976603)"
+     style="font-size:15.599698;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:middle;writing-mode:lr-tb"
+     id="text1386" />
+  <g
+     transform="matrix(-0.286429,0.000000,0.000000,-0.388772,168.4791,193.4692)"
+     style="fill:#ff0000;fill-opacity:1.0000000"
+     id="g1406" />
+  <path
+     d="M -116.44335,-181.24668 L -113.51079,-181.24668 L -113.51079,-170.97891 C -113.51080,-169.56214 -113.89673,-168.50337 -114.66858,-167.80260 C -115.43537,-167.10184 -116.59823,-166.75145 -118.15719,-166.75145 L -118.75132,-166.75145 L -118.75132,-168.96801 L -118.29429,-168.96801 C -117.68493,-168.96801 -117.22537,-169.13812 -116.91561,-169.47835 C -116.60077,-169.81858 -116.44335,-170.31876 -116.44335,-170.97891 L -116.44335,-181.24668 M -114.98088,-163.72748 C -115.87462,-163.72747 -116.56777,-163.39740 -117.06033,-162.73727 C -117.55291,-162.07711 -117.79919,-161.14784 -117.79919,-159.94943 C -117.79919,-158.75609 -117.55291,-157.82935 -117.06033,-157.16921 C -116.56777,-156.50906 -115.87462,-156.17899 -114.98088,-156.17899 C -114.08208,-156.17899 -113.38639,-156.50906 -112.89381,-157.16921 C -112.40125,-157.82935 -112.15497,-158.75609 -112.15496,-159.94943 C -112.15497,-161.14784 -112.40125,-162.07711 -112.89381,-162.73727 C -113.38639,-163.39740 -114.08208,-163.72747 -114.98088,-163.72748 M -114.98088,-165.85264 C -113.15280,-165.85262 -111.72080,-165.32959 -110.68487,-164.28353 C -109.64896,-163.23744 -109.13101,-161.79275 -109.13099,-159.94943 C -109.13101,-158.11118 -109.64896,-156.66902 -110.68487,-155.62295 C -111.72080,-154.57688 -113.15280,-154.05384 -114.98088,-154.05384 C -116.80390,-154.05384 -118.23590,-154.57688 -119.27689,-155.62295 C -120.31281,-156.66902 -120.83077,-158.11118 -120.83077,-159.94943 C -120.83077,-161.79275 -120.31281,-163.23744 -119.27689,-164.28353 C -118.23590,-165.32959 -116.80390,-165.85262 -114.98088,-165.85264 M -119.59681,-150.04729 L -116.66425,-150.04729 L -116.66425,-145.89600 L -112.43679,-150.04729 L -109.03197,-150.04729 L -114.50862,-144.66204 L -108.46831,-138.67505 L -112.13972,-138.67505 L -116.66425,-143.15387 L -116.66425,-138.67505 L -119.59681,-138.67505 L -119.59681,-150.04729 M -118.88081,-134.44759 L -110.96670,-134.44759 L -110.96670,-132.23103 L -115.94824,-132.23103 L -115.94824,-130.11349 L -111.26377,-130.11349 L -111.26377,-127.89693 L -115.94824,-127.89693 L -115.94824,-125.29191 L -110.79913,-125.29191 L -110.79913,-123.07535 L -118.88081,-123.07535 L -118.88081,-134.44759 M -115.38458,-113.80541 C -114.77015,-113.80540 -114.33090,-113.91966 -114.06684,-114.14817 C -113.79771,-114.37668 -113.66314,-114.75245 -113.66313,-115.27550 C -113.66314,-115.79345 -113.79771,-116.16414 -114.06684,-116.38758 C -114.33090,-116.61101 -114.77015,-116.72272 -115.38458,-116.72273 L -116.61854,-116.72273 L -116.61854,-113.80541 L -115.38458,-113.80541 M -116.61854,-111.77927 L -116.61854,-107.47565 L -119.55110,-107.47565 L -119.55110,-118.84789 L -115.07229,-118.84789 C -113.57427,-118.84788 -112.47742,-118.59651 -111.78172,-118.09380 C -111.08097,-117.59107 -110.73058,-116.79636 -110.73057,-115.70967 C -110.73058,-114.95811 -110.91339,-114.34113 -111.27900,-113.85873 C -111.63955,-113.37631 -112.18544,-113.02085 -112.91666,-112.79234 C -112.51551,-112.70093 -112.15751,-112.49273 -111.84266,-112.16774 C -111.52275,-111.84782 -111.20030,-111.36033 -110.87530,-110.70527 L -109.28333,-107.47565 L -112.40632,-107.47565 L -113.79262,-110.30157 C -114.07192,-110.87030 -114.35629,-111.25877 -114.64573,-111.46698 C -114.93011,-111.67517 -115.31096,-111.77927 -115.78829,-111.77927 L -116.61854,-111.77927"
+     transform="scale(-1.023957,-0.976603)"
+     style="font-size:15.599698;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:middle;writing-mode:lr-tb"
+     id="text1408" />
+  <g
+     id="g2398">
+    <path
+       style="fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+       d="M 63.013934,44.635400 C 58.134206,45.125954 56.331635,50.531993 52.608776,52.260400 C 52.754191,54.937219 47.298264,56.528283 46.171952,59.635400 C 39.630139,59.922303 42.783888,70.155780 48.202989,66.635400 C 49.774464,61.537027 56.018328,60.985657 53.358697,67.822900 C 50.533964,78.207273 48.940111,90.746461 56.310467,100.03977 C 52.972718,99.861510 36.696027,98.961490 44.802686,102.64881 C 49.221182,105.33837 63.168587,104.16827 53.661316,109.30219 C 49.845966,111.95837 39.308553,121.63967 49.077897,117.60415 C 48.646302,123.30244 49.009524,129.94291 48.890417,135.97915 C 59.714620,140.79220 71.457497,140.32311 82.824353,139.41665 C 85.650936,137.23909 95.114243,138.66877 93.510731,132.57290 C 93.227021,126.18956 94.489528,118.12051 91.917148,112.82290 C 103.22411,114.32790 92.563311,109.23954 87.446058,106.71508 C 79.781883,104.04858 92.840671,99.959830 94.695237,95.709104 C 100.03833,90.065611 82.055464,99.730480 85.116473,95.021681 C 89.703771,86.453134 85.376505,77.063818 85.805710,68.135400 C 86.169112,65.600320 81.895091,54.010613 88.016718,58.743947 C 86.636533,65.322242 97.810949,63.082488 94.291899,57.635400 C 88.714285,57.732981 86.274721,47.913365 79.668435,48.916650 C 74.843131,51.787383 73.946905,56.142453 71.763015,48.604150 C 69.687913,45.959872 66.457002,44.081520 63.013934,44.635400 z M 62.920193,53.541650 C 68.815184,61.158963 54.262233,51.328592 62.920193,53.541650 z "
+       id="path4190"
+       sodipodi:nodetypes="cccccccccccccccccccccccc" />
+    <path
+       sodipodi:nodetypes="ccccccc"
+       id="path5463"
+       d="M 63.613731,106.93115 C 56.565411,106.93115 50.890247,112.60691 50.890247,119.65596 L 50.890247,134.58532 C 60.269152,139.23445 80.413326,139.47914 91.504892,134.58532 L 91.504892,119.65596 C 91.504892,112.60691 85.829728,106.93115 78.781408,106.93115 L 63.613731,106.93115 z "
+       style="fill:url(#linearGradient1621);fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <path
+       sodipodi:nodetypes="cccccccccc"
+       id="path1427"
+       d="M 66.862729,106.88584 L 60.479730,116.70858 L 65.059029,124.25518 L 59.274106,133.32107 L 61.549997,137.51700 C 64.095650,137.91567 66.508747,138.09337 68.921833,138.05010 L 71.732168,133.85696 L 66.380810,124.20960 L 71.196334,115.77078 L 66.862729,106.88584 z "
+       style="fill:url(#linearGradient1618);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+    <path
+       style="fill:url(#linearGradient1615);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+       d="M 66.862729,106.88584 L 63.617190,117.15052 L 65.456737,124.34357 L 61.527770,133.40946 L 63.229201,137.69378 C 64.802686,137.91567 66.199419,137.96079 67.021683,137.96171 L 68.727284,133.94535 L 65.806350,124.29799 L 67.793742,116.78725 L 66.862729,106.88584 z "
+       id="path2189"
+       sodipodi:nodetypes="cccccccccc" />
+    <path
+       sodipodi:nodetypes="cccccccccccc"
+       id="path2493"
+       d="M 59.747287,101.79094 L 46.789267,101.52914 L 60.139955,105.58713 L 48.229046,115.79754 L 67.077067,107.02705 L 81.343979,121.29546 C 81.343979,121.29546 73.228861,108.07428 74.014188,108.85970 C 74.799526,109.64511 92.076882,110.82324 92.076882,110.82324 L 81.605751,105.32532 C 81.605751,105.32532 92.076882,96.031222 91.553327,96.554830 C 91.029772,97.078440 72.574410,102.44546 72.574410,102.44546 L 59.747287,101.79094 z "
+       style="fill:url(#linearGradient1612);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+    <path
+       id="path5459"
+       d="M 85.984171,84.457199 C 85.984171,95.870531 78.421096,105.13353 69.102304,105.13353 C 59.783523,105.13353 52.220447,95.870531 52.220447,84.457199 C 52.220447,73.043866 59.783523,63.780871 69.102304,63.780871 C 78.421096,63.780871 85.984171,73.043866 85.984171,84.457199 z "
+       style="fill:url(#linearGradient1609);fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <g
+       transform="matrix(0.144842,0.000000,0.000000,9.790296e-2,18.01381,61.17309)"
+       id="g5467">
+      <path
+         id="path5469"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="translate(-4.000000,-6.000000)" />
+      <path
+         id="path5471"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#1e2ecf;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="matrix(0.571429,0.000000,0.000000,0.837210,129.2857,34.52408)" />
+      <path
+         id="path5473"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="matrix(0.357143,0.000000,0.000000,0.674419,195.9286,76.04816)" />
+    </g>
+    <g
+       transform="matrix(0.144842,0.000000,0.000000,9.790296e-2,7.926368,60.83217)"
+       id="g5475">
+      <path
+         id="path5477"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="translate(-4.000000,-6.000000)" />
+      <path
+         id="path5479"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#1e2ecf;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="matrix(0.571429,0.000000,0.000000,0.837210,129.2857,34.52408)" />
+      <path
+         id="path5481"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="matrix(0.357143,0.000000,0.000000,0.674419,195.9286,76.04816)" />
+    </g>
+    <path
+       sodipodi:nodetypes="ccc"
+       id="path5483"
+       d="M 57.349948,95.301101 C 58.594818,101.37961 64.752921,99.647150 69.178056,94.691912 C 64.321506,94.801623 61.004245,95.136402 57.349948,95.301101 z "
+       style="fill:url(#linearGradient1598);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+    <path
+       sodipodi:nodetypes="ccccc"
+       id="path5485"
+       d="M 77.843746,122.94423 L 79.107204,123.06749 L 80.478420,137.58025 L 77.013593,137.83065 L 77.843746,122.94423 z "
+       style="fill:#700000;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <path
+       style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+       d="M 59.671195,86.303067 C 58.879378,87.589897 55.340769,88.487106 55.505012,89.459546 C 55.669265,90.431986 59.086106,91.186568 59.875983,91.747178 L 60.206798,91.269288 C 59.512181,90.776278 56.698207,90.296723 56.563161,89.497173 C 56.428125,88.697613 59.731428,87.648390 60.471980,86.444850 L 59.671195,86.303067 z "
+       id="path5487"
+       sodipodi:nodetypes="ccccccc" />
+    <path
+       style="fill:url(#linearGradient1593);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+       d="M 63.545128,46.572900 C 60.660921,46.884614 57.884152,49.185471 56.295889,53.385400 C 68.284170,44.985543 66.044865,62.072900 66.044865,62.072900 C 65.893531,62.000515 65.548957,62.008904 65.513671,61.885400 C 65.134781,60.559148 54.010909,46.101986 46.578159,63.197900 C 56.608396,55.566112 56.633114,62.864030 55.327241,68.260400 C 54.763510,71.512568 53.733658,75.510403 53.733658,75.510400 C 64.150154,73.299366 74.146395,74.461692 84.480429,76.291650 C 84.480429,76.291650 84.526105,72.155676 84.346173,71.005763 C 85.103954,64.563968 77.163398,52.333452 90.797506,58.617758 C 76.137205,38.629868 74.045985,62.830757 73.856545,62.072900 C 73.854375,62.064205 73.798201,62.080905 73.794052,62.072900 C 73.351038,51.030550 68.307148,46.058240 63.545128,46.572900 z "
+       id="path5608"
+       sodipodi:nodetypes="ccccccccccccc" />
+    <path
+       style="fill:url(#linearGradient1590);fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+       d="M 57.587493,54.289738 C 57.587493,55.260675 56.767409,56.048682 55.756946,56.048682 C 54.746492,56.048682 53.926398,55.260675 53.926398,54.289738 C 53.926398,53.318801 54.746492,52.530794 55.756946,52.530794 C 56.767409,52.530794 57.587493,53.318801 57.587493,54.289738 z "
+       id="path2485" />
+    <path
+       sodipodi:nodetypes="ccc"
+       id="path7129"
+       d="M 58.426455,95.676079 C 59.671325,100.38391 64.002050,97.889970 67.564266,95.219187 C 62.707716,95.328897 62.080752,95.511379 58.426455,95.676079 z "
+       style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+    <path
+       id="path2193"
+       d="M 47.968154,63.551118 C 47.968154,64.522055 47.148070,65.310062 46.137606,65.310062 C 45.127152,65.310062 44.307058,64.522055 44.307058,63.551118 C 44.307058,62.580181 45.127152,61.792174 46.137606,61.792174 C 47.148070,61.792174 47.968154,62.580181 47.968154,63.551118 z "
+       style="fill:url(#linearGradient1586);fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <path
+       id="path2489"
+       d="M 92.978047,59.674262 C 92.978047,60.645199 92.157963,61.433206 91.147499,61.433206 C 90.137045,61.433206 89.316951,60.645199 89.316951,59.674262 C 89.316951,58.703325 90.137045,57.915318 91.147499,57.915318 C 92.157963,57.915318 92.978047,58.703325 92.978047,59.674262 z "
+       style="fill:url(#linearGradient1583);fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <path
+       style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+       d="M 80.700306,88.798396 C 86.515536,90.057028 85.926547,79.931619 80.448153,83.591117 L 80.909584,83.670458 C 84.752211,81.484035 85.750076,88.962638 79.852155,88.893447 L 80.700306,88.798396 z "
+       id="path3263"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       sodipodi:nodetypes="ccccc"
+       id="path3265"
+       d="M 81.141230,87.755810 C 84.459262,88.473955 84.123197,82.696642 80.997355,84.784663 L 81.165917,84.782567 C 83.358427,83.535047 84.022507,87.849522 80.657301,87.810044 L 81.141230,87.755810 z "
+       style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+    <path
+       sodipodi:nodetypes="ccccc"
+       id="path3267"
+       d="M 53.639268,76.007315 L 54.285340,73.494537 C 64.646462,72.417632 75.438309,72.561220 84.291929,74.356061 C 84.579079,75.002204 84.579069,76.438076 84.579069,76.438076 C 74.409377,74.786823 64.167892,74.715029 53.639268,76.007315 z "
+       style="fill:url(#linearGradient1578);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+    <path
+       style="stroke-opacity:1.0000000;stroke-dashoffset:0.0000000;stroke-miterlimit:4.0000000;stroke-width:2.0000000;stroke:none;fill-opacity:1.0;fill:url(#linearGradient2396)"
+       d="M 63.541028,46.578266 C 60.795866,46.874952 58.191380,49.036548 56.573010,52.859516 C 56.311317,52.720852 56.080372,52.547016 55.760595,52.547016 C 54.750141,52.547016 53.917039,53.326078 53.917039,54.297016 C 53.917039,54.662210 54.124717,54.953277 54.323246,55.234516 C 51.876503,55.682063 49.373416,57.624059 47.136501,62.203266 C 46.838072,62.000317 46.529765,61.797015 46.136606,61.797016 C 45.126152,61.797016 44.293059,62.576079 44.293049,63.547016 C 44.293049,64.517953 45.126152,65.328268 46.136606,65.328266 C 47.147070,65.328266 47.948916,64.517953 47.948916,63.547016 C 47.948916,63.158909 47.733308,62.869271 47.511461,62.578266 C 56.511566,56.218631 56.582679,63.060857 55.323141,68.265766 C 54.759410,71.517934 53.729558,75.515769 53.729558,75.515766 C 53.739857,75.513580 53.750506,75.517945 53.760805,75.515766 L 53.635818,76.015766 C 53.667015,76.011937 53.698362,76.019571 53.729558,76.015766 C 52.778928,78.601942 52.229716,81.434675 52.229716,84.453266 C 52.229716,91.737168 55.327681,98.113516 59.978902,101.79702 L 59.728928,101.79702 L 46.792787,101.54702 L 60.135136,105.57827 L 48.230136,115.79702 L 52.479690,113.82827 C 51.551147,115.59681 50.886107,117.52855 50.886107,119.67202 L 50.886107,134.57827 C 53.627179,135.93701 57.393354,136.80275 61.478745,137.39076 L 61.541238,137.51576 C 62.113078,137.60531 62.637353,137.57351 63.197314,137.64076 L 63.228561,137.70326 C 64.802046,137.92515 66.187150,137.95234 67.009414,137.95326 L 67.040661,137.92201 C 67.656096,137.93956 68.302198,138.05801 68.915464,138.04701 C 71.647767,138.12217 74.289110,137.91192 77.008364,137.67201 L 77.008364,137.82826 L 80.476750,137.57826 L 80.445503,137.39076 C 84.532944,136.80999 88.402947,135.94776 91.506841,134.57827 L 91.506841,119.67202 C 91.506841,116.04126 89.961864,112.79870 87.538508,110.48452 C 89.278605,110.61601 92.069282,110.82827 92.069282,110.82827 L 81.601632,105.32827 C 81.601632,105.32827 92.061643,96.023408 91.538088,96.547016 C 91.219082,96.866056 85.223051,98.691376 79.820569,100.29702 C 83.550657,96.503396 85.976172,90.851085 85.976172,84.453266 C 85.976172,81.460469 85.442928,78.647112 84.507576,76.078266 C 84.505927,75.999184 84.482869,75.835364 84.476330,75.703266 C 84.482399,74.958067 84.511056,72.036474 84.351343,71.015766 C 85.092625,64.714256 77.637448,52.958373 90.069492,58.328266 C 89.632378,58.649802 89.319571,59.102588 89.319571,59.672016 C 89.319571,60.642953 90.121427,61.453266 91.131881,61.453266 C 92.142345,61.453266 92.975447,60.642955 92.975437,59.672016 C 92.975437,58.701079 92.142345,57.922015 91.131881,57.922016 C 90.848361,57.922016 90.652841,58.092553 90.413206,58.203266 C 76.120717,39.211668 74.040116,62.829060 73.852445,62.078266 C 73.850276,62.069571 73.794102,62.086271 73.789952,62.078266 C 73.346938,51.035916 68.303048,46.063606 63.541028,46.578266 z M 62.884847,51.203266 C 67.312602,52.465395 66.040766,62.078266 66.040766,62.078266 C 65.889432,62.005881 65.544858,62.014270 65.509571,61.890766 C 65.295684,61.142077 61.631919,56.344938 57.166698,55.265766 C 57.375566,54.979998 57.572905,54.672489 57.572905,54.297016 C 57.572905,53.786986 57.340529,53.337137 56.979217,53.015766 C 59.565066,51.358447 61.540998,50.820203 62.884847,51.203266 z "
+       id="path4065" />
+  </g>
+
+  
+
+  <metadata>
+    <rdf:RDF 
+     xmlns="http://web.resource.org/cc/"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+      <Work rdf:about="">
+        <dc:title>card</dc:title>
+        <dc:description></dc:description>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>white</rdf:li>
+            <rdf:li>card</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:publisher>
+           <Agent>
+             <dc:title></dc:title>
+           </Agent>
+         </dc:publisher>
+         <dc:creator>
+           <Agent>
+             <dc:title>Nicu Buculei</dc:title>
+           </Agent>
+        </dc:creator>
+         <dc:rights>
+           <Agent>
+             <dc:title>Nicu Buculei</dc:title>
+           </Agent>
+        </dc:rights>
+        <dc:date></dc:date>
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+        <dc:language>en</dc:language>
+      </Work>
+
+      <License rdf:about="http://web.resource.org/cc/PublicDomain">
+         <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+         <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+         <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+      </License>
+
+    </rdf:RDF>
+  </metadata>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/qml/cards/images/nicubunu_White_deck_Queen_of_hearts.svg	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,432 @@
+<?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://web.resource.org/cc/"
+   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:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   sodipodi:docbase="/home/nicu/Desktop/simple"
+   sodipodi:docname="h_q.svg"
+   inkscape:version="0.41"
+   sodipodi:version="0.32"
+   version="1.0"
+   x="0.0000000"
+   y="0.0000000"
+   width="140.00000"
+   height="190.00000"
+   id="svg2">
+  
+  <sodipodi:namedview
+     inkscape:current-layer="svg2"
+     inkscape:window-y="26"
+     inkscape:window-x="0"
+     inkscape:cy="95.000000"
+     inkscape:cx="70.000000"
+     inkscape:zoom="1.0000000"
+     inkscape:window-height="791"
+     inkscape:window-width="1152"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base" />
+  <defs
+     id="defs3">
+    <linearGradient
+       id="linearGradient2060">
+      <stop
+         style="stop-color:#ebf0d0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop2062" />
+      <stop
+         style="stop-color:#ffffeb;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop2064" />
+    </linearGradient>
+    <linearGradient
+       x1="2.0000000"
+       y1="63.099518"
+       x2="109.00000"
+       y2="128.69501"
+       id="linearGradient4853"
+       xlink:href="#linearGradient2060"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0.000000,-1.000000)" />
+    <linearGradient
+       id="linearGradient6214">
+      <stop
+         style="stop-color:#c10000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop6216" />
+      <stop
+         style="stop-color:#ff433e;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop6218" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5417">
+      <stop
+         id="stop5419"
+         offset="0.0000000"
+         style="stop-color:#f0a700;stop-opacity:1.0000000;" />
+      <stop
+         id="stop5421"
+         offset="1.0000000"
+         style="stop-color:#ffed00;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5407">
+      <stop
+         style="stop-color:#f0eb00;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5409" />
+      <stop
+         style="stop-color:#ffff00;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5411" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3865">
+      <stop
+         style="stop-color:#0083cc;stop-opacity:1;"
+         offset="0"
+         id="stop3867" />
+      <stop
+         style="stop-color:#24a4cc;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop3869" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3857">
+      <stop
+         style="stop-color:#ffd8c1;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop3859" />
+      <stop
+         style="stop-color:#ffeded;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop3861" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2580">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2582" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2584" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3196">
+      <stop
+         style="stop-color:#008200;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop3198" />
+      <stop
+         style="stop-color:#00d000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop3200" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4408">
+      <stop
+         style="stop-color:#ff44ab;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop4410" />
+      <stop
+         style="stop-color:#ff66cc;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop4412" />
+    </linearGradient>
+    <linearGradient
+       y2="256.17966"
+       x2="484.79608"
+       y1="437.49887"
+       x1="356.44232"
+       gradientTransform="matrix(0.186825,0.000000,0.000000,0.144857,9.088650,209.5334)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient25640"
+       xlink:href="#linearGradient3857"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="415.53949"
+       x2="449.32318"
+       y1="540.53918"
+       x1="298.98572"
+       gradientTransform="matrix(0.144857,0.000000,0.000000,0.144857,34.48385,222.1738)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient25642"
+       xlink:href="#linearGradient3196"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="85.362183"
+       x2="698.00000"
+       y1="146.36218"
+       x1="632.00000"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient25644"
+       xlink:href="#linearGradient5417"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="160.36218"
+       x2="708.00000"
+       y1="210.36218"
+       x1="653.00000"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient25646"
+       xlink:href="#linearGradient5407"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="322.13895"
+       x2="312.09238"
+       y1="346.32654"
+       x1="294.24606"
+       gradientTransform="matrix(0.144857,0.000000,0.000000,0.144857,31.88155,221.5233)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient25648"
+       xlink:href="#linearGradient6214"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="113.28660"
+       x2="65.800056"
+       y1="122.47619"
+       x1="53.127300"
+       gradientTransform="translate(21.43750,166.2081)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient25650"
+       xlink:href="#linearGradient3857"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="98.109093"
+       x2="-101.90910"
+       y1="46.290909"
+       x1="-21.763636"
+       gradientTransform="translate(178.4375,157.2110)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient25652"
+       xlink:href="#linearGradient2580"
+       inkscape:collect="always" />
+  </defs>
+  <g
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Layer 1">
+    <g
+       id="g5630">
+      <path
+         id="rect2070"
+         d="M 21.000000,5.0000000 L 124.00000,5.0000000 C 132.86400,5.0000000 140.00000,12.136000 140.00000,21.000000 L 140.00000,174.00000 C 140.00000,182.86400 132.86400,190.00000 124.00000,190.00000 L 21.000000,190.00000 C 12.136000,190.00000 5.0000000,182.86400 5.0000000,174.00000 L 5.0000000,21.000000 C 5.0000000,12.136000 12.136000,5.0000000 21.000000,5.0000000 z "
+         style="fill:#000000;fill-opacity:0.49803922;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+      <path
+         id="rect1300"
+         d="M 17.000000,1.0000000 L 120.00000,1.0000000 C 128.86400,1.0000000 136.00000,8.1360000 136.00000,17.000000 L 136.00000,170.00000 C 136.00000,178.86400 128.86400,186.00000 120.00000,186.00000 L 17.000000,186.00000 C 8.1360000,186.00000 1.0000000,178.86400 1.0000000,170.00000 L 1.0000000,17.000000 C 1.0000000,8.1360000 8.1360000,1.0000000 17.000000,1.0000000 z "
+         style="fill:#e7e7e7;fill-opacity:1.0000000;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+      <path
+         id="path5624"
+         d="M 19.000000,3.0000000 L 122.00000,3.0000000 C 130.86400,3.0000000 138.00000,10.136000 138.00000,19.000000 L 138.00000,172.00000 C 138.00000,180.86400 130.86400,188.00000 122.00000,188.00000 L 19.000000,188.00000 C 10.136000,188.00000 3.0000000,180.86400 3.0000000,172.00000 L 3.0000000,19.000000 C 3.0000000,10.136000 10.136000,3.0000000 19.000000,3.0000000 z "
+         style="fill:#c7891f;fill-opacity:1.0000000;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+      <path
+         id="rect1306"
+         d="M 18.000000,1.9999995 L 121.00000,1.9999995 C 129.86400,1.9999995 137.00000,9.1359995 137.00000,18.000000 L 137.00000,171.00000 C 137.00000,179.86400 129.86400,187.00000 121.00000,187.00000 L 18.000000,187.00000 C 9.1360000,187.00000 2.0000000,179.86400 2.0000000,171.00000 L 2.0000000,18.000000 C 2.0000000,9.1359995 9.1360000,1.9999995 18.000000,1.9999995 z "
+         style="fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-width:0.20000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    </g>
+    <g
+       inkscape:label="Layer 1"
+       inkscape:groupmode="layer"
+       id="g5495"
+       transform="translate(-448.5000,-231.5000)" />
+  </g>
+  <path
+     d="M 22.038657,42.782560 L 21.540255,42.782560 C 17.453352,42.782559 14.274661,41.416186 12.004173,38.683439 C 9.7336738,35.950698 8.5984273,32.146288 8.5984290,27.270199 C 8.5984273,22.407535 9.7281362,18.596429 11.987559,15.836866 C 14.258048,13.077356 17.381361,11.697588 21.357507,11.697557 C 25.377929,11.697588 28.506779,13.063960 30.744070,15.796678 C 32.992388,18.529450 34.116560,22.353953 34.116587,27.270199 C 34.116560,30.645958 33.518479,33.552847 32.322341,35.990879 C 31.137229,38.428922 29.426052,40.264147 27.188806,41.496561 L 32.189434,48.248055 L 26.092323,48.248055 L 22.038657,42.782560 M 21.357507,17.303708 C 19.408191,17.303733 17.896376,18.174461 16.822054,19.915893 C 15.747713,21.657371 15.210547,24.108804 15.210556,27.270199 C 15.210547,30.485208 15.736637,32.950037 16.788827,34.664692 C 17.840998,36.365967 19.363889,37.216601 21.357507,37.216596 C 23.317870,37.216601 24.835225,36.345874 25.909575,34.604411 C 26.983887,32.862964 27.521053,30.418229 27.521074,27.270199 C 27.521053,24.108804 26.983887,21.657371 25.909575,19.915893 C 24.835225,18.174461 23.317870,17.303733 21.357507,17.303708"
+     style="font-size:37.418766;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ff0000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+     id="text1481" />
+  <path
+     d="M 116.65130,146.08750 L 117.14970,146.08750 C 121.23661,146.08750 124.41529,147.45387 126.68578,150.18662 C 128.95628,152.91935 130.09153,156.72376 130.09152,161.59985 C 130.09153,166.46251 128.96182,170.27363 126.70239,173.03319 C 124.43190,175.79269 121.30859,177.17246 117.33245,177.17249 C 113.31202,177.17246 110.18317,175.80609 107.94589,173.07337 C 105.69757,170.34060 104.57339,166.51609 104.57337,161.59985 C 104.57339,158.22410 105.17148,155.31720 106.36762,152.87917 C 107.55272,150.44112 109.26390,148.60591 111.50115,147.37349 L 106.50052,140.62200 L 112.59764,140.62200 L 116.65130,146.08750 M 117.33245,171.56634 C 119.28176,171.56632 120.79358,170.69559 121.86790,168.95416 C 122.94224,167.21267 123.47940,164.76125 123.47940,161.59985 C 123.47940,158.38485 122.95332,155.92002 121.90113,154.20536 C 120.84896,152.50408 119.32607,151.65345 117.33245,151.65345 C 115.37208,151.65345 113.85473,152.52417 112.78038,154.26565 C 111.70607,156.00708 111.16890,158.45182 111.16888,161.59985 C 111.16890,164.76125 111.70607,167.21267 112.78038,168.95416 C 113.85473,170.69559 115.37208,171.56632 117.33245,171.56634"
+     style="font-size:37.418766;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ff0000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr-tb"
+     id="text4064" />
+  <g
+     id="g5530" />
+  <g
+     transform="matrix(0.286388,0.000000,0.000000,0.388772,-29.60833,-9.472414)"
+     style="fill:#ff0000;fill-opacity:1.0000000"
+     id="g1390">
+    <path
+       d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+       transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+       style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+       id="path1392" />
+  </g>
+  <g
+     transform="matrix(-0.286388,0.000000,0.000000,-0.388772,168.4700,198.3135)"
+     style="fill:#ff0000;fill-opacity:1.0000000"
+     id="g5938">
+    <path
+       d="M 147.20601,156.41679 C 144.67035,156.42954 141.88421,156.89888 138.79976,157.94804 C 105.17650,177.48492 150.50459,208.98936 169.64351,236.04179 L 170.19602,236.18010 C 191.22900,206.61098 231.26801,174.07246 200.67476,157.94804 C 176.43799,149.70401 169.96344,177.14611 169.73726,178.13554 C 169.53987,177.27202 164.59485,156.32936 147.20601,156.41679 z "
+       transform="matrix(1.105375,0.000000,0.000000,1.079637,-12.01415,-18.86731)"
+       style="fill-rule:evenodd;stroke:none;stroke-width:3.4289415;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+       id="path5940" />
+  </g>
+  <g
+     transform="translate(-19.25000,-171.6968)"
+     id="g4128">
+    <path
+       sodipodi:nodetypes="ccccccccccccccccccc"
+       id="path1751"
+       d="M 75.087650,217.75379 C 75.336420,226.14304 66.313280,205.91160 70.137770,218.77161 C 69.960050,223.71702 75.882810,231.41803 71.781250,234.42681 C 66.291930,237.62819 62.366400,243.10911 60.500000,249.14556 C 67.223680,248.19117 63.283140,253.95275 63.988680,258.04841 C 64.194460,265.79783 69.790490,274.18124 76.763720,277.94586 C 68.297580,279.57819 65.223770,286.83053 66.094510,293.83916 C 60.400680,297.66342 66.085580,302.82291 65.243900,306.36431 C 66.864080,310.35371 74.183840,310.12768 78.312500,311.30181 C 88.833923,312.17348 99.752936,311.84657 109.65625,307.80181 C 108.83212,298.37740 113.89347,285.53594 101.36738,279.15776 C 107.59135,279.04187 115.46554,277.58725 121.50000,276.27056 C 114.63555,273.56240 102.57453,270.69259 104.74067,260.96302 C 106.27506,249.49797 102.46798,234.14029 89.312500,231.98931 C 90.340785,225.66714 91.861285,219.39946 91.812500,212.95806 C 86.134899,227.46945 87.265863,204.13768 84.593655,214.17594 C 82.539790,221.97884 81.071312,203.79944 79.412281,217.15347 C 77.438910,214.96966 75.710660,203.11522 75.560440,214.87799 L 75.087650,217.75379 z "
+       style="fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <path
+       id="path1755"
+       d="M 99.660676,256.88098 C 99.660676,268.29431 92.096808,277.55731 82.777041,277.55731 C 73.457274,277.55731 65.893406,268.29431 65.893406,256.88098 C 65.893406,245.46765 73.457274,236.20465 82.777041,236.20465 C 92.096808,236.20465 99.660676,245.46765 99.660676,256.88098 z "
+       style="fill:url(#linearGradient25640);fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <path
+       id="path1757"
+       d="M 79.736950,278.70920 C 72.687893,278.70920 67.018200,284.37890 67.018200,291.42795 L 67.018200,294.61545 C 65.840514,296.44891 64.685387,298.16896 64.924450,299.58420 C 65.100856,300.62851 66.017312,301.47651 67.018200,302.20920 L 67.018200,306.33420 C 76.398095,310.98332 96.550473,311.22802 107.64320,306.33420 L 107.64320,291.42795 C 107.64320,284.37890 101.97351,278.70920 94.924450,278.70920 L 79.736950,278.70920 z "
+       style="fill:url(#linearGradient25642);fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <path
+       sodipodi:nodetypes="ccccccc"
+       id="path1759"
+       d="M 63.238347,247.57963 C 63.238347,247.57963 67.134755,233.44897 83.850119,233.16926 C 100.28441,232.88956 104.67019,247.05160 102.81682,263.00151 C 101.10399,271.50292 114.71752,275.78681 114.71752,275.78681 C 109.86463,277.36412 98.265942,278.80088 91.023914,276.30258 C 97.311736,271.58069 92.070449,248.95499 88.644778,246.01871 C 84.375887,249.40662 67.611393,249.11417 63.238347,247.57963 z "
+       style="fill:#8d0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.5371202px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+    <g
+       transform="matrix(0.144857,0.000000,0.000000,0.144857,31.88155,221.5233)"
+       id="g1761">
+      <path
+         id="path1763"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="translate(-4.000000,-6.000000)" />
+      <path
+         id="path1765"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#00cc00;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="matrix(0.571429,0.000000,0.000000,0.837210,129.2857,34.52408)" />
+      <path
+         id="path1767"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="matrix(0.357143,0.000000,0.000000,0.674419,195.9286,76.04816)" />
+    </g>
+    <g
+       transform="matrix(0.119803,0.000000,0.000000,9.705316e-2,1.596900,213.8753)"
+       id="g1769">
+      <path
+         style="fill:url(#linearGradient25644);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         d="M 618.00000,99.362183 L 628.00000,14.362183 L 666.00000,129.36218 C 666.00000,129.36218 700.00000,6.3621826 700.00000,10.362183 C 700.00000,14.362183 723.00000,101.36218 723.00000,101.36218 L 705.00000,171.36218 L 628.00000,171.36218 L 618.00000,99.362183 z "
+         id="path1771"
+         sodipodi:nodetypes="cccccccc" />
+      <path
+         style="fill:url(#linearGradient25646);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         d="M 589.00000,51.362183 L 625.00000,230.36218 C 652.00000,241.02885 685.00000,239.69551 709.00000,231.36218 L 734.00000,53.362183 L 690.00000,142.36218 L 667.00000,23.362183 L 644.00000,141.36218 L 589.00000,51.362183 z "
+         id="path1773"
+         sodipodi:nodetypes="cccccccc" />
+    </g>
+    <g
+       transform="matrix(0.144857,0.000000,0.000000,0.144857,21.79305,221.0189)"
+       id="g1775">
+      <path
+         id="path1777"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="translate(-4.000000,-6.000000)" />
+      <path
+         id="path1779"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#00cc00;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="matrix(0.571429,0.000000,0.000000,0.837210,129.2857,34.52408)" />
+      <path
+         id="path1781"
+         d="M 353.00000,245.86218 C 353.00000,257.73018 343.59200,267.36218 332.00000,267.36218 C 320.40800,267.36218 311.00000,257.73018 311.00000,245.86218 C 311.00000,233.99418 320.40800,224.36218 332.00000,224.36218 C 343.59200,224.36218 353.00000,233.99418 353.00000,245.86218 z "
+         style="fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+         transform="matrix(0.357143,0.000000,0.000000,0.674419,195.9286,76.04816)" />
+    </g>
+    <path
+       sodipodi:nodetypes="ccc"
+       id="path1783"
+       d="M 71.226503,268.91966 C 74.757462,273.33336 78.162315,271.82009 82.954327,268.91966 C 78.666739,268.66745 75.766310,267.40639 71.226503,268.91966 z "
+       style="fill:url(#linearGradient25648);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+    <path
+       sodipodi:nodetypes="ccccc"
+       id="path1785"
+       d="M 93.849281,294.57447 L 95.112871,294.69773 L 96.484227,309.21049 L 93.019041,309.46089 L 93.849281,294.57447 z "
+       style="fill:#005a00;fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <path
+       style="fill:#005a00;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+       d="M 77.218750,300.02056 L 76.406250,300.58306 C 78.449765,303.54408 80.147660,306.25704 82.293446,306.64022 C 84.439232,307.02340 86.966366,305.08987 89.000000,304.17681 L 88.593750,303.27056 C 86.637588,304.14884 84.750259,304.69360 82.906250,304.36431 C 81.062241,304.03502 79.165029,302.84068 77.218750,300.02056 z "
+       id="path1787"
+       sodipodi:nodetypes="ccccccc" />
+    <path
+       style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+       d="M 72.888100,258.47302 C 72.096200,259.75985 71.153650,260.96350 71.317910,261.93594 C 71.482180,262.90838 72.759840,263.61035 73.549800,264.17096 L 73.880650,263.69307 C 73.185960,263.20006 72.729070,262.56267 72.594010,261.76312 C 72.458960,260.96356 72.643740,259.97064 73.384370,258.76710 L 72.888100,258.47302 z "
+       id="path1789"
+       sodipodi:nodetypes="ccccccc" />
+    <path
+       sodipodi:nodetypes="cccc"
+       id="path1791"
+       d="M 77.723719,279.24527 C 77.723719,279.24527 71.405879,291.01943 72.841751,299.63466 C 78.298069,289.87073 85.477433,280.39397 89.497878,278.67092 C 88.062005,278.09657 79.159592,278.38374 77.723719,279.24527 z "
+       style="fill:url(#linearGradient25650);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+    <path
+       sodipodi:nodetypes="ccccc"
+       id="path1793"
+       d="M 64.835771,299.50725 C 65.115051,301.16057 67.287291,302.35403 68.630361,303.30717 L 68.956731,303.03811 C 67.775641,302.19992 67.192814,302.08187 66.963194,300.72249 C 66.733574,299.36311 64.556491,297.85393 64.835771,299.50725 z "
+       style="fill:#005a00;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+    <path
+       id="path1795"
+       d="M 85.468750,214.89853 C 85.468750,214.65644 84.098700,218.62565 82.906250,222.08603 L 81.500000,216.14853 L 79.906250,222.80478 L 76.843750,215.27353 L 75.625000,223.46103 L 72.156250,218.86728 L 76.062500,234.64853 C 65.966880,238.24409 63.250000,247.58603 63.250000,247.58603 C 64.139340,247.89811 65.763730,248.11595 67.468750,248.30478 C 66.486160,250.92640 65.906250,253.82670 65.906250,256.89853 C 65.906250,268.31187 73.461480,277.55479 82.781250,277.55479 C 86.645220,277.55479 90.153600,275.88863 93.000000,273.21104 C 92.533070,274.51518 91.933690,275.62710 91.031250,276.30479 C 98.273280,278.80309 109.86587,277.38209 114.71875,275.80479 C 114.71875,275.80479 101.09967,271.49370 102.81250,262.99228 C 104.53455,248.17253 100.74169,235.07495 87.031250,233.49228 L 89.531250,219.05478 L 87.687500,222.05478 C 87.003590,219.94787 85.468750,215.21360 85.468750,214.89853 z M 79.750000,278.71104 C 72.700950,278.71104 67.031250,284.38074 67.031250,291.42979 L 67.031250,294.61729 C 65.853560,296.45075 64.698440,298.17080 64.937500,299.58604 C 65.113910,300.63035 66.030360,301.47835 67.031250,302.21104 L 67.031250,306.36729 C 73.043390,309.34720 83.391900,310.29339 93.031250,309.46104 C 94.179860,309.36186 95.351570,309.36742 96.468750,309.21104 C 100.60337,308.63228 104.52074,307.75059 107.65625,306.36729 L 107.65625,291.42979 C 107.65625,284.38074 101.95531,278.71104 94.906250,278.71104 L 79.750000,278.71104 z "
+       style="fill:url(#linearGradient25652);fill-opacity:1.0000000;stroke:none;stroke-width:2.0000000;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+  </g>
+
+  
+
+  <metadata>
+    <rdf:RDF 
+     xmlns="http://web.resource.org/cc/"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+      <Work rdf:about="">
+        <dc:title>card</dc:title>
+        <dc:description></dc:description>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>white</rdf:li>
+            <rdf:li>card</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:publisher>
+           <Agent>
+             <dc:title></dc:title>
+           </Agent>
+         </dc:publisher>
+         <dc:creator>
+           <Agent>
+             <dc:title>Nicu Buculei</dc:title>
+           </Agent>
+        </dc:creator>
+         <dc:rights>
+           <Agent>
+             <dc:title>Nicu Buculei</dc:title>
+           </Agent>
+        </dc:rights>
+        <dc:date></dc:date>
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+        <dc:language>en</dc:language>
+      </Work>
+
+      <License rdf:about="http://web.resource.org/cc/PublicDomain">
+         <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+         <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+         <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+      </License>
+
+    </rdf:RDF>
+  </metadata>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/qml/cards/images/readme	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,5 @@
+
+The SVG files used in this demo are from http://www.openclipart.org under create commons.
+They are the creations of http://www.openclipart.org/user-detail/nicubunu
+
+getem.sh is a shell scripte to download them.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/qml/cards/main.qml	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,29 @@
+import Qt 4.7
+
+Rectangle {
+    id: window
+
+    width: 360; height: 640
+    color: "darkgreen"
+
+    // a button to exit the app.
+    Button {x: 165; y:10; width: 150; height: 55}
+
+    // here are the cards
+
+    Row {
+        spacing: 30
+        anchors.centerIn: parent
+        Cards {
+            yAxis: 1
+            angle: 180
+            image: "images/nicubunu_White_deck_Black_Joker.svg"
+        }
+
+        Cards {
+            angle: 540
+            xAxis: 1
+            image: "images/nicubunu_White_deck_Queen_of_hearts.svg"
+        }
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/qmlapplicationviewer/qmlapplicationviewer.cpp	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,127 @@
+// checksum 0xdf1f version 0x10008
+#include "qmlapplicationviewer.h"
+
+#include <QtCore/QCoreApplication>
+#include <QtCore/QDir>
+#include <QtCore/QFileInfo>
+#include <QtDeclarative/QDeclarativeComponent>
+#include <QtDeclarative/QDeclarativeEngine>
+#include <QtDeclarative/QDeclarativeContext>
+
+#if defined(QMLJSDEBUGGER)
+#include <jsdebuggeragent.h>
+#endif
+#if defined(QMLOBSERVER)
+#include <qdeclarativeviewobserver.h>
+#endif
+
+#if defined(Q_OS_SYMBIAN) && defined(ORIENTATIONLOCK)
+#include <eikenv.h>
+#include <eikappui.h>
+#include <aknenv.h>
+#include <aknappui.h>
+#endif // Q_OS_SYMBIAN && ORIENTATIONLOCK
+
+class QmlApplicationViewerPrivate
+{
+    QString mainQmlFile;
+    friend class QmlApplicationViewer;
+    static QString adjustPath(const QString &path);
+};
+
+QString QmlApplicationViewerPrivate::adjustPath(const QString &path)
+{
+#ifdef Q_OS_UNIX
+#ifdef Q_OS_MAC
+    if (!QDir::isAbsolutePath(path))
+        return QCoreApplication::applicationDirPath()
+                + QLatin1String("/../Resources/") + path;
+#else
+    const QString pathInShareDir = QCoreApplication::applicationDirPath()
+        + QLatin1String("/../share/")
+        + QFileInfo(QCoreApplication::applicationFilePath()).fileName()
+        + QLatin1Char('/') + path;
+    if (QFileInfo(pathInShareDir).exists())
+        return pathInShareDir;
+#endif
+#endif
+    return path;
+}
+
+QmlApplicationViewer::QmlApplicationViewer(QWidget *parent) :
+    QDeclarativeView(parent),
+    m_d(new QmlApplicationViewerPrivate)
+{
+    connect(engine(), SIGNAL(quit()), SLOT(close()));
+    setResizeMode(QDeclarativeView::SizeRootObjectToView);
+#ifdef QMLJSDEBUGGER
+    new QmlJSDebugger::JSDebuggerAgent(engine());
+#endif
+#ifdef QMLOBSERVER
+    new QmlJSDebugger::QDeclarativeViewObserver(this, parent);
+#endif
+}
+
+QmlApplicationViewer::~QmlApplicationViewer()
+{
+    delete m_d;
+}
+
+void QmlApplicationViewer::setMainQmlFile(const QString &file)
+{
+    m_d->mainQmlFile = QmlApplicationViewerPrivate::adjustPath(file);
+    setSource(QUrl::fromLocalFile(m_d->mainQmlFile));
+}
+
+void QmlApplicationViewer::addImportPath(const QString &path)
+{
+    engine()->addImportPath(QmlApplicationViewerPrivate::adjustPath(path));
+}
+
+void QmlApplicationViewer::setOrientation(Orientation orientation)
+{
+#ifdef Q_OS_SYMBIAN
+    if (orientation != Auto) {
+#if defined(ORIENTATIONLOCK)
+        const CAknAppUiBase::TAppUiOrientation uiOrientation =
+                (orientation == LockPortrait) ? CAknAppUi::EAppUiOrientationPortrait
+                    : CAknAppUi::EAppUiOrientationLandscape;
+        CAknAppUi* appUi = dynamic_cast<CAknAppUi*> (CEikonEnv::Static()->AppUi());
+        TRAPD(error,
+            if (appUi)
+                appUi->SetOrientationL(uiOrientation);
+        );
+#else // ORIENTATIONLOCK
+        qWarning("'ORIENTATIONLOCK' needs to be defined on Symbian when locking the orientation.");
+#endif // ORIENTATIONLOCK
+    }
+#elif defined(Q_WS_MAEMO_5)
+    Qt::WidgetAttribute attribute;
+    switch (orientation) {
+    case LockPortrait:
+        attribute = Qt::WA_Maemo5PortraitOrientation;
+        break;
+    case LockLandscape:
+        attribute = Qt::WA_Maemo5LandscapeOrientation;
+        break;
+    case Auto:
+    default:
+        attribute = Qt::WA_Maemo5AutoOrientation;
+        break;
+    }
+    setAttribute(attribute, true);
+#else // Q_OS_SYMBIAN
+    Q_UNUSED(orientation);
+#endif // Q_OS_SYMBIAN
+}
+
+void QmlApplicationViewer::show()
+{
+#ifdef Q_OS_SYMBIAN
+    showFullScreen();
+#elif defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6)
+    showMaximized();
+#else
+    QDeclarativeView::show();
+#endif
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/qmlapplicationviewer/qmlapplicationviewer.h	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,28 @@
+// checksum 0x39ee version 0x10008
+#ifndef QMLAPPLICATIONVIEWER_H
+#define QMLAPPLICATIONVIEWER_H
+
+#include <QtDeclarative/QDeclarativeView>
+
+class QmlApplicationViewer : public QDeclarativeView
+{
+public:
+    enum Orientation {
+        LockPortrait,
+        LockLandscape,
+        Auto
+    };
+
+    QmlApplicationViewer(QWidget *parent = 0);
+    virtual ~QmlApplicationViewer();
+
+    void setMainQmlFile(const QString &file);
+    void addImportPath(const QString &path);
+    void setOrientation(Orientation orientation);
+    void show();
+
+private:
+    class QmlApplicationViewerPrivate *m_d;
+};
+
+#endif // QMLAPPLICATIONVIEWER_H
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cards/qmlapplicationviewer/qmlapplicationviewer.pri	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,152 @@
+# checksum 0xc123 version 0x10008
+# This file should not be edited.
+# Future versions of Qt Creator might offer updated versions of this file.
+
+QT += declarative
+
+SOURCES += $$PWD/qmlapplicationviewer.cpp
+HEADERS += $$PWD/qmlapplicationviewer.h
+INCLUDEPATH += $$PWD
+
+contains(DEFINES, QMLOBSERVER) {
+    DEFINES *= QMLJSDEBUGGER
+}
+
+defineTest(minQtVersion) {
+    maj = $$1
+    min = $$2
+    patch = $$3
+    isEqual(QT_MAJOR_VERSION, $$maj) {
+        isEqual(QT_MINOR_VERSION, $$min) {
+            isEqual(QT_PATCH_VERSION, $$patch) {
+                return(true)
+            }
+            greaterThan(QT_PATCH_VERSION, $$patch) {
+                return(true)
+            }
+        }
+        greaterThan(QT_MINOR_VERSION, $$min) {
+            return(true)
+        }
+    }
+    return(false)
+}
+
+contains(DEFINES, QMLJSDEBUGGER) {
+    CONFIG(debug, debug|release) {
+        !minQtVersion(4, 7, 1) {
+            warning()
+            warning("Debugging QML requires the qmljsdebugger library that ships with Qt Creator.")
+            warning("This library requires Qt 4.7.1 or newer.")
+            warning()
+
+            error("Qt version $$QT_VERSION too old for QmlJS Debugging. Aborting.")
+        }
+        isEmpty(QMLJSDEBUGGER_PATH) {
+            warning()
+            warning("Debugging QML requires the qmljsdebugger library that ships with Qt Creator.")
+            warning("Please specify its location on the qmake command line, eg")
+            warning("  qmake -r QMLJSDEBUGGER_PATH=$CREATORDIR/share/qtcreator/qmljsdebugger")
+            warning()
+
+            error("QMLJSDEBUGGER defined, but no QMLJSDEBUGGER_PATH set on command line. Aborting.")
+            DEFINES -= QMLJSDEBUGGER
+        } else {
+            include($$QMLJSDEBUGGER_PATH/qmljsdebugger-lib.pri)
+        }
+    } else {
+        DEFINES -= QMLJSDEBUGGER
+    }
+}
+# This file should not be edited.
+# Future versions of Qt Creator might offer updated versions of this file.
+
+defineTest(qtcAddDeployment) {
+for(deploymentfolder, DEPLOYMENTFOLDERS) {
+    item = item$${deploymentfolder}
+    itemsources = $${item}.sources
+    $$itemsources = $$eval($${deploymentfolder}.source)
+    itempath = $${item}.path
+    $$itempath= $$eval($${deploymentfolder}.target)
+    export($$itemsources)
+    export($$itempath)
+    DEPLOYMENT += $$item
+}
+
+MAINPROFILEPWD = $$PWD
+
+symbian {
+    ICON = $${TARGET}.svg
+    TARGET.EPOCHEAPSIZE = 0x20000 0x2000000
+    contains(DEFINES, ORIENTATIONLOCK):LIBS += -lavkon -leikcore -leiksrv -lcone
+    contains(DEFINES, NETWORKACCESS):TARGET.CAPABILITY += NetworkServices
+} else:win32 {
+    !isEqual(PWD,$$OUT_PWD) {
+        copyCommand = @echo Copying application data...
+        for(deploymentfolder, DEPLOYMENTFOLDERS) {
+            source = $$eval($${deploymentfolder}.source)
+            pathSegments = $$split(source, /)
+            sourceAndTarget = $$MAINPROFILEPWD/$$source $$OUT_PWD/$$eval($${deploymentfolder}.target)/$$last(pathSegments)
+            copyCommand += && $(COPY_DIR) $$replace(sourceAndTarget, /, \\)
+        }
+        copydeploymentfolders.commands = $$copyCommand
+        first.depends = $(first) copydeploymentfolders
+        export(first.depends)
+        export(copydeploymentfolders.commands)
+        QMAKE_EXTRA_TARGETS += first copydeploymentfolders
+    }
+} else:unix {
+    maemo5 {
+        installPrefix = /opt/usr
+        desktopfile.path = /usr/share/applications/hildon       
+    } else {
+        installPrefix = /usr/local
+        desktopfile.path = /usr/share/applications
+        !isEqual(PWD,$$OUT_PWD) {
+            copyCommand = @echo Copying application data...
+            for(deploymentfolder, DEPLOYMENTFOLDERS) {
+                macx {
+                    target = $$OUT_PWD/$${TARGET}.app/Contents/Resources/$$eval($${deploymentfolder}.target)
+                } else {
+                    target = $$OUT_PWD/$$eval($${deploymentfolder}.target)
+                }
+                copyCommand += && $(MKDIR) $$target
+                copyCommand += && $(COPY_DIR) $$MAINPROFILEPWD/$$eval($${deploymentfolder}.source) $$target
+            }
+            copydeploymentfolders.commands = $$copyCommand
+            first.depends = $(first) copydeploymentfolders
+            export(first.depends)
+            export(copydeploymentfolders.commands)
+            QMAKE_EXTRA_TARGETS += first copydeploymentfolders
+        }
+    }
+    for(deploymentfolder, DEPLOYMENTFOLDERS) {
+        item = item$${deploymentfolder}
+        itemfiles = $${item}.files
+        $$itemfiles = $$eval($${deploymentfolder}.source)
+        itempath = $${item}.path
+        $$itempath = $${installPrefix}/share/$${TARGET}/$$eval($${deploymentfolder}.target)
+        export($$itemfiles)
+        export($$itempath)
+        INSTALLS += $$item
+    }
+    icon.files = $${TARGET}.png
+    icon.path = /usr/share/icons/hicolor/64x64/apps
+    desktopfile.files = $${TARGET}.desktop
+    target.path = $${installPrefix}/bin
+    export(icon.files)
+    export(icon.path)
+    export(desktopfile.files)
+    export(desktopfile.path)
+    export(target.path)
+    INSTALLS += desktopfile icon target
+}
+
+export (ICON)
+export (INSTALLS)
+export (DEPLOYMENT)
+export (TARGET.EPOCHEAPSIZE)
+export (TARGET.CAPABILITY)
+export (LIBS)
+export (QMAKE_EXTRA_TARGETS)
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/readme	Mon Oct 25 10:35:32 2010 -0700
@@ -0,0 +1,5 @@
+This directory has a list of Qt Examples initially intended for SEE 2010.
+
+Cards - combines the Qt Card example with this images from Open Clipart to demonstrate how to use Flipable to flip playing cards
+
+MixedView - It is the basics of a PacMan game. It uses the accelerometera to move the little icon around the screen. It is a good example of graphics view too.