kitchen-simulator 11.28.0 → 11.28.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/es/actions/items-actions.js +12 -1
  2. package/es/assets/img/svg/3d_item_move.svg +9 -105
  3. package/es/assets/img/svg/3d_item_rotation.svg +3 -75
  4. package/es/assets/img/svg/accessories.svg +4 -4
  5. package/es/assets/img/svg/bottombar/elevation-back.svg +6 -6
  6. package/es/assets/img/svg/bottombar/elevation-front.svg +6 -6
  7. package/es/assets/img/svg/bottombar/elevation-left.svg +6 -6
  8. package/es/assets/img/svg/bottombar/elevation-right.svg +7 -7
  9. package/es/assets/img/svg/bottombar/elevation.svg +13 -13
  10. package/es/assets/img/svg/delete.svg +6 -2
  11. package/es/assets/img/svg/detail.svg +77 -77
  12. package/es/assets/img/svg/duplicate.svg +6 -6
  13. package/es/assets/img/svg/filtersActive.svg +19 -19
  14. package/es/assets/img/svg/invert.svg +12 -127
  15. package/es/assets/img/svg/menubar/login.svg +84 -84
  16. package/es/assets/img/svg/menubar/my_projects.svg +85 -85
  17. package/es/assets/img/svg/menubar/new_project.svg +110 -110
  18. package/es/assets/img/svg/menubar/save_project.svg +84 -84
  19. package/es/assets/img/svg/options.svg +3 -3
  20. package/es/assets/img/svg/positioning.svg +3 -3
  21. package/es/assets/img/svg/toggleFilters.svg +19 -19
  22. package/es/assets/img/svg/toolbar/shopping-cart.svg +13 -13
  23. package/es/assets/img/svg/wizardstep/detail_view.svg +87 -87
  24. package/es/assets/img/svg/wizardstep/tile_view.svg +95 -95
  25. package/es/catalog/utils/exporter.js +4 -0
  26. package/es/catalog/utils/item-loader.js +18 -8
  27. package/es/class/item.js +32 -2
  28. package/es/components/viewer2d/item.js +139 -125
  29. package/es/components/viewer2d/viewer2d.js +5 -2
  30. package/es/components/viewer3d/camera-controls-module/camera-controls.module.js +556 -556
  31. package/es/components/viewer3d/scene-creator.js +18 -0
  32. package/es/components/viewer3d/viewer3d.js +137 -49
  33. package/es/constants.js +4 -0
  34. package/es/events/external/handleExternalEvent.js +36 -33
  35. package/es/events/external/handlers.elementOps.js +8 -0
  36. package/es/mappings/external-events/mapExternalEventPayload.js +4 -4
  37. package/es/mappings/external-events/mappers/addItemMapper.js +9 -9
  38. package/es/models.js +4 -0
  39. package/es/reducers/items-reducer.js +8 -1
  40. package/es/shared/domain/asset/sanitize-asset-url.js +5 -5
  41. package/es/shared/domain/cabinet-mirror.js +7 -0
  42. package/es/utils/skinPanelEngine.js +14 -14
  43. package/lib/actions/items-actions.js +12 -0
  44. package/lib/assets/img/svg/3d_item_move.svg +9 -105
  45. package/lib/assets/img/svg/3d_item_rotation.svg +3 -75
  46. package/lib/assets/img/svg/accessories.svg +4 -4
  47. package/lib/assets/img/svg/bottombar/elevation-back.svg +6 -6
  48. package/lib/assets/img/svg/bottombar/elevation-front.svg +6 -6
  49. package/lib/assets/img/svg/bottombar/elevation-left.svg +6 -6
  50. package/lib/assets/img/svg/bottombar/elevation-right.svg +7 -7
  51. package/lib/assets/img/svg/bottombar/elevation.svg +13 -13
  52. package/lib/assets/img/svg/delete.svg +6 -2
  53. package/lib/assets/img/svg/detail.svg +77 -77
  54. package/lib/assets/img/svg/duplicate.svg +6 -6
  55. package/lib/assets/img/svg/filtersActive.svg +19 -19
  56. package/lib/assets/img/svg/invert.svg +12 -127
  57. package/lib/assets/img/svg/menubar/login.svg +84 -84
  58. package/lib/assets/img/svg/menubar/my_projects.svg +85 -85
  59. package/lib/assets/img/svg/menubar/new_project.svg +110 -110
  60. package/lib/assets/img/svg/menubar/save_project.svg +84 -84
  61. package/lib/assets/img/svg/options.svg +3 -3
  62. package/lib/assets/img/svg/positioning.svg +3 -3
  63. package/lib/assets/img/svg/toggleFilters.svg +19 -19
  64. package/lib/assets/img/svg/toolbar/shopping-cart.svg +13 -13
  65. package/lib/assets/img/svg/wizardstep/detail_view.svg +87 -87
  66. package/lib/assets/img/svg/wizardstep/tile_view.svg +95 -95
  67. package/lib/catalog/utils/exporter.js +4 -0
  68. package/lib/catalog/utils/item-loader.js +18 -8
  69. package/lib/class/item.js +31 -1
  70. package/lib/components/viewer2d/item.js +138 -124
  71. package/lib/components/viewer2d/viewer2d.js +5 -2
  72. package/lib/components/viewer3d/camera-controls-module/camera-controls.module.js +556 -556
  73. package/lib/components/viewer3d/scene-creator.js +18 -0
  74. package/lib/components/viewer3d/viewer3d.js +137 -49
  75. package/lib/constants.js +8 -4
  76. package/lib/events/external/handleExternalEvent.js +34 -31
  77. package/lib/events/external/handlers.elementOps.js +9 -0
  78. package/lib/mappings/external-events/mapExternalEventPayload.js +4 -4
  79. package/lib/mappings/external-events/mappers/addItemMapper.js +9 -9
  80. package/lib/models.js +4 -0
  81. package/lib/reducers/items-reducer.js +7 -0
  82. package/lib/shared/domain/asset/sanitize-asset-url.js +5 -5
  83. package/lib/shared/domain/cabinet-mirror.js +13 -0
  84. package/lib/utils/skinPanelEngine.js +14 -14
  85. package/package.json +1 -1
