reactualisation de la séquence sur le tri
This commit is contained in:
parent
830306c648
commit
0dee5f0ec7
Binary file not shown.
|
@ -0,0 +1,51 @@
|
||||||
|
\documentclass[a4paper,12pt]{classPres}
|
||||||
|
\usepackage{tcolorbox}
|
||||||
|
|
||||||
|
\newtcbox{\obox}{nobeforeafter,colframe=mycolor,colback=white,boxrule=0.5pt,arc=4pt,
|
||||||
|
boxsep=0pt,left=6pt,right=6pt,top=6pt,bottom=6pt,tcbox raise base}
|
||||||
|
\newtcbox{\returnbox}{nobeforeafter,colframe=mycolor,colback=mycolor!20!white,boxrule=0.5pt,arc=4pt,
|
||||||
|
boxsep=0pt,left=6pt,right=6pt,top=6pt,bottom=6pt,tcbox raise base}
|
||||||
|
|
||||||
|
\author{}
|
||||||
|
\title{}
|
||||||
|
\date{}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
\begin{frame}{Tri de cartes}
|
||||||
|
\vfill
|
||||||
|
\textbf{Objectif: } Trouver une méthode pour trier les cartes en ordre croissant.
|
||||||
|
\begin{center}
|
||||||
|
\obox{???} <
|
||||||
|
\obox{???} <
|
||||||
|
\obox{???} <
|
||||||
|
\obox{???} <
|
||||||
|
\obox{???} <
|
||||||
|
\obox{???}
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\textbf{Restrictions:}
|
||||||
|
\begin{itemize}
|
||||||
|
\item Retourner 2 cartes à la fois pour comparer
|
||||||
|
\begin{center}
|
||||||
|
\obox{???}
|
||||||
|
\returnbox{111}
|
||||||
|
\obox{???}
|
||||||
|
\obox{???}
|
||||||
|
\returnbox{100}
|
||||||
|
\obox{???}
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\item Oublier les cartes face cachée
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\textbf{Production: } Décrire la méthode en utilisant les mots:
|
||||||
|
\begin{center}
|
||||||
|
\ovalbox{D'abord} \hspace{0.5cm} \ovalbox{puis} \hspace{0.5cm} \ovalbox{ensuite} \hspace{0.5cm} \ovalbox{enfin} \hspace{0.5cm} \ovalbox{jusqu'à ce que} \hspace{0.5cm} \ovalbox{tant que}\hspace{0.5cm} \ovalbox{alors}
|
||||||
|
\end{center}
|
||||||
|
\vfill
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\end{document}
|
|
@ -0,0 +1,90 @@
|
||||||
|
Initiation à l'algo avec les 2nd du PPS: Tri
|
||||||
|
############################################
|
||||||
|
|
||||||
|
:date: 2018-09-18
|
||||||
|
:modified: 2018-09-18
|
||||||
|
:tags: Programmation
|
||||||
|
:category: 2nd
|
||||||
|
:authors: Benjamin Bertrand
|
||||||
|
:summary: Recherche d'algorithmes de tri avec les 2nd du PSS pour l'année 2018-2019.
|
||||||
|
|
||||||
|
Description
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Les élèves reçoivent un paquet de carte avec des nombres dessus, ils les
|
||||||
|
disposent face caché devant eux. Il doivent alors les trier par ordre
|
||||||
|
croissant. Pour cela, ils ont le droit de retourner que deux cartes à la
|
||||||
|
fois et de les comparer puis de les replacer face caché sur la table. Au
|
||||||
|
moment, où les cartes sont face cachée, ils doivent oublier leurs
|
||||||
|
valeurs.
|
||||||
|
|
||||||
|
À la fin de l'heure, ils doivent rendre une feuille où ils expliquent la
|
||||||
|
méthode qu'ils ont trouvée pour trier les cartes (avec un nombre limité
|
||||||
|
de connecteurs logiques) et le nombre maximal de comparaison qu'ils
|
||||||
|
devront effectuer pour trier leur tas.
|
||||||
|
|
||||||
|
Déroulement
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Les élèves se mettent par groupes de 3 ou 4 mais reçoivent chacun un
|
||||||
|
paquet de carte qui leur ait propre (de cette manière, ils pourront
|
||||||
|
tester une idée sans attendre que leur camarade n'utilise plus les
|
||||||
|
cartes.). `Les règles <./consignes.pdf>`_ sont projetées au tableau
|
||||||
|
pour qu'ils puissent s'y référer à tout moment.
|
||||||
|
|
||||||
|
Ils commencent pas 10min de travail personnel, où ils vont s'approprier
|
||||||
|
le problème sans être pollué par la réflexion des autres membres du
|
||||||
|
groupe. C'est au moment de répondre aux différentes personnes qui n'ont
|
||||||
|
pas bien compris les règles. Commencer par trier toutes les cartes
|
||||||
|
distribuées n'est pas forcement une bonne idée, il faut mieux commencer
|
||||||
|
par essayer d'en trier 5 ou 6.
|
||||||
|
|
||||||
|
Au bout des ces 10minutes de recherche, les élèves sont autorisés à
|
||||||
|
communiquer leur méthode aux autres membres du groupe. Ils vont devoir
|
||||||
|
se mettre d'accord sur la méthode à suivre, sur la rédaction puis sur le
|
||||||
|
calcul du maximum de comparaison.
|
||||||
|
|
||||||
|
Conception et difficultés
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
Choix des nombres
|
||||||
|
~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
`Cartes nombres <./nombres.pdf>`_
|
||||||
|
|
||||||
|
Le choix des nombres est important pour éviter que les élèves jouent au
|
||||||
|
Memory. Des nombres trop petits et ils seront trop faciles à retenir. Le
|
||||||
|
choix s'est fait sur des nombres en millions très ressemblants (un
|
||||||
|
chiffre différent à chaque fois). Pour des élèves de lycée, les grands
|
||||||
|
nombres ne sont normalement pas difficiles à comparer.
|
||||||
|
|
||||||
|
Choix des mots de liaison
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Le choix des mots de liaison a été fait pour coller le plus possible à
|
||||||
|
ceux qui sont utiliser en programmation. Nous nous sommes donc restreint
|
||||||
|
à
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
Si, alors, sinon, D'abord, ensuite, tant que
|
||||||
|
|
||||||
|
Cette contrainte est assez forte pour la rédaction. Les élèves ont
|
||||||
|
tendance à utiliser les mots sans réfléchir à leurs sens. Pour les
|
||||||
|
aider, on peut leurs conseiller d'écrire leur méthode avec leurs mots à
|
||||||
|
eux puis une fois la méthode écrite, ils peuvent chercher à remplacer
|
||||||
|
leurs mots par les mots imposés.
|
||||||
|
|
||||||
|
Nombre de carte
|
||||||
|
~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Distribuer un grand nombre de carte a un intérêt: ils prendront
|
||||||
|
conscience de la complexité sans s'en rendre compte. Quand ils
|
||||||
|
essayeront de trier 16 nombres, ils se rendront compte que cela pend
|
||||||
|
beaucoup de temps.
|
||||||
|
|
||||||
|
Distribuer une grand nombre de carte peut freiner l'appropriation du
|
||||||
|
problème (trop de choix). C'est pourquoi il est important de leurs
|
||||||
|
conseiller de commencer à trier des paquets de 5 ou 6 cartes. Ainsi
|
||||||
|
entre chaque tri, ils pourront choisir d'autres cartes ce qui réduira
|
||||||
|
encore plus l'effet mémoire.
|
Binary file not shown.
|
@ -0,0 +1,462 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="1052.3622"
|
||||||
|
height="744.09448"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.2 2405546, 2018-03-11"
|
||||||
|
sodipodi:docname="nombres.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<marker
|
||||||
|
style="overflow:visible"
|
||||||
|
id="DistanceStart"
|
||||||
|
refX="0"
|
||||||
|
refY="0"
|
||||||
|
orient="auto"
|
||||||
|
inkscape:stockid="DistanceStart">
|
||||||
|
<g
|
||||||
|
id="g2300">
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square"
|
||||||
|
d="M 0,0 2,0"
|
||||||
|
id="path2306"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-rule:evenodd;stroke:none"
|
||||||
|
d="M 0,0 13,4 9,0 13,-4 0,0 z"
|
||||||
|
id="path2302"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square"
|
||||||
|
d="M 0,-4 0,40"
|
||||||
|
id="path2304"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</marker>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.6908268"
|
||||||
|
inkscape:cx="526.18109"
|
||||||
|
inkscape:cy="372.04724"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="713"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Calque 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-308.2677)">
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:2.87298512;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
d="m -1.821,497.02908 516.93815,0"
|
||||||
|
id="path4272"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:2.87298512;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
d="m 2.6027,681.55958 516.93813,0"
|
||||||
|
id="path4272-3"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:2.87298512;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
d="m -1.1891,867.35399 516.93821,0"
|
||||||
|
id="path4272-30"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:2.87298512;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
d="m 262.65586,319.69991 0,721.23009"
|
||||||
|
id="path3765"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:2.87298512;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
d="m 797.29817,319.69991 0,721.23009"
|
||||||
|
id="path3765-9"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:2.87298512;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
d="m 532.82128,497.02908 516.93822,0"
|
||||||
|
id="path4272-8"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:2.87298512;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
d="m 537.24497,681.55958 516.93813,0"
|
||||||
|
id="path4272-3-6"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:2.87298512;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
d="m 533.45321,867.35399 516.93819,0"
|
||||||
|
id="path4272-30-4"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g4062">
|
||||||
|
<path
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,-23.251062,278.89509)"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
id="path4056"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
sodipodi:type="arc" />
|
||||||
|
<text
|
||||||
|
id="text4058"
|
||||||
|
y="420.63696"
|
||||||
|
x="28.117393"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
y="420.63696"
|
||||||
|
x="28.117393"
|
||||||
|
id="tspan4060"
|
||||||
|
sodipodi:role="line"
|
||||||
|
style="font-size:48px;line-height:1.25">1 100 001</tspan></text>
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-6"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,239.96011,278.89509)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="291.32855"
|
||||||
|
y="420.63696"
|
||||||
|
id="text4058-3"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-1"
|
||||||
|
x="291.32855"
|
||||||
|
y="420.63696"
|
||||||
|
style="font-size:48px;line-height:1.25">1 010 001</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-9"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,510.409,278.89509)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="561.77747"
|
||||||
|
y="420.63696"
|
||||||
|
id="text4058-8"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-2"
|
||||||
|
x="561.77747"
|
||||||
|
y="420.63696"
|
||||||
|
style="font-size:48px;line-height:1.25">1 001 001</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-1"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,770.72509,278.89509)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="822.09357"
|
||||||
|
y="420.63696"
|
||||||
|
id="text4058-9"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-26"
|
||||||
|
x="822.09357"
|
||||||
|
y="420.63696"
|
||||||
|
style="font-size:48px;line-height:1.25">1 101 001</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-0"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,-19.994087,466.02275)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="31.374369"
|
||||||
|
y="607.76465"
|
||||||
|
id="text4058-2"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-11"
|
||||||
|
x="31.374369"
|
||||||
|
y="607.76465"
|
||||||
|
style="font-size:48px;line-height:1.25">1 011 001</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-6-8"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,243.21709,466.02275)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="294.58554"
|
||||||
|
y="607.76465"
|
||||||
|
id="text4058-3-5"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-1-6"
|
||||||
|
x="294.58554"
|
||||||
|
y="607.76465"
|
||||||
|
style="font-size:48px;line-height:1.25">1 111 001</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-9-5"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,513.66598,466.02275)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="565.03442"
|
||||||
|
y="607.76465"
|
||||||
|
id="text4058-8-1"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-2-0"
|
||||||
|
x="565.03442"
|
||||||
|
y="607.76465"
|
||||||
|
style="font-size:48px;line-height:1.25">1 100 010</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-1-5"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,773.98207,466.02275)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="825.35052"
|
||||||
|
y="607.76465"
|
||||||
|
id="text4058-9-4"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-26-8"
|
||||||
|
x="825.35052"
|
||||||
|
y="607.76465"
|
||||||
|
style="font-size:48px;line-height:1.25">1 010 010</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-67"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,-22.889169,652.75552)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="28.479286"
|
||||||
|
y="794.49738"
|
||||||
|
id="text4058-39"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-0"
|
||||||
|
x="28.479286"
|
||||||
|
y="794.49738"
|
||||||
|
style="font-size:48px;line-height:1.25">1 001 010</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-6-9"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,240.32201,652.75552)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="291.69046"
|
||||||
|
y="794.49738"
|
||||||
|
id="text4058-3-3"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-1-60"
|
||||||
|
x="291.69046"
|
||||||
|
y="794.49738"
|
||||||
|
style="font-size:48px;line-height:1.25">1 101 010</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-9-0"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,510.7709,652.75552)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="562.13934"
|
||||||
|
y="794.49738"
|
||||||
|
id="text4058-8-9"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-2-1"
|
||||||
|
x="562.13934"
|
||||||
|
y="794.49738"
|
||||||
|
style="font-size:48px;line-height:1.25">1 011 010</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-1-1"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,771.08699,652.75552)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="822.45544"
|
||||||
|
y="794.49738"
|
||||||
|
id="text4058-9-2"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-26-3"
|
||||||
|
x="822.45544"
|
||||||
|
y="794.49738"
|
||||||
|
style="font-size:48px;line-height:1.25">1 111 010</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-16"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,-24.336709,830.80304)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="27.031746"
|
||||||
|
y="972.54492"
|
||||||
|
id="text4058-38"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-9"
|
||||||
|
x="27.031746"
|
||||||
|
y="972.54492"
|
||||||
|
style="font-size:48px;line-height:1.25">1 100 100</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-6-5"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,238.87447,830.80304)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="290.24292"
|
||||||
|
y="972.54492"
|
||||||
|
id="text4058-3-4"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-1-2"
|
||||||
|
x="290.24292"
|
||||||
|
y="972.54492"
|
||||||
|
style="font-size:48px;line-height:1.25">1 010 100</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-9-6"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,509.32336,830.80304)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="560.69183"
|
||||||
|
y="972.54492"
|
||||||
|
id="text4058-8-0"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-2-3"
|
||||||
|
x="560.69183"
|
||||||
|
y="972.54492"
|
||||||
|
style="font-size:48px;line-height:1.25">1 001 100</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path4056-1-9"
|
||||||
|
sodipodi:cx="136.7926"
|
||||||
|
sodipodi:cy="111.51914"
|
||||||
|
sodipodi:rx="109.28933"
|
||||||
|
sodipodi:ry="56.454094"
|
||||||
|
d="M 246.08193,111.51914 A 109.28933,56.454094 0 0 1 136.7926,167.97324 109.28933,56.454094 0 0 1 27.503273,111.51914 109.28933,56.454094 0 0 1 136.7926,55.065048 109.28933,56.454094 0 0 1 246.08193,111.51914 Z"
|
||||||
|
transform="matrix(1.117063,0,0,1.117063,769.63945,830.80304)" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="821.00787"
|
||||||
|
y="972.54492"
|
||||||
|
id="text4058-9-3"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4060-26-5"
|
||||||
|
x="821.00787"
|
||||||
|
y="972.54492"
|
||||||
|
style="font-size:48px;line-height:1.25">1 101 100</tspan></text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 23 KiB |
Loading…
Reference in New Issue