Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch release
Through [98e0b9d916]
Excluding Merge-Ins
This is equivalent to a diff from
a10f50f1a5
to 98e0b9d916
|
2021-06-01
| | |
| 08:39 |
|
check-in: 7052f90ea7 user: fifr tags: release
|
| 08:33 |
|
check-in: 98e0b9d916 user: fifr tags: release
|
| 08:18 |
|
check-in: 64c32d17c5 user: fifr tags: release
|
|
2021-05-31
| | |
| 08:14 |
|
Closed-Leaf
check-in: d320c00e3f user: fifr tags: relative-paths
|
|
2019-05-28
| | |
| 17:33 |
|
check-in: e5548fe31b user: fifr tags: trunk
|
| 17:33 |
|
check-in: 0330d27349 user: fifr tags: release
|
| 17:32 |
|
check-in: a10f50f1a5 user: fifr tags: trunk
|
| 17:27 |
|
check-in: e3236fe969 user: fifr tags: trunk
|
| 17:21 |
|
check-in: 6a2e5fc76c user: fifr tags: trunk
|
| | |
Changes to CMakeLists.txt.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
-
+
+
|
cmake_policy(SET CMP0048 NEW)
cmake_minimum_required(VERSION 3.0)
set(FOTOKOPIERER_VERSION 0.2)
set(FOTOKOPIERER_VERSION 0.2.5)
set(PODOFO_VERSION 0.9.6)
set(OPENCV_VERSION 3.4.0)
set(FREETYPE_VERSION 2.9.1)
project(fotokopierer VERSION ${FOTOKOPIERER_VERSION} LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
|
| ︙ | | |
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
-
-
+
+
|
FOTOKOPIERER_AUTHOR="Frank Fischer"
FOTOKOPIERER_VERSION="${FOTOKOPIERER_VERSION}"
PODOFO_VERSION="${PODOFO_VERSION}"
OPENCV_VERSION="${OPENCV_VERSION}"
)
if (SAILFISH_FOUND)
set(OpenCV_SOURCE_DIR ${PROJECT_SOURCE_DIR}/3rdparty/opencv-${OPENCV_VERSION})
set(PODOFO_SOURCE_DIR ${PROJECT_SOURCE_DIR}/3rdparty/podofo-${PODOFO_VERSION})
set(OpenCV_SOURCE_DIR ${PROJECT_SOURCE_DIR}/3rdparty/opencv-${OPENCV_VERSION}-${CMAKE_SYSTEM_PROCESSOR})
set(PODOFO_SOURCE_DIR ${PROJECT_SOURCE_DIR}/3rdparty/podofo-${PODOFO_VERSION}-${CMAKE_SYSTEM_PROCESSOR})
include(ExternalProject)
# configure OpenCV
set(OpenCV_PREFIX ${CMAKE_CURRENT_BINARY_DIR}/opencv)
ExternalProject_Add(opencv
|
| ︙ | | |
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
+
-
+
|
-DBUILD_opencv_stitching=OFF
-DBUILD_opencv_superres=OFF
-DBUILD_opencv_ts=OFF
-DBUILD_opencv_video=OFF
-DBUILD_opencv_videoio=OFF
-DBUILD_opencv_videostab=OFF
-DBUILD_opencv_world=OFF
-DENABLE_PRECOMPILED_HEADERS=OFF
-DWITH_JASPER=OFF
-DWITH_OPENEXR=OFF
-DWITH_WEBP=OFF)
list(INSERT CMAKE_PREFIX_PATH 0 ${OpenCV_PREFIX})
find_package(OpenCV QUIET COMPONENTS core imgproc)
if (NOT OpenCV_FOUND)
add_custom_target(opencv-3rdparty ${CMAKE_COMMAND} ${CMAKE_SOURCE_DIR} DEPENDS opencv)
else()
add_custom_target(opencv-3rdparty)
endif ()
# We must use our own freetype library
set(FREETYPE_SOURCE_DIR ${PROJECT_SOURCE_DIR}/3rdparty/freetype-2.9.1)
set(FREETYPE_SOURCE_DIR ${PROJECT_SOURCE_DIR}/3rdparty/freetype-${FREETYPE_VERSION}-${CMAKE_SYSTEM_PROCESSOR})
set(FREETYPE_PREFIX ${CMAKE_CURRENT_BINARY_DIR}/freetype)
ExternalProject_Add(freetype-3rdparty
DOWNLOAD_DIR ${PROJECT_SOURCE_DIR}/3rdparty
URL "https://download.savannah.gnu.org/releases/freetype/freetype-2.9.1.tar.gz"
URL_HASH SHA256=ec391504e55498adceb30baceebd147a6e963f636eb617424bcfc47a169898ce
SOURCE_DIR ${FREETYPE_SOURCE_DIR}
PREFIX ${FREETYPE_PREFIX}
|
| ︙ | | |
205
206
207
208
209
210
211
212
|
207
208
209
210
211
212
213
214
215
216
217
|
-
+
+
+
+
|
qt5_use_modules(${TARGET} Core Gui Multimedia Quick)
target_link_libraries(${TARGET} ${SAILFISH_LDFLAGS} ${OpenCV_LIBS} ${PODOFO_LIBRARIES})
install(TARGETS ${TARGET} RUNTIME DESTINATION bin)
# install(DIRECTORY qml DESTINATION share/${TARGET})
# install(DIRECTORY translations DESTINATION share/${TARGET} FILES_MATCHING PATTERN "*.qm")
install(FILES ${TARGET}.desktop DESTINATION share/applications)
install(FILES ${TARGET}.png DESTINATION share/icons/hicolor/86x86/apps)
install(FILES icons/86x86/${TARGET}.png DESTINATION share/icons/hicolor/86x86/apps)
install(FILES icons/108x108/${TARGET}.png DESTINATION share/icons/hicolor/108x108/apps)
install(FILES icons/128x128/${TARGET}.png DESTINATION share/icons/hicolor/128x128/apps)
install(FILES icons/172x172/${TARGET}.png DESTINATION share/icons/hicolor/172x172/apps)
|
Changes to GNUmakefile.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
+
+
+
+
-
+
+
+
+
-
+
-
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
+
-
+
-
+
+
|
target = harbour-fotokopierer
sdk_dir := $(HOME)/SailfishOS
sfdk := $(sdk_dir)/bin/sfdk
arch := i486
#arch := armv7hl
#arch := aarch64
sfos_version := 3.0.3.9
# Select the latest available target for the given architecture
target := $(shell $(sfdk) tools list | awk -F' ' '/$(arch)/ { print $$2 }' | tail -n1)
device := jolla
sdk_dir := $(HOME)/SailfishOS
projects_root := $(HOME)/JollaProjekte
emu_dir := $(sdk_dir)/vmshare/ssh/private_keys/Sailfish_OS-Emulator-latest
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
current_dir := $(dir $(mkfile_path))
mer_root_dir := $(subst $(HOME)/JollaProjekte,/home/src1,$(current_dir))
mer_root_dir := $(current_dir)
mersdk_target := SailfishOS-$(sfos_version)-$(arch)
mersdk_device := Sailfish OS Emulator $(sfos_version)
mersdk_ssh := ssh -p 2222 -i $(sdk_dir)/vmshare/ssh/private_keys/engine/mersdk mersdk@localhost
mersdk_mb2 := cd $(mer_root_dir) && mb2 -t $(mersdk_target)
mersdk_sb2 := cd $(mer_root_dir)/rpmbuilddir-arm && sb2 -t $(mersdk_target)
ifeq ($(arch),i486)
build_dir := rpmbuilddir-i386
else
ifeq ($(arch),armv7hl)
build_dir := rpmbuilddir-arm
else
build_dir := rpmbuilddir-$(arch)
endif
endif
emu_ssh := ssh -p 2223 -i $(emu_dir)/nemo nemo@localhost
emu_ssh_root := ssh -p 2223 -i $(emu_dir)/root root@localhost
TRANSLATIONS = de
TRANSLATIONS = de sv
.PHONY: all build buildall clean install rpm run
.PHONY: all build buildall clean install rpm run deploy-emu
all: compile
reformat:
clang-format -i --style=file src/*xx
installdeps:
$(mersdk_ssh) '$(mersdk_mb2) installdeps'
sf
build: reformat lrelease
$(mersdk_ssh) '$(mersdk_mb2) build'
$(sfdk) -c "target=$(target)" build
compile: reformat lrelease
$(mersdk_ssh) '$(mersdk_sb2) make'
$(sfdk) -c "target=$(target)" build-shell make -C $(build_dir) -j4
make:
$(mersdk_ssh) '$(mersdk_mb2) make'
.PHONY: make
make: compile
install:
$(mersdk_ssh) '$(mersdk_mb2) install'
$(sfdk) -c "target=$(target)" make-install
rpm: lrelease
$(mersdk_ssh) '$(mersdk_mb2) rpm'
touch rpm/*.yaml
$(sfdk) -c "target=$(target)" package
deploy:
deploy-emu: all rpm
$(mersdk_ssh) '$(mersdk_mb2) --device "$(mersdk_device)" deploy --pkcon'
scp -P 2223 -i $(emu_dir)/nemo RPMS/* nemo@localhost:
$(emu_ssh_root) 'rpm --reinstall /home/nemo/$(target)-*.i486.rpm'
.PHONY: install-jolla copy-jolla run-jolla
rpm-jolla: rpm
scp RPMS/harbour-fotokopierer*.armv7hl.rpm $(device):
install-jolla:
scp rpmbuilddir-arm/harbour-fotokopierer $(device):
|
| ︙ | | |
74
75
76
77
78
79
80
|
92
93
94
95
96
97
98
99
100
101
102
|
+
+
+
+
|
@printf " <file>%s</file>\n" $(TRANSLATIONS:%="translations/harbour-fotokopierer-%.qm") >> $@
@echo " </qresource>" >> $@
@echo "</RCC>" >> $@
snapshot_version := $(shell fossil info | awk '/^checkout:/ {print "1%{?dist}.fossil+" substr($$2, 1, 8)}')
snapshot:
sed -ie 's/^Release: 1%{?dist}.*$$/Release: ${snapshot_version}/' rpm/harbour-fotokopierer.yaml
clean:
$(sfdk) build-shell make -C $(build_dir) clean
rm -rf 3rdparty/*-$(arch)
|
Changes to README.md.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
+
+
+
+
|
# Fotokopierer
## Introduction
Fotokopierer is a document scanning application for [Sailfish OS](https://sailfishos.org) and the Desktop.
## Author
Frank Fischer <frank-fischer@shadow-soft.de>
planetos (Icons)
Åke Engelbrektson (Swedish translation)
## Contact
Talk with the developers in [#fotokopierer][IRC] on [Freenode](http://freenode.net)
## License
Licensed under GNU GPLv3
|
| ︙ | | |
Changes to common.qrc.
1
2
3
4
5
6
7
8
9
10
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
+
+
+
+
+
+
+
|
<RCC>
<qresource>
<file>qml/common/CutImageView.qml</file>
<file>qml/common/CornerMarker.qml</file>
<file>qml/common/DragDelegate.qml</file>
<file>icons/brightness.svg</file>
<file>icons/contrast.svg</file>
<file>icons/harbour-fotokopierer.svg</file>
<file>icons/icon-m-special.svg</file>
<file>icons/icon-m-bw.svg</file>
<file>icons/icon-m-color.svg</file>
<file>icons/icon-m-ctrl.svg</file>
<file>icons/icon-m-gray.svg</file>
<file>icons/icon-m-size-auto.svg</file>
<file>icons/icon-m-size-max.svg</file>
</qresource>
</RCC>
|
Changes to harbour-fotokopierer.desktop.
1
2
3
4
5
6
7
8
9
10
11
12
|
1
2
3
4
5
6
7
8
9
10
11
12
|
-
+
|
[Desktop Entry]
Type=Application
X-Nemo-Application-Type=silica-qt5
Icon=harbour-fotokopierer
Exec=harbour-fotokopierer
Name=fotokopierer
Name=Fotokopierer
# translation example:
# your app name in German locale (de)
#
# Remember to comment out the following line, if you do not want to use
# a different app name in German locale (de).
#Name[de]=fotokopierer
|
Deleted harbour-fotokopierer.png.
cannot compute difference between binary files
Added icons/108x108/harbour-fotokopierer.png.
cannot compute difference between binary files
Added icons/128x128/harbour-fotokopierer.png.
cannot compute difference between binary files
Added icons/172x172/harbour-fotokopierer.png.
cannot compute difference between binary files
Added icons/86x86/harbour-fotokopierer.png.
cannot compute difference between binary files
Changes to icons/harbour-fotokopierer.svg.
cannot compute difference between binary files
Added icons/icon-m-bw.svg.
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="64px"
height="64px"
viewBox="0 0 64 64"
style="enable-background:new 0 0 64 64;"
xml:space="preserve"
sodipodi:docname="icon-m-bw.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
id="metadata19"><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><defs
id="defs17">
</defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1055"
id="namedview15"
showgrid="false"
inkscape:zoom="5.3135169"
inkscape:cx="50.012399"
inkscape:cy="20.06409"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<rect
y="0"
x="0"
height="64"
width="64"
style="opacity:0;fill:#ffffff"
id="icon-m-add_3_" />
<rect
height="64"
width="64"
style="opacity:0;fill:#ffffff"
id="icon-m-acknowledge_1_"
x="0"
y="0" /><path
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.30754316;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 32 7.2402344 A 24.759623 24.759623 0 0 0 17.447266 11.96875 A 24.759623 24.759623 0 0 0 8.453125 24.349609 A 24.759623 24.759623 0 0 0 8.453125 39.650391 A 24.759623 24.759623 0 0 0 17.447266 52.03125 A 24.759623 24.759623 0 0 0 32 56.759766 L 32 53.488281 A 21.487709 21.487709 0 0 1 30.662109 53.421875 A 21.487709 21.487709 0 0 0 32 53.488281 L 32 44.564453 A 12.563853 12.563853 0 0 1 24.615234 42.164062 A 12.563853 12.563853 0 0 1 20.050781 35.882812 A 12.563853 12.563853 0 0 1 20.050781 28.117188 A 12.563853 12.563853 0 0 1 24.615234 21.835938 A 12.563853 12.563853 0 0 1 32 19.435547 L 32 10.511719 A 21.487709 21.487709 0 0 0 30.662109 10.578125 A 21.487709 21.487709 0 0 1 32 10.511719 L 32 7.2402344 z M 29.542969 10.666016 A 21.487709 21.487709 0 0 0 28.496094 10.824219 A 21.487709 21.487709 0 0 1 29.542969 10.666016 z M 27.439453 11.015625 A 21.487709 21.487709 0 0 0 26.386719 11.285156 A 21.487709 21.487709 0 0 1 27.439453 11.015625 z M 25.369141 11.576172 A 21.487709 21.487709 0 0 0 24.345703 11.949219 A 21.487709 21.487709 0 0 1 25.369141 11.576172 z M 23.363281 12.337891 A 21.487709 21.487709 0 0 0 22.375 12.816406 A 21.487709 21.487709 0 0 1 23.363281 12.337891 z M 21.449219 13.294922 A 21.487709 21.487709 0 0 0 20.490234 13.884766 A 21.487709 21.487709 0 0 1 21.449219 13.294922 z M 19.369141 14.615234 L 19.369141 14.617188 A 21.487709 21.487709 0 0 0 18.310547 15.470703 A 21.487709 21.487709 0 0 1 19.369141 14.615234 z M 17.470703 16.185547 A 21.487709 21.487709 0 0 0 16.724609 16.921875 A 21.487709 21.487709 0 0 1 17.470703 16.185547 z M 15.974609 17.705078 A 21.487709 21.487709 0 0 0 15.291016 18.529297 A 21.487709 21.487709 0 0 1 15.974609 17.705078 z M 14.625 19.378906 A 21.487709 21.487709 0 0 0 14.029297 20.263672 A 21.487709 21.487709 0 0 1 14.625 19.378906 z M 13.453125 21.175781 A 21.487709 21.487709 0 0 0 12.953125 22.105469 A 21.487709 21.487709 0 0 1 13.453125 21.175781 z M 12.458984 23.095703 A 21.487709 21.487709 0 0 0 12.072266 24.029297 A 21.487709 21.487709 0 0 1 12.458984 23.095703 z M 11.205078 26.691406 A 21.487709 21.487709 0 0 0 10.955078 27.730469 A 21.487709 21.487709 0 0 1 11.205078 26.691406 z M 10.779297 28.791016 A 21.487709 21.487709 0 0 0 10.632812 29.857422 A 21.487709 21.487709 0 0 1 10.779297 28.791016 z M 10.564453 30.931641 A 21.487709 21.487709 0 0 0 10.527344 32 A 21.487709 21.487709 0 0 1 10.564453 30.931641 z M 10.564453 33.068359 A 21.487709 21.487709 0 0 0 10.632812 34.142578 A 21.487709 21.487709 0 0 1 10.564453 33.068359 z M 10.779297 35.208984 A 21.487709 21.487709 0 0 0 10.955078 36.269531 A 21.487709 21.487709 0 0 1 10.779297 35.208984 z M 11.205078 37.308594 A 21.487709 21.487709 0 0 0 11.564453 38.640625 A 21.487709 21.487709 0 0 1 11.205078 37.308594 z M 12.072266 39.970703 A 21.487709 21.487709 0 0 0 12.458984 40.904297 A 21.487709 21.487709 0 0 1 12.072266 39.970703 z M 12.953125 41.894531 A 21.487709 21.487709 0 0 0 13.453125 42.824219 A 21.487709 21.487709 0 0 1 12.953125 41.894531 z M 14.029297 43.736328 A 21.487709 21.487709 0 0 0 14.625 44.621094 A 21.487709 21.487709 0 0 1 14.029297 43.736328 z M 15.291016 45.470703 A 21.487709 21.487709 0 0 0 15.974609 46.294922 A 21.487709 21.487709 0 0 1 15.291016 45.470703 z M 16.712891 47.064453 A 21.487709 21.487709 0 0 0 17.484375 47.824219 A 21.487709 21.487709 0 0 1 16.712891 47.064453 z M 18.287109 48.509766 A 21.487709 21.487709 0 0 0 19.371094 49.384766 A 21.487709 21.487709 0 0 1 18.287109 48.509766 z M 20.501953 50.123047 A 21.487709 21.487709 0 0 0 21.449219 50.705078 A 21.487709 21.487709 0 0 1 20.501953 50.123047 z M 22.375 51.183594 A 21.487709 21.487709 0 0 0 23.363281 51.662109 A 21.487709 21.487709 0 0 1 22.375 51.183594 z M 24.345703 52.050781 A 21.487709 21.487709 0 0 0 25.369141 52.423828 A 21.487709 21.487709 0 0 1 24.345703 52.050781 z M 26.380859 52.712891 A 21.487709 21.487709 0 0 0 27.445312 52.984375 A 21.487709 21.487709 0 0 1 26.380859 52.712891 z M 28.490234 53.173828 A 21.487709 21.487709 0 0 0 29.544922 53.333984 A 21.487709 21.487709 0 0 1 28.490234 53.173828 z "
id="path2699-3-2" /><path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.30754316;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 32 7.2402344 L 32 10.511719 L 32 19.435547 A 12.563853 12.563853 0 0 1 39.384766 21.835938 A 12.563853 12.563853 0 0 1 43.949219 28.117188 A 12.563853 12.563853 0 0 1 43.949219 35.882812 A 12.563853 12.563853 0 0 1 39.384766 42.164062 A 12.563853 12.563853 0 0 1 32 44.564453 L 32 53.488281 L 32 56.759766 A 24.759623 24.759623 0 0 0 46.552734 52.03125 A 24.759623 24.759623 0 0 0 46.554688 52.03125 A 24.759623 24.759623 0 0 0 55.548828 39.650391 A 24.759623 24.759623 0 0 0 55.548828 24.349609 A 24.759623 24.759623 0 0 0 46.554688 11.96875 A 24.759623 24.759623 0 0 0 46.552734 11.96875 A 24.759623 24.759623 0 0 0 32 7.2402344 z M 33.337891 10.578125 A 21.487709 21.487709 0 0 1 34.458984 10.666016 A 21.487709 21.487709 0 0 0 33.337891 10.578125 z M 35.5 10.824219 A 21.487709 21.487709 0 0 1 36.560547 11.015625 A 21.487709 21.487709 0 0 0 35.5 10.824219 z M 37.619141 11.287109 A 21.487709 21.487709 0 0 1 38.625 11.574219 A 21.487709 21.487709 0 0 0 37.619141 11.287109 z M 39.679688 11.957031 A 21.487709 21.487709 0 0 1 40.628906 12.335938 A 21.487709 21.487709 0 0 0 39.679688 11.957031 z M 41.626953 12.816406 A 21.487709 21.487709 0 0 1 42.558594 13.300781 A 21.487709 21.487709 0 0 0 41.626953 12.816406 z M 43.5 13.876953 A 21.487709 21.487709 0 0 1 44.630859 14.615234 A 21.487709 21.487709 0 0 0 43.5 13.876953 z M 45.6875 15.466797 A 21.487709 21.487709 0 0 1 46.517578 16.175781 A 21.487709 21.487709 0 0 0 45.6875 15.466797 z M 47.310547 16.958984 A 21.487709 21.487709 0 0 1 48.013672 17.691406 A 21.487709 21.487709 0 0 0 47.310547 16.958984 z M 48.730469 18.554688 A 21.487709 21.487709 0 0 1 49.373047 19.376953 A 21.487709 21.487709 0 0 0 48.730469 18.554688 z M 49.970703 20.263672 A 21.487709 21.487709 0 0 1 50.546875 21.175781 A 21.487709 21.487709 0 0 0 49.970703 20.263672 z M 51.056641 22.125 A 21.487709 21.487709 0 0 1 51.533203 23.076172 A 21.487709 21.487709 0 0 0 51.056641 22.125 z M 51.943359 24.068359 A 21.487709 21.487709 0 0 1 52.435547 25.359375 A 21.487709 21.487709 0 0 0 51.943359 24.068359 z M 52.785156 26.650391 A 21.487709 21.487709 0 0 1 53.050781 27.751953 A 21.487709 21.487709 0 0 0 52.785156 26.650391 z M 53.21875 28.767578 A 21.487709 21.487709 0 0 1 53.367188 29.861328 A 21.487709 21.487709 0 0 0 53.21875 28.767578 z M 53.435547 30.912109 A 21.487709 21.487709 0 0 1 53.474609 32 A 21.487709 21.487709 0 0 0 53.435547 30.912109 z M 53.435547 33.087891 A 21.487709 21.487709 0 0 1 53.367188 34.138672 A 21.487709 21.487709 0 0 0 53.435547 33.087891 z M 53.21875 35.232422 A 21.487709 21.487709 0 0 1 53.050781 36.25 A 21.487709 21.487709 0 0 0 53.21875 35.232422 z M 52.796875 37.308594 A 21.487709 21.487709 0 0 1 52.435547 38.640625 A 21.487709 21.487709 0 0 1 51.943359 39.931641 A 21.487709 21.487709 0 0 0 52.435547 38.640625 A 21.487709 21.487709 0 0 0 52.796875 37.308594 z M 51.533203 40.923828 A 21.487709 21.487709 0 0 1 51.056641 41.875 A 21.487709 21.487709 0 0 0 51.533203 40.923828 z M 50.546875 42.824219 A 21.487709 21.487709 0 0 1 49.970703 43.736328 A 21.487709 21.487709 0 0 0 50.546875 42.824219 z M 49.373047 44.623047 A 21.487709 21.487709 0 0 1 48.730469 45.445312 A 21.487709 21.487709 0 0 0 49.373047 44.623047 z M 48.013672 46.308594 A 21.487709 21.487709 0 0 1 47.322266 47.029297 A 21.487709 21.487709 0 0 0 48.013672 46.308594 z M 46.505859 47.835938 A 21.487709 21.487709 0 0 1 45.714844 48.509766 A 21.487709 21.487709 0 0 0 46.505859 47.835938 z M 44.630859 49.384766 A 21.487709 21.487709 0 0 1 43.5 50.123047 A 21.487709 21.487709 0 0 0 44.630859 49.384766 z M 42.558594 50.699219 A 21.487709 21.487709 0 0 1 41.626953 51.183594 A 21.487709 21.487709 0 0 0 42.558594 50.699219 z M 40.628906 51.664062 A 21.487709 21.487709 0 0 1 39.679688 52.042969 A 21.487709 21.487709 0 0 0 40.628906 51.664062 z M 38.625 52.425781 A 21.487709 21.487709 0 0 1 37.619141 52.712891 A 21.487709 21.487709 0 0 0 38.625 52.425781 z M 36.560547 52.984375 A 21.487709 21.487709 0 0 1 35.5 53.175781 A 21.487709 21.487709 0 0 0 36.560547 52.984375 z M 34.458984 53.333984 A 21.487709 21.487709 0 0 1 33.337891 53.421875 A 21.487709 21.487709 0 0 0 34.458984 53.333984 z "
id="path2699-5-4-4-6-4" /></svg>
|
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
Added icons/icon-m-color.svg.