@@ -1,127 +1,12 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="18"
13
- height="18"
14
- id="svg120611"
15
- version="1.1"
16
- inkscape:version="0.48.4 r9939"
17
- sodipodi:docname="New document 4">
18
- <defs
19
- id="defs120613">
20
- <clipPath
21
- id="clip629_0_1">
22
- <rect
23
- style="fill:#ffffff"
24
- y="0"
25
- x="0"
26
- width="24"
27
- height="24"
28
- transform="translate(248,2075.73)"
29
- id="rect108754" />
30
- </clipPath>
31
- <clipPath
32
- id="clip1165_0_1">
33
- <rect
34
- style="fill:#ffffff"
35
- y="0"
36
- x="0"
37
- width="24"
38
- height="24"
39
- transform="translate(4088,2523.73)"
40
- id="rect110362" />
41
- </clipPath>
42
- <clipPath
43
- id="clip1165_0_1-4">
44
- <rect
45
- style="fill:#ffffff"
46
- y="0"
47
- x="0"
48
- width="24"
49
- height="24"
50
- transform="translate(4088,2523.73)"
51
- id="rect110362-0" />
52
- </clipPath>
53
- </defs>
54
- <sodipodi:namedview
55
- id="base"
56
- pagecolor="#ffffff"
57
- bordercolor="#666666"
58
- borderopacity="1.0"
59
- inkscape:pageopacity="0.0"
60
- inkscape:pageshadow="2"
61
- inkscape:zoom="11.313708"
62
- inkscape:cx="18.003245"
63
- inkscape:cy="16.213573"
64
- inkscape:current-layer="layer1"
65
- showgrid="true"
66
- inkscape:grid-bbox="true"
67
- inkscape:document-units="px"
68
- inkscape:window-width="1920"
69
- inkscape:window-height="1017"
70
- inkscape:window-x="-8"
71
- inkscape:window-y="-8"
72
- inkscape:window-maximized="1" />
73
- <metadata
74
- id="metadata120616">
75
- <rdf:RDF>
76
- <cc:Work
77
- rdf:about="">
78
- <dc:format>image/svg+xml</dc:format>
79
- <dc:type
80
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
81
- <dc:title></dc:title>
82
- </cc:Work>
83
- </rdf:RDF>
84
- </metadata>
85
- <g
86
- id="layer1"
87
- inkscape:label="Layer 1"
88
- inkscape:groupmode="layer"
89
- transform="translate(0,-14)">
90
- <path
91
- id="path69482"
92
- d="m 8.9951119,15.80962 h -0.01155"
93
- inkscape:connector-curvature="0"
94
- style="fill:none;stroke:#4c12a1;stroke-width:2.04160428;stroke-linecap:round;stroke-linejoin:round" />
95
- <path
96
- id="path69484"
97
- d="m 8.9951119,20.322213 h -0.01155"
98
- inkscape:connector-curvature="0"
99
- style="fill:none;stroke:#4c12a1;stroke-width:2.04160428;stroke-linecap:round;stroke-linejoin:round" />
100
- <path
101
- id="path69486"
102
- d="m 8.9951119,25.737326 h -0.01155"
103
- inkscape:connector-curvature="0"
104
- style="fill:none;stroke:#4c12a1;stroke-width:2.04160428;stroke-linecap:round;stroke-linejoin:round" />
105
- <path
106
- id="path69490"
107
- d="m 8.9951119,30.249918 h -0.01155"
108
- inkscape:connector-curvature="0"
109
- style="fill:none;stroke:#4c12a1;stroke-width:2.04160428;stroke-linecap:round;stroke-linejoin:round" />
110
- <path
111
- id="path74578"
112
- d="M 6.6644273,31.349204 H 0.90408625 c -0.0523097,0 -0.10943184,-0.05284 -0.15462738,-0.135899 C 0.70447257,31.129555 0.66994817,31.014789 0.6479781,30.868621 0.6291466,30.73282 0.6218233,30.576183 0.6333313,30.429915 0.6448395,30.283546 0.6709943,30.147747 0.7086572,30.043354 l 5.484983,-15.189609 c 0.037663,-0.104492 0.086834,-0.177476 0.1433285,-0.208784 0.052309,-0.03091 0.1056655,-0.02094 0.1583937,0.04088 0.049171,0.05284 0.094157,0.156638 0.1246017,0.282068 0.03034,0.12533 0.044986,0.271599 0.044986,0.428337 v 15.952162 z"
113
- inkscape:connector-curvature="0"
114
- style="fill:none;stroke:#4c12a1;stroke-width:1.25551593;stroke-linecap:round;stroke-linejoin:round" />
115
- <g
116
- transform="matrix(-1.0461935,0,0,0.99705989,4305.2764,-2502.1467)"
117
- clip-path="url(#clip1165_0_1-4)"
118
- id="g74576-9"
119
- style="fill:#4c12a1;fill-opacity:1">
120
- <path
121
- style="fill:#4c12a1;fill-opacity:1;stroke:#4c12a1;stroke-width:1.22929358;stroke-linecap:round;stroke-linejoin:round"
122
- inkscape:connector-curvature="0"
123
- d="m 4104.3469,2540.9898 h -5.506 c -0.05,0 -0.1046,-0.053 -0.1478,-0.1363 -0.043,-0.084 -0.076,-0.1991 -0.097,-0.3457 -0.018,-0.1362 -0.025,-0.2933 -0.014,-0.44 0.011,-0.1468 0.036,-0.283 0.072,-0.3877 l 5.2428,-15.2344 c 0.036,-0.1048 0.083,-0.178 0.137,-0.2094 0.05,-0.031 0.101,-0.021 0.1514,0.041 0.047,0.053 0.09,0.1571 0.1191,0.2829 0.029,0.1257 0.043,0.2724 0.043,0.4296 v 15.9992 z"
124
- id="path74578-4" />
125
- </g>
126
- </g>
127
- </svg>
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_2431_146436)">
3
+ <path d="M7.5 1.875V13.125" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M10 4.375V10.625H13.125L10 4.375Z" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M5 4.375V10.625H1.875L5 4.375Z" fill="#3A0B80" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_2431_146436">
9
+ <rect width="15" height="15" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -1,84 +1,84 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="14"
13
- height="20"
14
- id="svg60766"
15
- version="1.1"
16
- inkscape:version="0.48.4 r9939"
17
- sodipodi:docname="New document 2">
18
- <defs
19
- id="defs60768">
20
- <clipPath
21
- id="clip96_0_1">
22
- <rect
23
- style="fill:#ffffff"
24
- y="0"
25
- x="0"
26
- width="24"
27
- height="24"
28
- transform="translate(2080,835.725)"
29
- id="rect44351" />
30
- </clipPath>
31
- </defs>
32
- <sodipodi:namedview
33
- id="base"
34
- pagecolor="#ffffff"
35
- bordercolor="#666666"
36
- borderopacity="1.0"
37
- inkscape:pageopacity="0.0"
38
- inkscape:pageshadow="2"
39
- inkscape:zoom="11.197802"
40
- inkscape:cx="16"
41
- inkscape:cy="16"
42
- inkscape:current-layer="g856"
43
- showgrid="true"
44
- inkscape:grid-bbox="true"
45
- inkscape:document-units="px"
46
- inkscape:window-width="1920"
47
- inkscape:window-height="1017"
48
- inkscape:window-x="-8"
49
- inkscape:window-y="-8"
50
- inkscape:window-maximized="1" />
51
- <metadata
52
- id="metadata60771">
53
- <rdf:RDF>
54
- <cc:Work
55
- rdf:about="">
56
- <dc:format>image/svg+xml</dc:format>
57
- <dc:type
58
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
59
- <dc:title></dc:title>
60
- </cc:Work>
61
- </rdf:RDF>
62
- </metadata>
63
- <g
64
- id="layer1"
65
- inkscape:label="Layer 1"
66
- inkscape:groupmode="layer"
67
- transform="translate(0,-12)">
68
- <g
69
- transform="translate(-2085,-825.725)"
70
- clip-path="url(#clip96_0_1)"
71
- id="g856">
72
- <path
73
- style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
74
- inkscape:connector-curvature="0"
75
- d="m 2088,842.725 c 0,1.061 0.42,2.078 1.17,2.829 0.75,0.75 1.77,1.171 2.83,1.171 1.06,0 2.08,-0.421 2.83,-1.171 0.75,-0.751 1.17,-1.768 1.17,-2.829 0,-1.061 -0.42,-2.078 -1.17,-2.828 -0.75,-0.75 -1.77,-1.172 -2.83,-1.172 -1.06,0 -2.08,0.422 -2.83,1.172 -0.75,0.75 -1.17,1.767 -1.17,2.828 z"
76
- id="path858" />
77
- <path
78
- style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
79
- inkscape:connector-curvature="0"
80
- d="m 2086,856.725 v -2 c 0,-1.061 0.42,-2.078 1.17,-2.828 0.75,-0.75 1.77,-1.172 2.83,-1.172 h 4 c 1.06,0 2.08,0.422 2.83,1.172 0.75,0.75 1.17,1.767 1.17,2.828 v 2"
81
- id="path860" />
82
- </g>
83
- </g>
84
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="14"
13
+ height="20"
14
+ id="svg60766"
15
+ version="1.1"
16
+ inkscape:version="0.48.4 r9939"
17
+ sodipodi:docname="New document 2">
18
+ <defs
19
+ id="defs60768">
20
+ <clipPath
21
+ id="clip96_0_1">
22
+ <rect
23
+ style="fill:#ffffff"
24
+ y="0"
25
+ x="0"
26
+ width="24"
27
+ height="24"
28
+ transform="translate(2080,835.725)"
29
+ id="rect44351" />
30
+ </clipPath>
31
+ </defs>
32
+ <sodipodi:namedview
33
+ id="base"
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1.0"
37
+ inkscape:pageopacity="0.0"
38
+ inkscape:pageshadow="2"
39
+ inkscape:zoom="11.197802"
40
+ inkscape:cx="16"
41
+ inkscape:cy="16"
42
+ inkscape:current-layer="g856"
43
+ showgrid="true"
44
+ inkscape:grid-bbox="true"
45
+ inkscape:document-units="px"
46
+ inkscape:window-width="1920"
47
+ inkscape:window-height="1017"
48
+ inkscape:window-x="-8"
49
+ inkscape:window-y="-8"
50
+ inkscape:window-maximized="1" />
51
+ <metadata
52
+ id="metadata60771">
53
+ <rdf:RDF>
54
+ <cc:Work
55
+ rdf:about="">
56
+ <dc:format>image/svg+xml</dc:format>
57
+ <dc:type
58
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
59
+ <dc:title></dc:title>
60
+ </cc:Work>
61
+ </rdf:RDF>
62
+ </metadata>
63
+ <g
64
+ id="layer1"
65
+ inkscape:label="Layer 1"
66
+ inkscape:groupmode="layer"
67
+ transform="translate(0,-12)">
68
+ <g
69
+ transform="translate(-2085,-825.725)"
70
+ clip-path="url(#clip96_0_1)"
71
+ id="g856">
72
+ <path
73
+ style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
74
+ inkscape:connector-curvature="0"
75
+ d="m 2088,842.725 c 0,1.061 0.42,2.078 1.17,2.829 0.75,0.75 1.77,1.171 2.83,1.171 1.06,0 2.08,-0.421 2.83,-1.171 0.75,-0.751 1.17,-1.768 1.17,-2.829 0,-1.061 -0.42,-2.078 -1.17,-2.828 -0.75,-0.75 -1.77,-1.172 -2.83,-1.172 -1.06,0 -2.08,0.422 -2.83,1.172 -0.75,0.75 -1.17,1.767 -1.17,2.828 z"
76
+ id="path858" />
77
+ <path
78
+ style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
79
+ inkscape:connector-curvature="0"
80
+ d="m 2086,856.725 v -2 c 0,-1.061 0.42,-2.078 1.17,-2.828 0.75,-0.75 1.77,-1.172 2.83,-1.172 h 4 c 1.06,0 2.08,0.422 2.83,1.172 0.75,0.75 1.17,1.767 1.17,2.828 v 2"
81
+ id="path860" />
82
+ </g>
83
+ </g>
84
+ </svg>
@@ -1,85 +1,85 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="20"
13
- height="19"
14
- id="svg60766"
15
- version="1.1"
16
- inkscape:version="0.48.4 r9939"
17
- sodipodi:docname="New document 2">
18
- <defs
19
- id="defs60768">
20
- <clipPath
21
- id="clip2179_0_1">
22
- <rect
23
- style="fill:#ffffff"
24
- y="0"
25
- x="0"
26
- width="24"
27
- height="24"
28
- transform="translate(3832,3486.86)"
29
- id="rect50600" />
30
- </clipPath>
31
- </defs>
32
- <sodipodi:namedview
33
- id="base"
34
- pagecolor="#ffffff"
35
- bordercolor="#666666"
36
- borderopacity="1.0"
37
- inkscape:pageopacity="0.0"
38
- inkscape:pageshadow="2"
39
- inkscape:zoom="11.197802"
40
- inkscape:cx="16"
41
- inkscape:cy="19.181516"
42
- inkscape:current-layer="g21724"
43
- showgrid="true"
44
- inkscape:grid-bbox="true"
45
- inkscape:document-units="px"
46
- showborder="true"
47
- inkscape:window-width="1084"
48
- inkscape:window-height="670"
49
- inkscape:window-x="104"
50
- inkscape:window-y="104"
51
- inkscape:window-maximized="0" />
52
- <metadata
53
- id="metadata60771">
54
- <rdf:RDF>
55
- <cc:Work
56
- rdf:about="">
57
- <dc:format>image/svg+xml</dc:format>
58
- <dc:type
59
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
60
- <dc:title></dc:title>
61
- </cc:Work>
62
- </rdf:RDF>
63
- </metadata>
64
- <g
65
- id="layer1"
66
- inkscape:label="Layer 1"
67
- inkscape:groupmode="layer"
68
- transform="translate(0,-13)">
69
- <g
70
- transform="translate(-3834,-3476.86)"
71
- clip-path="url(#clip2179_0_1)"
72
- id="g21724">
73
- <path
74
- style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
75
- inkscape:connector-curvature="0"
76
- d="m 3841,3490.86 h 3 l 2,2 h 5 c 0.53,0 1.04,0.21 1.41,0.59 0.38,0.37 0.59,0.88 0.59,1.41 v 7 c 0,0.53 -0.21,1.04 -0.59,1.42 -0.37,0.37 -0.88,0.58 -1.41,0.58 h -10 c -0.53,0 -1.04,-0.21 -1.41,-0.58 -0.38,-0.38 -0.59,-0.89 -0.59,-1.42 v -9 c 0,-0.53 0.21,-1.04 0.59,-1.41 0.37,-0.38 0.88,-0.59 1.41,-0.59 z"
77
- id="path21726" />
78
- <path
79
- style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
80
- inkscape:connector-curvature="0"
81
- d="m 3849,3503.86 v 2 c 0,0.53 -0.21,1.04 -0.59,1.42 -0.37,0.37 -0.88,0.58 -1.41,0.58 h -10 c -0.53,0 -1.04,-0.21 -1.41,-0.58 -0.38,-0.38 -0.59,-0.89 -0.59,-1.42 v -9 c 0,-0.53 0.21,-1.04 0.59,-1.41 0.37,-0.38 0.88,-0.59 1.41,-0.59 h 2"
82
- id="path21728" />
83
- </g>
84
- </g>
85
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="20"
13
+ height="19"
14
+ id="svg60766"
15
+ version="1.1"
16
+ inkscape:version="0.48.4 r9939"
17
+ sodipodi:docname="New document 2">
18
+ <defs
19
+ id="defs60768">
20
+ <clipPath
21
+ id="clip2179_0_1">
22
+ <rect
23
+ style="fill:#ffffff"
24
+ y="0"
25
+ x="0"
26
+ width="24"
27
+ height="24"
28
+ transform="translate(3832,3486.86)"
29
+ id="rect50600" />
30
+ </clipPath>
31
+ </defs>
32
+ <sodipodi:namedview
33
+ id="base"
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1.0"
37
+ inkscape:pageopacity="0.0"
38
+ inkscape:pageshadow="2"
39
+ inkscape:zoom="11.197802"
40
+ inkscape:cx="16"
41
+ inkscape:cy="19.181516"
42
+ inkscape:current-layer="g21724"
43
+ showgrid="true"
44
+ inkscape:grid-bbox="true"
45
+ inkscape:document-units="px"
46
+ showborder="true"
47
+ inkscape:window-width="1084"
48
+ inkscape:window-height="670"
49
+ inkscape:window-x="104"
50
+ inkscape:window-y="104"
51
+ inkscape:window-maximized="0" />
52
+ <metadata
53
+ id="metadata60771">
54
+ <rdf:RDF>
55
+ <cc:Work
56
+ rdf:about="">
57
+ <dc:format>image/svg+xml</dc:format>
58
+ <dc:type
59
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
60
+ <dc:title></dc:title>
61
+ </cc:Work>
62
+ </rdf:RDF>
63
+ </metadata>
64
+ <g
65
+ id="layer1"
66
+ inkscape:label="Layer 1"
67
+ inkscape:groupmode="layer"
68
+ transform="translate(0,-13)">
69
+ <g
70
+ transform="translate(-3834,-3476.86)"
71
+ clip-path="url(#clip2179_0_1)"
72
+ id="g21724">
73
+ <path
74
+ style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
75
+ inkscape:connector-curvature="0"
76
+ d="m 3841,3490.86 h 3 l 2,2 h 5 c 0.53,0 1.04,0.21 1.41,0.59 0.38,0.37 0.59,0.88 0.59,1.41 v 7 c 0,0.53 -0.21,1.04 -0.59,1.42 -0.37,0.37 -0.88,0.58 -1.41,0.58 h -10 c -0.53,0 -1.04,-0.21 -1.41,-0.58 -0.38,-0.38 -0.59,-0.89 -0.59,-1.42 v -9 c 0,-0.53 0.21,-1.04 0.59,-1.41 0.37,-0.38 0.88,-0.59 1.41,-0.59 z"
77
+ id="path21726" />
78
+ <path
79
+ style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
80
+ inkscape:connector-curvature="0"
81
+ d="m 3849,3503.86 v 2 c 0,0.53 -0.21,1.04 -0.59,1.42 -0.37,0.37 -0.88,0.58 -1.41,0.58 h -10 c -0.53,0 -1.04,-0.21 -1.41,-0.58 -0.38,-0.38 -0.59,-0.89 -0.59,-1.42 v -9 c 0,-0.53 0.21,-1.04 0.59,-1.41 0.37,-0.38 0.88,-0.59 1.41,-0.59 h 2"
82
+ id="path21728" />
83
+ </g>
84
+ </g>
85
+ </svg>