1) library 'buf2d.obj'

2) new game 'Nu pogodi'

git-svn-id: svn://kolibrios.org@1535 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
IgorA 2010-07-29 21:20:45 +00:00
parent 22f5ee5447
commit 9aaa131d1c
17 changed files with 6380 additions and 0 deletions

View File

@ -0,0 +1,242 @@
<html>
<head>
<title>библиотека для работы с 2d буферами</title>
<meta http-equiv="content-type" content="text/html; charset=WINDOWS-1251">
<style>
body
{
font-size: 15px;
font-family: "Bookman Old Style";
color: black;
text-align: justify;
}
h1 { color: green; font-size: 23px; }
h2 { color: green; font-size: 21px; }
h3 { color: green; font-size: 19px; }
h4 { color: #803f00; font-size: 17px; }
i { color: #0099cc; }
b { color: #0099cc; }
p {
text-indent: 1em;
margin-top: 3px;
margin-bottom: 2px;
margin-left: 0px;
margin-right: 0px;
}
ol, ul, dl{
margin-top: 3px;
margin-bottom: 2px;
}
pre
{
padding: 2px;
padding-left: 20px;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 0px;
margin-right: 0px;
font-family: "Courier New";
font-size: 15px;
color: #004000;
background-color: #ffd0ff;
}
table { font-size: 15px; }
</style>
</head>
<body>
<h1>Оглавление</h1>
<ul>
<li>Вступление</li>
<li><a href="#f_buf">Форматы буферов</a></li>
<li><a href="#fun">Функции</a><br>
<li><a href="#const">Константы</a><br>
<li><a href="#tabl_e">Таблица экспорта</a></li>
<li><a href="#hist">История</a></li>
</ul>
<h1>Вступление</h1>
<p>Документация к свободной библиотеке <b>buf2d.asm</b>, для <b>ОС Колибри</b>.
Эта библиотека создана для работы с 2d изображениями.
С ее помощьью можно создавать буфера с изображениями в памяти, и при необходимости выводить их на экран.
Изображения можно накладывать одно на другое, поддерживается работа с прозрачными изображениями, есть функция рисования лини пока на этом все.</p>
<p>Последнее обновление библиотеки 29.07.10.</p>
<h1><a name="f_buf">Форматы буферов</a></h1>
<p>Поддерживается 3 формата буферов.
Каждая функция при работе с буферами может быть расчитана на работу с определенными форматами изображений.</p>
<h4>8 бит</h4>
<p>Сожержит альфа канал <b>a</b> (прозрачность) изображения. На экран не выводится. Используется для созданя 32-битных буферов.</p>
<h4>24 бит</h4>
<p>Данный буфер содержит изображение в формате <b>rgb</b>. Может выводится на экран.</p>
<h4>32 бит</h4>
<p>Содержит прозрачное изображение в формате <b>rgba</b>. На экран не выводится. Используется для наложения изображений.</p>
<h1><a name="fun">Функции</a></h1>
<p>Почти все функции 1-м параметром принимают указатель на структуру буфера,
из которой могут использоваться параметры, нужные для работы конкретной функции.
Пример структуры буфера изображения:</p>
<pre>align 4
buf_0:
dd 0 ;+ 0 указатель на буфер изображения
dw 100 ;+ 4 отступ слева
dw 10 ;+ 6 отступ справа
dd 150 ;+ 8 ширина
dd 100 ;+12 высота
dd 0x80 ;+16 фоновый цвет
db 24 ;+20 бит на пиксель</pre>
<h4>lib_init</h4>
<p>Эта функция получает указатели на функции работы с памятью, вызыватся должна при загрузке библиотеки. Можете использовать макрос <b>@use_library_mem</b>, для ее автоматической настройки.</p>
<h4>buf2d_create</h4>
<p>Создает буфер и чистит его фоновым цветом.</p>
<h4>buf2d_create_f_img</h4>
<p>Создает буфер на основе изображения в формате <b>rgb</b>.</p>
<h4>buf2d_clear</h4>
<p>Чистит буфер фоновым цветом.</p>
<h4>buf2d_draw</h4>
<p>Рисует буфер на экране (работает через системную ф. 7). Рисуются только буфера с глубиной цвета 24 бита.</p>
<h4>buf2d_delete</h4>
<p>Освобождает память занятую изображением буфера.</p>
<h4>buf2d_line</h4>
<p>Рисует в буфере линию с заданным цветом и координатами. Пример использования:</p>
<pre>stdcall [buf2d_line], buf_0, 30,10, 110,70, 0xffff00 ;рисуем линию</pre>
<p>где buf_0 - структура буфера в котором будет рисоваться линия; 30, 10, 110, 70 - координаты линии; 0xffff00 - цвет линии.</p>
<h4>buf2d_circle</h4>
<p>Рисует в буфере окружность с заданным цветом и радиусом. Пример использования:</p>
<pre>stdcall [buf2d_circle], buf_0, 25, 70, 15, 0xff0000</pre>
<p>где buf_0 - структура буфера в котором будет рисоваться окружность; 25, 70 - координаты центра; 15 - радиус; 0xff0000 - цвет.</p>
<h4>buf2d_img_hdiv2</h4>
<p>Сжимает изображение в буфере по высоте в 2 раза, при этом размер самого буфера не уменьшается.</p>
<h4>buf2d_img_wdiv2</h4>
<p>Сжимает изображение в буфере по ширине в 2 раза, при этом размер самого буфера не уменьшается.</p>
<h4>buf2d_conv_24_to_8</h4>
<p>Преобразование буфера из 24-битного в 8-битный.
При преобразовании указывается какой цвет берать: 0-синий, 1-зеленый, 2-красный.
Остальные цвета при преобразовании теряются.</p>
<h4>buf2d_conv_24_to_32</h4>
<p>Преобразование буфера из 24-битного в 32-битный.
При преобразовании указывается также 8-битный буфер, который будет использован для создания альфа канала. Пример:</p>
<pre>stdcall [buf2d_conv_24_to_32],buf_a,buf_b ;делаем буфер rgba 32бит</pre>
<p>До выполнения функции буфер buf_a должен быть 24 битным, а буфер buf_b - 8 битным.
После выполнения функции буфер buf_a станет 32 битным, буфер buf_b не изменится.</p>
<h4>buf2d_bit_blt</h4>
<p>Рисует в буфере изображение из другого буфера в указанных координатах. Буфер в котором рисут (приемник) должен быть 24 битным, а тот который рисуется (источник) 24 или 32 битным. Если буфер источник 32 битный, то его прозрачность при рисовании не учитывается, для учета прозрачности используется функция <i>buf2d_bit_blt_transp</i>.</p>
<h4>buf2d_bit_blt_transp</h4>
<p>Рисует в буфере изображение из другого буфера в указанных координатах, при этом учитывается прозрачность.
Буфер который будет нарисован должен быть 32 битным, а тот в котором рисуют 24 битным.</p>
<h4>buf2d_bit_blt_alpha</h4>
<p>Рисует в буфере изображение из другого буфера в указанных координатах, при этом учитывается прозрачность.
Буфер который будет нарисован должен быть 8 битным, а тот в котором рисуют 24 битным.</p>
<h4>buf2d_cruve_bezier</h4>
<p>Рисует по трем точкам отрезок кривой безье.</p>
<h4>buf2d_convert_text_matrix</h4>
<p>Преобразует матрицу с текстом размером 16*16 в размер 1*256. Необходимо для создания матрицы для рисования текста. Перед использованием данной функции предполагается что есть изображение с полным набором символов размером 16 столбцов на 16 строк, из которого предварительно был создан 8 битный буфер.</p>
<pre>stdcall [buf2d_create_f_img], buf_1,[image_data] ;создаем буфер 24 бит на основе данных изображения
stdcall [buf2d_conv_24_to_8], buf_1,1 ;делаем буфер прозрачности 8 бит
stdcall [buf2d_convert_text_matrix], buf_1</pre>
<p>где buf_1 - структура буфера для формирования текстовой матрицы;
image_data - данные изображения текстовой матрицы в формате rgb, размером 16*16 символов.</p>
<h4>buf2d_draw_text</h4>
<p>Рисует текст в буфере, используя матрицу с текстом размером 1*256 символов. Пример:</p>
<pre>stdcall [buf2d_draw_text], buf_0, buf_1,some_text,20,10,0x4040ff ;рисуем строку с текстом</pre>
<p>где buf_0 - структура буфера в котором будет рисоваться текст;
buf_1 - структура буфера с текстовой матрицей в формате 8 бит, размером 1*256 символов;
some_text - текст, который будет выведен в буфер buf_0.</p>
<h4>buf2d_crop_color</h4>
<p>Обрезание буфера, по указанному цвету. Функция используется для уменьшения памяти, занимаемой буфером. Отрезаются крайние части буфера имеющие одинаковый цвет. Пример:</p>
<pre>stdcall [buf2d_crop_color], buf_0,0xffffff,BUF2D_OPT_CROP_TOP+BUF2D_OPT_CROP_BOTTOM</pre>
<p>где buf_0 - структура буфера который будет обрезан;
0xffffff - цвет по которому будет обрезаться буфер;
BUF2D_OPT_CROP_TOP и BUF2D_OPT_CROP_BOTTOM - константы, указывающие с каких сторон обрезать буфер.</p>
<h4>buf2d_offset_h</h4>
<p>Сдвиг изображения в буфере по высоте вверх или вниз.</p>
<h1><a name="const">Константы</a></h1>
<h4>BUF2D_OPT_CROP_TOP equ 1</h4>
<p>Константа для функции buf2d_crop_color, обозначает обрезку буфера сверху</p>
<h4>BUF2D_OPT_CROP_BOTTOM equ 4</h4>
<p>Константа для функции buf2d_crop_color, обозначает обрезку буфера снизу</p>
<h4>BUF2D_OPT_CROP_RIGHT equ 8</h4>
<p>Константа для функции buf2d_crop_color, обозначает обрезку буфера справа</p>
<h1><a name="tabl_e">Таблица экспорта</a></h1>
<p>Пример таблицы экспорта, расчитанной на использование макроса <b>@use_library_mem</b>:</p>
<pre>align 4
import_buf2d_lib:
dd sz_lib_init
buf2d_create dd sz_buf2d_create
buf2d_create_f_img dd sz_buf2d_create_f_img
buf2d_clear dd sz_buf2d_clear
buf2d_draw dd sz_buf2d_draw
buf2d_delete dd sz_buf2d_delete
buf2d_line dd sz_buf2d_line
buf2d_circle dd sz_buf2d_circle
buf2d_img_hdiv2 dd sz_buf2d_img_hdiv2
buf2d_img_wdiv2 dd sz_buf2d_img_wdiv2
buf2d_conv_24_to_8 dd sz_buf2d_conv_24_to_8
buf2d_conv_24_to_32 dd sz_buf2d_conv_24_to_32
buf2d_bit_blt dd sz_buf2d_bit_blt
buf2d_bit_blt_transp dd sz_buf2d_bit_blt_transp
buf2d_bit_blt_alpha dd sz_buf2d_bit_blt_alpha
buf2d_cruve_bezier dd sz_buf2d_cruve_bezier
buf2d_convert_text_matrix dd sz_buf2d_convert_text_matrix
buf2d_draw_text dd sz_buf2d_draw_text
buf2d_crop_color dd sz_buf2d_crop_color
buf2d_offset_h dd sz_buf2d_offset_h
dd 0,0
sz_lib_init db 'lib_init',0
sz_buf2d_create db 'buf2d_create',0
sz_buf2d_create_f_img db 'buf2d_create_f_img',0
sz_buf2d_clear db 'buf2d_clear',0
sz_buf2d_draw db 'buf2d_draw',0
sz_buf2d_delete db 'buf2d_delete',0
sz_buf2d_line db 'buf2d_line',0
sz_buf2d_circle db 'buf2d_circle',0
sz_buf2d_img_hdiv2 db 'buf2d_img_hdiv2',0
sz_buf2d_img_wdiv2 db 'buf2d_img_wdiv2',0
sz_buf2d_conv_24_to_8 db 'buf2d_conv_24_to_8',0
sz_buf2d_conv_24_to_32 db 'buf2d_conv_24_to_32',0
sz_buf2d_bit_blt db 'buf2d_bit_blt',0
sz_buf2d_bit_blt_transp db 'buf2d_bit_blt_transp',0
sz_buf2d_bit_blt_alpha db 'buf2d_bit_blt_alpha',0
sz_buf2d_cruve_bezier db 'buf2d_cruve_bezier',0
sz_buf2d_convert_text_matrix db 'buf2d_convert_text_matrix',0
sz_buf2d_draw_text db 'buf2d_draw_text',0
sz_buf2d_crop_color db 'buf2d_crop_color',0
sz_buf2d_offset_h db 'buf2d_offset_h',0</pre>
<h1><a name="hist">История</a></h1>
<p>02.07.10 - самая первая версия библиотеки, 2 примера использования.</p>
<p>06.07.10 - расширены возможности функции buf2d_bit_blt, теперь она может рисовать 32 битные буферы. Добавлены 2 новые функции: buf2d_bit_blt_alpha и buf2d_cruve_bezier. Небольшие изменения в функции buf2d_line.</p>
<p>16.07.10 - исправлено по 2 ошибки в функциях buf2d_img_hdiv2 и buf2d_img_wdiv2, которые могли проявляться при определенных условиях (если размер изображения был кратен 4Кб и др.). Добавлены 2 функции для вывода текста в буфер buf2d_convert_text_matrix и buf2d_draw_text.</p>
<p>19.07.10 - добавлена функция рисования окружности buf2d_circle;
изменен формат буфера - для ширины и высоты используются 4-х байтные числа вместо 2-х байтных.</p>
<p>29.07.10 - добавлены функции buf2d_crop_color и buf2d_offset_h;
исправления в функции buf2d_delete.</p>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,4 @@
if not exist bin mkdir bin
@fasm.exe -m 16384 buf2d.asm bin\buf2d.obj
@kpack bin\buf2d.obj
pause

View File

@ -0,0 +1,11 @@
if not exist bin mkdir bin
if not exist bin\font8x9.bmp @copy ..\..\..\fs\kfar\trunk\font8x9.bmp bin\font8x9.bmp
if not exist bin\chi.png @copy chi.png bin\chi.png
if not exist bin\curici.png @copy curici.png bin\curici.png
if not exist bin\eggs.png @copy eggs.png bin\eggs.png
if not exist bin\wolf.png @copy wolf.png bin\wolf.png
@fasm.exe -m 16384 nu_pogod.asm bin\nu_pogod.kex
@kpack bin\nu_pogod.kex
if not exist bin\buf2d.obj @fasm.exe -m 16384 ..\..\..\develop\libraries\buf2d\trunk\buf2d.asm bin\buf2d.obj
@kpack bin\buf2d.obj
pause

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,99 @@
proc dll.Load, import_table:dword
mov esi,[import_table]
.next_lib: mov edx,[esi]
or edx,edx
jz .exit
push esi
mov esi,[esi+4]
mov edi,s_libdir.fname
@@: lodsb
stosb
or al,al
jnz @b
mcall 68,19,s_libdir
or eax,eax
jz .fail
stdcall dll.Link,eax,edx
push eax
mov eax, [eax]
cmp dword [eax], 'lib_'
pop eax
jnz @f
stdcall dll.Init,[eax+4]
@@:
pop esi
add esi,8
jmp .next_lib
.exit: xor eax,eax
ret
.fail: add esp,4
xor eax,eax
inc eax
ret
endp
proc dll.Link, exp:dword,imp:dword
push eax
mov esi,[imp]
test esi,esi
jz .done
.next: lodsd
test eax,eax
jz .done
stdcall dll.GetProcAddress,[exp],eax
or eax,eax
jz @f
mov [esi-4],eax
jmp .next
@@: mov dword[esp],0
.done: pop eax
ret
endp
proc dll.Init, dllentry:dword
pushad
mov eax,mem.Alloc
mov ebx,mem.Free
mov ecx,mem.ReAlloc
mov edx,dll.Load
stdcall [dllentry]
popad
ret
endp
proc dll.GetProcAddress, exp:dword,sz_name:dword
mov edx,[exp]
xor eax,eax
.next: or edx,edx
jz .end
cmp dword[edx],0
jz .end
stdcall strcmp,[edx],[sz_name]
test eax,eax
jz .ok
add edx,8
jmp .next
.ok: mov eax,[edx+4]
.end: ret
endp
proc strcmp, str1:dword,str2:dword
push esi edi
mov esi,[str1]
mov edi,[str2]
xor eax,eax
@@: lodsb
scasb
jne .fail
or al,al
jnz @b
jmp .ok
.fail: or eax,-1
.ok: pop edi esi
ret
endp
s_libdir:
db '/sys/lib/'
.fname rb 32

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,7 @@
Игра Ну погоди.
Управляя с помощью клавиш a,z,',/ перемещением волка, необходимо поймать движущиеся яйца. Если игрок не сможет поймать яйца, то он получает штрафные очки (изображаются в верхнем правом углу экрана). Если яйца разбиваются при появлении зайца в левом верхнем углу экрана, то игроку назначается пол штрафного очка (половина штрафного очка мигает).
В случае следующих неудач очки суммируются. При получении трех штрафных очков игра заканчивается.
Если счет игры достигает 200 или 500, полученные до этого штрафные очки аннулируются, о чем оповещает звуковой сигнал.
По мере увеличения числа набранных очков игра усложняется.
Отличие "Игры А" от "Игры Б" в том, что при варианте "Игра А" движущиеся предметы одновременно могут двигаться только с трех точек, при варианте "Игра Б" - с четырех.

View File

@ -0,0 +1,48 @@
;-----------------------------------------------------------------------------
proc mem.Alloc,size ;/////////////////////////////////////////////////////////
;-----------------------------------------------------------------------------
push ebx ecx
mov ecx,[size]
;*** add ecx,4
mcall 68,12
;*** add ecx,-4
;*** mov [eax],ecx
;*** add eax,4
pop ecx ebx
ret
endp
;-----------------------------------------------------------------------------
proc mem.ReAlloc,mptr,size ;//////////////////////////////////////////////////
;-----------------------------------------------------------------------------
push ebx ecx edx
mov ecx,[size]
or ecx,ecx
jz @f
;*** add ecx,4
@@: mov edx,[mptr]
or edx,edx
jz @f
;*** add edx,-4
@@: mcall 68,20
or eax,eax
jz @f
;*** add ecx,-4
;*** mov [eax],ecx
;*** add eax,4
@@: pop edx ecx ebx
ret
endp
;-----------------------------------------------------------------------------
proc mem.Free,mptr ;//////////////////////////////////////////////////////////
;-----------------------------------------------------------------------------
push ebx ecx
mov ecx,[mptr]
or ecx,ecx
jz @f
;*** add ecx,-4
@@: mcall 68,13
pop ecx ebx
ret
endp

View File

@ -0,0 +1,248 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="430"
height="285"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="nu_p_chi.svg"
inkscape:export-filename="C:\Documents and Settings\Игорь\Рабочий стол\chi.png"
inkscape:export-xdpi="67.5"
inkscape:export-ydpi="67.5">
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective10" />
<inkscape:perspective
id="perspective2824"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2838"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2852"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2866"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.20796703"
inkscape:cx="212.5"
inkscape:cy="-1345.1618"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1001"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-maximized="1" />
<style
type="text/css"
id="style4"> .Egg { fill:#800000; stroke:#804040; stroke-width:1;stroke-linejoin:round }
.Chi { fill:#000000; stroke:#808000; stroke-width:1;stroke-linejoin:round }
</style>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-767.36218)">
<rect
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="rect_fon"
width="420"
height="3640"
x="2.5"
y="2.5"
transform="translate(0,767.36218)"
ry="0"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
id="g3077"
transform="translate(0,1120)">
<path
class="Chi"
sodipodi:nodetypes="cscscccsscscsccccccsccccccc"
id="path2896"
d="m 21.5125,1018.7607 c 0,0 -1.0625,0 -2.0625,-3 -1,-3 -0.4375,-6.5 -0.4375,-6.5 0,0 -2.0625,0.3125 -3.9375,-1.1875 -1.04446,-0.8355 -1.75,-2.875 -1.75,-2.875 l -2.1875,-0.8125 2.3125,-0.625 c 0,0 1.125,-3.0625 2.8125,-3.6875 1.89009,-0.70001 4.05111,-0.40488 5.625,1.5625 1.5,1.875 0.3125,6.4375 0.3125,6.4375 0,0 0.375,1.375 1.625,1.375 1.875,0 3.9375,-3.8125 3.9375,-3.8125 0,0 2.53386,1.3347 3.75,4.375 1.375,3.4375 0.1875,7.4375 0.1875,7.4375 l 1.5625,1.3125 1.375,0.625 -3.5625,1.6875 0.8125,-1.625 -1.875,-0.9375 c 0,0 -1.375,0.5625 -3.5625,0.5625 -2.1875,0 -3.1875,0.125 -3.1875,0.125 l -1.125,2.1875 0.0625,1.75 -1.3125,-1.4375 -2.4375,-1 2.3125,-0.5625 0.75,-1.375 z"
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3074"
transform="translate(0,840)">
<path
class="Chi"
sodipodi:nodetypes="ccssssscsccccccsccccccscscc"
id="path2898"
d="m 36.65711,1003.9848 2.60539,-1.0366 c 0,0 1.30806,-2.95893 4.125,-3.24998 2.36324,-0.24418 3.54447,0.85208 4.3125,2.31248 0.6105,1.1609 0.89167,2.5973 0.4375,4.5625 -0.44724,1.9353 -1.5,3.25 -0.8125,3.75 0.6875,0.5 2.75,0.5625 3.3125,0.125 0.5625,-0.4375 2.5,-2.875 2.5,-2.875 0,0 2.11108,2.2074 2.8125,4.75 1,3.625 -1.9375,6.375 -1.9375,6.375 l 0.1875,1.8125 0.6875,1 -2.25,2.3125 0.1875,-1.875 -0.875,-2.25 c 0,0 -1.375,0.75 -2.8125,0.625 -1.87313,-0.1629 -3.9375,-1.0625 -3.9375,-1.0625 l -2.4375,1.0625 -0.9375,1.3125 -2.375,-2.5 2.375,0 2.25,-1.375 c 0,0 -0.0625,-1.4008 -0.0625,-2.75 0,-1.5625 -1.75,-4.375 -1.75,-4.375 0,0 -1.5,-2.1875 -2,-2.9375 -0.66235,-0.9935 -0.8125,-2.8125 -0.8125,-2.8125 l -2.79289,-0.9009 z"
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3071"
transform="translate(0,560)">
<path
class="Chi"
sodipodi:nodetypes="cscscccccccccccsssssccsscc"
id="path2897"
d="m 64.96889,1010.7121 c 0,0 1.67938,-0.2652 2.82843,-1.2374 1.14905,-0.9723 1.32582,-3.0052 1.32582,-3.0052 0,0 3.09359,0.7955 3.71231,3.0052 0.61872,2.2097 -0.88388,6.5407 -0.88388,6.5407 l 1.41421,1.5026 1.14905,1.1491 -1.85615,1.7677 -0.26517,-1.6793 -1.67938,-0.6188 -4.5078,3.5356 -0.0884,2.1213 -2.65165,0.1768 0.88388,-1.0607 0.0884,-1.591 c 0,0 -2.03293,-0.4419 -3.53553,-2.2097 -1.50261,-1.7678 -1.76777,-3.9775 -1.32583,-6.0104 0.44194,-2.0329 1.32583,-4.8614 0.17678,-6.8943 -1.14905,-2.0329 -1.55762,-4.3015 -10e-6,-6.0988 1.14905,-1.32582 3.71231,-1.76776 5.3917,-0.97227 0.55952,0.26503 3.32791,0.27046 3.32791,0.27046 0,0 -1.32124,1.71801 -1.16281,2.22631 0.31687,1.0165 -0.0581,2.3552 -0.57411,3.1601 -0.73736,1.1502 -1.85616,1.3258 -1.85616,2.2981 0,0.9723 0,3.0936 -0.0884,3.182 l 0.17679,0.4419 z"
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3067"
transform="translate(0,280)">
<path
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round"
sodipodi:nodetypes="csssscscssscccsccccccccccszcssc"
class="Chi"
id="path2986"
d="m 77.16648,988.34985 c 0,0 0.70711,-1.59099 -0.53033,-2.65165 -1.4518,-1.2444 -4.41942,-1.14905 -5.3033,-3.18198 -0.88389,-2.03293 -0.36359,-5.00085 1.59099,-6.27557 2.03293,-1.32582 5.56847,-0.70711 6.54074,0.70711 0.97228,1.41421 1.85615,7.15945 1.85615,7.15945 0,0 2.31749,-2.24388 4.24265,-2.38648 2.38648,-0.17678 4.59619,3.35876 4.59619,3.35876 0,0 -3.09359,-0.53033 -4.68458,0.44194 -1.59099,0.97227 -2.2981,2.29809 -2.03294,3.44714 0.26517,1.14905 1.32583,2.2981 2.47488,1.85616 1.14905,-0.44194 2.91681,-3.18198 2.91681,-3.18198 l 0.70711,2.20971 -2.2981,2.29809 c 0,0 -0.17679,1.5026 0.61872,2.38649 0.79549,0.88388 3.09359,1.23744 3.09359,1.23744 l -1.5026,4.15425 -1.06066,-2.03293 -1.67938,-0.88388 -4.86136,1.06065 -2.03293,1.94453 -0.35355,2.3865 -3.18198,-2.56326 1.94454,-0.53033 1.41421,-1.94454 c 0,0 0.26753,-1.67422 -1.41421,-3.18198 -2.56326,-2.2981 -4.15425,-2.12133 -4.15425,-2.12133 l -6.0988,-0.7071 c 0,0 1.33248,-3.26978 4.24265,-3.00521 1.94454,0.17678 1.68135,0.9932 2.82842,1.06067 1.5026,0.0884 2.03293,-0.97228 2.12132,-1.06067 z" />
<path
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round"
sodipodi:nodetypes="cccc"
class="Chi"
id="path2988"
d="m 93.51833,1006.5579 -3.00521,-3.5356 m 4.68458,-2.3865 3.62393,4.2427" />
</g>
<path
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round"
d="m 109.42823,1041.5596 0.70711,-7.071 6.54073,2.1213 -3.53553,-5.6569 5.48008,-1.9445 -6.71752,-3.0052 1.06066,-9.0156 -3.53553,3.8891 -1.59099,-7.0711 -2.65165,7.0711 -5.83363,-4.5962 3.88908,8.3085 -6.0104,3.8891 6.54073,2.1213 -3.35875,7.9549 5.48007,-3.0052 3.53554,6.0104 z"
id="path2904"
class="Chi" />
<path
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round"
d="m 306.00391,1037.5822 3.35876,5.8336 1.23744,-8.7504 5.56846,0.2651 -5.03813,-5.8336 3.53553,-10.8718 -5.21491,5.3033 -2.20971,-6.0104 -2.56326,6.0104 -8.22012,-5.8336 5.21492,10.7834 -4.41942,5.1265 4.77297,2.4749 1.76777,4.7729 2.2097,-3.2703 z"
id="path2911"
class="Chi"
transform="translate(0,1400)" />
<g
id="g3083"
transform="translate(0,1680)">
<path
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round"
class="Chi"
id="path2913"
d="m 325.27257,1007.5301 3.44715,-2.5632" />
<path
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round"
class="Chi"
id="path2915"
d="m 329.33844,1009.2979 3.18198,-2.3865" />
<path
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round"
sodipodi:nodetypes="cscscccccscccccccszcscssssc"
class="Chi"
id="path2936"
d="m 349.45,992.13572 c 0,0 3.125,0.375 4.25,2.625 1.125,2.25 -0.625,5.49998 -0.625,5.49998 0,0 -2.875,-5.37498 -5.625,-3.87498 -2.37397,1.29489 -0.75,4.74998 -0.75,4.74998 l 1.375,2.5 -5.375,0.5 1.5,-1.875 -0.875,-2.37498 c 0,0 -1.625,0.99998 -3.75,0.24998 -2.125,-0.74998 -3.5,-1.62498 -3.5,-1.62498 l -2.125,0.875 -1,2.24998 -1.625,-5.37498 1.75,0.875 1.875,-0.625 -0.125,-6.25 c 0,0 1.62931,1.06286 3.875,1.25 1.5,0.125 2.58477,-1.09267 2,-3 -0.58477,-1.90733 -4.625,-2.875 -4.625,-2.875 0,0 2.23289,-1.94066 4.625,-0.625 2.5,1.375 2.375,2.75 2.375,2.75 0,0 1.25,1.25 2.375,-0.125 1.125,-1.375 -0.64494,-4.78162 0.75,-6.875 1.50208,-2.25416 4.76709,-2.82618 7.5,-1.25 2.31674,1.33616 2.8062,6.93205 0.125,8.25 -3.57092,1.75529 -4.5,4.5 -4.375,4.375 z" />
</g>
<path
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round"
d="m 358.45,1012.1357 c 0,0 1.5,3.375 2.75,2.75 1.25,-0.625 2.375,-1.5 2.125,-2.5 -0.39528,-1.5811 -2.25,-2.5 -2.5,-4.25 -0.32259,-2.2581 0.0202,-4.6055 2.625,-5.75 1.55658,-0.6839 4.26669,-0.5143 5.125,0.5 1.375,1.625 1.64048,3.5579 1.25,5.25 -0.375,1.625 -2.625,2.75 -2.625,4.375 0,2.125 1.25,2.125 1.375,3.5 0.125,1.375 -0.25,3.125 -0.25,3.125 l 4.125,0.125 -3.125,4.125 -0.75,-2 -2.25,-0.25 -2.625,2 -0.75,1.75 1.25,1.75 -5,0 1.25,-1.875 0,-1.75 -3.125,-3.625 -3,-1.625 4.125,-5.625 z"
id="path3016"
class="Chi"
sodipodi:nodetypes="csssssssscccccccccccccc"
transform="translate(0,1960)" />
<path
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round"
d="m 385.575,1024.2607 c 0,0 2.10913,-0.4197 3.125,-3.375 1.375,-4 -1,-6 -0.625,-7.25 0.375,-1.25 2.625,-3.75 2.625,-5.625 0,-1.875 -0.875,-4.5 -3.625,-4.875 -2.75,-0.375 -4.8953,0.6343 -5.75,3.25 -1.01613,3.1098 2.875,6.5 2.875,6.5 0,0 -0.25,1.875 -2,1.625 -1.75,-0.25 -3.25,-3.5 -3.25,-3.5 l -3.375,4.5 2.75,3.625 -2,1.25 -2.5,0.625 3.25,3.75 0.25,-2.5 2.625,-0.375 2.875,2 0.5,2.125 -0.625,1.5 4.5,0.375 -1.75,-1.75 0.125,-1.875 z"
id="path3018"
class="Chi"
sodipodi:nodetypes="cssssscscccccccccccccc"
transform="translate(0,2240)" />
<path
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round"
d="m 399.67097,1028.8857 3.58081,2.0291 -0.30178,-2.1541 1.125,-2 c 0,0 1.71339,0.2639 2.875,-0.5 0.3125,-0.3125 1.54389,1.63 1.54389,1.63 0,0 0.33927,1.5249 0.33927,1.5249 0,0 2.72576,-1.5245 2.72576,-1.5245 0,0 -1.77937,-0.7898 -1.77937,-0.7898 0,0 -1.28268,-1.9812 -1.28268,-1.9812 0,0 0.70313,-1.9844 0.70313,-1.9844 0,0 1.28661,-0.067 2.53661,-1.1919 1.25,-1.125 1.06564,-3.4773 1.06564,-3.4773 0,0 -1.72725,1.0442 -3.10225,0.7942 -1.375,-0.25 -2.77649,-0.5003 -2.75,-1.625 0.0442,-1.8763 1.99493,-3.4713 2.58709,-5.0303 0.68436,-1.8018 0.87928,-4.2952 -0.65403,-6.5871 -1.15298,-1.7234 -4.9987,-1.8232 -6.55806,-0.5076 -0.78347,0.661 -1.39363,1.5121 -1.7841,2.3973 -0.85814,0.3321 -1.96743,0.8424 -1.96743,0.8424 0,0 0.81305,0.7426 1.54572,1.2742 0.26192,2.1157 3.15403,3.6313 3.58081,6.1111 0.23703,1.3773 -0.125,2.375 -0.125,2.375 -1.47616,-0.014 -3.41319,-2.7579 -4.67678,-1.1237 l 0.92678,2.6237 c -2.58996,-0.6424 -2.44392,1.4496 -0.25,2.875 1.125,0.75 2.48614,2.6629 2.48614,2.6629 l -0.86114,2.2121 -1.52903,1.125 z"
id="path3005"
sodipodi:nodetypes="cccccccccccscssssscccsccccccc"
class="Chi"
transform="translate(0,2520)" />
<g
id="g3021"
transform="translate(64,2800)">
<path
class="Chi"
sodipodi:nodetypes="csccsccsscsssssssssscsc"
id="path3013"
d="m 247.825,861.51072 c 0,0 4.75,5.375 1.5,8.625 -3.25,3.25 -9.625,-2 -9.625,-2 l -3.625,0 c 0,0 -3.875,4.125 -6.625,2.625 -2.75,-1.5 -0.375,-7.625 -0.375,-7.625 l 2.625,1.375 c 0,0 2.375,-2.125 2.25,-3.5 -0.125,-1.375 -0.64364,-3.21915 -2.75,-3.5 -1.875,-0.25 -5.625,0 -5.625,0 0,0 3.125,-3.75 4.875,-3.75 2.99164,0 3.37503,2.125 4.875,2.125 1.5,0 2.75,-1.25 2,-2.375 -0.75,-1.125 -1.75,-3.875 -0.625,-6 1.33369,-2.51918 2.98223,-2.875 4.75,-2.875 2.125,0 3.95407,1.02373 4.875,2.875 0.9423,1.89422 -0.25,5 -1.5,5.875 -1.10292,0.77205 -3.375,2.75 -2.625,3.625 0.75,0.875 1.5,1 2.375,0.375 0.875,-0.625 2.25,-2.75 3.875,-2.75 3,0 4.875,4.125 4.875,4.125 0,0 -0.84558,0.375 -3.25,0.375 -2.125,0 -2.125,2.375 -2.25,2.375 z"
style="fill:#000000;stroke:#808000;stroke-width:1;stroke-linejoin:round" />
<path
d="m 236.075,868.13572 c 0,0 -3.875,4.125 -6.625,2.625 -2.75,-1.5 -0.375,-7.625 -0.375,-7.625 l 2.625,1.375 4.375,3.625 z"
id="path3019"
sodipodi:nodetypes="csccc"
class="Egg"
style="fill:#800000;stroke:#804040;stroke-width:1;stroke-linejoin:round" />
<path
d="m 247.825,861.51072 c 0,0 4.75,5.375 1.5,8.625 -3.25,3.25 -9.625,-2 -9.625,-2 3.84511,-3.29877 4.99712,-4.14937 8.125,-6.625 z"
id="path3017"
sodipodi:nodetypes="cscc"
class="Egg"
style="fill:#800000;stroke:#804040;stroke-width:1;stroke-linejoin:round" />
</g>
<use
x="0"
y="0"
xlink:href="#g3021"
id="use3046"
transform="translate(-32,280)"
width="430"
height="285" />
<use
x="0"
y="0"
xlink:href="#g3021"
id="use3048"
transform="translate(-64,560)"
width="430"
height="285" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,458 @@
<?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="430"
height="285"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="nu_p_curici.svg"
inkscape:export-filename="C:\Documents and Settings\Игорь\Рабочий стол\curici.png"
inkscape:export-xdpi="67.5"
inkscape:export-ydpi="67.5">
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective10" />
<inkscape:perspective
id="perspective2824"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2838"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2852"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2866"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.89851629"
inkscape:cx="213.28151"
inkscape:cy="-138.75001"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1001"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-maximized="1" />
<style
type="text/css"
id="style4">
.Tree { fill:#000000; stroke:#008000; stroke-width:1;stroke-linejoin:round }
.Border { fill:#000000; stroke:#d00000; stroke-width:1;stroke-linejoin:round }
.Curica { fill:none; stroke:#000000; stroke-width:3;stroke-linejoin:round }
</style>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-767.36218)">
<rect
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="rect_fon"
width="420"
height="840"
x="2.5"
y="2.5"
transform="translate(0,767.36218)"
ry="0"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
id="g2884">
<path
class="Border"
sodipodi:nodetypes="ccc"
id="path2937"
d="m 28.325,791.38572 18.875,0 0,37"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
class="Border"
sodipodi:nodetypes="cccccc"
id="path2935"
d="m 1.7,803.38572 17,-20.625 35.5,71.625 4,-5 -39.5,-77.25 -17,20.875"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
</g>
<path
d="m 1.7,864.38572 24,0 59.5,37.16678 0,7.07107 -17.3,-9.8995 0,25.10229 -6.2,-0.17678 0,-28.63782 -36,-22.62604 -24,0"
id="path2860"
sodipodi:nodetypes="cccccccccc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<g
id="g_perilo_ld">
<path
class="Border"
sodipodi:nodetypes="cccccccccc"
id="path2862"
d="m 1.7,929.44508 24,0 59.5,37.16678 0,7.07107 -17.3,-9.8995 0,19.60229 -6.2,0 0,-23.3146 -36,-22.62604 -24,0"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round"
class="Border"
sodipodi:nodetypes="ccccc"
id="path2879"
d="m 2,942.38572 0,15.5 6.2,0 0,-15.5 -6.2,0 z" />
<path
class="Border"
sodipodi:nodetypes="ccccc"
id="path2881"
d="m 13,942.38572 0,15.5 6.2,0 0,-15.5 -6.2,0 z"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
d="m 25,944.38572 0,13.5 6.2,0 0,-9.5 -6.2,-4 z"
id="path2883"
sodipodi:nodetypes="ccccc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
class="Border"
sodipodi:nodetypes="ccccc"
id="path2885"
d="m 37,952.38572 0,7.5 6.2,0 0,-3.5 -6.2,-4 z"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
d="m 49,958.38572 0,5.5 6.2,5 0,-6.5 -6.2,-4 z"
id="path2887"
sodipodi:nodetypes="ccccc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
</g>
<path
class="Border"
sodipodi:nodetypes="cccccccccc"
id="path2866"
d="m 425.2,864.44508 -24,0 -59.5,37.16678 0,7.07107 23.3,-13.8995 0,23.60229 6.2,0 0,-27.3146 30,-18.62604 24,0"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<g
id="g_perilo_rd">
<path
d="m 425.2,932.44508 -24,0 -59.5,37.16678 0,7.07107 23.3,-13.8995 0,23.60229 6.2,0 0,-27.3146 30,-18.62604 24,0"
id="path2864"
sodipodi:nodetypes="cccccccccc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
class="Border"
sodipodi:nodetypes="ccccc"
id="path2870"
d="m 411,943.38572 0,9.5 6.2,0 0,-9.5 -6.2,0 z"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round"
class="Border"
sodipodi:nodetypes="ccccc"
id="path2872"
d="m 399,947.38572 0,9.5 6.2,-4 0,-9.5 -6.2,4 z" />
<path
class="Border"
sodipodi:nodetypes="ccccc"
id="path2874"
d="m 388,954.38572 0,9.5 6.2,-4 0,-9.5 -6.2,4 z"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
class="Border"
sodipodi:nodetypes="ccccc"
id="path2876"
d="m 377,961.38572 0,9.5 6.2,-4 0,-9.5 -6.2,4 z"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
</g>
<path
d="m 389.97284,901.99443 c 0,0 -2.96101,2.65166 -3.13779,4.41943 -0.17677,1.76777 0.71854,2.72725 1.50261,2.82843 1.37003,0.17678 2.16551,-1.50261 2.16551,-1.50261 l -0.53033,-5.74525 z"
id="path2868"
sodipodi:nodetypes="csscc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
d="m 35.71235,904.11576 c 0,0 2.50025,3.04283 1.5026,5.03813 -0.70711,1.41422 -1.67938,2.38649 -3.27037,2.12133 -1.63808,-0.273 -2.12132,-2.74004 -2.12132,-2.74004 l 3.88909,-4.41942 z"
id="path2889"
sodipodi:nodetypes="csscc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
d="m 34.82846,888.82457 c 0,0 0.94271,-3.86949 3.00521,-3.18198 2.38648,0.7955 1.67937,3.62392 1.67937,3.62392 0,0 1.94455,-0.44194 2.82843,0.70711 0.88389,1.14905 0.44195,3.00521 -0.53032,3.44715 -0.97228,0.44194 -3.35876,0 -3.35876,0 l -3.62393,-4.5962 z"
id="path2891"
sodipodi:nodetypes="cscsscc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
d="m 15.5125,815.94822 c 0,0 -1.125,-3.75 -3.25,-4 -2.125,-0.25 -2.5,2.375 -2.5,2.375 0,0 -2.43167,0.30218 -2.5625,1.9375 -0.125,1.5625 2.8125,2.375 2.8125,2.375 l 5.5,-2.6875 z"
id="path2882"
sodipodi:nodetypes="cscscc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
d="m 29.8875,827.44822 c 0,0 1.5,-1.0625 1.375,-2.5625 -0.125,-1.5 -1.25,-2.4375 -2.75,-2.75 -1.85789,-0.38706 -3.3125,0.125 -3.3125,0.125 l 4.6875,5.1875 z"
id="path2884"
sodipodi:nodetypes="csscc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
d="m 383.43211,842.68586 c 0,0 -0.70711,3.18198 0.35355,4.59619 1.06066,1.41422 2.85635,1.47381 3.8007,1.06066 1.41421,-0.61872 1.23744,-2.65165 1.23744,-2.65165 l -5.39169,-3.0052 z"
id="path2907"
sodipodi:nodetypes="csscc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
d="m 377.7,833.32322 c 0,0 -2.5,-1.0625 -2.75,-2.9375 -0.25,-1.875 -0.0261,-3.07308 0.8125,-4 1.1875,-1.3125 2.5,-0.3125 2.5,-0.3125 0,0 1.9375,-2.5625 3.375,-2.5 1.4375,0.0625 1.3125,2.1875 1.3125,2.8125 0,0.625 -0.1875,2.6875 -0.1875,2.6875 l -5.0625,4.25 z"
id="path2886"
sodipodi:nodetypes="csscsscc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<path
d="m 393.2,888.63572 c 0,0 -1.9375,-0.9375 -1.5625,-2.375 0.375,-1.4375 2.6875,-2.4375 2.6875,-2.4375 0,0 0.5625,-2.625 2.375,-2.25 1.8125,0.375 2.4375,1.3125 2.375,2.375 -0.0625,1.0625 -1.25,2.5625 -1.25,2.5625 l -4.625,2.125 z"
id="path2890"
sodipodi:nodetypes="cscsscc"
class="Border"
style="fill:#000000;stroke:#d00000;stroke-width:1;stroke-linejoin:round" />
<g
id="g_window">
<path
class="Curica"
sodipodi:nodetypes="ccccccccccccccc"
id="path3056"
d="m 28.325,1071.3857 18.875,0 0,8 -15.5,0 15.5,0 0,7 -11.5,0 11.5,0 0,7 -8.5,0 8.5,0 0,7 -5,0 5,0 0,10"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
<path
d="m 47.2,1082.8857 7,0 0,29 -7,0"
id="path3058"
sodipodi:nodetypes="cccc"
class="Curica"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
<path
class="Curica"
sodipodi:nodetypes="ccccccc"
id="path3060"
d="m 54.2,1082.8857 11,-10 0,24.5 -10,0 10,0 0,24.5 -11,-10"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
</g>
<g
id="g_curica_lu"
transform="translate(0,280)">
<path
sodipodi:type="arc"
id="path2901"
sodipodi:cx="15.2"
sodipodi:cy="822.5"
sodipodi:rx="0.5"
sodipodi:ry="0.5"
d="m 15.7,822.5 c 0,0.27614 -0.223858,0.5 -0.5,0.5 -0.276143,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.223857,-0.5 0.5,-0.5 0.276142,0 0.5,0.22386 0.5,0.5 z"
class="Curica"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
<path
class="Curica"
sodipodi:nodetypes="cccsssccccccssscccccssssc"
id="path2903"
d="m 3.53901,852.2318 c 0.7071,0.97227 8.13172,1.94454 8.13172,1.94454 l -8.83883,0 c 0,0 2.03293,4.06586 6.18719,5.48008 2.50772,0.85262 6.45745,1.05895 9.89949,-0.0884 2.91681,-0.97227 4.77298,-3.18198 5.65686,-6.09879 0.88388,-2.91682 0.7071,-9.45756 0.7071,-9.45756 m -21.38999,1.85617 c 0.97227,1.23743 9.36917,2.74004 9.36917,2.74004 L 2.92028,847.01689 m 22.09709,16.70538 -10e-6,10e-6 c 0,0 3.53553,-1.67937 7.33623,-5.92201 3.8007,-4.24264 4.77297,-7.68979 4.33103,-12.55115 -0.44195,-4.86136 -3.00521,-10.34144 -7.24785,-15.82151 -4.24264,-5.48008 -9.7486,-10.0245 -9.7486,-10.0245 l 5.15241,-2.08471 -5.39169,1.14905 0.0884,-4.41942 -1.06066,4.33103 c 0,0 -4.06587,-2.03293 -6.62913,-0.35355 -2.88719,1.89161 -3.27257,4.33119 -3.09359,6.71751 0.26517,3.53554 4.15426,7.33624 4.06587,9.81111 -0.0884,2.47487 -1.14101,5.66333 -3.71232,5.83363 -4.17656,0.27661 -7.18718,-3.13648 -7.18718,-3.13648"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
<path
sodipodi:nodetypes="czc"
class="Curica"
id="path2933"
d="m 6.95,832.88572 c 0,0 -1.17766,-1.97851 -2.38572,-2.72855 C 3.33599,829.39458 1.5,829.0638 1.5,829.0638"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
</g>
<g
id="g_curica_ld"
transform="translate(0,280)">
<path
class="Curica"
sodipodi:nodetypes="csccccccsssssc"
id="path2893"
d="m 15.73658,929.12966 c 0,0 8.18569,-1.53086 12.1092,-6.27558 3.80071,-4.59619 2.38649,-13.78858 2.38649,-13.78858 l 6.71752,-8.22011 3.35875,3.8007 -2.56327,-5.12652 4.77298,-0.97228 -5.12652,-0.35356 c 0,0 0.37069,-3.52921 -1.06066,-5.65684 -2.12207,-3.15436 -4.24265,-2.91682 -7.24786,-2.65166 -3.21338,0.28354 -10.14892,7.82352 -12.46274,9.63434 -2.03294,1.59099 -4.86136,1.94453 -6.45235,0.44193 -1.61035,-1.52087 -0.0884,-6.54074 -1.76777,-9.54594 -1.67938,-3.0052 -5.56847,-3.97747 -5.56847,-3.97747"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
<path
class="Curica"
sodipodi:nodetypes="cccccccccssc"
id="path2895"
d="M 2.2,912.38572 7.51647,915.87141 2.2,911.38572 m 0,-7 6.73069,5.03334 L 2.2,903.38572 3.57661,895.88418 2.2,893.42077 m 14.33209,13.70019 c 0,0 3.18197,3.88909 2.82841,8.30851 -0.35355,4.41941 -4.86135,7.42462 -8.75045,7.86656 C 6.47584,923.76584 2.2,920.38572 2.2,920.38572"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
<path
transform="translate(0,738.02354)"
class="Curica"
d="m 31.700001,158.5 c 0,0.27614 -0.223858,0.5 -0.5,0.5 -0.276143,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.223857,-0.5 0.5,-0.5 0.276142,0 0.5,0.22386 0.5,0.5 z"
sodipodi:ry="0.5"
sodipodi:rx="0.5"
sodipodi:cy="158.5"
sodipodi:cx="31.200001"
id="path2899"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
</g>
<g
id="g_curica_ru"
transform="translate(0,280)">
<path
transform="translate(-107.3,738.02354)"
class="Curica"
d="m 493.5,97.5 c 0,0.276142 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.223858 -0.5,-0.5 0,-0.276142 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.223858 0.5,0.5 z"
sodipodi:ry="0.5"
sodipodi:rx="0.5"
sodipodi:cy="97.5"
sodipodi:cx="493"
id="path2909"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
<path
class="Curica"
sodipodi:nodetypes="cccsscccccssscccc"
id="path2905"
d="m 424.59962,834.32374 -10.31999,5.71047 m -1.06066,22.80419 c 0,0 -6.54073,-0.79549 -10.5182,-3.88909 -3.97748,-3.09359 -9.36917,-11.31371 -14.05375,-14.49569 -4.68458,-3.18198 -7.77818,-4.15425 -7.77818,-4.15425 l -4.5078,4.33103 3.71231,-5.03813 -7.24784,0.17677 6.62912,-1.23743 c 0,0 -1.85616,-3.71231 0.79549,-6.80591 2.88818,-3.36953 6.71752,-2.74004 9.63434,-1.59099 2.91681,1.14905 9.19238,5.39169 17.14734,5.12653 7.95495,-0.26517 9.72271,-3.44715 9.72271,-3.44715 l -0.44194,-7.42462 4.50781,4.33103 4.24264,-5.21491"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
<path
d="m 418.5125,850.57322 6.1875,-4.0625 m 0,-6 -8.375,4.875 m -9.9375,5.625 c 0,0 1.65859,4.91033 6.5625,7.125 3.875,1.75 6.6875,1.1875 8.375,0.25 1.9562,-1.08678 3.6875,-5 3.6875,-5"
id="path2888"
sodipodi:nodetypes="cccccssc"
class="Curica"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
</g>
<g
id="g_curica_rd"
transform="translate(0,280)">
<path
transform="translate(-107.3,738.02354)"
sodipodi:type="arc"
id="path2892"
sodipodi:cx="505"
sodipodi:cy="157.5"
sodipodi:rx="0.5"
sodipodi:ry="0.5"
d="m 505.5,157.5 c 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.22386 0.5,0.5 z"
class="Curica"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
<path
class="Curica"
sodipodi:nodetypes="cssccccccccsscccccsssssscc"
id="path2894"
d="m 424.7,916.76072 c 0,0 -2.90969,4.82469 -7.125,5.75 -2.5625,0.5625 -4.8125,-0.625 -6.6875,-2.4375 -1.875,-1.8125 -4.625,-5.3125 -4.625,-5.3125 m 18.4375,-3.3125 -7.75,2.1875 7.75,-1.0625 m 0,-7.8125 -8.0625,3.3125 8.0625,-0.75 m -13.75,22.5 c 0,0 -7.00752,-3.48693 -12.875,-10.3125 -3.9974,-4.65013 -4.6875,-6.125 -5.5,-9.375 -0.8125,-3.25 -1.625,-11.9375 -1.625,-11.9375 l -4.875,2.5625 4.125,-3.0625 -3.9375,-3.25 4.625,2.6875 c 0,0 0.125,-2 1.5,-4.625 1.375,-2.625 2.6875,-4 5.1875,-4.375 2.5,-0.375 3.8125,0.9375 4.75,2.375 0.9375,1.4375 4.25,8.1875 6.375,9.9375 2.125,1.75 3.9375,2.125 6.6875,0.5625 2.75,-1.5625 7.0625,-5.125 7.25,-6.125 0.1875,-1 -2.375,-6.125 -2.375,-6.125 l 4.4375,5.75"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round" />
</g>
<g
id="g3038"
transform="translate(0,560)">
<path
sodipodi:nodetypes="ccscssssc"
class="Tree"
id="path2878"
d="m 424.44431,770.64935 -55.24273,-0.0884 c 0,0 0.0884,3.44715 -2.74004,5.3033 -2.82842,1.85616 -8.66205,1.94455 -8.66205,1.94455 0,0 7.24784,9.63433 7.60139,11.13693 0.35356,1.5026 3.0936,4.86136 9.28078,3.09359 6.18718,-1.76777 6.98268,-4.15425 10.25305,-3.18198 3.27037,0.97227 6.09879,1.85616 8.48528,0.97227 2.38649,-0.88388 30.93592,-13.25825 30.93592,-13.25825"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
<path
class="Tree"
sodipodi:nodetypes="csssscscscssssc"
id="path2880"
d="m 424.17914,813.16415 c 0,0 -6.89399,-4.35803 -13.52343,-4.41942 -9.54593,-0.0884 -12.7342,7.03002 -14.85552,7.03002 -2.12132,0 -3.26408,-2.43382 -5.65057,-2.34544 -2.38648,0.0884 -10.96015,5.65686 -13.16986,5.83364 -2.20971,0.17677 -10.51822,-0.26517 -10.51822,-0.26517 0,0 4.68459,-1.14905 6.71752,-2.65165 2.03293,-1.5026 4.06586,-5.65685 4.06586,-5.65685 0,0 -4.15425,2.91681 -6.27557,2.74003 -2.12132,-0.17677 -6.89429,-3.44714 -6.89429,-3.44714 0,0 2.20971,-2.2981 2.2981,-6.8059 0.0884,-4.50781 1.59099,-7.51301 6.98268,-8.92723 5.39168,-1.41421 11.66726,0.7955 17.76605,-0.44194 6.0988,-1.23744 15.99829,-6.45235 19.7106,-8.04334 3.71232,-1.59099 13.7002,-5.03813 13.7002,-5.03813"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
<path
class="Tree"
sodipodi:nodetypes="csssssssscsc"
id="path2825"
d="m 397.92782,988.79176 c 0,0 -1.94862,-1.23728 -3.8007,0.44194 -6.62913,6.01041 -8.75045,10.34144 -9.8995,10.34144 -1.14905,0 -3.8007,-3.35876 -3.88908,-5.12652 -0.0884,-1.76777 0,-4.06587 -1.85616,-5.83363 -1.85616,-1.76777 -4.09993,-0.58711 -3.44715,-4.24265 0.8839,-4.94975 1.46402,-8.93191 3.35876,-9.36916 2.2981,-0.53033 2.4689,1.9753 4.5962,1.23744 3.51131,-1.2179 5.12652,-4.50781 7.15945,-4.06587 2.03293,0.44194 7.51301,3.88909 7.51301,3.88909 0,0 -0.7071,3.18198 -0.61871,5.39169 0.0884,2.20971 0.79549,7.24784 0.88388,7.33623 z"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="ccscsccccsscszssssc"
class="Tree"
id="path3599"
d="m 424.26755,959.88877 -7.51301,-5.39169 c 0,0 -2.47488,4.33103 -4.68459,4.33103 -2.20971,0 -4.86136,-1.85615 -4.86136,-1.85615 0,0 -0.79549,4.94974 -3.80069,5.12652 -3.00521,0.17678 -5.56847,-0.26516 -5.56847,-0.26516 l -3.53553,3.27036 1.85615,4.06587 -0.35355,2.47487 c 0,0 3.71231,-0.7071 5.12652,0.26517 1.41422,0.97227 4.33103,3.18198 4.24264,4.41941 -0.0884,1.23744 -4.77297,3.35876 -4.77297,3.35876 0,0 3.27037,2.20971 2.65165,3.8007 -0.61872,1.59099 -2.43535,3.05732 -2.38649,5.12653 0.0489,2.06921 1.85616,3.35875 3.88909,4.33102 3.33951,1.59715 7.86657,1.41422 9.01562,2.74004 1.14904,1.32583 2.47487,1.59099 3.62392,0.7955 1.14905,-0.7955 2.56326,-1.59099 3.44714,-1.59099 0.88389,0 3.35876,2.2981 3.35876,2.2981"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="csssssscsssssssssssssssssc"
class="Tree"
id="path3601"
d="m 355.14786,1033.4279 c 0,0 2.82842,-2.5633 6.54073,-2.8284 3.71231,-0.2652 3.53554,1.0606 7.51301,1.0606 3.97748,0 2.38649,-3.4471 6.71752,-1.5026 4.33103,1.9446 4.94975,3.7123 7.68978,3.7123 2.74004,0 4.86136,-3.2703 7.68979,-2.8284 2.82843,0.4419 3.8007,3.0052 6.71752,2.0329 2.91681,-0.9722 9.36916,3.0052 9.36916,3.0052 0,0 5.39169,-2.8284 5.65686,-4.5078 0.26516,-1.6793 -0.44195,-4.4194 -2.2981,-4.331 -1.85616,0.088 -3.8007,2.2981 -5.56847,1.8562 -1.76776,-0.442 -3.35876,-3.7124 -5.3033,-3.2704 -1.94454,0.4419 -1.32582,3.0936 -3.8007,2.4749 -2.47487,-0.6188 -1.59099,-5.0382 -3.27037,-3.7124 -1.67938,1.3259 -2.82842,4.3311 -5.56846,4.773 -1.9316,0.3116 -4.86136,-2.4749 -5.83363,-2.4749 -0.97228,0 -1.59099,2.2098 -2.74004,1.6794 -1.14905,-0.5303 -1.14905,-3.9775 -3.18198,-3.9775 -2.03294,0 -4.50781,3.2704 -6.0988,3.2704 -1.59099,0 -1.5026,-2.6516 -3.0052,-2.74 -1.50261,-0.088 -0.26517,2.8284 -3.0936,3.182 -2.82842,0.3535 -4.5078,-3.5356 -5.56846,-3.5356 -1.06066,0 -0.70711,3.8007 -1.67938,3.8007 -0.97227,0 -5.03814,-5.2149 -5.65686,-4.5962 -0.61871,0.6187 0.35356,5.7453 1.41422,6.364 1.06066,0.6187 3.27037,3.0936 3.35876,3.0936 z"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
<path
class="Tree"
sodipodi:nodetypes="ccscscscsscsscscscsscscc"
id="path3603"
d="m 172.00719,1051.1939 34.47146,-0.1767 c 0,0 0.44194,-1.7678 1.59099,-3.8007 1.14905,-2.033 6.09879,-4.9498 6.09879,-4.9498 0,0 -1.06066,-1.2374 -3.44714,-2.0329 -3.02334,-1.0078 -5.74524,1.0606 -5.74524,1.0606 0,0 0.97227,-1.9445 0.53033,-3.8007 -0.44195,-1.8561 -1.23744,-3.2703 -1.23744,-3.2703 0,0 -1.94454,4.6846 -3.62392,4.6846 -1.67938,0 -3.44715,-0.3536 -3.44715,-2.1214 0,-1.7677 0,-3.889 0,-3.889 0,0 -3.09359,1.5026 -5.39168,2.74 -2.4573,1.3231 -5.03814,1.8561 -5.48009,0.7071 -0.44194,-1.149 -0.61871,-3.3588 -0.61871,-3.3588 0,0 -1.41422,4.3311 -4.33103,4.5078 -2.91682,0.1768 -4.94975,-3.0935 -4.94975,-3.0935 0,0 1.5026,3.3587 -0.7955,3.889 -2.29809,0.5304 -6.62912,-0.088 -6.62912,-0.088 0,0 0.17677,2.033 0.61871,3.0052 0.44195,0.9723 2.20971,1.9446 0.26517,2.2981 -1.94454,0.3536 -7.77817,0.442 -7.77817,0.442 0,0 1.59099,2.74 4.06586,4.4194 2.47488,1.6794 5.83363,3.0052 5.83363,2.8284 l 0,0 z"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
<path
class="Tree"
sodipodi:nodetypes="ccssssscsscsssssssssc"
id="path3605"
d="m 2.47833,998.16091 0,3e-5 c 0,0 4.86136,-4.41943 9.104,-3.8891 4.24264,0.53033 9.45756,4.24264 14.31892,4.50781 4.86136,0.26516 10.25304,-3.8007 13.52341,-3.35876 3.27037,0.44194 7.37563,1.93523 8.92723,0.61872 2.91682,-2.47488 1.23743,-3.18198 2.12132,-4.94975 0.88388,-1.76777 3.09359,-3.18198 3.09359,-3.18198 0,0 -1.5026,-2.12132 0.17678,-3.71231 2.52865,-2.39556 4.33103,-3.27037 4.5078,-5.74524 0.1156,-1.61847 -1.76776,-5.03814 -1.76776,-5.03814 0,0 -1.99146,2.05211 -4.86136,1.5026 -4.70787,-0.90144 -1.06066,-5.92202 -5.92202,-7.51301 -4.86136,-1.59099 -5.92202,-3.35876 -8.22012,-3.44714 -2.23616,-0.086 -1.14905,2.74003 -4.59619,1.76776 -3.44715,-0.97227 -0.44195,-3.53553 -3.97748,-3.53553 -3.53553,0 -4.16316,2.44595 -6.54074,2.38648 -2.92125,-0.0731 -2.12132,-3.18198 -4.41942,-2.82842 -2.29809,0.35355 -3.53553,4.86136 -6.71751,4.94974 -3.18198,0.0884 -3.62392,-3.18197 -5.48008,-3.8007 -1.67914,-0.55972 -3.44714,-0.0884 -3.44714,-0.0884"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
<path
class="Tree"
sodipodi:nodetypes="cssssssscssssscssssssscsssc"
id="path2853"
d="m 15.38303,1028.8317 c 0,0 3.53553,-1.9445 5.12652,-1.0606 1.59099,0.8838 4.06586,3.0052 5.12653,2.4748 1.06066,-0.5303 2.29809,-2.2981 4.06586,-2.1213 1.76777,0.1768 3.88909,1.7678 4.77297,1.7678 0.88388,0 3.18198,-1.9446 5.12653,-1.9446 1.94454,0 5.48007,2.2981 8.48527,2.2981 3.00521,0 7.42463,-2.4748 9.8995,-2.4748 2.47487,0 7.24784,1.591 7.24784,1.591 0,0 2.47488,-2.6517 4.24265,-1.4143 1.76776,1.2375 5.83362,2.6517 6.36395,0.8839 0.53033,-1.7677 0.70711,-2.4749 -0.35355,-3.182 -1.06066,-0.7071 -4.06586,-0.1767 -3.88908,-1.0606 0.17678,-0.8839 1.94454,-3.3588 0.35355,-3.7123 -1.59099,-0.3536 -6.89429,3.8891 -6.89429,3.8891 0,0 -4.06587,-4.2427 -6.71752,-3.8891 -2.65165,0.3535 -4.77296,5.3033 -7.95495,5.3033 -2.53105,0 -3.88908,-3.182 -5.48008,-3.3588 -1.59099,-0.1768 -0.88388,2.2981 -3.0052,2.2981 -2.12132,0 -3.0052,-3.8891 -3.88909,-4.0659 -0.88388,-0.1767 -0.7071,3.182 -3.0052,3.0053 -2.2981,-0.1768 -2.46547,-5.4287 -4.24264,-3.0053 -1.94454,2.6517 -5.12652,-0.5303 -5.12652,-0.5303 0,0 2.29809,3.7123 -1.23744,3.5356 -3.53554,-0.1768 -3.53554,1.7677 -5.65686,0.3535 -2.12132,-1.4142 -3.35875,-3.0052 -4.41941,-3.0052 -1.06066,0 0.88388,8.1317 1.06066,7.4246 z"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cscscscssscssscccsc"
class="Tree"
id="path2851"
d="m 226.10085,1051.8127 c 0,0 2.2981,-2.1213 1.76777,-4.0659 -0.53033,-1.9445 -3.18198,-5.1265 -3.18198,-5.1265 0,0 3.53553,0.3536 5.48007,-1.0607 1.66725,-1.2125 1.59099,-6.0104 1.59099,-6.0104 0,0 3.18199,3.5356 4.94975,3.5356 1.76777,0 4.06587,-2.4749 4.06587,-2.4749 0,0 1.94454,4.0659 3.35875,3.5355 1.41422,-0.5303 4.24264,-2.2981 6.01041,-2.2981 1.76777,0 3.0052,1.4142 5.3033,1.4142 2.2981,0 7.6014,-4.7729 7.6014,-4.7729 0,0 -0.87644,3.3497 1.06066,4.9497 2.05373,1.6964 2.82208,-0.849 5.12652,0 3.35876,1.2375 0.70711,3.0052 3.00521,3.5356 2.2981,0.5303 5.83363,0.5303 5.83363,0.5303 l -3.88909,4.0658 2.47488,2.6517 c 0,0 -9.01562,1.4142 -12.37437,1.4142 -3.35876,0 -37.47666,0.3536 -38.18377,0.1768 z"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
<path
class="Tree"
sodipodi:nodetypes="cscscsssscsc"
id="path2854"
d="m 198.52369,1028.4782 c 0,0 7.77817,0.7071 12.55114,0.7071 4.77297,0 13.61181,-1.591 13.61181,-1.591 0,0 -1.23744,-2.1213 -2.12132,-3.7123 -0.88389,-1.591 0,-4.773 0,-4.773 0,0 -1.76777,3.7123 -3.00521,3.182 -1.23743,-0.5304 -2.64388,-3.7928 -4.24263,-3.7123 -1.93915,0.098 -3.90138,3.8196 -6.36397,4.0658 -3.53553,0.3536 -5.3033,-3.0052 -6.71751,-3.0052 -1.41422,0 -3.18198,0.8839 -3.18198,0.8839 0,0 -2.32116,-1.1117 -3.35876,0 -2.47488,2.6517 2.47487,8.1317 2.82843,7.955 z"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
<path
class="Tree"
sodipodi:nodetypes="cssscscssssssscsc"
id="path2856"
d="m 234.40935,1031.3066 c 0,0 14.14214,-1.4142 19.09189,-0.8839 4.94975,0.5303 11.90241,1.0313 17.14733,-0.7071 4.50765,-1.494 8.13174,-3.8891 8.48529,-5.8336 0.35356,-1.9446 -0.35355,-3.7123 -0.35355,-3.7123 0,0 -2.2981,4.0658 -3.35876,2.4748 -1.06066,-1.591 -0.88389,-5.1265 -0.88389,-5.1265 0,0 -10.25305,6.364 -15.55635,6.5407 -2.65018,0.088 -0.35355,-3.0052 -3.18197,-3.1819 -2.82843,-0.1768 -0.88389,2.6516 -3.35876,3.0052 -2.60157,0.3716 -3.18198,-3.3588 -5.48008,-3.182 -2.2981,0.1768 -5.65685,1.0607 -7.77817,0 -2.12132,-1.0607 -4.41942,-3.8891 -6.01042,-3.8891 -1.59099,0 -0.35355,2.1213 -3.0052,3.3588 -3.87453,1.8081 -3.71231,-0.5304 -3.71231,-0.5304 0,0 1.23744,4.773 2.65165,7.2479 1.41422,2.4748 5.48008,4.7729 5.3033,4.4194 z"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
<path
class="Tree"
sodipodi:nodetypes="csssscssszzssc"
id="path2858"
d="m 147.96555,1025.1194 c 3.35876,0 3.53553,2.2981 5.65685,2.6517 2.12132,0.3535 16.08669,0.3535 16.97057,0 0.88388,-0.3536 3.0052,-2.4749 4.06586,-2.4749 1.06066,0 2.47253,1.9671 5.3033,2.1213 5.49753,0.2995 9.54595,-0.5303 9.54595,-0.5303 0,0 -6.18719,-1.7678 -6.18719,-3.3588 0,-1.591 4.59619,-3.3587 3.0052,-4.773 -1.59099,-1.4142 -3.35875,2.2981 -5.83363,2.4749 -1.41062,0.1008 -6.89429,-1.9445 -6.89429,-1.9445 l -26.87006,-0.8839 c 0,0 -6.89428,1.0607 -7.60139,3.182 -0.67082,2.0124 1.92266,5.8557 3.35875,6.0104 2.64226,0.2845 3.35876,-2.6517 5.48008,-2.4749 z"
style="fill:#000000;stroke:#008000;stroke-width:1;stroke-linejoin:round" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -0,0 +1,337 @@
<?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="430"
height="285"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="nu_p_egs.svg"
inkscape:export-filename="C:\Documents and Settings\Игорь\Рабочий стол\eggs.png"
inkscape:export-xdpi="67.5"
inkscape:export-ydpi="67.5">
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective10" />
<inkscape:perspective
id="perspective2824"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2838"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2852"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2866"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="134.78777"
inkscape:cy="51.64846"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1001"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-maximized="1" />
<style
type="text/css"
id="style4"> .Egg { fill:#d08080; stroke:#000000; stroke-width:1;stroke-linejoin:round }</style>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-767.36218)">
<rect
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="rect_fon"
width="420"
height="6160"
x="2.5"
y="2.5"
transform="translate(0,767.36218)"
ry="0"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
class="Egg"
sodipodi:nodetypes="czzzz"
id="path_eg_lu_1"
d="m 45.34669,855.45758 c 1.5026,1.41421 0.27296,5.5701 -1.85616,8.66206 -2.12912,3.09195 -6.75903,4.73145 -9.54594,1.94454 -2.7869,-2.78691 -0.79568,-7.53735 2.47487,-9.45756 3.27056,-1.9202 7.42463,-2.56325 8.92723,-1.14904 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
<g
id="g3038"
transform="translate(0,280)">
<path
class="Egg"
sodipodi:nodetypes="czzzz"
id="path_eg_lu_2"
d="m 53.8214,877.12851 c 2.20971,0.17678 5.30494,-4.32323 5.30331,-7.95496 -0.002,-3.63172 -1.63821,-7.11228 -5.03814,-7.07106 -3.40002,0.0412 -5.32765,3.71212 -5.30331,6.89429 0.025,3.27054 2.82844,7.95496 5.03814,8.13173 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3041"
transform="translate(0,560)">
<path
class="Egg"
sodipodi:nodetypes="czzzz"
id="path_eg_lu_3"
d="m 63.07206,876.22884 c -1.5026,1.41421 -0.27296,5.5701 1.85616,8.66206 2.12912,3.09195 6.75903,4.73145 9.54594,1.94454 2.7869,-2.78691 0.79568,-7.53735 -2.47487,-9.45756 -3.27056,-1.9202 -7.42463,-2.56325 -8.92723,-1.14904 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3044"
transform="translate(0,840)">
<path
class="Egg"
sodipodi:nodetypes="czzzz"
id="path_eg_lu_4"
d="m 90.42475,884.71412 c 1.5026,1.41421 0.27296,5.5701 -1.85616,8.66206 -2.12912,3.09195 -6.75903,4.73145 -9.54594,1.94454 -2.7869,-2.78691 -0.79568,-7.53735 2.47487,-9.45756 3.27056,-1.9202 7.42463,-2.56325 8.92723,-1.14904 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3047"
transform="translate(0,1120)">
<path
d="m 103.85977,908.09323 c 1.5026,-1.41421 0.27296,-5.5701 -1.85616,-8.66206 -2.12912,-3.09195 -6.75903,-4.73145 -9.54594,-1.94454 -2.7869,2.78691 -0.79568,7.53735 2.47487,9.45756 3.27056,1.9202 7.42463,2.56325 8.92723,1.14904 z"
id="path_eg_lu_5"
sodipodi:nodetypes="czzzz"
class="Egg"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3050"
transform="translate(0,1400)">
<path
class="Egg"
sodipodi:nodetypes="czzzz"
id="path_eg_ld_1"
d="m 43.6673,934.60974 c 1.5026,-1.41421 0.27296,-5.5701 -1.85616,-8.66206 -2.12912,-3.09195 -6.75903,-4.73145 -9.54594,-1.94454 -2.7869,2.78691 -0.79568,7.53735 2.47487,9.45756 3.27056,1.9202 7.42463,2.56325 8.92723,1.14904 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3053"
transform="translate(0,1680)">
<path
d="m 48.04603,940.17821 c -1.5026,-1.41421 -0.27296,-5.5701 1.85616,-8.66206 2.12912,-3.09195 6.75903,-4.73145 9.54594,-1.94454 2.7869,2.78691 0.79568,7.53735 -2.47487,9.45756 -3.27056,1.9202 -7.42463,2.56325 -8.92723,1.14904 z"
id="path_eg_ld_2"
sodipodi:nodetypes="czzzz"
class="Egg"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3056"
transform="translate(0,1960)">
<path
d="m 75.07635,946.57533 c 0.17678,-2.20971 -4.32323,-5.30494 -7.95496,-5.30331 -3.63172,0.002 -7.11228,1.63821 -7.07106,5.03814 0.0412,3.40002 3.71212,5.32765 6.89429,5.30331 3.27054,-0.025 7.95496,-2.82844 8.13173,-5.03814 z"
id="path_eg_ld_3"
sodipodi:nodetypes="czzzz"
class="Egg"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3059"
transform="translate(0,2240)">
<path
d="m 78.54003,951.53571 c -1.5026,1.41421 -0.27296,5.5701 1.85616,8.66206 2.12912,3.09195 6.75903,4.73145 9.54594,1.94454 2.7869,-2.78691 0.79568,-7.53735 -2.47487,-9.45756 -3.27056,-1.9202 -7.42463,-2.56325 -8.92723,-1.14904 z"
id="path_eg_ld_4"
sodipodi:nodetypes="czzzz"
class="Egg"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3062"
transform="translate(0,2520)">
<path
class="Egg"
sodipodi:nodetypes="czzzz"
id="path_eg_ld_5"
d="m 108.8407,966.72787 c 0.17678,-2.20971 -4.32323,-5.30494 -7.95496,-5.30331 -3.63172,0.002 -7.11228,1.63821 -7.07106,5.03814 0.0412,3.40002 3.71212,5.32765 6.89429,5.30331 3.27054,-0.025 7.95496,-2.82844 8.13173,-5.03814 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g_eg_l_del"
transform="translate(0,5600)">
<path
d="m 134.8407,1024.7279 c 0.17678,-2.2097 -5.23117,-5.3046 -7.95496,-5.3033 -2.72379,10e-4 0.21364,2.4822 0.21364,2.4822 0,0 0.84703,3.0862 0.84703,3.0862 0,0 -1.97722,1.6725 -1.97722,1.6725 0,0 -1.69103,3.1191 0.73978,3.1005 2.43081,-0.019 7.95496,-2.8284 8.13173,-5.0381 z"
id="path2900"
sodipodi:nodetypes="czccczz"
class="Egg"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
<path
class="Egg"
sodipodi:nodetypes="cczzzcc"
id="path2902"
d="m 90.46285,1019.6948 c 0,0 -2.42295,-2.4609 -2.42295,-2.4609 0,0 -0.51596,-2.2874 -3.04412,-1.2738 -2.52816,1.0136 -5.99397,4.1642 -4.69209,7.3052 1.30189,3.1412 6.14212,3.2735 8.37146,2.3612 2.22934,-0.9124 0.0925,-3.8956 0.0925,-3.8956 0,0 1.69522,-2.0361 1.69522,-2.0361 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3065"
transform="translate(0,2800)">
<path
d="m 393.86194,856.34146 c 1.5026,1.41421 0.27296,5.5701 -1.85616,8.66206 -2.12912,3.09195 -6.75903,4.73145 -9.54594,1.94454 -2.7869,-2.78691 -0.79568,-7.53735 2.47487,-9.45756 3.27056,-1.9202 7.42463,-2.56325 8.92723,-1.14904 z"
id="path_eg_ru_1"
sodipodi:nodetypes="czzzz"
class="Egg"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3068"
transform="translate(0,3080)">
<path
d="m 372.57878,862.54911 c -2.20971,-0.17678 -5.30494,4.32323 -5.30331,7.95496 0.002,3.63172 1.63821,7.11228 5.03814,7.07106 3.40002,-0.0412 5.32765,-3.71212 5.30331,-6.89429 -0.025,-3.27054 -2.82844,-7.95496 -5.03814,-8.13173 z"
id="path_eg_ru_2"
sodipodi:nodetypes="czzzz"
class="Egg"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3071"
transform="translate(0,3360)">
<path
class="Egg"
sodipodi:nodetypes="czzzz"
id="path_eg_ru_3"
d="m 350.51096,874.54946 c -1.5026,1.41421 -0.27296,5.5701 1.85616,8.66206 2.12912,3.09195 6.75903,4.73145 9.54594,1.94454 2.7869,-2.78691 0.79568,-7.53735 -2.47487,-9.45756 -3.27056,-1.9202 -7.42463,-2.56325 -8.92723,-1.14904 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3074"
transform="translate(0,3640)">
<path
class="Egg"
sodipodi:nodetypes="czzzz"
id="path_eg_ru_4"
d="m 350.08171,892.37773 c 0.17678,-2.20971 -4.32323,-5.30494 -7.95496,-5.30331 -3.63172,0.002 -7.11228,1.63821 -7.07106,5.03814 0.0412,3.40002 3.71212,5.32765 6.89429,5.30331 3.27054,-0.025 7.95496,-2.82844 8.13173,-5.03814 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3077"
transform="translate(0,3920)">
<path
d="m 326.17511,912.8374 c 2.20971,0.17678 5.30494,-4.32323 5.30331,-7.95496 -0.002,-3.63172 -1.63821,-7.11228 -5.03814,-7.07106 -3.40002,0.0412 -5.32765,3.71212 -5.30331,6.89429 0.025,3.27054 2.82844,7.95496 5.03814,8.13173 z"
id="path_eg_ru_5"
sodipodi:nodetypes="czzzz"
class="Egg"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3080"
transform="translate(0,4200)">
<path
d="m 395.14237,928.99645 c 0.17678,-2.20971 -4.32323,-5.30494 -7.95496,-5.30331 -3.63172,0.002 -7.11228,1.63821 -7.07106,5.03814 0.0412,3.40002 3.71212,5.32765 6.89429,5.30331 3.27054,-0.025 7.95496,-2.82844 8.13173,-5.03814 z"
id="path_eg_rd_1"
sodipodi:nodetypes="czzzz"
class="Egg"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3083"
transform="translate(0,4480)">
<path
class="Egg"
sodipodi:nodetypes="czzzz"
id="path_eg_rd_2"
d="m 369.73317,946.18575 c 2.20971,0.17678 5.30494,-4.32323 5.30331,-7.95496 -0.002,-3.63172 -1.63821,-7.11228 -5.03814,-7.07106 -3.40002,0.0412 -5.32765,3.71212 -5.30331,6.89429 0.025,3.27054 2.82844,7.95496 5.03814,8.13173 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3086"
transform="translate(0,4760)">
<path
class="Egg"
sodipodi:nodetypes="czzzz"
id="path_eg_rd_3"
d="m 361.86535,953.43644 c 1.5026,-1.41421 0.27296,-5.5701 -1.85616,-8.66206 -2.12912,-3.09195 -6.75903,-4.73145 -9.54594,-1.94454 -2.7869,2.78691 -0.79568,7.53735 2.47487,9.45756 3.27056,1.9202 7.42463,2.56325 8.92723,1.14904 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3089"
transform="translate(0,5040)">
<path
class="Egg"
sodipodi:nodetypes="czzzz"
id="path_eg_rd_4"
d="m 334.51266,958.87193 c -0.17678,2.20971 4.32323,5.30494 7.95496,5.30331 3.63172,-0.002 7.11228,-1.63821 7.07106,-5.03814 -0.0412,-3.40002 -3.71212,-5.32765 -6.89429,-5.30331 -3.27054,0.025 -7.95496,2.82844 -8.13173,5.03814 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3092"
transform="translate(0,5320)">
<path
d="m 319.75181,962.84942 c -1.5026,1.41421 -0.27296,5.5701 1.85616,8.66206 2.12912,3.09195 6.75903,4.73145 9.54594,1.94454 2.7869,-2.78691 0.79568,-7.53735 -2.47487,-9.45756 -3.27056,-1.9202 -7.42463,-2.56325 -8.92723,-1.14904 z"
id="path_eg_rd_5"
sodipodi:nodetypes="czzzz"
class="Egg"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g_eg_r_del"
transform="translate(0,5880)">
<path
class="Egg"
sodipodi:nodetypes="csczzssz"
id="path3020"
d="m 279.28994,1030.8517 c 0.13618,1.1526 1.16917,1.6521 2.69385,2.3598 1.52468,0.7077 2.55769,1.2072 5.37159,1.3042 -3.43609,-3.153 -0.0499,-1.6153 -0.38069,-3.6385 -0.33075,-2.0233 0.39,-3.2258 -1.32294,-3.1404 -1.71294,0.086 0.97524,-4.3548 -2.93291,-1.8833 -0.68427,0.4328 -1.13327,0.9514 -1.7099,1.5418 -1.15326,1.1806 -1.85518,2.3037 -1.719,3.4564 z"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
<path
d="m 330.3588,1025.5024 c -0.394,1.5443 -1.70519,0.1712 -2.54809,1.4801 0.5321,1.1839 -0.63244,2.2671 0.21459,2.4181 0.84703,0.1509 1.65324,0.058 2.59467,-0.043 1.88286,-0.2031 3.22483,-0.3704 4.26074,-2.3305 1.03591,-1.9601 0.55546,-3.6015 -0.50149,-5.1341 -0.52847,-0.7663 -1.01705,-1.3737 -1.68376,-1.9167 -1.55961,-1.2702 -0.44412,1.0093 -2.09237,1.6179 -1.27325,1.1086 1.09461,0.8976 0.256,2.7834 l -0.50029,1.125 z"
id="path3022"
sodipodi:nodetypes="ccsszssccc"
class="Egg"
style="fill:#d08080;stroke:#000000;stroke-width:1;stroke-linejoin:round" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,692 @@
<?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="430"
height="285"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="nu_p_wolf.svg"
inkscape:export-filename="C:\Documents and Settings\Игорь\Рабочий стол\nu_pogod.png"
inkscape:export-xdpi="45"
inkscape:export-ydpi="45">
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective10" />
<inkscape:perspective
id="perspective2824"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2838"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2852"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2866"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35355339"
inkscape:cx="132.443"
inkscape:cy="-738.01858"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1001"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-maximized="1" />
<style
type="text/css"
id="style4"> .Wolf { fill:#000000; stroke:#000080; stroke-width:1;stroke-linejoin:round }
.WolfB { fill:none; stroke:#000080; stroke-width:1;stroke-linejoin:round }</style>
<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="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-767.36218)">
<rect
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="rect_fon"
width="420"
height="2520"
x="2.5"
y="2.5"
transform="translate(0,767.36218)"
ry="0"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
id="g_wolf_l">
<path
sodipodi:nodetypes="csscccssc"
class="WolfB"
id="path2966"
d="m 204.325,885.51072 c 0,0 3,6.25 1.875,12.5 -1.125,6.25 -3.89856,10.09093 -6.5,9 l -3.875,-1.625 3.125,-7.25 -3.875,6.625 c 0,0 -3,-1.375 -2.125,-5.625 0.875,-4.25 1.97644,-5.74488 4.25,-8.375 2.78416,-3.22079 7.125,-5.125 7.125,-5.25 z"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="WolfB"
sodipodi:nodetypes="cscc"
id="path2968"
d="m 197.45,890.38572 c 0,0 -0.5,-0.75 -5.75,-0.75 -5.25,0 -10.25,1.75 -10.25,1.75 l 12.375,4"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="WolfB"
sodipodi:nodetypes="csccsc"
id="path2970"
d="m 190.075,889.26072 c 0,0 0.25,-2.125 1.625,-3.625 1.375,-1.5 2.25,-1.875 2.25,-1.875 l 1.875,1.5 c 0,0 -0.625,0.25 -1.5,1.625 -0.875,1.375 -0.75,2.75 -0.75,2.75"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="WolfB"
sodipodi:nodetypes="czccc"
id="path2972"
d="m 186.02669,890.06596 c 0,0 -1.01985,-1.65186 -1.84153,-2.52654 -0.82167,-0.87467 -2.48516,-2.1537 -2.48516,-2.1537 l -5.375,3.25 5.32734,2.77903"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cscscsscscsccsscscsscssssccccsscsscsscscscscscsscssc"
class="Wolf"
id="path2974"
d="m 204.325,903.51072 c 0,0 4.375,1.625 5.5,5 1.125,3.375 0.625,9.875 0.625,9.875 0,0 -0.75,-1.625 -2.375,-4.125 -1.625,-2.5 -3.625,-1.875 -3.625,-1.875 0,0 3.28298,5.35717 4.25,8.5 1,3.25 1,5.875 0.375,7.25 -0.625,1.375 -2.5,4.5 -2.5,4.5 0,0 0.375,-6.25 -0.75,-8.125 -0.81856,-1.36426 -3.125,-3.625 -3.125,-3.625 0,0 1.16922,3.99772 1.125,7 -0.0462,3.13995 -2.375,7.25 -2.375,7.25 l -2.875,-0.375 c 0,0 0.875,4.375 0.125,7.5 -0.75,3.125 -10.375,15.375 -11.5,19.75 -1.125,4.375 -1.25,9.875 -1.25,9.875 0,0 -3.25,2.75 -7,4 -3.67806,1.22602 -19.375,-0.25 -19.375,-0.25 0,0 13.75,-24.5 14.75,-27.625 1,-3.125 -0.25,-5.5 1.75,-7.5 2.92751,-2.92751 6.875,-6.25 6.875,-6.25 0,0 -1.25,7.75 -2.625,11 -1.375,3.25 -5.375,8.375 -4.5,10.125 0.875,1.75 1.75,3.125 3.875,2 2.125,-1.125 10.875,-13.5 10.875,-15.375 0,-1.875 0.875,-4.875 0.875,-4.875 l 2,-1 0,-2.125 -5.5,0.625 c 0,0 2.75,-3.5 3.125,-6.125 0.33634,-2.35438 0.47356,-4.69631 -0.125,-6.625 -0.86537,-2.78841 -2.75,-3.5 -2.75,-3.5 0,0 2.625,-1.875 2.625,-4 0,-2.21501 -2.125,-5.625 -5.125,-7.5 -1.5,-0.9375 -3.46025,-1.80714 -6.27045,-0.33403 0.81538,-2.06239 -1.16705,-2.66597 -2.35455,-2.54097 -2.21333,0.23298 -3.75,1.375 -4.875,3.875 -1.64226,3.64947 -0.875,5.25 -0.875,5.25 0,0 -2.37309,-3.15175 -2.125,-6.625 0.25,-3.5 5,-6.5 5,-6.5 0,0 1.125,-1.875 -1.5,-1.75 -2.625,0.125 -6.625,5.25 -6.625,5.25 0,0 -0.875,-2.875 0.75,-5.5 1.625,-2.625 6,-3.875 6,-3.875 0,0 2.625,-2.25 -1.25,-2.25 -3.875,0 -7.875,4.375 -7.875,4.375 0,0 -0.25,-4.625 1.625,-6.25 2.03476,-1.76345 4.875,-2.25 6.625,-2.125 1.75,0.125 21.5,7.625 21.5,7.625 0,0 -1.14172,3.69962 -0.875,5.5 0.5,3.375 3.95173,5.92037 6.5,6 4,0.125 5.5,-3.375 5.25,-3.5 z"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="Wolf"
sodipodi:nodetypes="ccsc"
id="path2978"
d="m 178.2,917.51072 -0.625,-5.8125 c 0,0 1.46371,0.12143 2.5625,1.875 0.8073,1.28838 0.86112,4.4375 0.875,4.4375"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="csssssscsssc"
class="WolfB"
id="path2976"
d="m 160.1375,911.69822 c 0,0 1.29833,-0.50515 3.375,0.25 2.0625,0.75 4.1875,5.8125 6.5625,6.4375 2.375,0.625 6.1875,-0.8125 8.4375,-0.625 2.25,0.1875 4.375,0.875 5.875,-0.5 1.5,-1.375 1.52986,-6.22241 -0.4375,-7.875 -1.5625,-1.3125 -3.51067,-2.13446 -4.9375,-1.1875 -1.59792,1.06051 -1.3125,3.625 -1.3125,3.625 0,0 -0.43483,-1.95761 -1.5,-2.3125 -1.59658,-0.53194 -2.8125,-0.375 -3.625,0.625 -0.6355,0.78215 -0.8125,3.5625 -0.4375,4.6875 0.375,1.125 0.8125,2.6875 0.8125,2.6875"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="Wolf"
id="path2980"
d="m 171.825,913.07322 c 0,0 0.6875,-0.625 1.6875,0.25 1,0.875 2.0625,4.625 2.0625,4.625 l -2.9375,0.4375 -0.8125,-5.3125 z"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="csscssccssc"
class="Wolf"
id="path2984"
d="m 155.3875,905.38572 c 0,0 -1.75,0.6875 -2.1875,2.375 -0.5261,2.02923 0,4.125 1.25,5.75 1.25,1.625 3.125,3.25 4.75,2.4375 0,0 1.64558,-2.11874 1.125,-5.75 -0.37925,-2.64542 -1.1875,-3.5 -2.125,-4.3125 -0.9375,-0.8125 -2.8125,-0.5 -2.8125,-0.5 m 0.8125,2.25 c 0,0 1.14316,-0.72729 1.6875,0.625 0.58606,1.45593 -1.625,2.25 -2.125,1.0625 -0.5,-1.1875 0.4375,-1.6875 0.4375,-1.6875"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cssc"
class="WolfB"
id="path2950"
d="m 155.30178,921.9702 c 0,0 -0.18409,3.27096 -0.0884,4.41942 0.17677,2.12132 1.76777,2.12132 2.47488,0.7955 0.7071,-1.32583 0.7071,-4.15425 0.7071,-4.15425"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="WolfB"
id="path2952"
d="m 161.31219,923.82636 c 0,0 -0.17678,1.14905 0.0884,2.82843 0.26516,1.67938 1.59099,2.56326 2.38648,1.06066 0.7955,-1.5026 0.61872,-2.74004 0.61872,-2.74004"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cssc"
class="WolfB"
id="path2954"
d="m 162.19607,934.78652 c 0,0 -1.50109,-0.87648 -2.2981,-2.2981 -1.09824,-1.95893 0.44195,-3.18198 2.29811,-1.76777 1.85615,1.41422 2.74003,2.47488 2.74003,2.47488"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cssc"
class="WolfB"
id="path2956"
d="m 175.45432,924.62186 c 0,0 0.11277,1.24267 1.32583,1.5026 1.23744,0.26515 2.03293,-0.0884 2.56326,-1.14905 0.47434,-0.94869 -0.0884,-2.38649 -0.0884,-2.38649"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 186.32609,972.0864 c 0,0 6.54074,-3.27037 9.45755,-5.74524 2.91682,-2.47488 4.68459,-5.56847 6.18719,-3.35876 1.5026,2.20971 0.86825,5.17058 -2.20971,8.04334 -1.32583,1.23744 -2.20971,2.12132 -3.88909,3.0052 -1.68846,0.88866 -3.71231,2.03293 -3.71231,2.03293"
id="path2958"
sodipodi:nodetypes="cssssc"
class="WolfB"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 161.57735,975.79871 -13.34664,7.77817 10.78338,7.15946 c 0,0 2.56326,-2.2981 6.18719,-3.09359 3.62392,-0.7955 12.37436,-0.44194 15.1144,-0.44194 2.74004,0 8.92723,1.06066 8.92723,1.06066 l 8.39689,-9.36917 -11.57887,-6.89429"
id="path2960"
class="WolfB"
sodipodi:nodetypes="cccssccc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 176.95692,1010.5353 c 0,0 1.32583,5.3917 -2.91681,7.3363 -4.24264,1.9445 -17.94284,1.149 -22.62742,-0.088 -6.50823,-1.7192 -9.36916,-5.6569 -7.68978,-8.5737 1.85283,-3.2181 8.57367,-0.8839 8.57367,-0.8839 0,0 -2.64869,1.6882 -2.12132,3.2704 0.61871,1.8561 4.41941,2.6516 10.34143,2.6516 5.92202,0 9.86201,-0.3069 12.37437,-1.0606 2.65165,-0.7955 3.71231,-2.5633 4.06586,-2.6517 l 0,0 z"
id="path2962"
class="WolfB"
sodipodi:nodetypes="cssscssscc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 152.20819,1008.5024 c 0,0 4.06586,-0.2652 7.33623,0.4419 1.59299,0.3445 4.15425,1.7678 6.62913,0.8839 2.47487,-0.8839 1.64085,-2.0649 -1.94455,-5.0381 -3.62391,-3.0052 -18.82671,-11.04856 -19.53382,-13.96537 -0.7071,-2.91682 4.86136,-6.45235 4.86136,-6.45235"
id="path2964"
class="WolfB"
sodipodi:nodetypes="cssssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 157.77665,989.67568 c 0,0 -1.67937,0 -1.67937,1.591 0,1.54362 16.88217,13.16982 19.35704,16.52862 1.07964,1.4652 1.591,3.0936 1.591,3.0936"
id="path2975"
class="WolfB"
sodipodi:nodetypes="cssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 196.93269,979.77618 c 0,0 9.72272,4.68459 10.07627,7.6014 0.35356,2.91682 -6.27557,17.58932 -6.27557,17.58932 l -10.78337,7.4246 c 0,0 1.57328,-4.6505 2.29809,-7.1595 1.14905,-3.9775 6.57081,-13.16616 6.18719,-15.46793 -0.26517,-1.591 -8.75045,-2.03293 -8.75045,-2.03293"
id="path2977"
class="WolfB"
sodipodi:nodetypes="csccssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 190.30357,1012.0379 c 0,0 -1.76777,2.7401 0.17677,5.2149 1.94455,2.4749 10.16466,0.442 16.08668,-3.5355 5.92202,-3.9775 12.46276,-6.4523 12.02082,-9.5459 -0.44194,-3.0936 -5.3033,-1.591 -8.48528,-1.1491 -3.18198,0.442 -9.72272,2.2097 -9.72272,2.2097"
id="path2979"
class="WolfB"
sodipodi:nodetypes="cssssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 196.04881,1018.0483 c 0,0 -3.44715,0.3536 -3.09359,-1.5909 0.35355,-1.9446 4.77297,-4.5962 9.28077,-6.4524 4.50781,-1.8562 9.11386,-4.4052 11.75565,-4.6846 2.56265,-0.271 4.24264,0.1768 4.24264,0.1768"
id="path2981"
class="WolfB"
sodipodi:nodetypes="csssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 139.12671,1008.2372 4.41942,1.4142 m -3.27036,-3.6239 4.5078,2.0329 m -6.0988,2.9169 4.50781,0.3535"
id="path2983"
class="WolfB"
sodipodi:nodetypes="cccccc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 217.79234,1002.8455 4.77297,-2.1213 m -6.18718,1.4142 3.71231,-2.65161 m 3.18198,3.00521 -4.68458,1.3258"
id="path2985"
class="WolfB"
sodipodi:nodetypes="cccccc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 182.825,934.63572 c 0,0 3.8125,-3.375 3.125,-4.1875 -0.6875,-0.8125 -3.125,1.4375 -4.1875,1.4375 -1.0625,0 -2.5625,-0.625 -3.875,-0.4375 -1.3125,0.1875 -9,6.0625 -11.6875,6.0625 -2.6875,0 -4.29105,-2.46967 -4.29105,-2.46967 0,0 12.66605,-6.78033 13.97855,-7.21783 1.3125,-0.4375 3.80406,0.49815 5.0625,-1 1.3125,-1.5625 1.0625,-3.3125 -0.3125,-4.25 -1.41042,-0.96165 -2.4375,1.375 -4.25,1.875 -1.8125,0.5 -8.3125,1.8125 -12.4375,0.6875 -3.99242,-1.08884 -1.9375,-2.375 -3.5,-2.5625 -1.5625,-0.1875 -2.88834,1.12419 -4.5625,-0.125 -1.36739,-1.0203 -1.76316,-2.36986 -1.75,-3.875 0.0189,-2.16469 1.3125,-3.375 1.3125,-3.375"
id="path2982"
class="WolfB"
sodipodi:nodetypes="csssscssssssssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 165.65,983.52354 c 0,0 3.04522,-0.24057 2.25,-1.71875 -0.91755,-1.70557 -2.875,0.65625 -2.875,0.65625 0,0 0.2059,-2.95753 -1.53125,-2.21875 -1.76107,0.74895 0.46875,2.59375 0.46875,2.59375 0,0 -2.64244,-1.12423 -2.6875,0.59375 -0.05,1.90665 2.6875,0.65625 2.6875,0.65625 0,0 -2.1159,1.63155 -1.125,2.40625 1.71875,1.34375 2.21875,-2.03125 2.21875,-2.03125 0,0 1.10727,2.6425 2.28125,1.375 1.26972,-1.37087 -1.65625,-2.40625 -1.6875,-2.3125 z"
id="path3030"
class="WolfB"
sodipodi:nodetypes="cscscscscsc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cscscscscsc"
class="WolfB"
id="path3032"
d="m 184.33496,983.54663 c 0,0 2.86747,1.05302 2.76216,-0.62218 -0.12152,-1.9329 -2.88638,-0.60423 -2.88638,-0.60423 0,0 1.42208,-2.60136 -0.46486,-2.65547 -1.91293,-0.0548 -0.65717,2.55253 -0.65717,2.55253 0,0 -1.93158,-2.12494 -2.68991,-0.58273 -0.8416,1.71159 2.16794,1.71854 2.16794,1.71854 0,0 -2.60389,0.59894 -2.02701,1.71664 1.00061,1.9387 2.86425,-0.91918 2.86425,-0.91918 0,0 -0.0973,2.86346 1.49867,2.20198 1.72616,-0.71543 -0.50014,-2.87803 -0.56769,-2.8059 z"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g_korzina_lu"
transform="translate(0,280)">
<path
sodipodi:nodetypes="csscscscsssscsccc"
class="Wolf"
id="path2906"
d="m 109.91436,911.67297 c -7.32392,3.55987 -8.95847,3.80148 -9.67852,6.85009 -0.84797,3.5902 4.24264,10.6066 7.6014,13.78858 3.35876,3.18198 10.42982,4.41942 10.42982,4.41942 0,0 -4.59619,-1.41421 -4.24264,-3.88909 0.17678,-1.23744 2.47488,-1.23743 2.47488,-1.23743 0,0 -6.06068,-4.68092 -5.3033,-6.36397 1.59099,-3.53553 7.95495,2.12133 7.95495,2.12133 0,0 -7.6014,-7.95496 -5.65686,-10.07628 1.94454,-2.12132 8.83884,4.77297 10.96016,4.41942 2.12132,-0.35355 4.59619,-0.17678 4.41942,-2.2981 -0.17678,-2.12132 -1.26464,-8.79804 0.53033,-9.54594 2.12132,-0.88388 8.66205,17.67767 9.01561,17.85445 0,0 3.18198,-8.48528 1.06066,-13.43503 -2.12132,-4.94975 -7.24785,-10.78338 -7.24785,-10.78338 0,0 -3.36612,3.91846 -8.72282,2.85861 -3.63598,1.15103 -6.34003,2.27115 -10.23648,3.92466"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="WolfB"
sodipodi:nodetypes="csssczc"
id="path2908"
d="m 116.4993,936.37751 c 0,0 3.71231,0.88388 6.71751,-0.17678 3.0052,-1.06066 5.23189,-2.65883 10.42983,-1.76776 6.18718,1.06065 19.5401,9.11027 23.07564,8.9335 3.53553,-0.17678 4.48896,0.56066 4.48896,0.56066 0,0 0.27809,-0.44014 -3.3592,-3.41834 -3.6373,-2.9782 -19.60921,-12.79334 -19.60921,-12.79334"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cssczccsssc"
class="Wolf"
id="path2910"
d="m 113.31732,910.39133 c 0,0 -3.00521,-12.55114 -2.65165,-17.85444 0.30933,-4.63998 2.11902,-7.45763 6.36395,-7.42463 2.83387,0.022 3.53554,2.12133 3.53554,2.12133 0,0 2.87048,0.15734 3.71231,0.88388 0.84183,0.72654 1.06066,2.65165 1.06066,2.65165 l 2.65165,-1.59099 c 0,0 -2.88451,-6.04057 -7.95495,-7.42462 -4.6501,-1.26931 -9.54594,0.88388 -11.31371,4.24264 -2.96856,5.64027 -1.38914,11.4878 -1.06066,14.67246 0.50865,4.93137 2.34229,11.26952 2.34229,11.26952"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="WolfB"
sodipodi:nodetypes="cscsc"
id="path2912"
d="m 127.90676,889.04333 c 0,0 5.65282,-1.91855 8.5683,1.72579 2.82843,3.53553 4.94975,11.66726 4.94975,11.66726 0,0 7.89092,18.06432 6.54074,19.62221 -2.2981,2.65165 -7.77818,-5.48008 -7.77818,-5.48008"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cscscsc"
class="WolfB"
id="path2914"
d="m 120.56516,887.23359 c 0,0 -3.90959,3.64644 -3.0052,6.0104 1.56066,4.07935 7.05054,0.71691 7.05054,0.71691 0,0 -5.70776,1.39567 -4.04534,5.11672 2.01394,4.50787 8.35048,0.27053 8.35048,0.27053 0,0 -4.96364,1.97753 -5.51225,3.56678 -0.52063,1.50818 -0.01,3.23376 -0.01,3.23376"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="ccscsc"
class="WolfB"
id="path2916"
d="m 125.45,890.66697 -0.96875,3.34375 c 0,0 3.09375,-0.4375 4.40625,1.5625 1.3125,2 -0.15625,3.78125 -0.15625,3.78125 0,0 1.75391,0.25418 2.625,1.1875 0.875,0.9375 0.84375,2.90625 0.84375,2.90625"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g_korzina_ld"
transform="translate(0,560)">
<path
d="m 123.825,980.13572 0,-4.875 4.25,1.5 -4.25,3.375 z"
id="path2924"
class="Wolf"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 120.95,966.51072 3.25,0 c 0,0 0.0518,-0.7689 1.5,-1.375 1.44818,-0.6061 7.375,-0.375 7.375,-0.375 0,0 -1.09253,-1.03668 -0.75,-1.875 0.34253,-0.83832 3.125,-1.375 3.125,-1.375 l -2.5,-0.875 -1,-2.125 -1.625,4 c 0,0 -0.54892,1.06209 -1.375,1.125 -0.82608,0.0629 -2.75,-1.625 -2.75,-1.625 0,0 -0.70164,1.47472 -1.25,1.875 -0.54836,0.40028 -1.75,0.5 -1.75,0.5 l -1.5,-1.75 c 0,0 0.16745,1.84331 0,2.5 -0.16745,0.65669 -0.75,1.375 -0.75,1.375 z"
id="path2926"
class="Wolf"
sodipodi:nodetypes="cczczcccczczzczc"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cscssssscscc"
class="Wolf"
id="path2918"
d="m 121.09549,966.42954 c 0,0 -3.18198,2.65166 -4.59619,4.94975 -1.41422,2.2981 -2.22488,6.12653 -2.22488,6.12653 0,0 9.70353,1.16295 15.48313,6.77817 3.96736,3.85452 7.77817,8.83884 2.82843,15.2028 -4.94975,6.36401 -13.08148,7.95491 -19.26866,6.89431 -6.18719,-1.0607 -11.08516,-3.807 -13.20648,-7.87287 -2.12132,-4.06586 -3.96427,-15.60876 -0.65165,-20.23833 2.48376,-3.47119 11.29226,-1.7552 11.29226,-1.7552 0,0 0.99061,-2.88807 2.56587,-5.84251 1.25306,-2.35015 4.20007,-4.69987 4.41941,-4.77298 l 3.35876,0.53033 z"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cssssssscscsczc"
class="WolfB"
id="path2920"
d="m 117.45,966.01072 c 0,0 -1.875,-2.625 -2.25,-7.5 -0.375,-4.875 2.75,-7.875 7.625,-9.25 4.875,-1.375 29,-1.25 32.25,-0.375 3.25,0.875 5.5,1 5.625,3.125 0.125,2.125 -3.25,2.5 -5.5,2.5 -2.25,0 -9.125,-0.5 -12.625,0.25 -3.55295,0.76135 -4.80511,6.25323 -6.875,6.75 -3.125,0.75 -3.75,-3.625 -3.75,-3.625 0,0 -0.625,5.75 -3.375,5.625 -2.75,-0.125 -3.25,-5.5 -3.25,-5.5 0,0 1.75,5.75 -1.5,6.375 -1.84126,0.35409 -3.875,-5.75 -3.875,-5.75 0,0 2.49425,5.11205 1.5,6.625 -0.99425,1.51295 -4,0.75 -4,0.75 z"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cssssssscsscsscsc"
class="WolfB"
id="path2922"
d="m 136.7,961.63572 c 0,0 1.875,2.25 5.875,2.125 4,-0.125 14.98688,-6.5 17.375,-6.5 2.375,0 3.83438,0.153 3.625,2.875 -0.25,3.25 -11.625,5.5 -14.25,8.125 -2.625,2.625 -9.625,11.875 -11.125,13.125 -1.5,1.25 -7.375,2.875 -8.75,2.5 -1.375,-0.375 -4.25,-2.75 -4.25,-4.125 0,-1.375 3.875,-3.25 3.875,-3.25 0,0 -5.5,0 -6,-2.25 -0.51521,-2.31844 0.75,-3 1.625,-3.375 0.875,-0.375 5.375,0.875 5.375,0.875 0,0 -5.75,-1.625 -6,-3.125 -0.25,-1.5 0.125,-2.75 1.625,-3.125 1.5,-0.375 7.5,-0.75 7.5,-0.75 0,0 -1.125,-1.25 -0.375,-2.125 0.75,-0.875 3.75,-1.25 3.875,-1 z"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g_wolf_r"
transform="translate(0,840)">
<path
sodipodi:nodetypes="cscsscssc"
class="WolfB"
id="path2987"
d="m 243.075,898.88572 c 0,0 -2.5,3.5 -3.125,7.625 -0.625,4.125 -0.375,6.5 -0.375,6.5 0,0 2.875,0.875 4.875,-1.75 2,-2.625 2.75,-6.125 2.625,-9.75 -0.125,-3.625 -3,-9.875 -3,-9.875 0,0 -5.75,3.875 -8.625,8.75 -2.81118,4.76679 -1.5,10.25 -0.75,11.75 0.75,1.5 4.875,0.875 4.875,0.875"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="WolfB"
id="path2989"
d="m 251.6375,898.38572 2.8125,-5.25 -2.5,-0.9375 -3.5,6.1875"
sodipodi:nodetypes="cccc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="csc"
class="WolfB"
id="path2991"
d="m 246.95,899.01072 c 0,0 1.375,-1.125 5,-0.375 3.625,0.75 5.375,1.5 5.375,1.5"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 236.2,959.88572 c 0,0 8.75,10.75 12.125,14.25 3.0082,3.11961 11.25,5.125 11.25,5.125 l 7.125,7.5 -8.625,5.75 c 0,0 -12.25,-4.375 -16.625,-9.375 -4.375,-5 -10.75,-12 -10.75,-12 l -0.125,-5.125 5.625,-6.125 z"
id="path2999"
sodipodi:nodetypes="cscccsccc"
class="WolfB"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 256.45,942.63572 4.5,5.125 c 0,0 0.375,10.375 0.25,16.25 -0.125,5.875 -0.875,15.25 -0.875,15.25 0,0 -6.875,0.125 -11,-4.5 -4.125,-4.625 -7.625,-9.125 -7.625,-9.125 0,0 2.6063,-2.51757 1.625,-8.125 -0.875,-5 -3.125,-5.375 -3.75,-10.125 -0.54034,-4.10661 -0.75,-7.75 -0.75,-7.75 l -9.125,-5.75 3.25,-5.75 c 0,0 -1.625,-1.75 -2.625,-0.375 -1,1.375 -3.75,4.75 -3.75,4.75 0,0 0.125,-4.375 1.25,-6.75 1.125,-2.375 2.75,-4.8125 2.75,-4.8125 l -4.125,-0.3125 c 0,0 1.875,-3.875 2.875,-5.125 1,-1.25 2,-3 2,-3 l 2.125,-7.375 c 0,0 0.47612,3.64941 0.875,5.75 0.26049,1.37181 1.75,2.1875 3.75,2.125 1.87825,-0.0587 4.56138,0.18627 5.25,-0.4375 1.14351,-1.03583 2.30201,-2.92701 3,-4.75 0.40226,-1.05062 0.9375,-4.5625 0.9375,-4.5625 l 5.375,0.1875 6.1875,-4.0625 c 0,0 2.3125,-2.875 6.8125,-2.875 4.5,0 7.9375,3 7.9375,3 0,0 -1.45356,0.56139 -4.125,0.625 -5.25,0.125 -5.125,1.75 -5.125,1.75 0,0 4.5,-1.375 6.25,1.5 1.75,2.875 3,9.75 3,9.75 l -3.625,-1.75 0.25,3.625 -3.625,-2.625 0.375,4 c 0,0 -3.375,-3.125 -6.125,-4.25 -2.75,-1.125 -4.75,-0.5 -7.125,2.25 -2.375,2.75 -3.85866,5.09897 -4.5625,4.375 -0.9982,-1.02674 -3.5625,-1 -3.5625,-1 0,0 -0.5,3.375 -0.375,4.75 0.125,1.375 3.75,5.25 3.75,5.25 0,0 -0.523,1.65424 -1.875,2.4375 -1.37329,0.79559 -6.1875,1.0625 -6.1875,1.0625 0,0 -0.29406,1.89595 1.1875,2.4375 1.38363,0.50576 4.625,-0.3125 4.625,-0.3125 l -2.25,5.75 c 0,0 2.0941,6.62507 3.0625,9.875 0.86825,2.91381 2.29441,7.65201 3.96801,9.4773 0.96961,1.05749 3.1255,0.89505 4.03199,0.0227 1.76716,-1.70059 0.9375,-6.5 0.8125,-9 -0.125,-2.5 -0.125,-6.5 0.125,-6.875 z"
id="path2990"
class="Wolf"
sodipodi:nodetypes="ccscscsscccscsccsccsssscccscscscccccssscscscsccssssc"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 256.575,927.01072 2.125,-4.875 c 0,0 -1.75,-0.75 -3.375,0.625 -1.83302,1.55102 -2.125,4.25 -2.125,4.25"
id="path2995"
class="Wolf"
sodipodi:nodetypes="ccsc"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 274.325,925.51072 c 0,0 -2,-1 -4.75,0.625 -3.13751,1.85399 -6.125,4.375 -6.125,4.375 0,0 -3.125,-3.375 -6.25,-3.375 -3.125,0 -8.875,-0.25 -8.875,-0.25 l 1.625,0 c 0,0 1.23775,-5.5152 3.25,-7.125 1.25,-1 3.78902,-2.10549 5,-1.5 1.5,0.75 0.625,3.625 0.625,3.625 0,0 2.00308,-2.08513 3.875,-2.25 1.55699,-0.13713 2.16528,0.21564 2.625,1.25 0.5,1.125 -2,5.375 -2,5.375"
id="path2992"
class="WolfB"
sodipodi:nodetypes="cscsccsscssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 259.575,927.51072 c 0,0 0.14176,-1.45259 2,-3.125 1.25,-1.125 3,-1 3,-1 l -2.5,5.5 -2.5,-1.375 z"
id="path3001"
class="Wolf"
sodipodi:nodetypes="csccc"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 265.575,915.01072 -0.25,6.5"
id="path3004"
class="WolfB"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 235.7,960.38572 c 0,0 -6.75,-7.875 -10.125,-5.25 -3.375,2.625 -2.25,7.625 -2,11.375 0.25,3.75 0.875,8.625 0.875,8.625 0,0 -3.375,-7 -5.625,-9.125 -2.25,-2.125 -3.7822,-3.6815 -5.5,-2.25 -3,2.5 -0.25,9.375 0.375,11.75 0.625,2.375 7.94047,12.48528 9.875,14.875 2.125,2.625 5.375,2.625 6,0.25 0.70274,-2.67042 0.875,-22.875 0.875,-22.875"
id="path3007"
class="WolfB"
sodipodi:nodetypes="csscsssssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 212.575,965.13572 c 0,0 1.73088,0.98088 3.375,2.625 2.125,2.125 4.23022,8.27561 5,10.375 1.375,3.75 5.27325,5.54401 6.25,9 0.84991,3.0072 -1.5,4.625 -1.5,4.625"
id="path3010"
class="WolfB"
sodipodi:nodetypes="csssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 210.575,959.13572 2.5,4.5 m -0.125,-5.25 1.875,4.75 m -6,-2.375 3.25,4.5"
id="path3012"
class="WolfB"
sodipodi:nodetypes="cccccc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 259.2,991.51072 c 0,0 1.75,0.75 1.75,2.125 0,1.375 -20,12.87498 -21.5,14.62498 -1.5,1.75 -3.125,3.5 -2.625,5.375 0.5,1.875 5.125,4.875 15.5,5.25 10.375,0.375 16.625,-0.75 17.625,-2.75 1,-2 -3.0973,-5.075 -7.75,-6.75 -3.125,-1.125 -7.25,-1.125 -9.25,-1.125 -2.28104,0 -6.75,1.5 -6.75,1.5 0,0 23.375,-10.62498 24.375,-12.87498 1,-2.25 1.125,-4 -0.625,-5.75 -1.75,-1.75 -4.375,-3.625 -4.375,-3.625"
id="path2993"
class="WolfB"
sodipodi:nodetypes="cssssssscssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 239.2,1008.8857 c 0,0 3.24266,5.5136 11.375,5.875 5.625,0.25 10.0302,0.2192 12.5,-0.625 2.39307,-0.8179 3,-2.625 3,-2.625"
id="path2997"
class="WolfB"
sodipodi:nodetypes="cssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 275.075,1017.2607 -5.25,-2 m 4.625,-0.375 -5.25,-1.5 m 4.125,6 -4.5,-2.375"
id="path3003"
class="WolfB"
sodipodi:nodetypes="cccccc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 251.45,933.51072 c 0,0 0.125,5 1.375,6.375 1.25,1.375 3.375,1.75 3.375,1.75 0,0 3.375,6.625 7.75,6.625 4.375,0 4.375,-1.625 4.375,-1.625 0,0 -6.25,-4.625 -7.5,-6.875 -1.25,-2.25 -5.125,-8.25 -5.125,-8.25 0,0 6.75,6.625 8.875,6.75 2.125,0.125 4.25,0.5 5.625,-0.25 1.375,-0.75 4,-2 4,-2 0,0 1.35307,2.7635 2.8125,2.6875 1.45943,-0.076 2.0625,-1.6875 2.0625,-1.6875 0,0 1.04048,-1.37624 1,-4.625 -0.053,-4.25151 -1.875,-5.125 -1.875,-5.125"
id="path3006"
class="WolfB"
sodipodi:nodetypes="cscscscssczcsc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 263.7,938.13572 c 0,0 0.375,3.625 2,3.625 1.625,0 2.25,-3.25 2.25,-3.25"
id="path3009"
class="WolfB"
sodipodi:nodetypes="csc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 278.325,938.26072 c 0,0 -0.25,3.625 -1.875,3.625 -1.625,0 -1.75,-1.5 -1.75,-2.625 0,-1.125 0.25,-2.375 0.25,-2.375"
id="path3011"
class="WolfB"
sodipodi:nodetypes="cssc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 265.7,944.26072 c 0,0 3.57725,-2.15141 4.5,-0.75 0.64851,0.98491 -2.125,2.75 -2.125,2.75"
id="path3015"
class="WolfB"
sodipodi:nodetypes="csc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 278.69129,919.59146 c 0,0 1.65118,0.8993 1.87594,2.62805 0.27027,2.07882 -0.51178,4.09313 -1.95373,5.55049 -1.44195,1.45736 -3.50407,2.83718 -5.01571,1.82935 0,0 -1.37,-2.30653 -0.40293,-5.84515 0.70453,-2.57793 1.61256,-3.32563 2.64362,-4.01554 1.03106,-0.68991 2.85281,-0.1472 2.85281,-0.1472 M 278.4,921.68572 c 0,0 -0.9587,-0.57379 -1.546,0.44836 -0.78189,1.36083 1.33703,2.34189 1.977,1.31793 0.8517,-1.36273 -0.431,-1.76629 -0.431,-1.76629"
id="path3008"
class="Wolf"
sodipodi:nodetypes="csscssccssc"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cscscscscsc"
class="WolfB"
id="path3034"
d="m 253.4062,983.93674 c 0,0 2.76463,-1.29925 1.49913,-2.40192 -1.46018,-1.27229 -2.45873,1.62817 -2.45873,1.62817 0,0 -0.85055,-2.84006 -2.21545,-1.53602 -1.3837,1.322 1.35351,2.2617 1.35351,2.2617 0,0 -2.86914,-0.11991 -2.30532,1.50355 0.62574,1.80173 2.74624,-0.3339 2.74624,-0.3339 0,0 -1.40441,2.27303 -0.20394,2.64841 2.08226,0.65113 1.35966,-2.68331 1.35966,-2.68331 0,0 1.96819,2.08208 2.61963,0.48195 0.70456,-1.73062 -2.39856,-1.66737 -2.39473,-1.56863 z"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 237.27994,969.82849 c 0,0 2.83236,-1.14409 1.62989,-2.31518 -1.38745,-1.35123 -2.54515,1.48945 -2.54515,1.48945 0,0 -0.6919,-2.88282 -2.12695,-1.6564 -1.45482,1.24331 1.22613,2.33322 1.22613,2.33322 0,0 -2.85809,-0.27868 -2.38508,1.37352 0.52496,1.83363 2.76052,-0.18124 2.76052,-0.18124 0,0 -1.52818,2.19173 -0.35035,2.63304 2.04298,0.76549 1.50623,-2.60386 1.50623,-2.60386 0,0 1.84981,2.18792 2.5889,0.62634 0.79936,-1.68893 -2.3025,-1.79769 -2.30414,-1.69889 z"
id="path3036"
class="WolfB"
sodipodi:nodetypes="cscscscscsc"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g_korzina_ru"
transform="translate(0,1120)">
<path
sodipodi:nodetypes="cccssccsscssccczccczcczzzczcssccc"
class="Wolf"
id="path2919"
d="m 299.98661,907.74555 c 0,0 -0.56079,2.70678 -0.53661,10.15273 0.99645,2.76138 14.625,0.11244 14.625,0.11244 0,0 -0.36244,-6.83211 -1.22855,-10.10983 -1.17421,-4.44368 -2.83839,-7.36762 -6.02145,-9.20711 -3.32322,-1.9205 -6.5,1.06694 -6.5,1.06694 l -3,-2.125 c 0,0 2.75,-3.5 7,-3.5 4.25,0 8.25,3.25 10.625,8 2.375,4.75 3.5,15 3.5,15 0,0 6.03661,-0.71967 8.16161,0.78033 2.125,1.5 0.77773,11.53033 -0.74372,14.95711 -1.52255,3.42927 -6.04289,8.13756 -6.04289,8.13756 l -2.375,-0.125 4.375,-5.625 c 0,0 0.0451,-2.37244 -0.75,-2.875 -0.79505,-0.50256 -2.625,0.5 -2.625,0.5 l -3,2.375 1.25,-4.625 c 0,0 -0.83932,-1.67643 -2.125,-1.625 -1.28568,0.0514 -3.75,3.375 -3.75,3.375 l -2.125,2.375 c 0,0 -2.57263,1.70998 -4,0.75 -1.42737,-0.95998 -0.0707,-5.17125 -1.07322,-6.47855 -1.00257,-1.3073 -2.1475,-1.9129 -3.42678,-1.27145 -1.27928,0.64145 -0.875,4.875 -0.875,4.875 0,0 -0.1007,4.90017 -0.875,6.25 -0.7743,1.34983 -2.375,1.875 -2.375,1.875 0,0 -4.05806,-2.60355 -6.68306,-6.97855 -2.625,-4.375 -3.77144,-9.34467 -2.21339,-11.52145 1.64624,-2.29998 7.89645,-2 7.89645,-2 l 0.875,-13.875 4.03661,1.35983 z"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cscsssssssssssc"
class="WolfB"
id="path2917"
d="m 313.51692,937.61494 c 0,0 5.4891,-6.92857 7.6898,-4.5078 2.65164,2.91681 -6.01042,9.104 -6.01042,9.104 0,0 3.71231,-2.38649 4.77297,-0.53034 1.06066,1.85616 -0.30438,4.63839 -10.07627,6.71752 -4.15425,0.88388 -8.14695,-0.27071 -14.32996,0.93913 -8.87824,1.73722 -18.94826,1.49155 -19.61117,0.12153 -0.98152,-2.02848 3.12314,-3.86947 5.30331,-4.5962 2.65165,-0.88388 14.15165,-2.91079 16.08668,-4.68457 3.18198,-2.91682 0.78528,-10.61733 2.65164,-12.02082 1.19337,-0.8974 3.00521,-0.53034 3.62393,1.14905 0.61872,1.67938 -0.17678,5.92202 1.41421,6.18719 1.59099,0.26516 3.71231,-0.0884 4.68458,-1.50261 0.97228,-1.41421 4.05459,-5.07136 5.48008,-4.59619 3.18198,1.06066 -1.59099,8.04334 -1.67938,8.22011 z"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="csssssssc"
class="WolfB"
id="path2921"
d="m 295.57409,903.32026 c 0,0 -0.0884,2.74004 1.5026,3.44715 1.59099,0.70711 3.8007,-0.97227 3.71231,-3.88909 -0.0884,-2.91681 -0.29124,-3.50824 -3.27037,-4.94975 -2.74004,-1.32582 -5.3033,3.00521 -8.48528,5.3033 -3.18198,2.2981 -7.8636,2.57684 -9.63432,4.68458 -1.15069,1.3697 -1.67939,3.00521 -10e-6,4.06587 1.67938,1.06066 5.65685,-1.06066 8.04334,0.17678 2.38648,1.23743 7.86656,5.83363 7.86656,5.83363"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cssc"
class="WolfB"
id="path2923"
d="m 299.10962,906.23708 c 0,0 0.16167,1.44199 1.5026,1.59099 1.59099,0.17678 3.18199,-0.44194 5.48008,-2.47487 2.2981,-2.03293 -0.17678,-7.07107 -0.17678,-7.07107"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="csscssc"
class="WolfB"
id="path2925"
d="m 304.76647,906.50224 c 0,0 2.12133,0.53033 2.2981,2.56327 0.17678,2.03293 -0.97226,3.18198 -2.65165,3.71231 -2.00344,0.63266 -4.59619,0.0884 -4.59619,0.0884 0,0 2.36881,0.0905 4.06586,0.26516 1.51781,0.15624 2.6884,1.5889 2.74005,2.82842 0.0884,2.12132 -3.00521,3.00521 -3.00521,3.00521"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g_korzina_rd"
transform="translate(0,1400)">
<path
d="m 299.37478,962.9382 1.50261,2.51907 -2.69584,-0.13258 1.19323,-2.38649 z"
id="path3002"
class="Wolf"
sodipodi:nodetypes="cccc"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="csssssssssscsc"
class="WolfB"
id="path2934"
d="m 298.825,995.76072 c 0,0 6.70031,3.31211 8.75,0.75 3,-3.75 -6.625,-3.5 -6.875,-7.125 -0.18142,-2.63063 5.875,-1.75 6.375,-4.625 0.56055,-3.22318 -4.13666,-3.1441 -7.5,-1.875 -3.30167,1.24583 -9.75,1 -14.625,-2.875 -3.42485,-2.72232 -10.30772,-12.70914 -13.75,-14 -2,-0.75 -3.80842,-0.13049 -3.625,2.5 0.32542,4.66692 13.875,17.75 14.625,22.25 0.87861,5.27167 8.53901,11.36938 11.375,13.12498 2.625,1.625 5.52973,2.398 6.875,0.625 1.25693,-1.6565 -4.25,-5.49998 -4.25,-5.49998 0,0 7,6.49998 9.125,3.37498 2.125,-3.12498 -6.375,-6.74998 -6.5,-6.62498 z"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="ccccscsc"
class="Wolf"
id="path3000"
d="m 293.70137,975.03634 -10e-4,0.0494 0.54824,-8.12585 2.03294,-0.0884 c 0,0 -0.35355,1.41421 0,2.56326 0.31729,1.0312 1.59099,2.03293 1.59099,2.03293 0,0 -1.23744,0.0884 -2.12132,1.14905 -0.88425,1.06064 -1.05122,2.46899 -1.05122,2.46899"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cssssssssssc"
class="WolfB"
id="path2994"
d="m 292.4805,961.83335 c 0,0 -0.88389,3.27037 0.17677,4.24264 1.06066,0.97227 2.65165,1.32583 4.15426,0.35355 1.5026,-0.97227 2.52787,-2.29897 2.56326,-5.39168 0.0303,-2.65295 -0.5018,-5.15009 -2.38649,-5.74525 -1.67937,-0.53033 -3.0052,-0.61871 -5.03813,0 -1.97948,0.60244 -3.00521,2.38648 -5.92202,3.35876 -2.91682,0.97227 -8.13173,-0.35355 -10.34144,-1.85616 -2.20971,-1.5026 -5.24585,-3.84752 -6.71751,-1.59098 -1.32583,2.03293 -0.44195,3.62392 6.18718,7.60139 6.62913,3.97748 13.16986,10.34144 15.2028,10.96016 2.03293,0.61872 3.39189,1.28162 3.39189,1.28162"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cssscsscsssscsscc"
class="WolfB"
id="path2996"
d="m 302.02644,966.07599 c 0,0 3.0052,1.5026 4.33102,-0.35356 1.32583,-1.85615 0.57809,-3.07179 -1.4142,-4.68458 -1.85616,-1.50259 -3.83835,-1.73274 -4.94976,-0.17677 -1.76776,2.47487 1.76777,5.21492 1.76777,5.21492 0,0 -2.29809,-1.14906 -4.06586,-0.17677 -1.76777,0.97228 -1.64431,2.41175 -1.41422,3.44715 0.35355,1.59099 3.27038,2.82843 3.27038,2.82843 0,0 -2.25423,-0.76038 -3.35876,0.26516 -1.42648,1.32447 -1.41422,2.74004 -0.61873,3.62392 0.79549,0.88389 2.86052,1.74733 5.3033,1.41422 1.94455,-0.26517 2.56327,-1.06066 2.56326,-2.47488 -10e-6,-1.88952 -4.06586,-2.82842 -4.06586,-2.82842 0,0 2.2603,1.09005 3.88909,-0.17678 0.79549,-0.61871 1.20792,-1.76903 1.23743,-2.74004 0.052,-1.71234 -2.47487,-3.35876 -2.47487,-3.18198 l 10e-6,-2e-5 z"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="Wolf"
sodipodi:nodetypes="cccssssssscsscccssscssccsscscccsc"
id="path2998"
d="m 293.7,975.08572 0.54826,5.66273 -6.0988,1.14906 c 0,0 5.17536,2.45299 8.83883,1.59099 3.0052,-0.70711 6.26797,-2.03598 8.04334,-1.32583 1.76777,0.70711 2.82843,2.03293 1.76777,3.35876 -1.06066,1.32582 -5.03814,1.67938 -5.56847,2.74004 -0.53033,1.06066 -0.97227,2.03293 0.7955,3.0052 1.76777,0.97227 5.03813,1.67938 5.65685,2.91682 0.61872,1.23743 0.53033,1.94454 -0.44194,2.91681 -0.97227,0.97227 -5.03813,0.17678 -5.03813,0.17678 0,0 2.45799,1.80919 3.18198,2.74002 0.61871,0.7955 0.35355,2.6517 -0.97228,3.2704 -1.36163,0.6354 -3.62392,-0.8839 -3.62392,-0.8839 l -0.44194,2.1213 10e-6,0 c 0,0 10.6066,0.7955 16.17506,-2.3865 5.56847,-3.18195 6.80591,-6.18715 8.04335,-9.19235 1.78873,-4.34405 2.82842,-11.93242 1.41421,-12.46276 -2.25132,-0.84426 -9.19239,-1.5026 -9.19239,-1.5026 0,0 -0.61872,-7.15946 -2.20971,-11.04854 -2.15777,-5.27453 -3.67625,-7.56647 -6.27557,-9.28078 -3.33806,-2.20152 -9.104,-1.23744 -9.104,-1.23744 l 0.26517,3.71231 c 0,0 0.88388,-1.41421 2.20971,-1.41421 1.32582,0 3.71231,1.14905 4.5078,2.12132 0.7955,0.97227 0.97227,2.2981 0.97227,2.2981 0,0 3.19537,3.23515 4.06586,6.71752 0.80346,3.21419 1.23744,8.48528 1.23744,8.48528 l -11.84403,0.44194 -0.35357,-2.03294 c 0,0 -2.24894,-0.0511 -3.44714,-0.61872 -1.67938,-0.79549 -2.11152,-2.03845 -2.11152,-2.03845"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g_zaac"
transform="translate(0,1680)">
<path
sodipodi:nodetypes="csscscscsc"
class="WolfB"
id="path2943"
d="m 55.35708,844.71879 c 0,0 3.69157,3.12903 8.48528,1.5026 4.94975,-1.67938 4.24264,-6.89429 3.62393,-13.43503 -0.61872,-6.54073 -3.18198,-10.69499 -3.18198,-10.69499 0,0 1.26063,-1.69443 2.20971,-5.65685 1.22387,-5.10968 -1.23744,-7.6014 -1.23744,-7.6014 0,0 -2.51372,1.28994 -4.33103,5.03814 -1.41422,2.91681 -1.67938,6.62912 -1.67938,6.62912 0,0 -0.61972,-0.82096 -3.18198,-0.70711 -3.47578,0.15446 -3.8007,2.2981 -3.8007,2.2981"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cssssssssc"
class="WolfB"
id="path2945"
d="m 72.85798,845.51428 c 0,0 5.67484,7.37878 9.10399,8.75045 2.65166,1.06066 22.11406,1.42061 24.21841,0.0884 3.18924,-2.01904 3.00521,-3.97748 1.14905,-6.54074 -2.09233,-2.88941 -4.33103,-3.7123 -7.60139,-3.7123 -3.97748,0 -6.27557,3.09358 -8.22012,3.80069 -1.57827,0.57391 -3.53554,0.97227 -5.65685,-0.0884 -1.80278,-0.90139 -4.94975,-4.59619 -6.8943,-5.65685 -1.94454,-1.06066 -4.15424,-0.97227 -5.39169,0.26516 -1.0477,1.04769 -0.53033,3.18198 -0.7071,3.09359 z"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="ccczcsscccccc"
class="Wolf"
id="path2947"
d="m 73.60928,842.15553 c -1.17472,1.48646 -0.92808,3.71231 -0.92808,3.71231 l -7.04897,-0.48614 c 0,0 3.07785,-2.47517 2.40858,-9.8553 -0.66926,-7.38012 -2.34229,-11.04854 -2.34229,-11.04854 0,0 9.63433,-4.06587 14.23053,-4.77297 4.59619,-0.70711 10.96015,-0.97228 12.99308,1.67938 2.03293,2.65165 2.91682,5.65685 0.7955,8.66205 -2.01469,2.6566 -4.75543,5.6256 -4.15426,8.48528 0.44808,1.26954 3.00521,1.59099 3.00521,1.59099 l -9.45755,5.39169 c 0.0717,0.0205 -1.99516,-2.2831 -4.37522,-3.35876 -1.99373,-0.9895 -3.07338,-1.14787 -5.12653,10e-6 z"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="Wolf"
sodipodi:nodetypes="ccsc"
id="path2953"
d="m 108.39009,817.67196 -3.0052,-1.14905 c 0,0 0.90161,-1.8832 2.20971,-2.74004 1.97852,-1.29599 2.91681,-0.70711 2.91681,-0.70711"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="ccccsssscssc"
class="WolfB"
id="path2949"
d="m 104.23584,822.44493 5.83363,5.39168 2.91682,-2.29809 -1.72358,3.13779 c 0,0 1.90036,1.19324 4.46362,0.57452 2.56326,-0.61872 3.35876,-2.2981 3.35875,-4.24264 -1e-5,-2.85044 -2.2097,-5.39169 -5.56846,-6.0988 -3.21072,-0.67594 -7.95495,-1.59099 -9.63433,-3.09359 -1.67938,-1.5026 -2.91682,-2.56326 -2.91682,-2.56326 0,0 2.82733,-5.84204 6.18719,-6.27557 2.74004,-0.35356 3.83554,1.50341 3.88909,3.27036 0.0884,2.91682 -2.74005,7.51301 -2.74005,7.51301"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="Wolf"
sodipodi:nodetypes="ccsc"
id="path2957"
d="m 118.7,822.63572 -1.125,-1.375 c 0,0 0.5,-1.25 1.875,-2.125 1.375,-0.875 2.125,-0.625 2.125,-0.625"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="csc"
class="WolfB"
id="path2955"
d="m 115.2,819.63572 c 0,0 3.875,-8.5 7,-6.625 3.125,1.875 -3.625,9.375 -3.625,9.375"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cscssccc"
class="WolfB"
id="path2961"
d="m 92.2,840.13572 c 0,0 5.875,-3.625 6.875,-5.75 1.38486,-2.94283 1,-4.875 1,-4.875 0,0 1.75,-0.5 2.625,0.125 0.875,0.625 3.05326,3.42847 4.75,3 1.57506,-0.39775 2.35547,-1.42187 2.35547,-1.42187 0,0 1.35857,0.36566 2.37984,0.60341 0.54484,-0.68739 1.17415,-1.44667 1.72588,-2.29137"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="ccccc"
class="WolfB"
id="path2963"
d="m 108.25751,826.28982 -1.14905,2.74004 1.67938,1.32582 2.51907,-2.69584 -1.63518,3.49134"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="csscscsc"
class="WolfB"
id="path2965"
d="m 122.075,812.76072 c 0,0 1,-4.5 -1.125,-8.25 -2.125,-3.75 -5.25,-6 -8.625,-7.625 -3.66854,-1.76633 -6.875,-1.25 -6.875,-1.25 0,0 -0.625,-4.875 -2,-8.25 -1.375,-3.375 -6.125,-7.625 -6.125,-7.625 0,0 3.125,3.25 4.75,7.5 1.625,4.25 2.5,6.625 2.5,6.625"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cccc"
class="WolfB"
id="path2967"
d="m 109.7,807.76072 2,-2 m 1.75,2 -2.5,1.5"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cccc"
class="WolfB"
id="path2969"
d="m 122.2,813.01072 2.25,-1.5 m 1.5,1.75 -2.875,1.125"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="cssssczcccccsc"
class="WolfB"
id="path2971"
d="m 111.325,796.38572 c 0,0 -1.26347,-8.10289 -7,-15.5 -4.75,-6.125 -8.07372,-9.86278 -10.625,-9.5 -2.31902,0.32975 -3.125,2.625 -2.5,4.75 0.625,2.125 4.30735,8.33603 6.5,11.625 2.5,3.75 3.875,8.75 3.875,8.75 0,0 -2.66667,1.95833 -3.75,3.125 -1.08333,1.16667 -2.875,3.375 -2.875,3.375 l -2.5,-2 1.25,5 -3.25,-2.25 1.375,4.25 c 0,0 -1,1.75 -1.5,4.75 -0.57686,3.46118 0.75,7.375 0.75,7.375"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:nodetypes="csssc"
class="WolfB"
id="path2973"
d="m 115.575,799.01072 c 0,0 0.875,-7.125 -1.25,-14.5 -1.72108,-5.97315 -2.60863,-9.19339 -4.875,-11.25 -2.46482,-2.23669 -4,-1 -4.875,0.875 -0.89863,1.92564 -0.125,6.875 -0.125,6.875"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
sodipodi:type="arc"
id="path_nos"
sodipodi:cx="113.7"
sodipodi:cy="824.5"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 114.7,824.5 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z"
class="Wolf"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3165"
transform="translate(0,1960)">
<path
d="m 127.82597,793.27814 c 1.21398,-1.87967 6.93306,-5.0608 9.37223,-5.88267 1.82389,-0.61456 8.79592,-3.66247 10.15077,-3.39666 2.64738,0.51941 5.9259,4.90205 4.95374,6.44069 -1.46433,2.3176 -2.20859,-0.36903 -3.63957,0.60896 -1.75743,1.20111 0.2762,2.10011 -1.46474,2.80748 -1.98228,0.80541 -2.95379,-1.40832 -4.82221,-1.59292 -2.8347,-0.28007 -12.01367,4.04478 -13.18455,3.85691 -1.1209,-0.17985 -2.54254,-1.15354 -1.36567,-2.84179 z"
id="path3051"
sodipodi:nodetypes="csssssssc"
class="WolfB"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 155.65289,794.30537 0.64115,2.07267 c 0,0 1.99618,0.25699 2.92734,1.17136 0.93116,0.91437 2.27382,7.04583 3.94162,7.03359 2.37749,-0.0174 -1.808,0.52448 -3.50738,1.14525 2.42009,4.01627 -2.56241,6.2993 -3.45812,0.97547 -1.92586,0.41158 -6.08649,2.42175 -4.22473,1.39731 1.53321,-0.84366 -0.21783,-7.6559 0.29673,-8.79508 0.51455,-1.13918 1.91623,-2.48116 1.91623,-2.48116 l -0.27696,-2.05906 1.74412,-0.46035 z"
id="path3053"
sodipodi:nodetypes="ccssccssccc"
class="Wolf"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
class="WolfB"
sodipodi:nodetypes="csscc"
id="path3055"
d="m 163.163,804.58299 c 3.39064,0.13843 4.44541,3.55412 1.49058,5.17212 -4.12194,2.25671 -7.08108,2.87411 -10.9905,2.70413 -3.37446,-0.14673 -4.02576,-3.28714 -1.00859,-4.80468 4.20771,-1.56272 6.1192,-2.05786 10.50851,-3.07157 z"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
</g>
<g
id="g3173"
transform="translate(0,2240)">
<path
style="fill:none;stroke:#0000d0;stroke-width:1;stroke-linejoin:round"
class="WolfB"
sodipodi:nodetypes="csssssssc"
id="path3038"
d="m 127.95,822.76072 c 1.625,-2.25 13.5,5.125 15.75,6.375 2.25,1.25 7.125,2.875 7.25,4.25 0.125,1.375 0.68505,6.68466 -1.125,6.875 -2.0769,0.2184 -3,-2.5 -5.125,-2.125 -2.09628,0.36993 -2.44621,1.90706 -4.3125,1.6875 -2.125,-0.25 -0.72658,-2.37527 -0.9375,-5.1875 -0.375,-5 -11.375,-8.5 -11.75,-9.625 -0.375,-1.125 -0.1875,-1.5625 0.25,-2.25 z" />
<path
class="Wolf"
sodipodi:nodetypes="ccssccssccc"
id="path3040"
d="m 145.7,842.26072 -0.4375,2.125 c 0,0 1.625,1.1875 2,2.4375 0.375,1.25 -1.40459,7.26919 0.0625,8.0625 2.09138,1.13088 -1.83687,-0.41212 -3.625,-0.6875 0.18408,4.68544 -5.28182,4.28363 -3.5,-0.8125 -1.8857,-0.56785 -6.5,-0.8125 -4.375,-0.8125 1.75,0 3.5,-6.8125 4.5,-7.5625 1,-0.75 2.875,-1.25 2.875,-1.25 l 0.75,-1.9375 1.75,0.4375 z"
style="fill:#000000;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
<path
d="m 147.325,854.88572 c 2.90388,1.75588 2.18131,5.25693 -1.1875,5.25 -4.69926,-0.01 -7.71932,-0.77887 -11.0625,-2.8125 -2.8857,-1.75535 -1.8125,-4.9375 1.5625,-4.8125 4.43984,0.65937 6.35324,1.14708 10.6875,2.375 z"
id="path3042"
sodipodi:nodetypes="csscc"
class="WolfB"
style="fill:none;stroke:#000080;stroke-width:1;stroke-linejoin:round" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 50 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB