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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
id="svg87"
sodipodi:docname="←.svg"
width="128"
height="150"
inkscape:version="1.4-rc1 (61ec3f24, 2024-09-26)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:inkstitch="http://inkstitch.org/namespace">
<sodipodi:namedview
id="namedview87"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="4.8529402"
inkscape:cx="30.806067"
inkscape:cy="72.533348"
inkscape:current-layer="g144"
inkscape:lockguides="true"
showgrid="false">
<sodipodi:guide
position="184.94318,50.284091"
orientation="0,1"
inkscape:label="baseline"
id="guide87"
inkscape:locked="true" />
<sodipodi:guide
position="0,1638"
orientation="0,1"
inkscape:label="ascender"
id="guide88"
inkscape:locked="true" />
<sodipodi:guide
position="0,410"
orientation="0,1"
inkscape:label="decender"
id="guide91"
inkscape:locked="true" />
</sodipodi:namedview>
<metadata
id="metadata1">
Created by FontForge 20220308 at Thu Feb 6 13:00:30 2025
By Claudine
Hebrew layout intelligence copyright (c) 2003 & 2007 Ralph Hancock (http://www.hancock.dircon.co.uk/) and John Hudson (http://www.tiro.com), and licensed under the MIT/X11 License.
All other font software is copyright (c) 1997-2007, SIL International (http://www.sil.org/), and is licensed under the SIL Open Font License, version 1.1 (http://scripts.sil.org/OFL), with Reserved Font Names "SIL" and "Ezra".
This Font Software is licensed under the SIL Open Font License, Version 1.0. See the license informaation in the font. The text of the license is also available at: http://scripts.sil.org/OFL .
<inkstitch:min_stitch_len_mm>0.5</inkstitch:min_stitch_len_mm>
<inkstitch:collapse_len_mm>3.0</inkstitch:collapse_len_mm>
<inkstitch:inkstitch_svg_version>3</inkstitch:inkstitch_svg_version>
</metadata>
<defs
id="defs87">
<font
id="Shlomo-Bold"
horiz-adv-x="0"
horiz-origin-x="0"
horiz-origin-y="0"
vert-origin-x="512"
vert-origin-y="768"
vert-adv-y="1024">
<font-face
font-family="Shlomo Bold"
font-weight="400"
font-stretch="normal"
units-per-em="2048"
panose-1="2 0 4 0 0 0 0 0 0 0"
ascent="1638"
descent="-410"
bbox="-239 -827 1436 2140"
underline-thickness="20"
underline-position="-133"
unicode-range="U+000D-FEFF"
id="font-face1" />
<missing-glyph
id="missing-glyph1" />
<glyph
glyph-name="etnahta"
unicode="֑"
d="M401 -777q0 -47 -57 -47q-47 0 -47 47q0 91 -10 115q-20 50 -89 50q-65 0 -84 -50q-10 -25 -10 -115q0 -47 -47 -47q-57 0 -57 47q0 131 20 182q12 79 106 93v181q0 47 67 47q68 0 68 -47v-179q102 -12 117 -90q23 -51 23 -187z"
id="glyph1" />
<glyph
glyph-name="segolta"
unicode="֒"
d="M352 2040q0 -37 -27.5 -63.5t-64.5 -26.5q-38 0 -65 26.5t-27 63.5q0 38 27 65t65 27t65 -27t27 -65zM520 1726q0 -36 -28.5 -63t-65.5 -27q-38 0 -65 26.5t-27 63.5q0 39 27 66t65 27t66 -27.5t28 -65.5zM185 1728q0 -38 -27.5 -65t-65.5 -27t-65 27t-27 65t27 65.5 t65 27.5q37 0 65 -28t28 -65z"
id="glyph2" />
<glyph
glyph-name="shalshelet"
unicode="֓"
d="M364 1548h-364l199 166h-199l199 164h-199l301 254h63l-201 -168h221l-217 -166h217l-217 -166h197v-84z"
id="glyph3" />
<glyph
glyph-name="zaqefkatan"
unicode="֔"
d="M284 2042q0 -39 -28 -66.5t-66 -27.5t-64 27.5t-26 66.5q0 37 26 63.5t64 26.5t66 -26.5t28 -63.5zM284 1728q0 -38 -27.5 -65t-66.5 -27q-38 0 -64 27t-26 65t26 64.5t64 26.5t66 -27t28 -64z"
id="glyph4" />
<glyph
glyph-name="zaqefgadol"
unicode="֕"
d="M397 2042q0 -39 -27.5 -66.5t-66.5 -27.5q-37 0 -63.5 27.5t-26.5 66.5q0 37 26.5 63.5t63.5 26.5q39 0 66.5 -26.5t27.5 -63.5zM397 1728q0 -38 -27.5 -65t-66.5 -27q-37 0 -63.5 27t-26.5 65q0 37 26.5 64t63.5 27q39 0 66.5 -27t27.5 -64zM117 1636h-117v496h117v-496 z"
id="glyph5" />
<glyph
glyph-name="tipeha"
unicode="֖"
d="M237 -680q18 -18 18 -41q0 -56 -67 -56q-65 0 -125 96q-63 102 -63 230v121q0 47 47 47t47 -47v-95q0 -110 57 -179z"
id="glyph6" />
<glyph
glyph-name="revia"
unicode="֗"
d="M403 1936l-202 -202l-199 202l199 204z"
id="glyph7" />
<glyph
glyph-name="zarqa"
unicode="֘"
d="M724 1865q0 -86 -67.5 -142t-171.5 -56q-76 0 -140 69q-4 5 -93 129q-50 69 -93 69q-31 0 -54.5 -25t-23.5 -59q0 -39 31 -70q14 -14 14 -32q0 -47 -50 -46q-35 1 -60 50q-20 41 -20 79q0 86 67.5 142t171.5 56q76 0 140 -69q4 -5 93 -130q50 -69 93 -69q31 0 54.5 25.5 t23.5 59.5q0 39 -31 70q-14 14 -14 32q0 47 50 46q35 -1 60 -50q20 -41 20 -79z"
id="glyph8" />
<glyph
glyph-name="pashta"
unicode="֙"
d="M285 1692q0 -47 -47 -47t-47 47v95q0 110 -57 179q-42 48 -115 66q-19 19 -19 41q0 56 67 56q95 10 155 -86q63 -102 63 -230v-121z"
id="glyph9" />
<glyph
glyph-name="yetiv"
unicode="֚"
horiz-adv-x="2"
d="M1436 -710l-68 -94l-378 264l378 266l68 -94l-244 -172z"
id="glyph10" />
<glyph
glyph-name="tevir"
unicode="֛"
d="M353 -492q0 -128 -93 -230q-130 -56 -195 -56q-67 0 -67 56q0 43 48 61q83 -2 125 16q87 69 87 179v124q0 48 48 48q47 0 47 -48v-150zM185 -491q0 -38 -28 -65.5t-66 -27.5q-37 0 -64 27.5t-27 65.5t26.5 64.5t64.5 26.5t66 -27t28 -64z"
id="glyph11" />
<glyph
glyph-name="gereshac"
unicode="֜"
d="M237 2032l-86 -76q-57 -69 -57 -179v-95q0 -47 -47 -47t-47 47v121q0 128 63 230q60 96 125 96q67 0 67 -56q0 -23 -18 -41z"
id="glyph12" />
<glyph
glyph-name="gereshmuqdam"
unicode="֝"
horiz-adv-x="2"
d="M815 2032l-86 -76q-57 -69 -57 -179v-95q0 -47 -47 -47t-47 47v121q0 128 63 230q60 96 125 96q67 0 67 -56q0 -23 -18 -41z"
id="glyph13" />
<glyph
glyph-name="gershayimac"
unicode="֞"
d="M455 2032q-43 -38 -85 -76q-57 -69 -57 -179v-95q0 -47 -47 -47t-47 47v121q0 128 63 230q60 96 125 96q67 0 67 -56q0 -22 -19 -41zM238 2032q-43 -38 -85 -76q-57 -69 -57 -179v-95q0 -47 -48 -47q-47 0 -47 47v121q0 128 63 230q60 96 125 96q67 0 67 -56 q0 -23 -18 -41z"
id="glyph14" />
<glyph
glyph-name="qarneyparah"
unicode="֟"
d="M421 1916q0 -38 -22 -103l120 -139l120 139q-30 66 -20 103q0 85 59.5 145t145.5 60q85 0 146 -60t61 -145t-61 -146t-146 -61q-74 0 -135 52l-170 -170l-170 170q-61 -52 -135 -52q-86 0 -146.5 60.5t-60.5 146.5q0 85 60.5 145t146.5 60q85 0 146 -60t61 -145z M980 1916q-10 73 -47 109.5t-109 46.5q-72 -10 -109 -46.5t-47 -109.5q10 -72 47 -109t109 -47q72 10 109 47t47 109zM370 1916q-10 73 -47 109.5t-109 46.5q-74 -10 -110 -46.5t-46 -109.5q10 -72 46 -109t110 -47q72 10 109 47t47 109z"
id="glyph15" />
<glyph
glyph-name="telishagedola"
unicode="֠"
d="M191 1714l-61 -162l-71 8l62 172q-60 22 -88 75t-28 119q0 85 60.5 145t146.5 60q85 0 145 -60t60 -145q0 -86 -60 -146.5t-125 -70.5q-6 0 -41 5zM366 1926q-10 73 -46 109.5t-108 46.5q-72 -10 -109 -46.5t-47 -109.5q10 -72 47 -109t109 -47q72 10 108 47t46 109z"
id="glyph16" />
<glyph
glyph-name="pazer"
unicode="֡"
d="M369 1948q0 -79 -68 -125q-44 -43 -165 -43v-145h-133v494h133v-272q120 0 99 117l-1 155h135v-181z"
id="glyph17" />
<glyph
glyph-name="munah"
unicode="֣"
d="M503 -797h-503v131h374v372h129v-503z"
id="glyph18" />
<glyph
glyph-name="mahapakh"
unicode="֤"
d="M446 -710l-68 -94l-378 264l378 266l68 -94l-244 -172z"
id="glyph19" />
<glyph
glyph-name="merkha"
unicode="֥"
d="M269 -461q0 -128 -63 -230q-60 -97 -125 -97q-67 0 -67 56q0 23 18 41q43 38 85 76q57 69 57 179v95q0 47 48 47q47 0 47 -47v-120z"
id="glyph20" />
<glyph
glyph-name="merkhakefula"
unicode="֦"
d="M473 -461q0 -128 -63 -230q-60 -97 -125 -97q-67 0 -67 56q0 23 18 41q43 38 85 76q57 69 57 179v95q0 47 48 47q47 0 47 -47v-120zM255 -461q0 -128 -63 -230q-60 -97 -125 -97q-67 0 -67 56q0 22 19 41q43 38 85 76q57 69 57 179v95q0 47 47 47t47 -47v-120z"
id="glyph21" />
<glyph
glyph-name="darga"
unicode="֧"
d="M334 -685q20 -29 20 -56q0 -54 -55 -54h-256q-47 0 -47 47t47 47h178l-203 297q-18 27 -18 55q0 57 59 57h253q47 0 47 -50q0 -49 -47 -49h-182z"
id="glyph22" />
<glyph
glyph-name="qadma"
unicode="֨"
d="M365 1692q0 -47 -47 -47t-47 47v95q0 110 -57 179q-42 48 -115 66q-19 19 -19 41q0 56 67 56q95 10 155 -86q63 -102 63 -230v-121z"
id="glyph23" />
<glyph
glyph-name="telishaqetana"
unicode="֩"
d="M332 1600l-71 -18l-31 132q-25 -5 -37 -5q-65 0 -125 60.5t-60 146.5q0 85 60 145t145 60q86 0 146.5 -60t60.5 -145q0 -66 -29.5 -110t-90.5 -74zM369 1916q-10 73 -47 109.5t-109 46.5q-72 -10 -108 -46.5t-46 -109.5q10 -72 46 -109t108 -47q72 10 109 47t47 109z"
id="glyph24" />
<glyph
glyph-name="yerahbenyomo"
unicode="֪"
d="M241 -747q0 -47 -48 -47q-47 0 -47 47v151q-94 14 -126 93q-20 51 -20 162q0 47 47 47t47 -47q0 -90 10 -115q19 -50 94 -50q79 0 99 50q10 24 10 115q0 47 47 47t47 -47q0 -116 -23 -167q-35 -78 -137 -90v-149z"
id="glyph25" />
<glyph
glyph-name="ole"
unicode="֫"
d="M447 1699l-68 -96l-379 266l379 266l68 -96l-244 -170z"
id="glyph26" />
<glyph
glyph-name="iluy"
unicode="֬"
d="M498 1624h-502v129h373v375h129v-504z"
id="glyph27" />
<glyph
glyph-name="dehi"
unicode="֭"
horiz-adv-x="2"
d="M1220 -680q18 -18 18 -41q0 -56 -67 -56q-65 0 -125 96q-63 102 -63 230v121q0 47 47 47t47 -47v-95q0 -110 57 -179z"
id="glyph28" />
<glyph
glyph-name="zinor"
unicode="֮"
d="M489 1865q0 -86 -67.5 -142t-171.5 -56q-76 0 -140 69q-4 5 -93 129q-50 69 -93 69q-31 0 -54.5 -25t-23.5 -59q0 -39 31 -70q14 -14 14 -32q0 -47 -50 -46q-35 1 -60 50q-20 41 -20 79q0 86 67.5 142t171.5 56q76 0 140 -69q4 -5 93 -130q50 -69 93 -69q31 0 54.5 25.5 t23.5 59.5q0 39 -31 70q-14 14 -14 32q0 47 50 46q35 -1 60 -50q20 -41 20 -79z"
id="glyph29" />
<glyph
glyph-name="masoracircle"
unicode="֯"
d="M213 2126q87 0 150 -62.5t63 -150.5t-63 -150.5t-150 -62.5q-89 0 -151 62.5t-62 150.5t62 150.5t151 62.5zM213 2067q-65 0 -109.5 -45.5t-44.5 -108.5t44.5 -108.5t109.5 -45.5q62 0 106.5 45.5t44.5 108.5t-44.5 108.5t-106.5 45.5z"
id="glyph30" />
<glyph
glyph-name="sheva"
unicode="ְ"
d="M247 -274q-10 -58 -38.5 -86t-86.5 -38q-58 10 -85 38t-37 86q10 57 37 83.5t85 36.5q58 -10 86.5 -36.5t38.5 -83.5zM247 -587q-10 -57 -39 -84.5t-86 -37.5q-58 10 -85 37.5t-37 84.5q10 58 37 84t85 36q58 -10 86.5 -36t38.5 -84z"
id="glyph31" />
<glyph
glyph-name="hatafsegol"
unicode="ֱ"
d="M914 -274q-10 -58 -37.5 -86t-84.5 -38q-58 10 -85 38t-37 86q10 57 37 83.5t85 36.5q57 -10 84.5 -36.5t37.5 -83.5zM914 -587q-10 -57 -37.5 -84.5t-84.5 -37.5q-58 10 -85 37.5t-37 84.5q10 58 36.5 84t85.5 36q57 -10 84.5 -36t37.5 -84zM580 -276q-10 -56 -38.5 -84 t-85.5 -38q-58 10 -84 37.5t-36 84.5q10 59 36 85.5t84 36.5q57 -10 85.5 -37t38.5 -85zM244 -276q-10 -57 -38 -84.5t-86 -37.5q-56 10 -83 37.5t-37 84.5q10 58 36.5 85t83.5 37q59 -10 86.5 -37t37.5 -85zM412 -587q-10 -57 -38 -84.5t-86 -37.5q-57 10 -83.5 37.5 t-36.5 84.5q10 58 36.5 84t83.5 36q59 -10 86.5 -36t37.5 -84z"
id="glyph32" />
<glyph
glyph-name="hatafpatah"
unicode="ֲ"
d="M773 -264q-10 -58 -37.5 -86t-84.5 -38q-58 10 -84 37.5t-36 86.5q10 58 36 84t84 36q57 -10 84.5 -36.5t37.5 -83.5zM773 -577q-10 -57 -37.5 -84.5t-84.5 -37.5q-58 10 -84 37.5t-36 84.5q10 58 36 84t84 36q57 -10 84.5 -36t37.5 -84zM448 -288h-448v134h448v-134z "
id="glyph33" />
<glyph
glyph-name="hatafqamats"
unicode="ֳ"
d="M773 -264q-10 -58 -37.5 -86t-84.5 -38q-58 10 -84 37.5t-36 86.5q10 58 36 84t84 36q57 -10 84.5 -36.5t37.5 -83.5zM773 -577q-10 -57 -37.5 -84.5t-84.5 -37.5q-58 10 -84 37.5t-36 74.5q10 68 36 94t84 36q57 -10 84.5 -36t37.5 -84zM337 -583q0 -40 -28 -68t-88 -28 q-61 0 -89.5 28t-28.5 68q0 49 90 295h-193v134h448v-134h-201q90 -246 90 -295z"
id="glyph34" />
<glyph
glyph-name="hiriq"
unicode="ִ"
d="M247 -274q-10 -58 -38.5 -86t-86.5 -38q-58 10 -85 38t-37 86q10 57 37 83.5t85 36.5q58 -10 86.5 -36.5t38.5 -83.5z"
id="glyph35" />
<glyph
glyph-name="tsere"
unicode="ֵ"
d="M578 -276q-10 -57 -38 -84.5t-86 -37.5q-57 10 -83.5 37.5t-36.5 84.5q10 58 36.5 85t83.5 37q58 -10 86 -37t38 -85zM242 -276q-10 -57 -37 -84.5t-85 -37.5q-58 10 -84 37.5t-36 84.5q10 59 36 85.5t84 36.5q58 -10 85 -36.5t37 -85.5z"
id="glyph36" />
<glyph
glyph-name="segol"
unicode="ֶ"
d="M578 -276q-10 -57 -38 -84.5t-86 -37.5q-57 10 -83.5 37.5t-36.5 84.5q10 58 36.5 85t83.5 37q58 -10 86 -37t38 -85zM242 -276q-10 -57 -37 -84.5t-85 -37.5q-58 10 -84 37.5t-36 84.5q10 59 36 85.5t84 36.5q58 -10 85 -36.5t37 -85.5zM410 -587q-10 -57 -37 -84.5 t-85 -37.5q-57 10 -83.5 37.5t-36.5 84.5q10 58 36.5 84t83.5 36q59 -10 85.5 -36t36.5 -84z"
id="glyph37" />
<glyph
glyph-name="patah"
unicode="ַ"
d="M449 -298h-449v144h449v-144z"
id="glyph38" />
<glyph
glyph-name="qamats"
unicode="ָ"
d="M338 -583q0 -40 -29 -68t-90 -28q-59 0 -87.5 28t-28.5 68q0 59 90 285h-193v144h449v-144h-201q90 -246 90 -285z"
id="glyph39" />
<glyph
glyph-name="holam"
unicode="ֹ"
d="M215 1730q-20 -79 -24.5 -88.5t-84.5 -29.5q-69 20 -77.5 29t-28.5 89q20 90 28 93.5t78 23.5q70 -20 79.5 -28.5t29.5 -88.5z"
id="glyph40" />
<glyph
glyph-name="holamleft"
unicode="ֺ"
d="M565 1730q-20 -79 -24.5 -88.5t-84.5 -29.5q-69 20 -77.5 29t-28.5 89q20 90 28 93.5t78 23.5q70 -20 79.5 -28.5t29.5 -88.5z"
id="glyph41" />
<glyph
glyph-name="qubuts"
unicode="ֻ"
d="M226 -253q-10 -54 -35.5 -79t-78.5 -35q-54 10 -78 35t-34 79q10 53 34 77t78 34q54 -10 79 -34t35 -77zM398 -479q-10 -54 -35 -79t-79 -35q-53 10 -77.5 35t-34.5 79q10 53 34 77t78 34q54 -10 79 -34t35 -77zM573 -715q-10 -54 -35 -78t-79 -34q-54 10 -78 34t-34 70 q10 61 34 85t78 34q54 -10 79 -34t35 -77z"
id="glyph42" />
<glyph
glyph-name="dagesh"
unicode="ּ"
d="M175 678q0 -60 -29.5 -88t-69.5 -28q-50 0 -78 28t-28 88q0 40 28 68t78 28q40 0 69.5 -28t29.5 -68z"
id="glyph43" />
<glyph
glyph-name="meteg"
unicode="ֽ"
d="M167 -789h-167v495h167v-495z"
id="glyph44" />
<glyph
glyph-name="maqaf"
unicode="־"
horiz-adv-x="952"
d="M862 958h-772v396h772v-396z"
id="glyph45" />
<glyph
glyph-name="rafe"
unicode="ֿ"
d="M560 1506h-415v115h415v-115z"
id="glyph46" />
<glyph
glyph-name="paseq"
unicode="׀"
horiz-adv-x="316"
d="M219 0h-147v1358h147v-1358z"
id="glyph47" />
<glyph
glyph-name="shindot"
unicode="ׁ"
horiz-adv-x="2"
d="M1350 1608q-10 -57 -38.5 -84.5t-86.5 -37.5q-58 10 -85 37t-37 85q10 57 37 84t85 37q58 -10 86.5 -37t38.5 -84z"
id="glyph48" />
<glyph
glyph-name="sindot"
unicode="ׂ"
horiz-adv-x="2"
d="M410 1608q-10 -57 -38.5 -84.5t-86.5 -37.5q-58 10 -85 37t-37 85q10 57 37 84t85 37q58 -10 86.5 -37t38.5 -84z"
id="glyph49" />
<glyph
glyph-name="sofpasuq"
unicode="׃"
horiz-adv-x="813"
d="M483 166q-10 -163 -188 -171q-178 8 -179 181q1 210 179 220q178 0 188 -230zM483 916q0 -210 -188 -211q-178 1 -179 211q8 188 179 190q181 -2 188 -190z"
id="glyph50" />
<glyph
glyph-name="upperdot"
unicode="ׄ"
d="M449 1741q-6 -149 -150 -153q-144 -6 -151 153q7 146 151 152q144 -6 150 -152z"
id="glyph51" />
<glyph
glyph-name="alef"
unicode="א"
horiz-adv-x="1221"
d="M1143 263q0 -116 -65 -227q-55 -69 -91 -69q-18 0 -18 29q0 4 8 24t8 35q0 19 -56 94l-102 102l-501 501q-56 -53 -56 -117q0 -67 123 -194.5t123 -234.5q0 -51 -54 -128.5t-132 -77.5h-267l11 51q51 17 51 88q0 35 -19.5 146.5t-19.5 209.5q0 157 129 367l1 2 q-79 77 -110 135q-36 70 -36 169q0 96 63 207q54 69 90 69q19 0 19 -29q0 -3 -8.5 -13t-8.5 -24q0 -20 56 -94q51 -51 102 -101l415 -389l59 188q-106 28 -131 57q-17 35 -17 91q0 97 71 252q57 62 97 62q18 0 18 -19q0 -4 -5 -9t-5 -19q0 -49 108 -57q149 -4 149 -198 q-10 -140 -44 -164q-34 -42 -74 -42q-12 0 -20 4q-20 5 -23 1l-54 -263l56 -78q90 -111 122 -168q38 -70 38 -169z"
id="glyph52" />
<glyph
glyph-name="bet"
unicode="ב"
horiz-adv-x="1362"
d="M1272 421l-144 -421h-1079l168 422l785 2l3 413q0 99 -168 79h-615q-85 72 -85 196q2 270 2 301t57 31q12 0 29.5 -43t70.5 -43h566q281 0 281 -297l-15 -315q-8 -158 -36 -326z"
id="glyph53" />
<glyph
glyph-name="gimel"
unicode="ג"
horiz-adv-x="741"
d="M686 248q0 -248 -29 -248q-20 0 -22 27q-5 47 -63 232q-54 169 -77 309q-7 -31 -10.5 118.5t-5.5 190.5q8 51 -137 59l-100 10q-97 -2 -125 116q-18 50 -18 171q20 211 77 211q12 0 29.5 -43t70.5 -43h62q278 0 278 -297q0 -51 -10 -103.5t-10 -134.5q0 -59 16.5 -114.5 t78.5 -206.5q-5 -163 -5 -254zM497 600q-126 -267 -153 -534l-339 -66l70 468q236 -109 422 132z"
id="glyph54" />
<glyph
glyph-name="dalet"
unicode="ד"
horiz-adv-x="1380"
d="M1280 1178q0 -72 -12.5 -157.5t-110.5 -92.5q-117 -138 -71 -315q42 -147 68 -220.5t-20 -228.5q-9 -22 -65 -93t-72 -71q-47 0 -47 43q0 112 -33 599q-3 78 71 288l-744 2q-95 34 -110 130q-28 40 -28 171q0 211 58 211q10 0 28.5 -43t71.5 -43h881q59 0 97 -47t38 -133 z"
id="glyph55" />
<glyph
glyph-name="he"
unicode="ה"
horiz-adv-x="1380"
d="M1280 1168q0 -75 -41.5 -156.5t-87.5 -81.5l-4 -2l28 -283q47 -252 19 -481q1 -22 -55 -93t-72 -71q-37 0 -37 43q0 176 -33 883l-757 4q-79 0 -106 122q-28 50 -28 171q0 221 58 221q10 0 28.5 -43t71.5 -43h881q59 0 97 -47t38 -143zM318 327q-8 -179 -59 -231 q-11 -22 -39 -52q-13 -24 -64 -44q-39 0 -9 31q0 35 -4.5 62.5t-7.5 54.5q-17 44 -17 163q0 35 2 96t18 117q14 71 85 136q39 57 66 67q56 20 56 2q-20 -28 -29 -58.5t1 -68.5q0 -30 3.5 -104t-2.5 -171z"
id="glyph56" />
<glyph
glyph-name="vav"
unicode="ו"
horiz-adv-x="690"
d="M567 164q0 -23 -36.5 -93.5t-62.5 -70.5q-44 0 -44 43q0 27 4.5 369.5t4.5 398.5q0 117 -87 117h-127q-79 0 -109 54q-28 80 -28 201q0 261 55 261q12 0 30 -43t71 -43h127q200 0 200 -297l11 -448q21 -205 -9 -449z"
id="glyph57" />
<glyph
glyph-name="zayin"
unicode="ז"
horiz-adv-x="707"
d="M637 1077q0 -86 -38 -159q-34 -64 -60 -64q-3 0 -3 6q-2 5 -4 11.5t-2 7.5q0 12 -27.5 19t-83.5 20q-49 2 -49 -63q0 -18 56 -197.5t26 -278.5q0 -113 -54 -249q-23 -130 -53 -130q-52 0 -52 23q0 -2 -3.5 49t-3.5 88q0 21 -10 177t-60 312q-10 73 0 134t24 161l-15 2 q-52 7 -92.5 58t-40.5 171q0 104 33.5 186.5t64.5 82.5q21 0 21 -21q0 -6 -3 -11.5t-3 -10.5q0 -28 198 -43q234 -18 234 -281z"
id="glyph58" />
<glyph
glyph-name="het"
unicode="ח"
horiz-adv-x="1380"
d="M1280 1198q0 -165 -39.5 -212.5t-51.5 -57.5h-8l7 -387q13 -178 6 -377q1 -22 -55 -93t-72 -71q-57 0 -57 43q0 176 -7 885h-549q-46 -1 -86 -119q-20 -41 -29 -216t-4 -229.5t0 -120t-6 -87.5q-11 -22 -59 -102q-53 -54 -114 -54q-39 0 -39 41q0 25 14 53q3 66 3 232 q0 33 -5 167.5t15 190.5q60 211 126 244h-56q-49 0 -80 54q-28 140 -28 261q0 201 58 201q10 0 28.5 -43t71.5 -43h881q59 0 97 -47t38 -113z"
id="glyph59" />
<glyph
glyph-name="tet"
unicode="ט"
horiz-adv-x="1356"
d="M1273 719q0 -150 -169 -719h-938q-8 138 -32 329q-25 198 -25 316q0 200 103 281q-67 33 -73 82q-22 40 -22 147q0 130 42 237q35 52 56 52t21 -21q0 -6 -3.5 -11.5t-3.5 -10.5q0 -13 47 -28q86 -30 132 -50q69 -31 91.5 -65.5t24.5 -202.5q0 -82 -45 -166 q-38 -70 -53 -70q-13 1 -14 1l2 1.5t4 20.5q0 14 -87 37q-90 -32 -90 -138q-20 -87 18 -220q31 -85 34 -101h755q76 151 76 188q30 192 -39 237q-79 85 -198 85q-110 0 -145 -87q-34 -38 -34 -139q0 -15 -2 -10t8 -14q0 -18 -13 -36.5t-58 -18.5q-57 0 -57 141q0 63 42 195 q48 150 58 235q3 21 3 44q0 25 -4 61.5t-4 47.5q0 23 9 33q7 7 39 7q77 0 173 -31q121 -38 190 -105q100 -98 136 -207q27 -79 47 -204q0 -20 -1 -60.5t-1 -62.5z"
id="glyph60" />
<glyph
glyph-name="yod"
unicode="י"
horiz-adv-x="691"
d="M580 1031q0 -147 -40 -302q-61 -121 -122 -121q-28 0 -33 15v32q60 76 55.5 132.5t-4.5 53.5q0 85 -136 87h-69q-79 0 -110 54q-29 90 -29 211q0 251 60 251q10 0 28.5 -43t71.5 -43h59q267 0 269 -327z"
id="glyph61" />
<glyph
glyph-name="finalkaf"
unicode="ך"
horiz-adv-x="1380"
d="M1280 1158q0 -132 -37.5 -179.5t-87.5 -50.5l29 -971q25 -166 10 -351q1 -21 -55 -91t-72 -70q-67 0 -67 43q0 52 15 538q-14 838 -18 902h-683q-79 0 -110 54q-28 50 -28 261q0 201 58 201q10 0 28.5 -43t71.5 -43h811q59 0 97 -47t38 -153z"
id="glyph62" />
<glyph
glyph-name="kaf"
unicode="כ"
horiz-adv-x="1262"
d="M1198 678q0 -392 -168 -544q-148 -134 -500 -134h-501l164 420h509q171 0 285 54q78 118 78 214q0 240 -363 240h-446q-79 0 -109 54q-28 50 -28 221q0 241 57 241q12 0 29.5 -43t70.5 -43h459q246 0 352 -150q111 -156 111 -530z"
id="glyph63" />
<glyph
glyph-name="lamed"
unicode="ל"
horiz-adv-x="1343"
d="M1225 782q0 -222 -219 -381q-183 -143 -161 -218q10 -74 -90 -148q-81 -55 -134 -55q-37 0 -64 27q-31 30 -31 77q-20 69 47 149q74 92 201 168q179 96 253 176q22 59 32 108q-10 69 -4 163q-46 78 -139 78h-613q-127 0 -172 50q-39 44 -39 159l30 261q20 144 30 180.5 t41 119.5q16 54 16 82q1 29 1 38q0 35 -59 53.5t-59 69.5q0 98 34 150q29 44 44 44q16 0 16 -10q0 -2 -2 -8.5t-2 -8.5q0 -9 44 -24q56 -19 112 -40q44 -35 44 -91q0 -40 -25 -77q-34 -49 -48 -91q-35 -87 -35 -207v-32q0 -148 43 -165q17 -21 69 -21h622q152 0 172 -127 l37 -234q8 -52 8 -215z"
id="glyph64" />
<glyph
glyph-name="finalmem"
unicode="ם"
horiz-adv-x="1350"
d="M378 924q-118 -40 -114 -170l12 -334h827l-17 397q-2 69 -39 92q-30 19 -106 19zM1231 0h-1104v715q0 163 89 213q-43 3 -71 47q-26 60 -26 178q0 291 57 291q12 0 29.5 -43t70.5 -43h676q279 0 279 -297v-1061z"
id="glyph65" />
<glyph
glyph-name="mem"
unicode="מ"
horiz-adv-x="1329"
d="M1229 719q0 -209 -125 -719h-655l75 420h504q37 83 37 151q30 146 -73 252.5t-298 106.5q-158 0 -292 -125t-124 -262q-10 -6 -1.5 -85t8.5 -139q0 -197 -33 -233q-88 -86 -96 -86q-39 0 -39 41q0 25 14 53q-7 66 -7 232q0 32 -5 122.5t5 147.5q10 154 143 287 q17 18 63 56l-71 8q-31 5 -68 21q-51 32 -67 78q-13 38 -13 129q20 149 83 217q48 52 74 52q19 0 19 -21q0 -6 -2 -11.5t-2 -10.5q0 -25 137 -72q71 -24 96 -61t25 -123q0 -43 -75 -118q109 51 155 64q55 22 65 56q20 44 36.5 113t26.5 92q10 66 83 66q43 0 149 -44 q89 -50 136 -123q113 -153 113 -447q0 -18 -1 -47v-38z"
id="glyph66" />
<glyph
glyph-name="finalnun"
unicode="ן"
horiz-adv-x="752"
d="M567 1106q0 -61 -72 -206q-70 -141 -65 -236l30 -479q44 -269 29 -579q2 -21 -54.5 -91t-72.5 -70q-44 0 -44 43l-20 1127q-10 116 12 179t22 58q0 38 -72 55q-38 12 -46 15q-94 21 -122 77q-9 60 -9 152q0 161 36 228q29 53 48 53q18 0 18 -21q0 -6 -2 -12t-2 -10 q0 -13 83 -30q149 -25 171 -42q94 -22 117 -82q15 -43 15 -129z"
id="glyph67" />
<glyph
glyph-name="nun"
unicode="נ"
horiz-adv-x="717"
d="M662 272q0 -124 -41 -272h-566l62 420h367q-6 108 -6 203q0 73 1.5 117t1.5 77q-10 131 -175 111h-50q-79 0 -109 54q-28 50 -28 171q0 291 57 291q12 0 29.5 -43t70.5 -43h62q278 0 278 -297q0 -51 -12 -116.5t-12 -147.5q0 -63 35 -252.5t35 -272.5z"
id="glyph68" />
<glyph
glyph-name="samekh"
unicode="ס"
horiz-adv-x="1274"
d="M523 928q-130 -4 -215 -115q-21 -39 -31 -63q-30 -174 43 -260q97 -81 263 -81h119q162 0 203 35q100 52 125 108t35 126q0 156 -54 183q-83 77 -279 67h-209zM1198 678q0 -312 -127 -495q-145 -210 -434 -210q-255 0 -382 172q-114 152 -114 418q0 293 122 375h-19 q-79 0 -110 54q-28 50 -28 151q0 301 58 301q10 0 28.5 -43t71.5 -43h471q228 0 347 -178q116 -174 116 -502z"
id="glyph69" />
<glyph
glyph-name="ayin"
unicode="ע"
horiz-adv-x="1213"
d="M1150 1133q0 -66 -41 -164q-63 -151 -86 -228q-29 -97 -44 -241q-15 -137 -28 -174q-35 -102 -85 -144q-74 -92 -255 -122l-543 -90l50 388l288 47q32 1 42 16q10 89 -97 181.5t-77 194.5q10 101 20 135q-93 22 -110 78q-19 40 -19 181q0 122 36 188q28 53 48 53 q18 0 18 -21q0 -6 -2 -12t-2 -10q0 -14 58 -30q120 -34 145 -42q68 -23 93 -63q21 -35 21 -179q0 -82 -33 -148q-27 -73 -40 -73q-23 0 -23 24v-12q0 20 -41 28q-48 9 -66 17q-15 0 -15 -34q-20 -41 81 -123.5t99 -213.5q-20 -105 -10 -118l93 18q136 16 184 28 q35 30 69 150l43 150q3 3 12 21q12 48 12 51q10 23 -34 54q-9 13 -84 36t-100 62q-13 44 -13 139q0 181 43 248q34 53 55 53q18 0 18 -21q0 -6 -2 -12t-2 -10q0 -26 137 -72q187 -63 187 -184z"
id="glyph70" />
<glyph
glyph-name="finalpe"
unicode="ף"
horiz-adv-x="1262"
d="M1192 -394q0 -21 -62 -91t-77 -70q-25 0 -45 43q0 27 20 637t20 686q0 117 -178 117h-522q-95 -48 -105 -287q0 -36 26 -45q15 -5 65 -5q19 0 73.5 -1.5t108.5 -1.5q49 0 88 -27q45 -41 45 -97q0 -65 -46 -105q-39 -34 -87 -34h-272q-55 0 -86 -43t-39 -43q-17 0 -17 20 q0 11 13.5 69t13.5 112q0 30 9 171t9 152q0 54 65 165q-37 1 -67 56q-26 49 -26 169q0 291 57 291q12 0 29.5 -43t70.5 -43h625q288 0 289 -297l1 -577l11 -489q20 -185 -10 -389z"
id="glyph71" />
<glyph
glyph-name="pe"
unicode="פ"
horiz-adv-x="1262"
d="M649 624q0 5 -46 -45q-39 -24 -87 -24h-272q-45 0 -76 -28t-39 -28q-17 0 -17 20q0 11 13.5 69t3.5 112q0 -10 -6 21t-6 42q0 104 85 165q-27 1 -57 56q-26 49 -26 169q0 291 57 291q12 0 29.5 -43t70.5 -43h463q258 0 357 -156q92 -145 92 -512v-277l-111 -413h-1024 l88 420h909l10 92q20 279 -41 313q-56 103 -343 103h-328q-95 -38 -115 -127q0 -16 16 -25q15 -5 85 -5q19 0 73.5 -1.5t108.5 -1.5q49 0 88 -37q45 -41 45 -107z"
id="glyph72" />
<glyph
glyph-name="finaltsadi"
unicode="ץ"
horiz-adv-x="1210"
d="M563 1106q0 -61 -72 -206q-60 -141 -55 -236l2 -238q47 148 153 320q106 157 150 211q-21 26 -29 37q-32 33 -32 78q0 31 16 141q24 119 73 185q40 54 56 52q21 -3 17 -25q-3 -5 -8 -20q-4 -19 166 -115q111 -48 121 -131q0 -24 1.5 -54.5t-16.5 -82.5q-23 -82 -70 -170 q-31 -76 -53 -74q-11 4 -18 6q0 2 2 9q2 27 -112 93q-65 -55 -197 -276q-136 -245 -177 -440l37 -206q33 -204 16 -407q1 -21 -79.5 -91.5t-96.5 -70.5q-17 0 -22 14q-2 8 -2 27v1209q-20 76 -13 144t7 73q0 38 -62 65q-8 2 -26 5q-84 21 -112 77q-19 30 -19 122 q0 151 36 248q29 53 48 53q20 0 20 -21q0 -6 -3 -12t-3 -10q0 -13 83 -30q119 -25 171 -42q64 -22 86 -82q16 -43 16 -129z"
id="glyph73" />
<glyph
glyph-name="tsadi"
unicode="צ"
horiz-adv-x="1313"
d="M1210 370q0 -61 -53 -195q-28 -62 -55 -175h-996l105 410h760q17 0 17 9q0 -10 -17 0l-383 167q-137 26 -137 138l-10 172q0 32 -45 32h-140q-79 0 -109 54q-28 50 -28 171q0 291 57 291q11 0 28.5 -43t71.5 -43h107q166 0 166 -205v-217q-10 -143 104 -162l204 -78 l27 213q-95 32 -106.5 72.5t-11.5 149.5q0 181 37 248q28 53 47 53q18 0 18 -21q0 -6 -2 -12t-2 -10q0 -14 58 -30q120 -34 145 -42q68 -23 93 -63q22 -35 22 -199q0 -83 -33 -177q-29 -81 -41 -81q-11 0 -21 2v9q0 46 -120 71l7 -231q118 -57 186 -119q50 -62 50 -159z"
id="glyph74" />
<glyph
glyph-name="qof"
unicode="ק"
horiz-adv-x="1247"
d="M1184 758q-10 -260 -86 -347q-70 -48 -303 -130q-151 -53 -223 -102q-1 -40 -12 -110q-25 -71 -134 -71q-43 0 -43 61q-20 87 58 187q96 114 360 180q115 46 155 67q82 32 82 142q0 180 -67 223q-63 70 -166 70h-549q-79 0 -109 54q-28 50 -28 171q0 291 57 291 q12 0 29.5 -43t70.5 -43h574q165 0 237 -101q97 -135 97 -499zM287 756q0 -5 -20 -69.5t-30 -164.5q0 -188 22 -357.5t22 -283.5q0 -206 -29 -346q-75 -130 -100 -130q-53 0 -53 60q10 64 22 191.5t12 281.5q0 67 -12 278t-12 243q0 134 72 240q62 92 82 92q24 0 24 -35z "
id="glyph75" />
<glyph
glyph-name="resh"
unicode="ר"
horiz-adv-x="1381"
d="M1221 164q0 -23 -47 -93.5t-72 -70.5q-55 0 -55 43q0 27 14 344.5t14 423.5q0 117 -179 117h-652q-79 0 -110 54q-28 50 -28 171q0 291 58 291q10 0 28.5 -43t71.5 -43h676q278 0 279 -297l1 -448l11 -225q10 -102 -10 -224z"
id="glyph76" />
<glyph
glyph-name="shin"
unicode="ש"
horiz-adv-x="1430"
d="M1341 1145q0 -153 -87 -396q-36 -101 -171 -415q-102 -236 -120 -334h-804q-16 123 -29 365q12 229 2 358q-10 164 5 215q-41 22 -56 58q-13 48 -13 139q0 190 43 257q33 52 55 52q18 0 18 -21q0 -6 -3 -11.5t-3 -10.5q0 -25 139 -72q74 -25 97 -67q18 -34 18 -197 q0 -82 -45 -166q-38 -70 -53 -70q-12 0 -12 7q0 3 2 5t2 11q0 4 -12.5 10t-40.5 25q-6 2 -26 17q13 -9 3 -101q0 -78 19 -240q-3 -144 44 -143h31q147 221 256 512q-46 21 -64 85q-14 29 -14 118q0 190 43 257q34 52 56 52q18 0 18 -21q0 -6 -2 -11.5t-2 -10.5 q0 -25 137 -72q72 -24 95 -68q20 -35 20 -196q0 -82 -46 -166q-38 -70 -53 -70q-12 0 -12 7q0 3 2 5t2 1q0 13 -13 20q-9 4 -51 31q-136 -295 -217 -473h442q25 15 149 271q49 85 49 138q0 21 -26 27q-23 -1 -51 18q-30 23 -56 71q-23 34 -23 130q0 250 43 317q33 52 53 52 q21 0 21 -21q0 -6 -3 -11.5t-3 -10.5q0 -25 139 -72q67 -23 91 -71q17 -37 17 -113z"
id="glyph77" />
<glyph
glyph-name="tav"
unicode="ת"
horiz-adv-x="1348"
d="M1245 164q2 -23 -42.5 -93.5t-59.5 -70.5q-55 0 -55 43q0 16 -18 357t-18 411q0 117 -190 117h-472q-42 -33 -72 -204q-10 -86 77 -229t77 -209q0 -151 -46 -221q-43 -65 -109 -65h-294l59 420h144q-31 24 -29 86q-25 87 -25 132q10 88 35 223q1 12 9 37l18 40 q-59 0 -100 44q-28 50 -28 171q0 291 58 291q10 0 28.5 -43t71.5 -43h649q256 0 275 -297l29 -448l24 -225q17 -92 4 -224z"
id="glyph78" />
<glyph
glyph-name="vavdbl"
unicode="װ"
horiz-adv-x="1217"
d="M1144 164q0 -23 -36.5 -93.5t-62.5 -70.5q-44 0 -44 43q0 27 4.5 369.5t4.5 398.5q0 117 -87 117h-127q-79 0 -109 54q-28 80 -28 201q0 261 55 261q12 0 30 -43t71 -43h127q200 0 200 -297l11 -448q21 -205 -9 -449zM567 164q0 -23 -36.5 -93.5t-62.5 -70.5 q-44 0 -44 43q0 27 4.5 369.5t4.5 398.5q0 117 -87 117h-127q-79 0 -109 54q-28 80 -28 201q0 261 55 261q12 0 30 -43t71 -43h127q200 0 200 -297l11 -448q21 -205 -9 -449z"
id="glyph79" />
<glyph
glyph-name="vavyod"
unicode="ױ"
horiz-adv-x="1257"
d="M580 1031q0 -147 -40 -302q-61 -121 -122 -121q-28 0 -33 15v32q60 76 55.5 132.5t-4.5 53.5q0 85 -136 87h-69q-79 0 -110 54q-29 90 -29 211q0 251 60 251q10 0 28.5 -43t71.5 -43h59q267 0 269 -327zM1182 164q0 -23 -36.5 -93.5t-62.5 -70.5q-44 0 -44 43 q0 27 4.5 369.5t4.5 398.5q0 117 -87 117h-127q-79 0 -109 54q-28 80 -28 201q0 261 55 261q12 0 30 -43t71 -43h127q200 0 200 -297l11 -448q21 -205 -9 -449z"
id="glyph80" />
<glyph
glyph-name="yoddbl"
unicode="ײ"
horiz-adv-x="1257"
d="M580 1031q0 -147 -40 -302q-61 -121 -122 -121q-28 0 -33 15v32q60 76 55.5 132.5t-4.5 53.5q0 85 -136 87h-69q-79 0 -110 54q-29 90 -29 211q0 251 60 251q10 0 28.5 -43t71.5 -43h59q267 0 269 -327zM1181 1031q0 -147 -40 -302q-61 -121 -122 -121q-28 0 -33 15v32 q60 76 55.5 132.5t-4.5 53.5q0 85 -136 87h-69q-79 0 -110 54q-29 90 -29 211q0 251 60 251q10 0 28.5 -43t71.5 -43h59q267 0 269 -327z"
id="glyph81" />
<glyph
glyph-name="geresh"
unicode="׳"
horiz-adv-x="530"
d="M530 1280q0 -49 -47 -92l-342 -314h-141l260 394q62 94 148 94q122 0 122 -82z"
id="glyph82" />
<glyph
glyph-name="gershayim"
unicode="״"
horiz-adv-x="946"
d="M946 1280q0 -49 -47 -92l-342 -314h-141l260 394q62 94 147 94q123 0 123 -82zM530 1280q0 -49 -47 -92l-342 -314h-141l260 394q62 94 148 94q122 0 122 -82z"
id="glyph83" />
<glyph
glyph-name="invertednun"
unicode="׆"
horiz-adv-x="646"
d="M526 938h-168q-118 -84 -114 -184l12 -324h270v-430h-399v715q0 133 89 223q-43 3 -71 57q-26 50 -26 168q0 281 57 281q12 0 29.5 -43t70.5 -43h250v-420z"
id="glyph84" />
<glyph
glyph-name="etnahtahafukh"
unicode="֢"
d="M241 -747q0 -47 -48 -47q-47 0 -47 47v151q-94 14 -126 93q-20 51 -20 162q0 47 47 47t47 -47q0 -90 10 -115q19 -50 94 -50q79 0 99 50q10 24 10 115q0 47 47 47t47 -47q0 -116 -23 -167q-35 -78 -137 -90v-149z"
id="glyph85" />
<glyph
glyph-name="lowerdot"
unicode="ׅ"
d="M379 -389q-96 -59 -150 -153q-54 94 -151 153q97 56 151 152q54 -96 150 -152z"
id="glyph86" />
<glyph
glyph-name="qamatsqatan"
unicode="ׇ"
d="M0 -154h449v-114h-221q90 -422 90 -461q0 -40 -29 -68t-70 -28q-39 0 -67.5 28t-28.5 68q0 59 90 461h-213v114z"
id="glyph87" />
</font>
<filter
style="color-interpolation-filters:sRGB"
id="realistic-stitch-filter"
x="0"
width="1"
y="0"
height="1"
inkscape:auto-region="false">
<feGaussianBlur
edgeMode="none"
stdDeviation="0.9"
in="SourceAlpha"
id="feGaussianBlur81" />
<feSpecularLighting
result="result2"
surfaceScale="4.29"
specularConstant="0.65"
specularExponent="1.6"
id="feSpecularLighting81">
<feDistantLight
azimuth="154"
elevation="112"
id="feDistantLight81" />
</feSpecularLighting>
<feComposite
in2="SourceAlpha"
operator="atop"
id="feComposite81" />
<feComposite
in2="SourceGraphic"
operator="arithmetic"
result="result3"
k1="0"
k2="0.8"
k3="1.2"
k4="0"
id="feComposite82" />
</filter>
</defs>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-א"
style="display:none"
id="g142">
<path
d="m 71.37542,81.8746 q 0,7.2501 -4.06252,14.1876 -3.43752,4.3125 -5.68753,4.3125 -1.125,0 -1.125,-1.8125 0,-0.25 0.5,-1.5 0.5,-1.25 0.5,-2.1875 0,-1.1875 -3.50002,-5.875 L 51.62532,82.6246 20.31267,51.312 q -3.50001,3.3125 -3.50001,7.3125 0,4.1876 7.68753,12.1564 7.68754,7.9687 7.68754,14.6563 0,3.1875 -3.37502,8.0313 -3.37501,4.8437 -8.25004,4.8437 H 3.87509 L 4.5626,95.1247 q 3.18751,-1.0625 3.18751,-5.5 0,-2.1875 -1.21875,-9.1563 Q 5.3126,73.4996 5.3126,67.3746 q 0,-9.8126 8.06254,-22.9376 l 0.0625,-0.125 Q 8.50012,39.4994 6.56261,35.8744 4.3126,31.4994 4.3126,25.3119 q 0,-6.0001 3.93752,-12.9376 3.37501,-4.3125 5.62502,-4.3125 1.18751,0 1.18751,1.8125 0,0.1875 -0.53125,0.8125 -0.53126,0.625 -0.53126,1.5 0,1.25 3.50002,5.875 3.18752,3.1876 6.37503,6.3126 L 49.81282,48.687 53.50033,36.9369 q -6.62503,-1.75 -8.18754,-3.5625 -1.0625,-2.1875 -1.0625,-5.6875 0,-6.0625 4.43752,-15.7501 3.56252,-3.875 6.06253,-3.875 1.125,0 1.125,1.1875 0,0.25 -0.3125,0.5625 -0.3125,0.3125 -0.3125,1.1875 0,3.0625 6.75003,3.5625 9.31255,0.25 9.31255,12.3751 -0.625,8.75 -2.75001,10.25 -2.12501,2.625 -4.62503,2.625 -0.75,0 -1.25,-0.25 -1.25001,-0.3125 -1.43751,-0.062 l -3.37502,16.4376 3.50002,4.875 q 5.62503,6.9376 7.62504,10.5001 2.37501,4.375 2.37501,10.5625 z"
id="path142"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-opacity:0.5;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 63.068182,95.241477 64.772727,75.639204 47.301136,60.085227 60.298296,28.764204 v 0"
id="path362"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 61.1641,39.918 C 58.535845,39.159494 48.188643,35.282501 46.494109,34.320284 45.612648,33.81025 44.997236,33.024665 44.806253,32.014791 c -0.426177,-1.338623 -0.395194,-2.758022 -0.535804,-4.141746 0.01722,-1.082858 0.157095,-2.162056 0.24535,-3.241656 0.215768,-1.285675 0.54365,-2.552216 0.834626,-3.823184 0.512541,-1.63977 1.039181,-3.279568 1.653778,-4.884906 0.570514,-1.324486 1.122189,-2.6572 1.683268,-3.985799 m 20.8438,24.0469 c 0.573872,-2.192569 1.413299,-4.341509 1.534174,-6.626437 0.109928,-1.273341 0.333909,-2.546087 0.173574,-3.826084 0.0034,-1.291755 -0.263785,-2.554586 -0.494086,-3.818697 C 70.401676,20.652787 70.103144,19.553941 69.477952,18.614803 69.01235,17.710291 68.271835,16.984508 67.515177,16.32115 66.760994,15.85627 66.033089,15.324421 65.151657,15.126399 63.853608,14.610407 62.431828,14.680556 61.074135,14.4374 59.999718,14.287342 58.910599,14.18589 57.90223,13.759004 57.077731,13.48853 56.067,13.163198 55.827219,12.219908 55.620371,11.673434 55.133242,11.149024 55.310583,10.534678 L 55.5938,8.35937 M 60.0852,11.7188 43.679,16.4062 M 41.5483,24.5028 67.9688,12.1449 M 58.3807,40.0568 75.2131,28.7642"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path359"
sodipodi:nodetypes="cccccccccccccccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="M 61.1641,39.918 57.1787,38.9588"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path258"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 53.2793,37.6426 c -1.094362,3.485679 -2.188826,6.971325 -3.2832,10.457 m 11.168,-8.1816 c -1.096334,5.33984 -2.192776,10.679658 -3.2891,16.0195 l 1.9902,2.7715 M 64.559623,43.252886 49.005641,36.860827"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path361"
sodipodi:nodetypes="ccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="M 59.8652,58.709 51.519,66.4508"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path259"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 60.5,98.5625 C 62.329796,95.689695 60.960072,92.688359 58.960828,90.395014 56.56616,87.084776 53.291549,84.516879 50.520311,81.523787 39.913503,70.982894 29.451206,60.291358 18.733375,49.865281 L 13.1836,44.7656 C 12.09395,41.925471 8.2696226,39.632595 6.9100324,36.428886 3.0452711,29.355393 3.7289092,20.416903 7.6610809,13.517973 8.6962034,11.264067 10.672862,9.686029 12.6797,8.33203 M 61.1328,100.262 c 3.037583,-0.659471 5.58995,-2.705199 6.878068,-5.544871 3.866724,-7.199518 4.754015,-16.483276 0.727022,-23.802013 -2.895436,-4.594191 -6.339999,-8.813829 -9.683181,-13.077403 0,0 -13.223802,-13.498593 -15.166331,-14.708744 C 35.030032,34.721368 25.899747,26.589592 17.357166,17.856775 16.193642,15.617524 12.849596,13.242747 14.73489,10.554408 L 15.029819,9.9390086 15.0625,9.875 M 5.3267,7.24432 17.0455,13.4233 M 5.7528406,42.826687 26.420432,22.372145 M 47.0881,81.179 66.6903,59.233 m -7.8835,35.5823 8.7358,6.6047"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path360"
sodipodi:nodetypes="ccccccccccccccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="M 20.2575,51.3751 16.3028,48.6958"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path260"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 20.3105,51.3145 c -2.195928,2.105491 -3.870675,5.156387 -3.384163,8.276861 0.724803,3.309066 3.054056,5.909199 5.118382,8.47348 3.556382,3.931969 7.519842,7.793328 9.317677,12.911846 0.942714,2.453479 1.093177,5.232717 0.117794,7.702861 -1.176863,2.668669 -2.711199,5.267407 -4.886101,7.249056 -1.550569,1.409215 -3.569313,2.313861 -5.681901,2.339651 -2.831734,0.13676 -5.668204,0.0035 -8.50258,0.04425 H 3.875 m 9.3086,-53.5469 C 9.3987243,51.139154 5.992722,58.04512 5.4112111,65.548172 c -0.1869968,3.418043 0.1137664,6.846838 0.4717362,10.245411 0.4247725,3.644087 1.1111892,7.25022 1.5991156,10.885066 0.1844824,2.228955 0.6259486,4.723257 -0.7008931,6.705314 -0.5120342,0.848816 -2.8479242,1.967769 -3.7101471,2.380242 M 21.306845,60.724418 1.70455,54.545491 M 1.2784118,72.869286 35.156236,82.670482 M 4.2613636,87.997159 12.144886,101.42045"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path358"
sodipodi:nodetypes="ccccccccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ב"
style="display:none"
id="g143">
<path
d="M 79.43796,71.9996 70.43791,98.3122 H 3.00009 l 10.50005,-26.3751 49.06274,-0.125 0.1875,-25.8126 q 0,-6.1876 -10.50005,-4.9376 H 13.81264 q -5.31252,-4.5 -5.31252,-12.25 0.125,-16.8751 0.125,-18.8126 0,-1.9375 3.56251,-1.9375 0.75001,0 1.84376,2.6875 1.09376,2.6875 4.40627,2.6875 h 35.37517 q 17.56259,0 17.56259,18.5626 L 70.43791,51.687 q -0.5,9.875 -2.25001,20.3751 z"
id="path143"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-opacity:0.5;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 69.377238,94.874676 64.268061,74.975778 65.612581,58.841537"
id="path370"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 62.319496,72.555664 c 0.111792,-9.033491 0.362859,-18.069665 0.385955,-27.101495 -0.08554,-3.070953 -3.326968,-4.520736 -6.010584,-4.546264 -3.086325,-0.01907 -6.168766,0.252443 -9.259919,0.154595 H 13.8125 C 9.9841638,37.944895 8.3031121,32.901917 8.4952178,28.074201 8.6515375,22.005868 8.4013684,15.918703 8.7605348,9.8616221 L 8.84766,9.15234 M 68.7169,72.28676 C 69.635919,61.744941 70.596333,51.203042 70.967456,40.624253 71.179978,34.213161 72.221186,27.38431 69.271151,21.405516 67.118795,16.763747 62.168407,14.09207 57.215625,13.646041 51.320543,13.185261 45.39062,13.554147 39.481918,13.437753 32.134929,13.38075 24.774751,13.561271 17.436036,13.334908 14.56432,13.143409 13.976409,10.157482 12.584,8.23047 M 49.732638,44.903796 55.476193,8.5696922 M 35.03031,9.2605777 34.824249,44.290887"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path369"
sodipodi:nodetypes="ccccccccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="m 62.3267,72.1262 0.0171,13.087"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path261"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 70.4375,98.3125 H 3 M 78.888352,72.0817 C 58.215152,72.140383 34.0462,72.199211 13.373,72.2578 M 3.76466,101.328 20.1678,64.7574"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path366"
sodipodi:nodetypes="cccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ג"
style="display:inline"
id="g144">
<path
d="m 42.81278,82.8121 q 0,15.5001 -1.81251,15.5001 -1.25,0 -1.375,-1.6875 -0.31251,-2.9375 -3.93752,-14.5001 -3.37502,-10.5625 -4.81253,-19.3125 -0.4375,1.9375 -0.65625,-7.4063 -0.21875,-9.3438 -0.34375,-11.9063 0.5,-3.1876 -8.56254,-3.6876 l -6.25003,-0.625 q -6.06253,0.125 -7.81254,-7.25 -1.125,-3.125 -1.125,-10.6875 1.25,-13.1876 4.81252,-13.1876 0.75,0 1.84376,2.6875 1.09375,2.6875 4.40627,2.6875 h 3.87502 q 17.37508,0 17.37508,18.5626 0,3.1875 -0.625,6.4688 -0.62501,3.2812 -0.62501,8.4063 0,3.6875 1.03126,7.1563 1.03125,3.4687 4.90627,12.9063 -0.3125,10.1875 -0.3125,15.875 z M 31.00023,60.812 Q 23.12519,77.4996 21.43768,94.1872 L 0.25008,98.3122 4.6251,69.0621 q 14.75007,6.8125 26.37513,-8.2501 z"
id="path144"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 40.604507,91.647828 38.991083,72.286738"
id="path3"
sodipodi:nodetypes="cc" />
<path
d="M 39.7367,97.2685 C 37.538764,86.251697 33.089557,75.806989 31.229175,64.706491 31.099542,63.144001 30.199361,62.382912 30.799185,61.04142 30.026671,61.689422 30.543086,58.32473 30.29632,57.374177 30.116634,52.498803 30.002041,47.62137 29.8506,42.7451 28.22338,39.900938 24.353684,40.287072 21.521429,39.839108 18.447528,39.404685 15.286116,39.44289 12.264276,38.752971 8.3585825,37.301933 7.3142396,32.804762 6.6146579,29.155331 5.6734499,23.422293 6.23442,17.559178 7.7993124,11.990469 7.8505816,11.780113 7.9018508,11.569756 7.95312,11.3594 M 41,98.3125 C 42.817101,95.326337 42.343094,91.300747 42.745351,87.857242 42.81596,80.883517 43.003408,73.910747 43.125,66.9375 40.963218,61.080559 37.947198,55.383488 37.333726,49.088831 36.796181,43.840394 37.962287,38.652424 38.379727,33.448014 38.557705,27.755925 37.766654,21.334253 33.289489,17.308712 29.25466,13.672213 23.519395,13.280646 18.352963,13.434521 14.736199,14.175456 12.576494,11.129904 11.334,8.23047 10.917,8.2431633 10.5,8.2558567 10.083,8.26855 M 34.9575,91.3789 c 3.5854,-0.179267 7.1708,-0.358533 10.7562,-0.5378 M 25.5459,45.1274 c 5.557333,-4.033533 11.114667,-8.067067 16.672,-12.1006 M 2.95794,18.7748 C 8.15676,15.010157 13.35558,11.245513 18.5544,7.48087"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path2"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="M 29.6932,63.4338 C 27.357179,69.336657 25.089975,75.291653 23.642219,81.485778 22.610048,85.661852 21.90543,89.912629 21.4375,94.1875 14.375,95.5625 7.3125121,96.937562 0.25,98.3125 M 30.4414,61.498 c -2.066364,1.973818 -3.933721,4.170965 -6.154703,5.973843 -3.932663,2.919769 -9.028157,4.352878 -13.883769,3.422876 C 8.3818662,70.617447 6.526711,69.746157 4.625,69.0625 3.2245596,78.425399 1.8241384,87.788301 0.423695,97.1512 M -2.95794,88.9588 c 4.1231933,4.3024 8.2463867,8.6048 12.36958,12.9072 M 1.07562,64.7574 C 9.4116467,76.141 17.747673,87.5246 26.0837,98.9082 M 20.7056,60.7239 c 2.8683,3.585367 5.7366,7.170733 8.6049,10.7561"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path1"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ד"
style="display:none"
id="g145">
<path
d="m 79.93796,24.6869 q 0,4.5 -0.78125,9.8438 -0.78126,5.3437 -6.90629,5.7812 -7.31253,8.6251 -4.43752,19.6876 2.62501,9.1876 4.25002,13.7814 1.62501,4.5937 -1.25,14.2813 -0.56251,1.375 -4.06252,5.8125 -3.50002,4.4375 -4.50002,4.4375 -2.93752,0 -2.93752,-2.6875 0,-7 -2.06251,-37.4377 -0.1875,-4.875 4.43752,-18.0001 l -46.50022,-0.125 q -5.93753,-2.125 -6.87503,-8.125 -1.75001,-2.5 -1.75001,-10.6875 0,-13.1876 3.62502,-13.1876 0.625,0 1.78125,2.6875 1.15626,2.6875 4.46878,2.6875 h 55.06276 q 3.68752,0 6.06253,2.9375 2.37501,2.9375 2.37501,8.3126 z"
id="path145"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<g
id="g14">
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 61.171066,93.926523 66.905853,72.898969"
id="path14"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 59.4961,96.8008 C 58.829948,84.228383 58.179465,71.652859 57.308697,59.093672 57.213771,52.541726 59.712764,46.369419 61.6738,40.2305 m 1.2324,57.8047 c 2.803162,-3.499863 6.456729,-6.499565 8.120477,-10.772662 1.387855,-4.9911 2.474046,-10.521107 0.416377,-15.490582 -1.774828,-5.761814 -4.125905,-11.478707 -4.427911,-17.570051 0.02514,-5.090036 1.272942,-10.322584 4.962044,-13.923663 M 53.7808,66.6398 75.965356,66.370852 M 55.6631,90.0344 69.6461,92.4545 M 73.1419,12.0522 72.3352,41.9006 M 58.083268,41.362776 h 15.596433 l 0.134452,0.268904"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path12"
sodipodi:nodetypes="cccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="M 61.6738,40.2305 61.6935,26.81"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path262"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 78.5324,36.6847 c -1.664497,2.855174 -5.283708,3.570442 -8.341719,3.499475 C 51.856186,40.205117 33.521931,40.085874 15.1875,40.0625 5.4898912,36.293674 6.4346967,23.221769 6.890472,14.732113 7.0735525,13.09325 7.4487458,11.477875 7.97851,9.91697 M 79.9375,24.6875 78.6016,17.9961 C 76.864332,14.826431 73.100616,12.941609 69.521966,13.460901 51.510039,13.3677 33.497619,13.526446 15.485855,13.383226 12.781992,13.1302 11.714959,10.240544 10.5332,8.23047 M 73.1419,12.0522 72.3352,41.9006 M 3.22685,14.7413 15.8653,8.55649 m 16.940991,1.61342 v 33.881906"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path13"
sodipodi:nodetypes="cccccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ה"
style="display:none"
id="g146">
<path
d="m 79.93796,25.3119 q 0,4.6875 -2.59376,9.7813 -2.59376,5.0937 -5.46878,5.0937 l -0.25,0.125 1.75001,17.6876 q 2.93751,15.7501 1.1875,30.0627 0.0625,1.375 -3.43751,5.8125 -3.50002,4.4375 -4.50002,4.4375 -2.31252,0 -2.31252,-2.6875 0,-11 -2.0625,-55.1878 l -47.31273,-0.25 q -4.93753,0 -6.62503,-7.625 -1.75001,-3.125 -1.75001,-10.6875 0,-13.8126 3.62502,-13.8126 0.625,0 1.78125,2.6875 1.15626,2.6875 4.46878,2.6875 h 55.06276 q 3.68752,0 6.06253,2.9375 2.37501,2.9375 2.37501,8.9376 z M 19.81267,77.8746 q -0.5,11.1876 -3.68752,14.4376 -0.6875,1.375 -2.43751,3.25 -0.8125,1.5 -4.00002,2.75 -2.43751,0 -0.5625,-1.9375 0,-2.1875 -0.28125,-3.9062 -0.28125,-1.7188 -0.46875,-3.4063 -1.06251,-2.75 -1.06251,-10.1876 0,-2.1875 0.125,-6 0.125,-3.8125 1.12501,-7.3125 0.875,-4.4376 5.31252,-8.5001 2.43751,-3.5625 4.12502,-4.1875 3.50002,-1.25 3.50002,-0.125 -1.25001,1.75 -1.81251,3.6563 -0.5625,1.9062 0.0625,4.2812 0,1.875 0.21875,6.5001 0.21875,4.625 -0.15625,10.6875 z"
id="path146"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="m 65.312857,94.563721 4.46039,-11.469574"
id="path27"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 64.55,97.1363 C 64.035328,91.287661 64.19889,85.406381 63.904234,79.545965 63.46903,66.567718 62.815075,53.598254 62.2578,40.625 m 5.5076,57.1485 c 2.430034,-2.855897 5.129286,-5.601838 6.665224,-9.078689 C 75.450533,81.601137 75.37946,74.393866 74.668923,67.274859 74.288098,63.168631 73.43517,59.1216 73.106143,55.007403 72.641879,50.223195 72.142103,45.442648 71.6602,40.6602 M 59.5781,92.3335 c 4.566567,1.4868 9.133133,2.9736 13.6997,4.4604 M 58.9409,41.6762 c 4.672767,0.2124 9.345533,0.4248 14.0183,0.6372 M 57.0293,68.7572 c 7.221567,0.3186 14.443133,0.6372 21.6647,0.9558"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path25"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 72.4161,40.663 65.3129,38.1716 65.6315,27.3393"
id="path29"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 79.5861,28.7626 c -1.139976,2.943353 -1.817075,6.134937 -3.725514,8.715692 -1.028651,1.871615 -3.19594,2.84488 -5.214502,3.169871 -2.856277,-0.0164 -5.72393,0.03269 -8.573041,-0.0632 C 59.685589,40.178915 57.254338,40.557002 54.849144,40.39474 41.304407,40.306872 27.75911,40.295414 14.214863,40.139911 11.203074,39.766546 9.5154205,36.789026 8.7222252,34.149631 7.761064,31.350004 6.7425314,28.497403 6.7297323,25.494926 6.3354327,20.287682 6.5720801,14.981326 7.98731,9.93184 M 79.9375,25.3125 C 79.411695,22.780691 79.753624,19.973431 78.238872,17.727421 77.293498,15.900937 75.793301,14.221541 73.702703,13.767083 70.933769,13.064772 68.061881,13.650878 65.247816,13.447147 48.816749,13.425832 32.385107,13.478138 15.954405,13.407974 14.05553,13.321136 12.266093,12.015971 11.68302,10.193369 11.233704,9.101772 10.673233,8.2900432 9.43,8.2837 M 3.82319,16.1883 C 7.6463933,13.851903 11.469597,11.515507 15.2928,9.17911 m 11.7881,0 c 0,11.257163 0,22.514327 0,33.77149 M 56.3921,9.17911 C 56.2859,20.648673 56.1797,32.118237 56.0735,43.5878 M 77.101,10.7721 c 0.1062,8.814567 0.2124,17.629133 0.3186,26.4437"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 2"
id="path26"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<g
id="g28">
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="m 13.69977,62.066593 6.371986,-9.876579"
id="path28"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 18.3171,52.7353 c -2.606379,1.371984 -4.05386,4.007625 -6.110375,5.995809 -4.2989029,4.639453 -4.7142926,11.328249 -4.8382233,17.329262 -0.1378169,4.558838 -0.00359,9.143415 1.0029797,13.610064 0.7448524,2.508769 0.4156489,5.111421 0.019809,7.647465 M 21.1897,52.5668 c -0.678533,1.877816 -1.744702,3.649288 -1.722192,5.710956 0.513715,6.606337 0.731752,13.266543 0.337171,19.894237 -0.377985,4.959673 -0.676624,10.331392 -3.788295,14.461528 -1.388491,2.1333 -3.192244,3.93686 -5.323384,5.334479 M 22.302,57.6062 12.4254,52.19 M 23.8949,76.7222 2.54879,74.492 M 15.2928,96.7939 5.09759,90.7405"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path24"
sodipodi:nodetypes="cccccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ו"
style="display:none"
id="g147">
<path
d="m 35.37525,88.0622 q 0,1.4375 -2.28126,5.8438 -2.28127,4.4062 -3.90627,4.4062 -2.75002,0 -2.75002,-2.6875 0,-1.6875 0.28125,-23.0938 0.28126,-21.4064 0.28126,-24.9064 0,-7.3126 -5.43753,-7.3126 h -7.93754 q -4.93752,0 -6.81253,-3.375 -1.75001,-5 -1.75001,-12.5625 0,-16.3126 3.43752,-16.3126 0.75,0 1.87501,2.6875 1.125,2.6875 4.43752,2.6875 h 7.93754 q 12.50006,0 12.50006,18.5626 l 0.6875,28.0001 q 1.31251,12.8126 -0.5625,28.0627 z"
id="path147"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
d="m 26.6096,96.8005 c -0.26735,-11.093002 0.184233,-22.190081 0.214335,-33.284568 -0.0131,-5.945405 0.2942,-11.902949 0.04922,-17.841148 C 26.722071,43.155139 25.035104,40.450112 22.280021,40.370763 18.212318,40.015327 13.98761,40.903171 10.032611,39.669065 7.5465694,38.865722 6.295216,36.354101 5.9931391,33.915624 4.6558481,27.569111 5.0311067,21.013877 5.5404343,14.597688 5.8025531,12.690896 5.9374787,10.544882 7.4989549,9.2155271 7.7096333,8.972748 7.9203116,8.729969 8.13099,8.48719 M 29.1877,98.3122 c 2.294136,-0.923064 3.095635,-3.393335 4.330568,-5.330041 1.287434,-2.244562 2.063016,-4.739734 2.098652,-7.337451 0.980858,-8.523675 1.060429,-17.13389 0.342034,-25.680152 C 35.567173,49.19166 35.570901,38.401207 35.021413,27.63546 34.526864,22.706698 33.046045,17.050557 28.265284,14.625334 23.64128,12.478629 18.429643,13.935852 13.549995,13.283631 11.097983,13.075036 10.530509,10.490146 9.1921537,8.9136477 8.9614758,8.6296985 8.7307979,8.3457492 8.50012,8.0618 M 23.2577,56.0132 c 5.7348,0.1062 11.4696,0.2124 17.2044,0.3186 M 23.2577,91.0591 c 4.6728,1.062 9.3456,2.124 14.0184,3.186 M 19.7532,8.86051 C 13.3812,17.037907 7.0091993,25.215303 0.637199,33.3927 M 2.54879,11.4093 C 6.6905933,10.453503 10.832397,9.4977067 14.9742,8.54191 M 16.8858,41.3576 C 24.001167,35.198033 31.116533,29.038467 38.2319,22.8789"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path32"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ז"
style="display:none"
id="g148">
<path
d="m 39.75027,30.9994 q 0,5.375 -2.37501,9.9375 -2.12501,4.0001 -3.75002,4.0001 -0.1875,0 -0.1875,-0.375 -0.125,-0.3125 -0.25,-0.7187 -0.12501,-0.4063 -0.12501,-0.4688 0,-0.75 -1.71875,-1.1875 -1.71876,-0.4376 -5.21878,-1.2501 -3.06251,-0.125 -3.06251,3.9376 0,1.125 3.50001,12.3438 3.50002,11.2188 1.62501,17.4063 0,7.0625 -3.37501,15.5626 -1.43751,8.125 -3.31252,8.125 -3.25002,0 -3.25002,-1.4375 0,0.125 -0.21875,-3.0625 -0.21875,-3.1875 -0.21875,-5.5 0,-1.3125 -0.625,-11.0626 -0.625,-9.75 -3.75002,-19.5001 -0.625,-4.5625 0,-8.375 0.625,-3.8125 1.50001,-10.0626 l -0.93751,-0.125 Q 10.75013,38.7494 8.21887,35.5619 5.6876,32.3744 5.6876,24.8744 q 0,-6.5001 2.09376,-11.6563 2.09376,-5.1563 4.03127,-5.1563 1.31251,0 1.31251,1.3125 0,0.375 -0.1875,0.7188 -0.1875,0.3437 -0.1875,0.6562 0,1.75 12.37506,2.6875 14.62507,1.125 14.62507,17.5626 z"
id="path148"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 21.73988,86.357347 18.877991,42.086328 25.119135,30.37434"
id="path41"
sodipodi:nodetypes="ccc"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 33.4844,44.8438 C 33.19844,44.235705 33.281277,43.346183 32.733295,42.924242 27.867486,40.834512 22.181479,45.173126 12.858756,39.314154 10.383028,37.863136 7.9123493,35.958673 6.9284325,33.152397 5.7024771,29.81621 5.6183752,26.193809 5.7681638,22.680835 6.0129198,18.563719 6.9689837,14.428995 8.9481732,10.790976 L 11.1643,8.32284 M 34.8217,44.1578 c 1.196327,-1.953165 2.713458,-3.727063 3.669569,-5.816404 1.212223,-3.358426 1.442838,-6.994654 1.068169,-10.524868 C 39.301733,25.510214 38.826511,23.183757 37.822184,21.078446 36.257304,17.87642 33.343088,15.317859 29.877555,14.395009 27.337218,13.535504 24.62942,13.421242 21.9827,13.138356 19.552887,12.933615 17.133601,12.580297 14.76174,12.017545 13.719378,11.89775 12.628502,11.060899 12.773846,9.912499 12.908997,9.3986475 12.842947,8.9148501 12.7969,8.39062 M 2.86739,12.0465 17.523,9.17911 M 4.14179,42.632 38.2319,14.2767 M 27.415514,43.533135 41.4179,37.177149"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path40"
sodipodi:nodetypes="cccccccccccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="m 14.7792,40.3986 4.3951,1.0413"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path263"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 18.25,96.875 C 17.379164,84.768281 17.837274,72.380633 14.265847,60.6433 13.236534,57.53116 12.974099,54.229885 13.267643,50.977296 13.569684,47.323189 14.404002,43.740819 14.824191,40.1016 m 7.1377,58.0839 C 24.537074,93.597623 27.749965,81.341337 27.952083,77.988987 29.835104,68.856575 27.453948,60.322346 24.847207,51.571779 24.155938,49.304043 23.947312,44.767442 23.524795,42.431998 M 13.3812,91.0591 26.7623,95.5195 M 11.151,63.9782 31.5413,64.6154 m -19.1159,-23.895 13.905658,3.993819"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path39"
sodipodi:nodetypes="cccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ח"
style="display:none"
id="g149">
<path
d="m 79.93796,23.4369 q 0,10.3125 -2.46876,13.2813 -2.46876,2.9687 -3.21877,3.5937 h -0.5 l 0.4375,24.1877 q 0.81251,11.125 0.375,23.5626 0.0625,1.375 -3.43751,5.8125 -3.50002,4.4375 -4.50002,4.4375 -3.56252,0 -3.56252,-2.6875 0,-11 -0.4375,-55.3128 H 28.31271 q -2.87501,0.062 -5.37502,7.4376 -1.25001,2.5625 -1.81251,13.5 -0.56251,10.9376 -0.25,14.3439 0.3125,3.4062 0,7.5 -0.31251,4.0938 -0.37501,5.4688 -0.6875,1.375 -3.68751,6.375 -3.31252,3.375 -7.12504,3.375 -2.43751,0 -2.43751,-2.5625 0,-1.5625 0.87501,-3.3125 0.1875,-4.125 0.1875,-14.5001 0,-2.0625 -0.31251,-10.4687 Q 7.68761,59.062 8.93762,55.562 12.68764,42.3745 16.81266,40.3119 h -3.50002 q -3.06251,0 -5.00002,-3.375 -1.75001,-8.75 -1.75001,-16.3126 0,-12.5625 3.62502,-12.5625 0.625,0 1.78125,2.6875 1.15626,2.6875 4.46878,2.6875 h 55.06276 q 3.68752,0 6.06253,2.9375 2.37501,2.9375 2.37501,7.0626 z"
id="path149"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="m 65.312857,94.563721 4.46039,-11.469574"
id="path27-0"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 64.55,97.1363 C 64.035328,91.287661 64.19889,85.406381 63.904234,79.545965 63.46903,66.567718 62.815075,53.598254 62.2578,40.625 m 5.5076,57.1485 c 2.430034,-2.855897 5.129286,-5.601838 6.665224,-9.078689 C 75.450533,81.601137 75.37946,74.393866 74.668923,67.274859 74.288098,63.168631 73.43517,59.1216 73.106143,55.007403 72.641879,50.223195 72.142103,45.442648 71.6602,40.6602 M 59.5781,92.3335 c 4.566567,1.4868 9.133133,2.9736 13.6997,4.4604 M 58.9409,41.6762 c 4.672767,0.2124 9.345533,0.4248 14.0183,0.6372 M 57.0293,68.7572 c 7.221567,0.3186 14.443133,0.6372 21.6647,0.9558"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path25-0"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 72.4161,40.663 65.3129,38.1716 65.6315,27.3393"
id="path29-9"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 79.5861,28.7626 c -1.139976,2.943353 -1.817075,6.134937 -3.725514,8.715692 -1.028651,1.871615 -3.19594,2.84488 -5.214502,3.169871 -2.856277,-0.0164 -5.72393,0.03269 -8.573041,-0.0632 C 59.685589,40.178915 57.254338,40.557002 54.849144,40.39474 41.304407,40.306872 27.75911,40.295414 14.214863,40.139911 11.203074,39.766546 9.5154205,36.789026 8.7222252,34.149631 7.761064,31.350004 6.7425314,28.497403 6.7297323,25.494926 6.3354327,20.287682 6.5720801,14.981326 7.98731,9.93184 M 79.9375,25.3125 C 79.411695,22.780691 79.753624,19.973431 78.238872,17.727421 77.293498,15.900937 75.793301,14.221541 73.702703,13.767083 70.933769,13.064772 68.061881,13.650878 65.247816,13.447147 48.816749,13.425832 32.385107,13.478138 15.954405,13.407974 14.05553,13.321136 12.266093,12.015971 11.68302,10.193369 11.233704,9.101772 10.673233,8.2900432 9.43,8.2837 M 3.82319,16.1883 C 7.6463933,13.851903 11.469597,11.515507 15.2928,9.17911 m 11.7881,0 c 0,11.257163 0,22.514327 0,33.77149 M 56.3921,9.17911 C 56.2859,20.648673 56.1797,32.118237 56.0735,43.5878 M 77.101,10.7721 c 0.1062,8.814567 0.2124,17.629133 0.3186,26.4437"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 2"
id="path26-3"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="m 26.6884,40.2181 -5.5282,0.8444"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path264"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 15.6367,41.1426 C 12.630093,44.340664 11.194328,48.584333 9.8515296,52.670739 8.4072922,56.44356 7.8792383,60.505674 7.936028,64.529488 8.2045526,72.306436 8.3958633,80.090689 8.1885923,87.871989 8.3026079,90.527058 8.0194497,93.200665 7.25,95.75 M 26.6836,40.9824 C 23.866079,43.960928 22.596309,48.018832 21.937347,51.979642 21.104541,58.940922 20.82213,65.961129 20.82473,72.969447 21.111494,78.165928 20.965931,83.379934 20.5,88.5625 19.548007,90.235394 18.549007,91.881382 17.620547,93.567684 16.522479,96.024965 13.8577,97.073495 11.5625,98.1016 M 29.5091,42.6198 C 22.678287,42.528733 15.847473,42.43767 9.01666,42.3466 M 18.0333,98.3591 5.73787,90.4354 M 24.0444,70.7627 4.91818,70.2162"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path46"
sodipodi:nodetypes="ccccccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ט"
style="display:none"
id="g150">
<path
d="m 79.50046,53.3745 q 0,9.375 -10.56255,44.9377 H 10.31263 Q 9.81262,89.6872 8.31262,77.7496 6.75011,65.3746 6.75011,57.9995 q 0,-12.5 6.43753,-17.5626 -4.18752,-2.0625 -4.56252,-5.125 -1.37501,-2.5 -1.37501,-9.1875 0,-8.1251 2.62501,-14.8126 2.18751,-3.25 3.50002,-3.25 1.31251,0 1.31251,1.3125 0,0.375 -0.21875,0.7188 -0.21876,0.3437 -0.21876,0.6562 0,0.8125 2.93752,1.75 5.37502,1.875 8.25004,3.125 4.31252,1.9375 5.71878,4.0938 1.40625,2.1563 1.53125,12.6563 0,5.125 -2.81251,10.3751 -2.37501,4.375 -3.31252,4.375 -0.8125,-0.062 -0.875,-0.062 l 0.125,-0.094 q 0,0 0.25,-1.2813 0,-0.875 -5.43752,-2.3125 -5.62503,2 -5.62503,8.625 -1.25001,5.4375 1.125,13.7501 1.93751,5.3125 2.12501,6.3125 h 47.18773 q 4.75002,-9.4376 4.75002,-11.7501 1.87501,-12 -2.43751,-14.8125 -4.93752,-5.3126 -12.37506,-5.3126 -6.87503,0 -9.06254,5.4376 -2.12501,2.375 -2.12501,8.6875 0,0.9375 -0.125,0.625 -0.125,-0.3125 0.5,0.875 0,1.125 -0.8125,2.2813 -0.81251,1.1562 -3.62502,1.1562 -3.56252,0 -3.56252,-8.8125 0,-3.9375 2.62501,-12.1876 3.00002,-9.375 3.62502,-14.6875 0.1875,-1.3125 0.1875,-2.7501 0,-1.5625 -0.25,-3.8437 -0.25,-2.2813 -0.25,-2.9688 0,-1.4375 0.5625,-2.0625 0.43751,-0.4375 2.43751,-0.4375 4.81253,0 10.81256,1.9375 7.56253,2.375 11.87505,6.5625 6.25003,6.1251 8.50004,12.9376 1.68751,4.9375 2.93752,12.7501 0,1.25 -0.0625,3.7813 -0.0625,2.5312 -0.0625,3.9062 z"
id="path150"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 61.477221,95.353581 73.499434,63.385426"
id="path61"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 37.9541,58.0107 c -2.935532,-6.714811 -0.511578,-14.014681 1.479485,-20.630474 2.014983,-6.890483 4.395602,-13.99469 3.237829,-21.268778 -1.623064,-4.161178 2.398355,-5.367876 5.604284,-4.436972 8.217568,1.106512 16.768975,4.131855 22.154872,10.758235 4.380457,4.695713 6.734008,10.822072 8.002266,17.031481 0.800943,3.543709 1.425465,7.124297 1.126315,10.766731 C 79.698955,57.689656 77.831786,64.948307 76.1543,72.1562 M 43.2187,58.5996 c 1.907917,-2.320672 0.616017,-4.910694 1.175198,-7.651279 0.300136,-3.202771 2.016493,-6.140594 4.090027,-8.505423 4.256809,-3.413145 10.590414,-2.605667 15.136564,-0.196136 3.129576,1.969651 6.619824,4.582939 6.913171,8.599198 0.645454,5.784726 -0.268297,11.784331 -3.03283,16.944734 -0.6694,1.432751 -1.372898,2.849166 -2.06333,4.271806 M 48.6353,56.5546 C 42.715267,55.643833 36.795233,54.733067 30.8752,53.8223 M 54.9197,43.7127 C 51.094433,31.326183 47.269167,18.939667 43.4439,6.55315 M 65.0292,48.9041 C 71.222467,47.3558 77.415733,45.8075 83.609,44.2592 M 63.6631,68.0304 c 5.282467,0.273233 10.564933,0.546467 15.8474,0.8197"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path58"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="M 64.6816,72.0559 70.2611,72.5116 43.7236,84.5785 14.3758,74.1516 C 14.4588,60.3432 6.22031,43.8212 23.16645,35.5117"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path62"
sodipodi:nodetypes="cccc"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 26.173409,47.31811 C 21.911552,44.554318 16.544108,44.145752 12.7129,40.8398 3.9809246,33.304972 5.4844937,18.239007 11.8437,8.875 M 26.734,46.8858 C 33.101648,39.720614 33.200341,31.199692 31.923002,22.16796 31.441489,18.015954 26.989175,16.465362 23.708571,14.912153 20.110952,13.208853 13.466236,13.334167 14.605495,8.80078 M 5.73787,12.8375 18.853,10.3784 M 5.73787,35.5158 34.9737,18.3021 m -15.641946,26.981482 14.39881,-4.453418"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path60"
sodipodi:nodetypes="cscccsccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="M 12.7129,40.8398 C 4.362802,48.835144 6.8585012,62.062953 7.6875,72.377 M 19.0859,44.0723 C 10.795408,48.519301 15.976562,65.68692 18.25,72.0625 M 16.3939,57.3743 3.27879,56.8279"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path59"
sodipodi:nodetypes="cccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="m 7.6875,72.377 9.575503,12.817564"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path63"
sodipodi:nodetypes="cc"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 76.1543,72.1562 C 53.332034,72.230006 30.509766,72.30325 7.6875,72.377 m 61.25,25.9355 h -58.625 m 1.7097,1.686 -1.9126,-31.9681 M 43.9904,99.9985 43.7171,67.7571 M 64.756,101.638 72.4065,69.3965"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path56"
sodipodi:nodetypes="cccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-י"
style="display:none"
id="g151">
<path
d="m 36.18775,33.8744 q 0,9.1876 -2.50001,18.8751 -3.81252,7.5625 -7.62504,7.5625 -1.75001,0 -2.06251,-0.9375 v -2 q 3.75002,-4.75 3.46877,-8.2812 -0.28125,-3.5313 -0.28125,-3.3438 0,-5.3126 -8.50004,-5.4376 h -4.31252 q -4.93753,0 -6.87504,-3.375 -1.81251,-5.625 -1.81251,-13.1875 0,-15.6876 3.75002,-15.6876 0.625,0 1.78126,2.6875 1.15626,2.6875 4.46877,2.6875 h 3.68752 q 16.68758,0 16.81258,20.4376 z"
id="path151"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="m 25.990643,56.969998 5.156874,-6.807073"
id="path65"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 7.79699,9.04228 C 5.2673082,13.796097 3.9826632,35.561305 9.5607496,39.057508 14.266754,41.758759 20.84458,38.931898 24.976334,41.665824 27.099168,43.097497 30.000557,49.790803 24.0002,57.3745 M 9.46982,8.10972 c 1.368972,1.6412237 2.011508,4.091242 4.149895,4.969793 8.606342,1.585908 18.618922,-0.0049 21.292883,11.28337 1.721699,6.480324 3.289784,30.301628 -7.896798,35.830917 M 14.8518,9.93931 3.3004,12.0021 m 28.2597,47.6495 -8.251,-7.0134 M 40.2236,27.8852 20.2149,41.0868"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path64"
sodipodi:nodetypes="cccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ך"
style="display:none"
id="g152">
<path
d="m 79.93796,25.9369 q 0,8.25 -2.34376,11.2188 -2.34376,2.9687 -5.46878,3.1562 l 1.81251,60.6878 q 1.56251,10.3751 0.625,21.9376 0.0625,1.3125 -3.43751,5.6876 -3.50002,4.375 -4.50002,4.375 -4.18752,0 -4.18752,-2.6875 0,-3.25 0.9375,-33.6252 -0.875,-52.3752 -1.125,-56.3753 H 19.56267 q -4.93752,0 -6.87503,-3.375 -1.75001,-3.125 -1.75001,-16.3126 0,-12.5625 3.62502,-12.5625 0.625,0 1.78125,2.6875 1.15626,2.6875 4.46878,2.6875 h 50.68774 q 3.68752,0 6.06253,2.9375 2.37501,2.9375 2.37501,9.5626 z"
id="path152"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 69.190026,98.289559 67.005078,25.457953"
id="path71"
sodipodi:nodetypes="cc"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 12.3535,9.829104 c -0.833802,2.468123 -1.208999,5.067298 -1.344573,7.66182 -0.157452,4.862324 0.07635,9.738811 0.407471,14.587274 0.326959,3.427198 2.042374,7.60546 5.938667,8.032238 l 51.224244,0.65609 C 72.674444,41.354462 76.685279,38.884243 78.6191,35.3418 M 14.9082,8.23047 c 1.235439,1.988228 2.180448,4.954938 4.955118,5.133251 16.374172,0.166596 32.74925,0.03249 49.123827,0.06955 3.797835,-0.762948 7.701483,1.376441 9.614455,4.640926 l 1.3359,7.863304 M 23.4226,8.11838 7.5383,14.0413 M 75.9215,43.3869 75.383,10.003 m -41.4606,0 -21.538,31.7685 m 33.6531,0.8077 0.5384,-32.5762"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path70"
sodipodi:nodetypes="ccccccccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
<path
d="m 62.2668,40.6857 4.9354,0.075"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path265"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 62.2656,40.7773 c 0.112981,4.094292 0.212759,8.18894 0.303458,12.283784 0.174094,15.33228 0.817139,30.659596 0.701829,45.994588 C 63.252167,109.86977 62.318925,120.67375 62.6992,131.488 m 9.4395,-90.7439 c 0.597075,19.406513 1.125562,38.815131 1.761426,58.220451 0.708193,7.774039 1.390746,15.605659 0.715393,23.412089 -0.963754,4.26758 -4.503207,7.24714 -7.334319,10.35036 m 6.7557,-1.573 -16.4227,-5.115 m 22.8841,-11.307 c -7.358833,0.17933 -14.717667,0.35867 -22.0765,0.538 M 74.3061,42.8484 H 60.3064"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path69"
sodipodi:nodetypes="cccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:split_method="staggered"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-כ"
style="display:none"
id="g153">
<path
d="m 74.81294,55.937 q 0,24.5001 -10.50006,34.0002 -9.25004,8.375 -31.25015,8.375 H 1.75008 L 12.00013,72.0621 h 31.81266 q 10.68755,0 17.81258,-3.375 4.87503,-7.3751 4.87503,-13.3751 0,-15.0001 -22.68761,-15.0001 H 15.93765 q -4.93752,0 -6.81253,-3.375 -1.75001,-3.125 -1.75001,-13.8125 0,-15.0626 3.56252,-15.0626 0.75,0 1.84376,2.6875 1.09375,2.6875 4.40627,2.6875 H 45.8753 q 15.37507,0 22.0001,9.3751 6.93754,9.75 6.93754,33.1251 z"
id="path153"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 37.872435,94.283821 53.531231,82.266606"
id="path73"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 11.3341,8.22977 c 1.166737,3.24219 4.032475,6.106747 7.732674,5.218059 10.79393,0.121037 21.611512,-0.347735 32.388756,0.329337 8.185147,0.846449 16.156942,5.868444 19.001923,13.839997 4.478474,10.955264 4.567288,23.082227 4.124915,34.74199 -0.634346,9.592684 -2.692193,19.953896 -9.718327,27.013157 -8.524134,7.845972 -20.738729,8.677551 -31.7526,8.951484 -10.453544,-0.0026 -20.90728,-0.02657 -31.361357,-0.01159 M 10.0386,8.43543 c -3.6020504,6.09201 -2.4206136,13.439019 -2.5328987,20.188912 0.4223495,3.857037 0.4209303,9.071065 4.5507787,10.904269 4.977481,1.574395 10.330707,0.486433 15.465471,0.795825 8.943468,0.172366 18.044582,-0.692107 26.868235,1.097088 5.674557,1.111824 11.274897,5.207228 11.914927,11.320878 0.709159,5.581285 -1.359191,11.374771 -4.794788,15.717849 -3.666466,2.341961 -8.253151,2.738513 -12.476315,3.319144 -9.565978,0.600488 -19.161135,0.151848 -28.742207,0.282703 H 12.0001 C 8.7975288,80.263951 5.5948812,88.465774 2.39224,96.6676 M 3.27742,14.1691 20.757,8.34253 M 1.82079,86.2723 10.5606,100.11 M 32.045902,63.69451 30.95347,102.295 M 44.427261,65.879452 49.1613,100.11 M 57.537,62.2379 80.84309,62.966236 M 56.4445,45.8508 78.294,36.7469 M 30.589274,46.579154 33.1384,7.25005"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path72"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ל"
style="display:none"
id="g154">
<path
d="m 76.50044,49.437 q 0,13.8751 -13.68756,23.8126 -11.43756,8.9375 -10.06255,13.6251 0.625,4.625 -5.62503,9.25 -5.06252,3.4375 -8.37504,3.4375 -2.31251,0 -4.00002,-1.6875 -1.93751,-1.875 -1.93751,-4.8125 -1.25,-4.3125 2.93752,-9.3125 4.62502,-5.7501 12.56256,-10.5001 11.18755,-6 15.81257,-11.0001 1.37501,-3.6875 2.00001,-6.75 -0.625,-4.3125 -0.25,-10.1875 -2.87501,-4.8751 -8.68754,-4.8751 H 18.87517 q -7.93754,0 -10.75005,-3.125 Q 5.6876,34.5619 5.6876,27.3744 L 7.56261,11.0618 q 1.25001,-9 1.87501,-11.2813 0.625,-2.2813 2.56251,-7.4688 1.00001,-3.375 1.00001,-5.125 0.0625,-1.8125 0.0625,-2.375 0,-2.1875 -3.68752,-3.3437 -3.68752,-1.1563 -3.68752,-4.3439 0,-6.125 2.12501,-9.375 1.81251,-2.75 2.75002,-2.75 1,0 1,0.625 0,0.125 -0.125,0.5313 -0.125,0.4062 -0.125,0.5312 0,0.5625 2.75001,1.5 3.50002,1.1875 7.00004,2.5 2.75001,2.1875 2.75001,5.6875 0,2.5 -1.56251,4.8126 -2.12501,3.0625 -3.00001,5.6875 -2.18751,5.4375 -2.18751,12.9375 v 2.0001 q 0,9.25 2.68751,10.3125 1.06251,1.3125 4.31252,1.3125 h 38.87519 q 9.50004,0 10.75005,7.9376 l 2.31251,14.625 q 0.5,3.25 0.5,13.4376 z"
id="path154"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 36.564803,96.440288 45.577255,82.792862"
id="path75"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 9.76297,-34.4685 -0.3247353,0.447135 c -2.8371416,2.861375 -3.921672,7.00036 -3.697954,10.941551 -0.491332,4.59192 5.4079063,3.938255 7.1070183,7.023289 0.648457,3.084462 -0.23577,6.1956545 -1.155977,9.1249804 C 9.0894259,-0.40952215 8.0795481,6.587112 7.289574,13.522813 6.8500985,20.351678 4.6547882,27.3057 6.5286479,34.093433 c 0.7345336,3.939401 4.8888251,5.812099 8.5079801,6.122974 12.45985,0.377472 24.935253,0.1256 37.401364,0.205029 3.698598,-0.06184 7.826591,-0.440621 10.945543,1.993572 3.060363,1.739322 2.565945,5.418316 2.317721,8.378314 0.819619,3.829584 -0.0511,7.752939 -1.526278,11.309845 -6.795504,7.417489 -16.819684,10.522915 -24.212565,17.2047 -2.637221,2.560443 -5.503946,5.234177 -6.763199,8.768802 -0.232752,3.030907 -0.841892,6.57436 1.040686,9.229931 M 11.209297,-34.836405 c 0.151192,0.404966 0.378494,0.787218 0.435494,1.222769 1.849229,2.97448 5.937101,2.193583 8.551613,4.041228 3.547504,1.37383 4.342281,6.054133 2.923526,9.233399 -2.570001,3.871145 -4.659671,8.150014 -5.4261,12.7786605 -0.652911,4.8008321 -0.889784,9.7186072 -0.299687,14.5406099 0.08164,2.9105856 1.854308,5.9673336 4.968796,6.3423076 12.774974,0.260816 25.563823,0.07072 38.344207,0.138658 3.974439,-0.282651 8.629521,0.176128 11.260085,3.563247 1.821653,2.713992 1.865215,6.168136 2.477841,9.291347 1.147309,6.271173 2.045989,12.604225 2.028289,18.995454 0.350229,5.992442 -0.403661,12.271036 -3.687875,17.4337 -4.189466,7.733263 -12.807549,11.375988 -18.039107,18.212842 -2.372528,2.319966 -1.950969,5.622556 -2.245122,8.565304 -1.826011,5.199556 -7.14579,7.968618 -11.985357,9.824279 m -24.036003,-132.943905 -13.64742,3.605 m 22.65992,14.4199 c -5.493317,-0.08583 -10.986633,-0.17167 -16.47995,-0.2575 M 8.49745,41.8506 22.6599,6.57327 m 32.4448,0.7725 V 41.5931 M 78.0221,59.618 62.8297,54.468 m -9.785,41.7148 -23.4324,-9.0125"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path74"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccc"
inkstitch:max_stitch_length_mm=""
inkstitch:split_method="staggered"
inkstitch:random_split_phase="False"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ם"
style="display:none"
id="g155">
<path
d="M 23.56269,40.5619 Q 16.18765,43.062 16.43766,51.187 l 0.75,20.8751 H 68.87541 L 67.8129,47.2495 Q 67.6879,42.937 65.37539,41.4994 63.50038,40.3119 58.75036,40.3119 Z M 76.87545,98.3122 H 7.87511 V 53.6245 q 0,-10.1875 5.56253,-13.3126 -2.68751,-0.1875 -4.43752,-2.9375 -1.62501,-3.75 -1.62501,-11.125 0,-18.1876 3.56252,-18.1876 0.75,0 1.84376,2.6875 1.09375,2.6875 4.40627,2.6875 h 42.2502 q 17.43759,0 17.43759,18.5626 z"
id="path155"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 71.327116,94.895297 72.614609,70.432928"
id="path81"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 8.7666,10.6201 C 8.4294601,11.921476 8.1813645,13.244875 7.9982426,14.576342 7.5759514,19.622241 7.153626,24.708071 7.4929708,29.773713 c 0.3702041,3.291353 0.6248878,7.197479 3.5391582,9.332183 3.709355,2.61648 8.565458,2.214692 12.829515,1.616019 12.107486,-0.452909 24.227921,-0.239489 36.338894,-0.406065 2.863766,0.01834 6.40413,1.009214 7.244994,4.131366 0.928396,9.177598 0.90026,18.4131 1.429468,27.615284 H 20.273259 c -0.918691,-0.137733 -2.173194,0.417825 -2.682315,-0.632386 -1.37604,-2.748732 -0.434098,-5.940101 -0.589774,-8.877901 -0.257256,-2.163618 -0.19004,-4.336759 -0.361659,-6.513768 -0.324677,-4.19131 1.318324,-11.555346 4.215678,-15.011131 M 11.334,8.23047 c 1.329401,1.782179 2.010548,4.604473 4.527086,5.083114 9.794841,0.250802 19.593293,0.08836 29.389827,0.112483 7.150958,0.401416 14.464282,-0.877103 21.475748,1.049022 5.933851,1.689469 9.533786,7.82442 9.949356,13.718046 0.444827,23.369992 0.08062,46.746614 0.198983,70.119365 h -69 C 7.8822428,84.609598 7.8578331,70.904645 7.8950906,57.203383 7.7696779,52.054638 8.9956537,44.486591 12.512793,40.31871 M 17.7674,10.1783 3.60498,17.1307 M 24.7199,42.8806 30.127307,9.40576 M 80.3396,48.803 c -5.4933,0.08583 -10.9866,0.17167 -16.4799,0.2575 m 15.4499,11.845 H 65.4046 M 52.5297,100.56 52.7872,68.8879 M 30.1273,104.423 30.6423,68.1154 M 18.5399,49.318 4.11998,49.5755 M 24.9774,9.66326 5.40747,34.8981 M 56.392163,7.8607614 54.847217,42.880603"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path79"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccc"
inkstitch:split_method="staggered"
inkstitch:max_stitch_length_mm=""
inkstitch:random_split_phase="False"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-מ"
style="display:none"
id="g156">
<path
d="m 76.75044,53.3745 q 0,13.0626 -7.81253,44.9377 h -40.9377 l 4.68752,-26.2501 h 31.50015 q 2.31252,-5.1875 2.31252,-9.4376 1.875,-9.125 -4.56253,-15.7812 -6.43753,-6.6564 -18.62509,-6.6564 -9.87504,0 -18.25008,7.8126 -8.37504,7.8125 -7.75004,16.3751 -0.625,0.375 -0.0937,5.3125 0.53125,4.9375 0.53125,8.6875 0,12.3126 -2.06251,14.5626 -5.50002,5.375 -6.00003,5.375 -2.43751,0 -2.43751,-2.5625 0,-1.5625 0.87501,-3.3125 -0.43751,-4.125 -0.43751,-14.5001 0,-2 -0.3125,-7.6562 -0.3125,-5.6563 0.3125,-9.2189 0.62501,-9.625 8.93755,-17.9375 1.0625,-1.125 3.93751,-3.5001 l -4.43752,-0.5 q -1.93751,-0.3125 -4.25002,-1.3125 -3.18751,-2 -4.18752,-4.875 -0.8125,-2.375 -0.8125,-8.0625 1.25001,-9.3126 5.18752,-13.5626 3.00002,-3.25 4.62503,-3.25 1.1875,0 1.1875,1.3125 0,0.375 -0.125,0.7188 -0.125,0.3437 -0.125,0.6562 0,1.5625 8.56254,4.5 4.43752,1.5 6.00003,3.8125 1.56251,2.3126 1.56251,7.6876 0,2.6875 -4.68752,7.375 6.81253,-3.1875 9.68754,-4 3.43752,-1.375 4.06252,-3.5 1.25001,-2.75 2.28126,-7.0626 1.03126,-4.3125 1.65626,-5.75 0.625,-4.125 5.18753,-4.125 2.68751,0 9.31254,2.75 5.56253,3.125 8.50004,7.6875 7.06253,9.5626 7.06253,27.9377 0,1.125 -0.0625,2.9375 z"
id="path156"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 66.899401,86.882897 43.260037,85.228142 43.49643,85.464535"
id="path18"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 28,98.3125 h 2.7319 38.2056 m -36.25,-26.25 h 4.2765 l 37.5321,0.6934 M 30.022,101.303 37.823,68.4442"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path16"
sodipodi:nodetypes="cccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="M 74.4961,72.7559 69.5929,71.4687"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path266"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 64.2129,71.998 c 1.281846,-3.103962 2.25916,-6.387706 2.371221,-9.764154 C 67.923824,55.971261 65.314307,49.102555 60.187074,45.272843 54.782447,40.9565 47.533362,39.787347 40.795341,40.352804 c -0.882511,0.259552 -1.240437,0.07021 -0.883456,-0.775067 0.847071,-4.052613 1.694143,-8.105227 2.541215,-12.15784 m 32.043,45.336 C 76.59648,61.704725 77.466927,50.3578 76.329774,39.143805 75.488737,31.460857 73.0719,23.670707 67.912512,17.759408 65.347872,14.72974 61.909774,12.549996 58.194424,11.207981 55.948433,10.455082 53.604407,9.5798313 51.197087,9.7905997 c -1.43642,0.114215 -2.786169,0.8410953 -3.644876,1.9994613 l -0.119807,0.111085 -0.123804,0.106651 m 14.8629,56.2 c 5.358267,0.1576 10.716533,0.3152 16.0748,0.4728"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path17"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="M 42.1367,28.9338 31.494412,39.486727 24.6924,36.8614"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path19"
sodipodi:nodetypes="ccc"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 16.6282,8.38339 c -0.70485,0.3422522 -1.464805,0.551667 -2.170055,0.893003 -2.584715,1.592645 -4.272474,4.31617 -5.4255577,7.067398 -1.4503275,3.867965 -2.4889029,8.038498 -1.991925,12.192724 -0.034858,2.793468 0.7203157,5.714574 2.800713,7.696047 C 12.564137,39.091733 16.74175,38.881416 20.3223,39.5977 M 17.207,8.14453 c 0.489211,1.1186906 0.106839,2.58732 1.042523,3.47787 3.585437,2.743155 8.388334,3.111881 12.088113,5.667683 2.882001,1.827783 3.299483,5.52505 3.395463,8.634888 0.206144,3.436345 -2.709651,5.777574 -4.670599,8.200029 M 21.7482,11.2369 11.3469,8.873 M 37.1138,28.4937 12.2925,39.3678 M 33.0951,15.492 2.60033,29.4392"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path15"
sodipodi:nodetypes="ccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="m 29.0625,34.125 2.2272,4.1357"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path267"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 42.4531,27.4199 c -2.32411,1.650533 -4.644996,3.270713 -7.411701,4.087415 -4.700217,1.647914 -8.852314,4.401437 -13.046662,7.019227 C 15.668216,43.288555 9.8243531,49.682348 8.1894191,57.682116 6.4768789,66.190899 7.9009023,74.867276 7.7518242,83.455101 7.6265188,87.559602 8.7232899,91.771649 7.25,95.75 M 39.7285,40.4551 c -3.322793,0.567905 -6.564204,1.719201 -9.42141,3.521709 -6.352777,4.170952 -12.507702,10.411543 -12.987711,18.412352 -0.645711,4.895211 0.292109,9.779658 0.392891,14.681789 -0.0086,4.709114 0.104463,9.541945 -1.190255,14.111493 -1.259026,3.09578 -4.443402,4.930622 -6.834515,7.130057 M 13.9472,97.9934 4.96427,90.9016 M 19.1479,82.6278 4.96427,82.155 M 36.641,43.6229 38.7686,24.7114"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path11"
sodipodi:nodetypes="cccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ן"
style="display:none"
id="g157">
<path
d="m 35.37525,29.1869 c 0,2.541667 -1.50001,6.833367 -4.50003,12.8751 -2.91668,5.875 -4.270853,10.791667 -4.06252,14.75 l 1.87501,29.9377 c 1.833347,11.208333 2.437517,23.27087 1.81251,36.1876 0.08333,0.875 -1.052087,2.77087 -3.40626,5.6876 -2.35418,2.91667 -3.864607,4.375 -4.53128,4.375 -1.83334,0 -2.75001,-0.89583 -2.75001,-2.6875 l -1.25,-70.4379 c -0.416673,-4.833333 -0.166673,-8.5625 0.75,-11.1875 0.916673,-2.625 1.37501,-3.833333 1.37501,-3.625 0,-1.583333 -1.50001,-2.7292 -4.50003,-3.4376 -1.58334,-0.5 -2.541677,-0.8125 -2.87501,-0.9375 -3.9166867,-0.875 -6.4583667,-2.479167 -7.62504,-4.8125 -0.375,-2.5 -0.5625,-5.666667 -0.5625,-9.5 0,-6.7084 0.7500033,-11.458433 2.25001,-14.2501 1.20834,-2.2083333 2.2083467,-3.3125 3.00002,-3.3125 0.75,0 1.215866,0.2557688 1.215866,1.1307688 0,0.2500002 -0.132533,0.6817312 -0.215866,0.9317312 -0.08333,0.25 -0.125,0.458333 -0.125,0.625 0,0.541667 1.729177,1.166667 5.18753,1.875 6.20836,1.041667 9.770877,1.916667 10.68755,2.625 3.91668,0.916667 6.35419,2.625033 7.31253,5.1251 0.625007,1.791667 0.93751,4.479167 0.93751,8.0625 z"
id="path157"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1"
sodipodi:nodetypes="scccccsccsccccscsssscccs" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 23.970455,110.49314 V 91.849451"
id="path21"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 10.2653,8.91937 8.9412103,10.216794 C 7.7027343,11.138235 7.1410275,12.577762 6.6333636,13.978628 5.8179875,16.292074 5.5536989,18.75765 5.321517,21.190646 5.0465,25.732941 5.0653255,30.308723 5.5843496,34.834233 c -0.1095311,0.943351 0.4893021,1.623656 1.0108166,2.332673 0.9887746,1.207829 2.3899788,1.983824 3.8033298,2.611483 2.325166,0.757223 4.679764,1.465047 7.009423,2.22614 1.418174,0.431599 3.082901,1.287176 3.247561,2.930846 -0.169958,0.683906 -0.558785,1.430654 -0.769309,2.152781 -1.593843,3.830036 -1.665312,8.057048 -1.359255,12.134025 0.360544,17.136572 0.616282,34.276948 0.936611,51.414979 0.182946,6.94995 0.104249,13.90931 0.520973,20.85084 M 11.4298,9.0957519 11.2713,11.3934 c 0.261993,0.869618 1.476215,0.986009 2.255822,1.232814 3.908731,1.160843 8.002587,1.524509 11.912152,2.666292 1.238239,0.450441 2.428835,1.033852 3.722871,1.346854 1.183678,0.435181 2.393881,1.000153 3.318832,1.872774 1.872821,1.33665 2.376209,3.695196 2.639461,5.842619 0.0814,2.268097 0.446222,4.555537 0.0062,6.807274 -1.146118,5.088935 -3.806951,9.642247 -5.825283,14.411191 -0.732455,1.839522 -1.437211,3.719298 -1.85101,5.658911 -0.465184,1.741159 -0.606142,3.522494 -0.626312,5.318797 0.478748,8.675808 1.077443,17.350467 1.602312,26.025833 0.126729,4.10501 0.815233,8.15497 1.336641,12.221304 0.364901,4.367856 0.808022,8.738637 0.842812,13.125827 0.213181,4.65615 0.04581,9.31214 -0.07946,13.96816 0.182513,1.67979 -0.740591,3.15012 -1.74511,4.40569 -1.412453,2.16871 -3.192069,4.04124 -5.015355,5.8647 -0.496,0.89144 -1.568923,0.52335 -2.406273,0.66956 M 13.739703,87.326797 35.459,88.3013 M 12.344927,47.174079 42.242243,38.606073 M 2.83672,36.7674 37.1138,9.10939"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path20"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-נ"
style="display:none"
id="g158">
<path
d="m 41.31277,81.3121 q 0,7.7501 -2.56251,17.0001 H 3.37509 L 7.25011,72.0621 h 22.93761 q -0.375,-6.75 -0.375,-12.6876 0,-4.5625 0.0937,-7.3125 0.0937,-2.75 0.0937,-4.8125 -0.625,-8.1876 -10.93755,-6.9376 h -3.12502 q -4.93752,0 -6.81253,-3.375 -1.75001,-3.125 -1.75001,-10.6875 0,-18.1876 3.56252,-18.1876 0.75,0 1.84376,2.6875 1.09375,2.6875 4.40627,2.6875 h 3.87502 q 17.37508,0 17.37508,18.5626 0,3.1875 -0.75,7.2813 -0.75001,4.0938 -0.75001,9.2188 0,3.9375 2.18751,15.7814 2.18751,11.8437 2.18751,17.0312 z"
id="path158"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 35.511786,94.734783 33.736197,83.193453 35.511786,71.874071"
id="path34"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 9.3789,9.19921 c -0.2923232,0.6078132 -0.5285727,1.241683 -0.7203561,1.887996 -1.3663381,5.507025 -1.174467,11.253992 -1.2339188,16.888425 0.2284111,3.776559 0.2680578,8.269959 3.4347179,10.898305 4.031629,2.661275 8.997326,0.692291 13.4369,1.545896 3.264796,0.470765 5.65825,3.514939 5.65605,6.773749 C 29.840134,55.416099 29.708313,63.655617 30.1797,71.875 M 10.9375,8.0625 c 0.242128,0.3025043 0.470508,0.6157033 0.71539,0.9160407 1.275361,1.7881493 2.208178,4.5480203 4.92019,4.3644163 4.590384,0.25 9.472699,-0.296634 13.689528,1.95913 4.471441,2.030557 7.050952,6.691442 7.738363,11.394783 1.404388,7.495183 -1.365391,14.898171 -1.027494,22.404966 0.564427,7.662305 2.290642,15.181857 3.413223,22.773164 m 2.0055,-7.5472 H 26.4119 M 42.3922,37.9159 25.3021,44.3524 M 38.841,17.4966 3.99508,38.3598 M 15.3145,9.0626 5.32677,11.726"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path33"
sodipodi:nodetypes="cccccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="m 40.3867,71.875 -7.527,13.2216"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path268"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 38.75,98.3125 H 19.6627 6.55955 3.375 M 40.868603,91.078241 C 41.825582,84.453638 42.35374,77.914799 40.3867,71.875 l -15.982,0.1875 H 10.3095 7.25 m 3.6255,-3.9616 -4.66094,32.6261"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path31"
sodipodi:nodetypes="ccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ס"
style="display:none"
id="g159">
<path
d="m 32.62523,40.3119 q -8.12504,0.25 -13.43756,7.1876 -1.31251,2.4375 -1.93751,3.9375 -1.87501,10.875 2.68751,16.2501 6.06253,5.0625 16.43758,5.0625 h 7.43754 q 10.12505,0 12.68756,-2.1875 6.25003,-3.25 7.81253,-6.75 1.56251,-3.5001 2.18752,-7.8751 0,-9.75 -3.37502,-11.4375 Q 57.93785,39.6869 45.6878,40.3119 Z M 74.81294,55.937 q 0,19.5001 -7.93754,30.9377 -9.06255,13.125 -27.12513,13.125 -15.93758,0 -23.87512,-10.75 -7.12503,-9.5001 -7.12503,-26.1251 0,-18.3126 7.62503,-23.4377 h -1.1875 q -4.93752,0 -6.87503,-3.375 -1.75001,-3.125 -1.75001,-9.4375 0,-18.8126 3.62502,-18.8126 0.625,0 1.78125,2.6875 1.15626,2.6875 4.46878,2.6875 H 45.8753 q 14.25006,0 21.6876,11.1251 7.25004,10.875 7.25004,31.3751 z"
id="path159"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="m 47.275065,96.288424 1.109743,-13.094971 v 0"
id="path38"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 9.09749,8.96321 C 6.4583649,13.941727 6.8245712,19.633493 6.5983021,25.078731 6.60875,29.515411 6.3801904,34.69317 9.83536,38.0416 l 25.045768,1.7815 c 5.537536,0.799811 11.139814,0.205315 16.701926,0.570658 4.840718,0.364859 10.21755,1.75359 13.19323,5.897592 2.142435,4.399347 2.095092,9.655163 0.684791,14.277843 -0.772581,3.91869 -3.669712,7.087023 -7.111396,8.944274 C 54.005435,72.76498 48.328754,72.68128 43.156628,72.72271 36.026168,72.868665 28.313428,73.141053 22.02937,69.201582 17.655228,66.637735 16.532153,61.106902 16.73349,56.409368 16.401454,50.566057 21.798356,41.606493 26.954989,39.00517 M 10.752743,8.590617 c 1.110058,2.254354 2.675799,5.222042 5.672401,4.754069 10.166336,0.224764 20.337371,0.03477 30.503715,0.118446 7.138493,0.09487 14.342796,3.118309 18.862295,8.747128 6.567471,8.197877 8.462003,18.985109 8.892602,29.21242 C 75.30748,66.347501 72.980768,90.512085 52.746347,97.868095 41.931416,101.63404 24.08473,101.60129 15.204415,88.285365 6.2013762,74.860655 5.9726997,48.298536 16.324343,38.676062 M 42.614135,4.6236313 41.5044,43.686638 m 37.5093,12.873 L 61.4798,55.4499 M 36.3996,107.608 36.8435,66.1034"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path37"
sodipodi:nodetypes="cccccccccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ע"
style="display:none"
id="g160">
<path
d="m 71.81292,27.4994 q 0,4.125 -2.56251,10.25 -3.93752,9.4376 -5.37503,14.2501 -1.81251,6.0625 -2.75001,15.0626 -0.9375,8.5625 -1.75001,10.875 -2.18751,6.3751 -5.31252,9.0001 -4.62503,5.75 -15.93758,7.625 L 4.1876,100.1872 7.31261,75.9371 25.3127,72.9996 q 2.00001,-0.062 2.62501,-1 0.625,-5.5625 -6.06253,-11.3438 -6.68753,-5.7813 -4.81252,-12.1563 0.625,-6.3125 1.25,-8.4376 -5.81252,-1.375 -6.87503,-4.875 -1.1875,-2.5 -1.1875,-11.3125 0,-7.6251 2.25001,-11.7501 1.75,-3.3125 3.00001,-3.3125 1.12501,0 1.12501,1.3125 0,0.375 -0.125,0.75 -0.12501,0.375 -0.12501,0.625 0,0.875 3.62502,1.875 7.50004,2.125 9.06255,2.625 4.25002,1.4375 5.81252,3.9375 1.31251,2.1876 1.31251,11.1876 0,5.125 -2.06251,9.25 -1.68751,4.5626 -2.50001,4.5626 -1.43751,0 -1.43751,-1.5 v 0.75 q 0,-1.25 -2.56251,-1.75 -3.00002,-0.5626 -4.12502,-1.0626 -0.93751,0 -0.93751,2.1251 -1.25,2.5625 5.06253,7.7188 6.31253,5.1562 6.18753,13.3438 -1.25001,6.5625 -0.625,7.375 l 5.81252,-1.125 q 8.50004,-1 11.50006,-1.75 2.18751,-1.875 4.31252,-9.3751 l 2.68751,-9.375 q 0.1875,-0.1875 0.75001,-1.3125 0.75,-3 0.75,-3.1875 0.625,-1.4375 -2.12501,-3.375 -0.5625,-0.8126 -5.25003,-2.2501 -4.68752,-1.4375 -6.25003,-3.875 -0.8125,-2.75 -0.8125,-8.6875 0,-11.3126 2.68751,-15.5001 2.12501,-3.3125 3.43752,-3.3125 1.125,0 1.125,1.3125 0,0.375 -0.125,0.75 -0.125,0.375 -0.125,0.625 0,1.625 8.56254,4.5 11.68756,3.9375 11.68756,11.5001 z"
id="path160"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 30.628915,92.515297 31.072813,68.988738 21.52902,54.118178 C 21.45504,45.706768 21.381055,37.275021 21.307072,27.706287"
id="path51"
sodipodi:nodetypes="cccc"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 31.1277,44.5044 C 29.94557,43.1689 28.241726,42.380111 26.488552,42.162382 24.171686,41.531675 21.738348,41.463742 19.446125,40.727603 18.602799,40.61962 17.921954,40.194003 17.212656,39.768396 15.603957,38.965539 13.6218,38.627051 12.501327,37.087245 10.818335,34.825485 10.589196,31.901612 10.4136,29.183927 10.204192,24.322212 9.9854379,19.31755 11.498603,14.622396 12.100203,12.813072 12.866378,10.911843 14.468615,9.7570903 14.771953,9.4944305 15.075669,9.2312691 15.3566,8.94435 M 31.625,44.9375 c 1.889707,-2.421729 2.915502,-5.369479 3.850983,-8.257881 1.149576,-4.424573 0.661562,-9.03822 0.287833,-13.530941 -0.23534,-2.034736 -1.088818,-4.190325 -2.929977,-5.274133 C 29.61619,15.678801 25.673955,15.150333 22.03928,13.982382 20.290941,13.426843 18.504201,12.959649 16.841415,12.168459 16.070464,11.484308 16.637696,10.405612 16.554709,9.55078 M 12.2072,40.8013 C 20.937167,35.6225 29.667133,30.4437 38.3971,25.2649"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 2"
id="path50"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="m 18.232395,40.4023 c -0.116969,0.580211 -0.228551,1.161521 -0.332615,1.74419 -0.518678,2.557192 -0.560023,5.179119 -1.111616,7.7298 -0.616403,3.505202 1.192852,6.928788 3.598644,9.358696 2.416231,2.321141 5.119152,4.512017 6.56888,7.620803 0.84926,1.570132 1.020502,3.366283 0.983812,5.122711 M 22.939492,41.6641 c -0.351724,1.270109 -0.840699,2.765671 -0.275284,4.046218 1.408985,2.74954 4.024255,4.548471 6.207739,6.632284 3.30481,3.13614 5.142612,7.729684 4.889724,12.277832 -0.281924,2.161697 -0.750306,4.308712 -0.767576,6.500666 m 2.739597,-2.5763 -10.8754,1.7756"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path49"
sodipodi:nodetypes="ccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="m 33.7394,70.9947 2.0914,12.2106"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path269"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 51.3093,9.35327 c 0.302073,1.817474 0.470948,3.567505 2.606162,4.179713 5.282078,2.588131 11.71483,3.464232 15.720629,8.159933 2.483178,2.715241 2.4863,6.654886 1.614071,10.013539 -1.672626,6.360104 -4.807439,12.212104 -6.755028,18.485963 -2.960006,8.298685 -3.100851,17.203432 -4.633146,25.79807 -0.902868,3.713913 -2.461108,7.410095 -5.091343,10.236548 -2.509238,3.025559 -5.849227,5.276908 -9.564136,6.542999 -5.844065,2.01429 -12.063749,2.459007 -18.101794,3.61909 C 19.46562,97.655275 11.826456,98.921012 4.1875,100.188 M 51.1797,8.89453 c -2.75852,0.343352 -4.015708,3.25517 -4.994905,5.510001 -1.81106,5.904992 -1.727771,12.187994 -1.408864,18.298136 0.212097,1.743263 0.189672,3.833402 1.804755,4.93207 2.929416,2.543769 7.094594,2.673297 10.269943,4.743904 1.645535,1.002238 2.798908,2.850397 1.842777,4.741043 -0.341169,2.166573 -1.68536,3.950311 -2.042962,6.123853 -1.445578,4.741663 -2.412682,9.721819 -4.827592,14.097265 -0.965703,2.486201 -3.879265,2.02448 -6.023065,2.555841 -3.804651,0.519299 -7.616757,0.981489 -11.371685,1.80074 -1.396465,0.789952 -1.245185,-1.072191 -2.696491,-0.362117 -1.434063,0.417745 -3.197306,0.134866 -4.350974,1.150497 -1.557554,0.656495 -3.319942,0.594415 -4.957887,0.985816 C 17.385997,74.293538 12.349264,75.11561 7.3125,75.9375 m 33.0822,-10.056 0.6658,31.5167 m 6.8804,-31.9606 16.2023,7.7682 M 54.5994,44.7963 72.1333,42.7988 M 43.058,37.694 73.2431,20.6039"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path48"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ף"
style="display:none"
id="g161">
<path
d="m 74.43793,122.9373 q 0,1.3125 -3.87502,5.6876 -3.87501,4.375 -4.81252,4.375 -1.56251,0 -2.81251,-2.6875 0,-1.6875 1.25,-39.8127 1.25001,-38.1252 1.25001,-42.8752 0,-7.3126 -11.12505,-7.3126 H 21.68768 q -5.93753,3.0001 -6.56253,17.9376 0,2.25 1.62501,2.8125 0.9375,0.3125 4.06252,0.3125 1.1875,0 4.59377,0.094 3.40626,0.094 6.78128,0.094 3.06252,0 5.50003,1.6876 2.81251,2.5625 2.81251,6.0625 0,4.0625 -2.87501,6.5625 -2.43751,2.125 -5.43753,2.125 H 15.18765 q -3.43752,0 -5.37503,2.6875 -1.93751,2.6875 -2.43751,2.6875 -1.0625,0 -1.0625,-1.25 0,-0.6875 0.84375,-4.3125 0.84375,-3.625 0.84375,-7 0,-1.875 0.56251,-10.6876 0.5625,-8.8125 0.5625,-9.5 0,-3.375 4.06252,-10.3126 -2.31251,-0.062 -4.18752,-3.5 -1.62501,-3.0625 -1.62501,-10.5625 0,-18.1876 3.56252,-18.1876 0.75,0 1.84376,2.6875 1.09375,2.6875 4.40627,2.6875 h 39.06269 q 18.00008,0 18.06258,18.5626 l 0.0625,36.0627 0.68751,30.5626 q 1.25,11.5626 -0.62501,24.3126 z"
id="path161"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 69.4699,98.286 69.248,126.83786"
id="path76"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
sodipodi:nodetypes="cc"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 62.9375,130.312 C 63.799834,102.55632 64.718562,74.802077 65.410188,47.041431 65.282841,43.13996 61.361393,40.912613 57.877908,40.523448 53.775258,39.983906 49.626274,40.480775 45.500576,40.312193 37.562885,40.303008 29.625191,40.32167 21.6875,40.3125 17.695739,41.074559 12.667298,41.383041 9.7142953,38.048772 8.0958956,35.607245 7.8137303,32.538191 7.4756288,29.687145 7.1258776,24.721951 7.6473395,19.742353 7.9209568,14.792098 8.3470523,12.65224 9.2202647,10.641082 10.0001,8.6145 M 64.2656,132.328 c 3.860795,0.40508 6.301522,-3.27435 8.05536,-6.15231 1.967708,-2.4339 2.616009,-5.44855 2.796179,-8.51704 0.525136,-6.3118 0.340932,-12.64346 0.0046,-18.958833 C 74.187628,75.353044 74.479418,51.981098 74.163717,28.624635 73.742879,22.243413 69.552859,15.597146 62.970767,14.277489 55.032483,12.526346 46.881585,13.911533 38.849114,13.416065 30.992043,13.351137 23.123043,13.720528 15.276438,13.161183 13.135771,12.367124 12.486255,9.9567788 11.334,8.23047 M 29.9631,41.6891 31.2948,8.1748 M 41.7263,41.911 43.058,8.1748 m 17.534,39.7288 c 5.770667,-0.07397 11.541333,-0.147933 17.312,-0.2219"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path68"
sodipodi:nodetypes="cccccccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="M 13.1035,40.4648 C 9.355083,47.378395 9.30695,47.621672 8.8458025,55.173854 8.3398338,63.98226 7.4111533,71.271071 5.5460468,79.897803 5.3519774,80.795437 7.2108909,83.75261 8.0657515,82.710247 9.7667854,81.391993 10.59653,79.00306 12.793715,78.348582 17.261703,77.712107 21.792941,78.075196 26.289585,78.019936 29.690826,78.277021 33.10749,77.753163 36.3711,76.8047 M 20.849602,40.8242 c -4.561351,4.063724 -5.23115,10.49926 -5.679402,16.269064 -0.199015,1.430338 0.05382,3.283245 1.530006,3.945079 2.466576,0.417133 4.976573,0.351963 7.468218,0.399063 3.692713,0.300153 7.477082,-0.370079 11.097214,0.637398 2.609529,0.667968 4.211418,3.146909 5.058562,5.546296 M 5.54872,86.7446 17.5339,57.2255"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path67"
sodipodi:nodetypes="ccscccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-פ"
style="display:none"
id="g162">
<path
d="m 40.50027,59.312 q 0,-0.3125 -2.87501,2.8125 -2.43751,1.5001 -5.43753,1.5001 H 15.18765 q -2.81251,0 -4.75002,1.75 -1.93751,1.75 -2.43752,1.75 -1.0625,0 -1.0625,-1.25 0,-0.6875 0.84375,-4.3126 0.84376,-3.625 0.21875,-7 0,0.625 -0.375,-1.3125 -0.375,-1.9375 -0.375,-2.625 0,-6.5 5.31253,-10.3126 -1.68751,-0.062 -3.56252,-3.5 -1.62501,-3.0625 -1.62501,-10.5625 0,-18.1876 3.56252,-18.1876 0.75,0 1.84376,2.6875 1.09375,2.6875 4.40627,2.6875 H 46.1253 q 16.12508,0 22.3126,9.7501 5.75003,9.0625 5.75003,32.0001 V 72.4996 L 67.2504,98.3122 H 3.25009 L 8.75012,72.0621 h 56.81277 l 0.625,-5.75 Q 67.4379,48.8745 63.62538,46.7495 60.12536,40.3119 42.18778,40.3119 h -20.5001 q -5.93753,2.3751 -7.18753,7.9376 0,1 1,1.5625 0.93751,0.3125 5.31253,0.3125 1.1875,0 4.59377,0.094 3.40626,0.094 6.78128,0.094 3.06252,0 5.50003,2.3125 2.81251,2.5625 2.81251,6.6875 z"
id="path162"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="m 63.7168,92.848 6.75784,-26.259 v 0 C 68.398151,48.739431 75.095479,16.051083 16.499387,39.258736"
id="path87"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
sodipodi:nodetypes="cccc"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 39.371984,60.95991 c -1.276165,1.22169 -2.035414,1.70387 -3.842676,2.132184 -3.083192,0.908756 -6.335246,0.4111 -9.497877,0.535037 -3.98154,0.01715 -7.96808,-0.07042 -11.946286,0.07421 -2.081504,0.211266 -3.660868,1.662889 -5.1777008,2.948985 C 7.2547757,68.017231 6.527065,65.706898 7.2062488,64.424571 7.9633024,60.886878 8.8550909,57.120088 7.6910113,53.572231 7.05497,50.735919 7.1285817,47.670255 8.4803026,45.042027 9.3555616,43.158922 10.822957,41.653976 12.4512,40.4004 M 40.608579,58.769605 C 40.386484,56.654937 39.928005,54.949377 38.369182,53.364227 36.69856,51.339495 34.097144,50.134304 31.461979,50.316153 26.329581,50.171083 21.174996,50.262184 16.057705,49.925528 13.85767,49.516324 14.650129,47.064392 15.428791,45.726822 16.479806,43.438461 18.618244,41.88876 20.7754,40.7285 M 5.6461043,68.674374 22.1501,47.0672"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path84"
sodipodi:nodetypes="ccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="m 21.5307,40.7583 0.192,-13.7135"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path270"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 10.0351,8.48229 C 9.5141564,9.4020271 9.0472558,10.355043 8.6850743,11.349109 7.3607052,16.221231 7.5432232,21.388817 7.3754163,26.40916 c 0.2540497,4.659053 0.059764,10.535806 4.2850937,13.557491 3.188528,0.778423 6.755808,0.958295 10.026992,0.345853 9.182987,0.105779 18.379178,-0.272967 27.550113,0.320649 6.154281,0.415744 13.29575,2.361565 16.050092,8.492803 2.122386,7.254906 0.97113,14.961161 0.337293,22.364244 M 11.334,8.23047 c 1.192621,1.803491 1.924524,4.355475 4.243383,5.034031 3.782944,0.223944 7.574368,0.197065 11.362097,0.176931 8.896806,0.276453 17.868019,-0.698617 26.699993,0.686356 7.179498,0.887804 13.746943,5.550684 16.495822,12.304876 5.411269,14.486189 3.734918,30.225151 4.052205,45.364236 M 77.9597,42.724 59.7184,46.1985 M 48.901138,6.5867196 48.735925,43.054956 M 36.299275,8.2783644 35.913112,42.839907"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path85"
sodipodi:nodetypes="cccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="m 74.9428,71.4846 -4.224,13.5701"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path271"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 67.25,98.3125 h -64 M 74.1875,71.7969 C 52.374963,71.841529 30.562614,72.0625 8.75,72.0625 M 3.90884,100.271 14.3324,67.48 m 40.6085,32.791 7.1663,-30.4023"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 2"
id="path86"
sodipodi:nodetypes="cccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ץ"
style="display:none"
id="g163">
<path
d="m 35.12524,29.1869 q 0,3.8125 -4.50002,12.8751 -3.75001,8.8125 -3.43751,14.75 l 0.125,14.8751 q 2.93751,-9.2501 9.56254,-20.0001 6.62504,-9.8126 9.37505,-13.1876 -1.31251,-1.625 -1.81251,-2.3125 -2.00001,-2.0625 -2.00001,-4.875 0,-1.9375 1,-8.8125 1.50001,-7.4376 4.56253,-11.5626 2.50001,-3.375 3.50001,-3.25 1.31251,0.1875 1.06251,1.5625 -0.1875,0.3125 -0.5,1.25 -0.25001,1.1875 10.37505,7.1875 6.93753,3 7.56253,8.1876 0,1.5 0.0937,3.4063 0.0937,1.9062 -1.03125,5.1562 -1.43751,5.125 -4.37502,10.6251 -1.93751,4.75 -3.31252,4.625 -0.6875,-0.25 -1.125,-0.375 0,-0.125 0.125,-0.5625 0.125,-1.6875 -7.00004,-5.8125 -4.06252,3.4375 -12.31256,17.25 -8.50004,15.3126 -11.06255,27.5002 l 2.31251,12.875 q 2.06251,12.7501 1.00001,25.4377 0.0625,1.3125 -4.96878,5.7188 -5.03127,4.4062 -6.03128,4.4062 -1.0625,0 -1.375,-0.875 -0.125,-0.5 -0.125,-1.6875 V 57.9995 q -1.25001,-4.75 -0.81251,-9 0.4375,-4.25 0.4375,-4.5625 0,-2.375 -3.87501,-4.0626 -0.50001,-0.125 -1.62501,-0.3125 -5.25003,-1.3125 -7.00004,-4.8125 -1.1875,-1.875 -1.1875,-7.625 0,-9.4376 2.25001,-15.5001 1.81251,-3.3125 3.00001,-3.3125 1.25001,0 1.25001,1.3125 0,0.375 -0.1875,0.75 -0.1875,0.375 -0.1875,0.625 0,0.8125 5.18752,1.875 7.43754,1.5625 10.68755,2.625 4.00002,1.375 5.37503,5.1251 1,2.6875 1,8.0625 z"
id="path163"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 24.7144,98.254226 23.942075,81.456157 56.958968,30.675789"
id="path183"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 60.25,49.3125 C 59.827379,47.108589 57.909369,45.673142 56.090959,44.601872 54.66679,43.767649 53.24605,42.905803 52.044797,41.761929 50.142655,40.164497 47.973201,38.934343 45.837352,37.687895 43.493241,35.907102 42.060577,32.872437 42.516577,29.92082 43.067509,24.12953 43.848457,18.154582 46.729183,12.996471 47.716673,11.239439 48.912729,9.5510042 50.571141,8.3664074 50.875258,8.1326915 51.185987,7.9076975 51.5,7.6875 m 9.875,42 c 1.9673,-1.593227 3.171391,-3.894163 4.083148,-6.208931 2.147806,-4.650815 4.404575,-9.456995 4.625156,-14.663079 0.03796,-2.044333 -0.007,-4.22673 -1.136043,-6.012795 C 67.621899,20.563579 65.380105,19.080768 63.089515,17.964247 59.489393,16.05189 55.908664,14.041703 52.734057,11.468021 51.622332,10.838064 52.438024,9.544967 52.589794,8.63672 M 46.1464,8.27836 c 3.0893,0.9010467 6.1786,1.802093 9.2679,2.70314 M 40.354,29.3242 C 49.557533,25.076433 58.761067,20.828667 67.9646,16.5809 M 56.959,47.0877 c 2.703133,0.128733 5.406267,0.257467 8.1094,0.3862"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path181"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="m 45.6152,37.6914 c 0.11519,0.277954 0.761759,0.679982 0.531361,0.947252 -3.098363,4.026878 -5.95497,8.228027 -8.839382,12.408265 -3.793496,6.059241 -7.13527,12.4415 -9.483259,19.20707 -0.497108,1.661271 0.12115,3.476095 0.09078,5.198813 m 23.6649,-34.0678 1.537007,1.329065 c 0.414548,0.706878 -1.295015,1.507686 -1.705598,2.251031 -3.105878,3.672143 -5.711145,7.734255 -8.246843,11.811951 -2.130758,3.244583 -3.822946,6.738508 -5.618881,10.17242 -1.630857,3.531719 -3.307972,7.055323 -4.562377,10.743446 -1.244153,3.106683 -2.015509,6.362784 -2.885208,9.586387 M 53.6766,46.8946 42.671,38.0129 m -0.3862,23.1697 v 0.1931 L 33.4031,51.3355 M 32.2446,86.8624 27.4175,64.0788"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path180"
sodipodi:nodetypes="ccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="M 9.86719,10.6758 C 8.3102043,13.69756 7.5177127,17.052693 7.1397022,20.413987 6.978701,25.636539 5.7391558,31.333073 8.4859186,36.128715 10.856538,40.137444 16.410186,39.277333 19.517348,42.334085 21.459091,47.386125 20.390443,52.789687 20.8125,58 v 47.89741 c 0.196645,9.70227 -0.505592,19.43647 0.4928,29.11059 M 13.1719,9.55078 c -0.750054,2.347835 1.794969,3.476374 3.652296,3.756937 2.930803,0.441268 5.907771,0.776428 8.709702,1.663515 4.885668,0.677281 9.570036,4.783689 9.407106,9.981989 1.005661,5.994801 -1.736568,11.707233 -4.202949,16.989022 -3.38545,6.454307 -3.810059,13.918327 -3.533473,21.062342 -0.08701,5.224185 0.447192,10.425686 1.108447,15.602274 1.884479,10.863073 4.433752,21.652691 5.166166,32.684581 -0.02611,5.14648 0.665598,10.39683 -0.545718,15.46311 -3.159948,3.72554 -6.501986,7.96425 -11.495977,9.15145 M 16.7981,11.3677 6.1786,14.2639 M 37.4578,21.7941 7.72325,39.1714 m 24.90745,4.4408 c -4.955733,0.06437 -9.911467,0.12873 -14.8672,0.1931 m 10.4264,92.4857 c -3.282402,-2.05933 -6.564798,-4.11867 -9.8472,-6.178 M 33.4031,91.8825 C 27.9968,91.81817 22.5905,91.75383 17.1842,91.6895"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 2"
id="path182"
sodipodi:nodetypes="ccccccccccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-צ"
style="display:none"
id="g164">
<path
d="m 75.56294,75.1871 q 0,3.8125 -3.31252,12.1876 -1.75001,3.875 -3.43751,10.9375 H 6.56261 l 6.56253,-25.6251 h 47.50023 q 1.0625,0 1.0625,-0.5625 0,0.625 -1.0625,0 L 36.68775,61.687 q -8.56254,-1.625 -8.56254,-8.625 l -0.625,-10.75 q 0,-2.0001 -2.81252,-2.0001 h -8.75004 q -4.93752,0 -6.81253,-3.375 -1.75001,-3.125 -1.75001,-10.6875 0,-18.1876 3.56252,-18.1876 0.6875,0 1.78126,2.6875 1.09375,2.6875 4.46877,2.6875 h 6.68753 q 10.37505,0 10.37505,12.8126 v 13.5625 q -0.625,8.9376 6.50003,10.1251 l 12.75006,4.875 1.68751,-13.3126 q -5.93753,-2 -6.65628,-4.5312 -0.71875,-2.5313 -0.71875,-9.3438 0,-11.3126 2.31251,-15.5001 1.75001,-3.3125 2.93751,-3.3125 1.12501,0 1.12501,1.3125 0,0.375 -0.125,0.75 -0.125,0.375 -0.125,0.625 0,0.875 3.62501,1.875 7.50004,2.125 9.06255,2.625 4.25002,1.4375 5.81252,3.9375 1.37501,2.1876 1.37501,12.4376 0,5.1875 -2.06251,11.0626 -1.81251,5.0625 -2.56251,5.0625 -0.6875,0 -1.31251,-0.125 V 47.812 q 0,-2.875 -7.50003,-4.4375 l 0.4375,14.4375 q 7.37503,3.5625 11.62505,7.4376 3.12502,3.875 3.12502,9.9375 z"
id="path164"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="m 63.569222,90.562777 1.907077,-22.88492 -10.171076,-3.814153 5.72123,-36.552303"
id="path197"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 67.875,48.375 67.0062,46.0363 66.8203,45.8408 66,45.2656 63.6563,44.2383 60.375,43.375 l 0.0078,0.2871 -2.7511,-1.3799 -1.4269,-0.5617 -1.4939,-0.3943 -2.4403,-0.9983 -1.8457,-1.0587 -1.2476,-1.1195 -0.6461,-1.1809 -0.3144,-1.5333 -0.0328,-0.3024 -0.1918,-1.7659 -0.1797,-5.7422 0.1445,-5.211 0.4336,-4.3203 0.7227,-3.4296 1.0117,-2.5391 0.8398,-1.4492 0.3875,-0.5213 1.9956,-1.14164 M 69.1875,48.5 l 1.4409,-2.3095 1.1216,-2.753 0.9023,-2.8946 0.6446,-2.8086 0.3867,-2.7226 0.1289,-2.6367 -0.0859,-4.6211 -0.2578,-3.6132 -0.4297,-2.6055 -0.6016,-1.5977 -0.6364,-0.7936 -0.3128,-0.39 L 70.2031,17.7031 68.582,16.7852 66.625,16 57.5625,13.375 54.8437,12.4062 54.1641,11.9453 53.9375,11.5 54.059,10.8927 53.6088,9.10896 M 47.3049,9.05069 57.9244,11.9469 M 44.2156,37.8198 75.3017,16.7739 m -10.8126,29.1553 9.0749,0.3862"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path191"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="m 51.4336,54.0234 2.0664,0.7891 0.2634,-2.0783 1.2497,-9.8584 -0.3022,-1.5496 M 62.793,58.834 60.8125,57.8125 60.7181,54.7047 60.4125,44.641 60.3828,43.6621 m -9.0232,-1.9807 10.0402,3.2824 m -9.8471,7.144 11.5849,3.2824"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path192"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="m 51.4336,54.0234 -3.204,5.7574"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path272"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 61.0273,72.3282 -4.2257,-1.8703 -15.4641,-6.7429 -4.65,-2.0275 -2.0068,-0.4902 -1.7393,-0.6582 -1.4717,-0.8262 -1.2041,-0.9941 -0.9365,-1.1622 -0.6689,-1.33 -0.4014,-1.4981 -0.1338,-1.666 -0.4688,-8.0637 -0.1562,-2.6863 -0.1758,-0.875 -0.5273,-0.625 -0.8789,-0.375 -1.2305,-0.125 h -8.75 L 13.6602,40.1016 11.7656,39.4688 10.2539,38.4141 9.74852,37.753 9.125,36.9375 8.35937,35.0977 7.8125,32.7031 7.48437,29.7539 7.375,26.25 7.59765,18.2929 7.87597,15.167 8.26562,12.6093 8.70426,10.8676 9.3789,9.19921 M 75.3535,72.2188 74.5404,69.0574 74.3269,68.4324 73.4903,66.7655 72.4375,65.25 70.4624,63.6023 68.1907,61.9844 65.6312,60.3953 62.793,58.834 60.0262,58.1597 57.2294,57.2032 54.3746,55.8594 51.4336,54.0234 47.7104,52.5995 40.75,49.9375 39.0898,49.5195 37.6719,48.8594 36.4961,47.957 35.5625,46.8125 34.8711,45.4258 34.4219,43.7969 34.2335,42.0946 34.2148,41.9258 34.25,39.8125 V 26.25 L 34.0879,23.2471 33.6016,20.6445 32.791,18.4424 31.9833,17.1598 31.6563,16.6406 30.1973,15.2392 28.4141,14.2383 26.3067,13.6377 23.875,13.4375 H 17.1875 L 15.6426,13.2695 14.3828,12.7656 13.4082,11.9258 12.7188,10.75 12.246,9.78969 10.9375,8.0625 M 5.79244,11.7538 14.6742,9.05069 M 23.3628,46.8946 38.2301,40.3299 M 40.354,65.4304 48.6565,50.9493 M 6.75784,40.5229 35.5269,13.8777 m 18.922,56.7659 22.0113,-1.7377"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 2"
id="path193"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="M 75.3535,72.2188 69.614,85.2665"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path273"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 68.8125,98.3125 H 35.3748 9.29278 6.5625 m 68.793,-20.9336 -0.002,-5.1601 -31.4914,0.4687 H 17.6248 13.125 M 18.7289,69.292 8.49557,100.764 M 44.7948,69.8713 34.7546,100.185"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 3"
id="path194"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ק"
style="display:none"
id="g165">
<path
d="m 73.93793,50.937 q -0.625,16.2501 -5.37502,21.6876 -4.37503,3 -18.9376,8.125 -9.43754,3.3126 -13.93756,6.3751 -0.0625,2.5 -0.75001,6.875 -1.5625,4.4375 -8.37504,4.4375 -2.68751,0 -2.68751,-3.8125 -1.25001,-5.4375 3.62502,-11.6876 6.00003,-7.125 22.50011,-11.25 7.18753,-2.875 9.68754,-4.1875 5.12503,-2 5.12503,-8.8751 0,-11.25 -4.18752,-13.9375 -3.93752,-4.3751 -10.37505,-4.3751 H 15.93765 q -4.93752,0 -6.81253,-3.375 -1.75001,-3.125 -1.75001,-10.6875 0,-18.1876 3.56252,-18.1876 0.75,0 1.84376,2.6875 1.09375,2.6875 4.40627,2.6875 h 35.87517 q 10.31255,0 14.81257,6.3125 6.06253,8.4376 6.06253,31.1877 z m -56.06277,0.125 q 0,0.3125 -1.25,4.3438 -1.25001,4.0312 -1.87501,10.2813 0,11.75 1.375,22.3439 1.37501,10.5937 1.37501,17.7188 0,12.875 -1.81251,21.6251 -4.68752,8.125 -6.25003,8.125 -3.31251,0 -3.31251,-3.75 0.625,-4 1.375,-11.9688 0.75001,-7.9688 0.75001,-17.5939 0,-4.1875 -0.75001,-17.375 -0.75,-13.1876 -0.75,-15.1876 0,-8.3751 4.50002,-15.0001 3.87502,-5.75 5.12502,-5.75 1.50001,0 1.50001,2.1875 z"
id="path165"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 27.016919,95.012623 34.645226,82.298778"
id="path199"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 9.96055,8.69155 c -0.5815805,1.573345 -1.423074,3.05973 -1.7988946,4.699629 -0.8048803,6.147525 -1.0327618,12.434729 -0.4227863,18.613455 0.2152307,3.756194 2.3973709,7.975727 6.6179429,8.172423 18.881072,0.683091 35.400279,-0.891482 41.351709,1.103432 4.21272,1.812688 7.988689,5.517986 8.537372,10.265414 0.439959,4.560991 1.587858,9.901421 -1.50109,13.821393 -3.528777,3.153397 -8.391139,4.26871 -12.608371,6.263583 C 41.92918,73.914458 33.039126,76.49984 27.329967,83.241185 23.946744,87.250583 22.017241,93.630219 25.3869,98.1989 M 11.3341,8.22977 c 1.232741,1.825757 1.847201,4.436777 4.285708,5.004413 4.875305,0.402672 9.811166,0.109424 14.710432,0.208051 8.625141,0.117428 17.268576,-0.266517 25.881768,0.185851 5.637905,0.362419 11.073839,3.642601 13.312653,8.962084 4.09871,9.241692 4.386872,19.626228 4.336222,29.577555 -0.506609,6.935594 -0.900391,14.541881 -5.210766,20.338192 -7.026894,4.400346 -15.116216,6.629002 -22.777736,9.640709 -3.870745,2.229061 -11.251383,2.787674 -10.488449,8.552129 0.234114,3.633787 -2.265846,6.681 -5.743132,7.461146 M 8.8996911,40.343092 25.745535,7.9227881 M 42.273533,43.521553 41.637841,8.8763264 M 60.072915,52.421244 80.09722,53.692628 m -20.342151,7.310461 12.078152,14.303075"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path196"
sodipodi:nodetypes="cccccccccccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<g
id="g281">
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 11.4425,97.8732 10.4889,83.888"
id="path200"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
sodipodi:nodetypes="cc"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 17.0314,49.0112 -0.649867,0.100134 -0.649867,0.100136 C 10.549773,54.119439 7.0548374,61.009037 6.8292855,68.212265 7.0026704,83.016751 8.8695143,97.806843 7.9728115,112.62557 7.8245386,119.57999 6.4235962,126.44356 6.33214,133.391 M 17.8752,51.062 c -0.418589,1.519927 -0.900785,3.021931 -1.293248,4.549129 -2.581423,8.444752 -1.808151,17.347132 -1.138923,26.011296 1.203443,11.104497 2.709688,22.258445 1.768179,33.449745 -0.50957,4.41472 -0.36845,9.16903 -2.102915,13.27215 -1.962948,2.47663 -3.332697,7.39499 -7.119893,6.92168 M 20.9778,55.5997 9.21754,48.2892"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path195"
sodipodi:nodetypes="cccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ר"
style="display:none"
id="g166">
<path
d="m 76.25044,88.0622 q 0,1.4375 -2.93751,5.8438 -2.93752,4.4062 -4.50002,4.4062 -3.43752,0 -3.43752,-2.6875 0,-1.6875 0.875,-21.5313 0.87501,-19.8439 0.87501,-26.4689 0,-7.3126 -11.18756,-7.3126 H 15.18765 q -4.93752,0 -6.87503,-3.375 -1.75001,-3.125 -1.75001,-10.6875 0,-18.1876 3.62502,-18.1876 0.625,0 1.78125,2.6875 1.15626,2.6875 4.46878,2.6875 h 42.2502 q 17.37508,0 17.43758,18.5626 l 0.0625,28.0001 0.68751,14.0626 q 0.625,6.375 -0.62501,14.0001 z"
id="path166"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 69.290452,92.7877 72.468913,67.995703"
id="path202"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 9.1775,8.77796 -0.7157134,1.926088 c -1.6795368,3.535724 -1.6906003,7.489597 -1.7888171,11.329123 -0.00211,5.149057 -0.6605752,10.80543 2.0347095,15.438207 2.406841,3.428493 7.032556,2.780011 10.669905,2.832072 13.00748,0.108135 26.023371,-0.165979 39.025562,0.132122 3.824269,0.120402 8.61517,2.138461 8.661079,6.589114 C 66.939427,63.233699 65.928818,79.425458 65.3754,95.6247 M 10.5333,8.22977 c 1.340548,2.050293 2.123699,4.975773 5.061726,5.138895 10.879117,0.149137 21.7646,0.03509 32.646185,0.06465 6.350892,0.312033 13.030184,-0.921635 19.079481,1.575201 5.634791,2.298045 8.479309,8.506975 8.643702,14.307212 0.516336,13.22403 -0.234526,26.481596 0.667392,39.696832 0.421825,6.462106 0.773222,12.994061 -0.433651,19.3988 -1.33252,3.66595 -3.65793,6.973517 -6.518035,9.625443 L 66.2348,97.6403 M 28.924,8.24063 28.2883,43.2037 M 40.0486,42.8859 41.32,9.19417 M 79.4615,30.172 59.4372,44.7929"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path201"
sodipodi:nodetypes="ccccccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ש"
style="display:none"
id="g167">
<path
d="m 83.75048,26.7494 q 0,9.5625 -5.43753,24.7501 Q 76.06294,57.812 67.6254,77.4371 61.25037,92.1872 60.12536,98.3122 H 9.87512 q -1,-7.6875 -1.81251,-22.8126 Q 8.81262,61.187 8.18762,53.1245 7.56261,42.8745 8.50012,39.6869 5.9376,38.3119 5.0001,36.0619 q -0.8125,-3 -0.8125,-8.6875 0,-11.8751 2.68751,-16.0626 2.06251,-3.25 3.43752,-3.25 1.125,0 1.125,1.3125 0,0.375 -0.1875,0.7188 -0.1875,0.3437 -0.1875,0.6562 0,1.5625 8.68754,4.5 4.62502,1.5625 6.06253,4.1875 1.12501,2.1251 1.12501,12.3126 0,5.125 -2.81252,10.3751 -2.37501,4.375 -3.31251,4.375 -0.75001,0 -0.75001,-0.4375 0,-0.1875 0.125,-0.3125 0.125,-0.125 0.125,-0.6875 0,-0.25 -0.78125,-0.625 -0.78125,-0.375 -2.53126,-1.5625 -0.375,-0.125 -1.62501,-1.0626 0.8125,0.5626 0.1875,6.3126 0,4.875 1.18751,15.0001 -0.1875,9 2.75001,8.9375 h 1.93751 q 9.18754,-13.8126 16.00008,-32.0002 -2.87502,-1.3125 -4.00002,-5.3125 -0.87501,-1.8125 -0.87501,-7.375 0,-11.8751 2.68752,-16.0626 2.12501,-3.25 3.50001,-3.25 1.12501,0 1.12501,1.3125 0,0.375 -0.125,0.7188 -0.125,0.3437 -0.125,0.6562 0,1.5625 8.56254,4.5 4.50002,1.5 5.93753,4.25 1.25,2.1876 1.25,12.2501 0,5.125 -2.87501,10.3751 -2.37501,4.375 -3.31252,4.375 -0.75,0 -0.75,-0.4375 0,-0.1875 0.125,-0.3125 0.125,-0.125 0.125,-0.062 0,-0.8125 -0.8125,-1.25 Q 47.3128,44.1875 44.68779,42.5 36.18775,60.9375 31.12523,72.0626 h 27.62513 q 1.56251,-0.9375 9.31254,-16.9376 3.06252,-5.3125 3.06252,-8.625 0,-1.3125 -1.62501,-1.6875 -1.43751,0.062 -3.18752,-1.125 -1.875,-1.4375 -3.50001,-4.4376 -1.43751,-2.125 -1.43751,-8.125 0,-15.6251 2.68751,-19.8126 2.06251,-3.25 3.31252,-3.25 1.31251,0 1.31251,1.3125 0,0.375 -0.1875,0.7188 -0.18751,0.3437 -0.18751,0.6562 0,1.5625 8.68755,4.5 4.18752,1.4375 5.68752,4.4375 1.06251,2.3126 1.06251,7.0626 z"
id="path167"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 57.08679,89.317192 69.897605,61.44805"
id="path217"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="m 66.8767,8.53665 c -2.001848,1.626598 -3.655197,3.550906 -4.137484,6.163921 -1.285052,5.686015 -1.257942,11.567268 -1.349312,17.367591 -0.0042,3.274425 0.648257,6.631579 2.737997,9.246441 1.250546,2.164953 3.429409,3.289517 5.810914,3.684186 2.462222,1.513343 0.373502,4.98994 -0.316804,7.072192 -3.402856,6.40465 -6.685006,13.582739 -10.630113,19.691021 M 68.6055,8.80078 68.5989,8.861926 68.58358,9.0041133 c -0.65672,2.0312767 1.075438,3.7095657 2.97295,4.1574087 3.424352,1.592263 7.560247,2.175284 10.184657,5.124068 2.344841,3.086844 2.01425,7.252119 1.905535,10.916816 -1.325724,14.882149 -8.498701,29.010171 -14.117885,42.643596 M 72.7868,9.51202 58.4837,12.0548 M 75.9652,69.5849 55.9409,67.6779 M 85.8184,40.0252 66.112,46.7 M 88.6791,13.644 57.5301,34.9397"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 2"
id="path216"
sodipodi:nodetypes="cccccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="M 68.4774,71.8376 59.3671,71.1749 24.0986,77.5243 44.3563,32.1763"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path221"
sodipodi:nodetypes="ccc"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 38.5181,8.23146 -0.804783,0.5864275 c -2.239326,1.3389145 -3.395706,3.8768315 -3.952753,6.3363145 -1.128658,4.677385 -1.252628,9.54168 -1.101848,14.329836 -0.01392,3.07913 0.657745,6.29098 2.536429,8.789837 0.576849,1.175395 3.004519,1.41942 1.779455,2.978125 l 6.7129,3.4296 1,-2.1816 1.604708,0.975411 C 47.401142,44.058188 48.395151,44.817182 48.89,46.0213 M 39.5938,8.39062 39.69199,8.7513783 c -0.583352,2.1512667 0.928594,3.6104547 2.84736,4.2649857 3.172094,1.626913 6.867496,2.176439 9.748199,4.359905 2.534589,1.787109 2.674463,5.120442 2.889849,7.925569 0.229557,4.52251 0.579164,9.241764 -1.182576,13.53182 C 52.826991,41.604733 51.514847,44.503289 49.1875,46.5 m 9.023,-23.7091 -27.6443,14.384"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path220"
sodipodi:nodetypes="ccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="m 37.1543,40.0323 3.7217,1.5151"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path274"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 37.199351,39.903493 c -1.909904,6.005643 -4.548045,11.715635 -7.258281,17.389893 -1.281978,2.386295 -2.537652,4.787606 -3.836145,7.164475 -1.332498,2.187219 -2.889766,5.04868 -4.222276,7.235892 M 44.586505,43.108342 C 40.03458,52.335129 35.863019,62.643559 31.5703,71.992805 M 20.3422,66.4065 35.9166,66.7243 m -5.7212,-21.9314 13.9852,4.7677"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path215"
sodipodi:nodetypes="cccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="M 30.646,71.9643 22.1382,71.0552 13.734,76.255 11.9202,34.6278 21.0649,42.8667"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path222"
sodipodi:nodetypes="cccc"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 9.8728,8.45278 9.6728937,8.6432958 9.4679277,8.8295852 C 7.8780171,10.048799 6.3951029,11.513202 5.865906,13.514192 4.2292521,18.534048 4.2247757,23.908218 4.2373685,29.134703 c 0.2157454,2.523628 0.017165,5.235327 1.1043075,7.575592 1.0668932,2.116071 3.3176056,2.845386 5.380977,3.585938 1.829176,0.526686 3.305693,2.116554 4.921955,2.687626 -0.404482,-1.358645 1.367209,-0.892326 2.168582,-0.220204 1.114388,0.984921 2.727226,1.340355 2.24931,3.298845 M 11.3672,8.80078 c 0.02774,0.813023 -0.502011,1.648136 -0.110235,2.440661 3.709218,3.217452 9.080496,3.321772 12.914823,6.326357 1.79883,1.247354 2.208797,3.490595 2.434272,5.517016 0.262953,4.997788 0.879662,10.17614 -0.745891,15.020564 -0.846949,3.038788 -2.82855,5.520855 -4.726269,7.966822 M 30.116616,16.947363 0.89905208,40.321493"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 2"
id="path223"
sodipodi:nodetypes="cccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="M 15.7994,42.2526 11.8075,42.327"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path275"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 7.74414,39.2109 c 0.091083,1.20992 0.1827301,2.419798 0.2754624,3.629592 -0.034176,1.341966 -0.079102,2.68694 -0.06051,4.03078 0.068373,3.464222 0.2648767,6.924922 0.3778906,10.38798 C 8.5662886,61.808254 8.311156,66.360326 8.25781,70.9102 M 15.8066,41.997193 c -0.04537,1.462084 -0.07292,2.924687 -0.124235,4.386593 -0.158809,1.56707 -0.0694,3.143149 0.02402,4.711482 0.09308,3.642057 0.594448,7.254084 0.925422,10.877957 0.198028,3.028532 0.802147,6.009798 1.211993,9.013075 M 17.4815,47.6536 4.132,41.2966"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path214"
sodipodi:nodetypes="cccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="M 18.5997,70.9923 18.5403,84.6518"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path224"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="M 70.2031,71.3965 8.25781,70.9102 M 60.125,98.3125 H 9.875 m 2.0368,2.9165 -2.02275,-34.1622"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path219"
sodipodi:nodetypes="cccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-ת"
style="display:none"
id="g168">
<path
d="m 77.75045,88.0622 q 0.125,1.4375 -2.65626,5.8438 -2.78127,4.4062 -3.71877,4.4062 -3.43752,0 -3.43752,-2.6875 0,-1 -1.125,-22.3126 -1.12501,-21.3126 -1.12501,-25.6876 0,-7.3126 -11.87506,-7.3126 H 24.31269 q -2.62501,2.0626 -4.50002,12.7501 -0.625,5.375 4.81252,14.3126 5.43753,8.9375 4.81253,13.0625 0,9.4376 -2.87502,13.8126 -2.68751,4.0625 -6.81253,4.0625 H 1.37508 L 5.0626,72.0621 h 9.00004 q -1.93751,-1.5 -1.8125,-5.375 -1.56251,-5.4376 -1.56251,-8.2501 0.625,-5.5 2.18751,-13.9375 0.0625,-0.75 0.5625,-2.3125 l 1.12501,-2.5001 q -3.68752,0 -6.25003,-2.75 -1.75001,-3.125 -1.75001,-10.6875 0,-18.1876 3.62502,-18.1876 0.625,0 1.78125,2.6875 1.15626,2.6875 4.46878,2.6875 h 40.56269 q 16.00008,0 17.18758,18.5626 l 1.81251,28.0001 1.50001,14.0626 q 1.0625,5.75 0.25,14.0001 z"
id="path168"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 70.090267,94.83805 71.910793,78.817417"
id="path233"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 68.6829,97.0819 C 66.991429,89.832797 67.564594,82.311521 66.885501,74.940735 66.356001,65.31112 66.048475,55.666111 65.501942,46.040409 64.282081,41.065546 58.247018,40.265518 53.934946,40.387946 43.044014,40.244502 32.136218,40.238425 21.254409,40.463434 17.481102,40.137198 13.486393,40.529903 10.148002,38.354606 6.5282436,36.454225 7.0860393,31.775645 6.6185742,28.322662 6.5853355,23.23258 6.5838844,18.067803 7.4288604,13.043899 7.8098555,11.492365 8.4895747,10.043375 9.20912,8.62563 M 71.375,98.3125 C 75.152264,94.644232 78.362783,89.764301 78.03044,84.295431 78.348211,75.026858 76.140599,65.919904 75.794667,56.677862 74.935172,46.650937 74.913884,36.526351 73.414653,26.569552 72.297496,20.544351 67.890137,14.836467 61.554569,13.909956 55.513107,12.904065 49.357881,13.715411 43.266108,13.428924 33.867158,13.393573 24.458382,13.572908 15.06577,13.309101 12.537975,12.848481 11.761141,10.101941 10.5332,8.23047 m 16.746666,0.00356 -0.9864,34.032749 M 48.0898,8.9366 46.3635,44.6957 m 14.057,0.4932 11.5909,-30.8268 m -8.3849,50.0627 16.7698,-1.233"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 2"
id="path232"
sodipodi:nodetypes="ccccccccccccccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="m 14.4337,39.8851 4.0653,1.8164"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path276"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 13.6699,71.7031 c -0.747802,-1.579493 -1.563555,-3.2392 -1.474642,-5.034519 -0.538883,-3.084167 -1.84623,-6.129205 -1.379669,-9.31289 0.75014,-4.946088 1.357789,-9.927751 2.554938,-14.791863 C 13.66034,41.70292 14.051602,40.881547 14.4023,40.0449 m 12.8692,32.1406 c -2.4374,-4.751496 -5.615925,-9.206782 -6.99937,-14.429976 -0.471234,-1.649283 -0.6527,-3.388512 -0.373512,-5.089022 0.297092,-1.981204 0.861923,-3.90901 1.284378,-5.864553 0.579874,-2.196222 1.526306,-4.297766 2.813104,-6.171049 m -13.8849,1.5986 15.5367,0.9865 m 4.1924,25.4013 -20.71557,0.2466"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 1"
id="path231"
sodipodi:nodetypes="cccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
<path
d="M 13.6699,71.7031 13.4111,85.0509"
style="fill:none;stroke:#4e2990;stroke-width:1;stroke-dasharray:3, 1"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20"
id="path277"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3" />
<path
d="m 27.8203,91.7461 -2.6914,4.2812 c -1.371205,0.946138 -2.753089,2.151764 -4.512689,2.175924 -2.00505,0.214678 -4.024369,0.0686 -6.036506,0.109276 H 1.375 M 29.2578,84.8399 C 29.22564,82.376753 29.35716,79.907454 29.2169,77.448374 28.821371,75.610928 28.034844,73.892632 27.271498,72.1855 l -13.6016,-0.4824 c 0.767321,0.53059 -0.576856,0.324324 -0.915801,0.3594 H 5.062498 M 2.21953,100.677 7.15182,70.5902"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path230"
sodipodi:nodetypes="ccccccccccccc"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-׳"
style="display:none"
id="g172">
<path
d="m 33.06273,18.3118 q 0,3.0626 -2.93751,5.7501 L 8.75012,43.687 H -0.06242 L 16.18765,19.0618 q 3.87502,-5.875 9.25005,-5.875 7.62503,0 7.62503,5.125 z"
id="path172"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<g
id="g235">
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 6.3718425,40.040205 16.384738,29.299099"
id="path235"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 1.02316,42.0699 18.1114,16.6149 22.8439,13.554 M 8.75012,43.687 30.1252,24.0619 l 2.2032,-2.7813 0.6839,-2.5547 -1.0218,-3.5371 m -18.1545,0.8205 21.8463,3.0949"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path234"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-״"
style="display:none"
id="g173">
<path
d="m 59.06286,18.3118 q 0,3.0626 -2.93751,5.7501 L 34.75024,43.687 H 25.9377 L 42.18778,19.0618 q 3.87502,-5.875 9.18754,-5.875 7.68754,0 7.68754,5.125 z m -26.00013,0 q 0,3.0626 -2.93751,5.7501 L 8.75012,43.687 H -0.06242 L 16.18765,19.0618 q 3.87502,-5.875 9.25005,-5.875 7.62503,0 7.62503,5.125 z"
id="path173"
style="display:none;fill:#ed171f;fill-opacity:0.5;stroke-width:1" />
<g
id="g235-6"
style="display:inline"
transform="translate(25.6694,0.182053)">
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 6.3718425,40.040205 16.384738,29.299099"
id="path235-8"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 1.02316,42.0699 18.1114,16.6149 22.8439,13.554 M 8.75012,43.687 30.1252,24.0619 l 2.2032,-2.7813 0.6839,-2.5547 -1.0218,-3.5371 m -18.1545,0.8205 21.8463,3.0949"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path234-5"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
<g
id="g235-9"
style="display:inline">
<path
style="fill:none;fill-rule:evenodd;stroke:#4e2990;stroke-width:1.00001;stroke-dasharray:2, 1;-inkscape-stroke:none"
d="M 6.3718425,40.040205 16.384738,29.299099"
id="path235-5"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:running_stitch_length_mm="2."
inkstitch:running_stitch_tolerance_mm="0.20" />
<path
d="M 1.02316,42.0699 18.1114,16.6149 22.8439,13.554 M 8.75012,43.687 30.1252,24.0619 l 2.2032,-2.7813 0.6839,-2.5547 -1.0218,-3.5371 m -18.1545,0.8205 21.8463,3.0949"
style="display:inline;fill:none;stroke:#4e2990;stroke-width:1"
inkstitch:satin_column="True"
inkstitch:zigzag_underlay="True"
inkstitch:pull_compensation_mm="0.2"
inkscape:label="Colonne satin 0"
id="path234-7"
inkstitch:reverse_rails="none"
inkstitch:min_stitch_length_mm=".5"
inkstitch:min_jump_stitch_length_mm="3"
inkstitch:zigzag_underlay_max_stitch_length_mm="5"
inkstitch:zigzag_underlay_inset_mm=".1"
inkstitch:random_split_phase="False"
inkstitch:max_stitch_length_mm="" />
</g>
</g>
</svg>
|