Newer
Older
<?xml version="1.0" encoding="UTF-8"?>
<glyph name="uni0041" format="1">
<advance width="737"/>
<unicode hex="0041"/>
<outline>
<contour>
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
<point x="338.001" y="701" type="curve" smooth="yes"/>
<point x="323.001" y="703"/>
<point x="315.001" y="684"/>
<point x="330.001" y="681" type="curve" smooth="yes"/>
<point x="340.001" y="679"/>
<point x="342.001" y="661"/>
<point x="336.001" y="626" type="curve" smooth="yes"/>
<point x="331.001" y="599"/>
<point x="332.001" y="579"/>
<point x="338.001" y="566" type="curve" smooth="yes"/>
<point x="346.001" y="547"/>
<point x="345.001" y="535"/>
<point x="335.001" y="535" type="curve" smooth="yes"/>
<point x="323.001" y="535"/>
<point x="313.001" y="526"/>
<point x="315.001" y="518" type="curve" smooth="yes"/>
<point x="316.001" y="515"/>
<point x="317.001" y="510"/>
<point x="318.001" y="507" type="curve" smooth="yes"/>
<point x="322.001" y="493"/>
<point x="335.001" y="496"/>
<point x="350.001" y="516" type="curve" smooth="yes"/>
<point x="353.001" y="519"/>
<point x="354.001" y="519"/>
<point x="357.001" y="519" type="curve" smooth="yes"/>
<point x="364.001" y="517"/>
<point x="379.001" y="510"/>
<point x="387.001" y="504" type="curve" smooth="yes"/>
<point x="412.001" y="486"/>
<point x="436.001" y="491"/>
<point x="449.001" y="515" type="curve" smooth="yes"/>
<point x="454.001" y="525"/>
<point x="454.001" y="566"/>
<point x="448.001" y="588" type="curve" smooth="yes"/>
<point x="445.001" y="599"/>
<point x="442.001" y="610"/>
<point x="442.001" y="612" type="curve" smooth="yes"/>
<point x="440.001" y="624"/>
<point x="432.001" y="642"/>
<point x="425.001" y="653" type="curve" smooth="yes"/>
<point x="421.001" y="660"/>
<point x="414.001" y="672"/>
<point x="410.001" y="680" type="curve" smooth="yes"/>
<point x="396.001" y="707"/>
<point x="379.001" y="718"/>
<point x="362.001" y="709" type="curve" smooth="yes"/>
<point x="345.001" y="700"/>
<point x="346.001" y="700"/>
<point x="260.001" y="530" type="curve" smooth="no"/>
<point x="259.001" y="514"/>
<point x="259.001" y="514"/>
<point x="255.001" y="510" type="curve" smooth="yes"/>
<point x="251.001" y="506"/>
<point x="250.001" y="499"/>
<point x="253.001" y="490" type="curve" smooth="yes"/>
<point x="256.001" y="477"/>
<point x="278.001" y="477"/>
<point x="278.001" y="489" type="curve" smooth="yes"/>
<point x="278.001" y="490"/>
<point x="275.001" y="493"/>
<point x="271.001" y="496" type="curve" smooth="yes"/>
<point x="260.001" y="503"/>
<point x="258.001" y="509"/>
<point x="265.001" y="516" type="curve" smooth="yes"/>
<point x="267.001" y="518"/>
<point x="270.001" y="522"/>
<point x="270.001" y="524" type="curve" smooth="yes"/>
<point x="271.001" y="526"/>
<point x="274.001" y="532"/>
<point x="278.001" y="536" type="curve" smooth="yes"/>
<point x="292.001" y="554"/>
<point x="286.001" y="580"/>
<point x="272.001" y="566" type="curve" smooth="yes"/>
<point x="263.001" y="556"/>
<point x="260.001" y="549"/>
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
<point x="212.001" y="420" type="curve" smooth="yes"/>
<point x="203.001" y="389"/>
<point x="203.001" y="391"/>
<point x="212.001" y="380" type="curve" smooth="yes"/>
<point x="221.001" y="368"/>
<point x="223.001" y="362"/>
<point x="220.001" y="358" type="curve" smooth="yes"/>
<point x="215.001" y="350"/>
<point x="206.001" y="354"/>
<point x="205.001" y="364" type="curve" smooth="yes"/>
<point x="203.001" y="380"/>
<point x="194.001" y="366"/>
<point x="185.001" y="335" type="curve" smooth="yes"/>
<point x="185.001" y="332"/>
<point x="182.001" y="327"/>
<point x="179.001" y="324" type="curve" smooth="yes"/>
<point x="170.001" y="313"/>
<point x="169.001" y="310"/>
<point x="176.001" y="304" type="curve" smooth="no"/>
<point x="180.001" y="299"/>
<point x="180.001" y="299"/>
<point x="175.001" y="294" type="curve" smooth="yes"/>
<point x="168.001" y="288"/>
<point x="166.001" y="285"/>
<point x="166.001" y="279" type="curve" smooth="yes"/>
<point x="166.001" y="272"/>
<point x="164.001" y="270"/>
<point x="157.001" y="265" type="curve" smooth="yes"/>
<point x="145.001" y="257"/>
<point x="139.001" y="239"/>
<point x="141.001" y="224" type="curve" smooth="yes"/>
<point x="142.001" y="217"/>
<point x="141.001" y="214"/>
<point x="134.001" y="207" type="curve" smooth="yes"/>
<point x="130.001" y="204"/>
<point x="128.001" y="200"/>
<point x="126.001" y="195" type="curve" smooth="yes"/>
<point x="125.001" y="190"/>
<point x="121.001" y="182"/>
<point x="118.001" y="177" type="curve" smooth="yes"/>
<point x="114.001" y="167"/>
<point x="113.001" y="166"/>
<point x="115.001" y="162" type="curve" smooth="yes"/>
<point x="118.001" y="156"/>
<point x="118.001" y="145"/>
<point x="114.001" y="135" type="curve" smooth="yes"/>
<point x="110.001" y="123"/>
<point x="110.001" y="119"/>
<point x="115.001" y="114" type="curve" smooth="yes"/>
<point x="120.001" y="110"/>
<point x="120.001" y="109"/>
<point x="123.001" y="117" type="curve" smooth="yes"/>
<point x="124.001" y="119"/>
<point x="126.001" y="122"/>
<point x="127.001" y="122" type="curve" smooth="yes"/>
<point x="130.001" y="122"/>
<point x="130.001" y="120"/>
<point x="126.001" y="116" type="curve" smooth="yes"/>
<point x="124.001" y="114"/>
<point x="122.001" y="110"/>
<point x="120.001" y="108" type="curve" smooth="no"/>
<point x="116.001" y="99"/>
<point x="113.001" y="99"/>
<point x="107.001" y="105" type="curve" smooth="yes"/>
<point x="102.001" y="111"/>
<point x="95.001" y="111"/>
<point x="93.001" y="105" type="curve" smooth="yes"/>
<point x="90.001" y="99"/>
<point x="90.001" y="87"/>
<point x="92.001" y="85" type="curve" smooth="no"/>
<point x="93.001" y="82"/>
<point x="93.001" y="82"/>
<point x="85.001" y="81" type="curve" smooth="yes"/>
<point x="81.001" y="80"/>
<point x="78.001" y="73"/>
<point x="78.001" y="64" type="curve" smooth="yes"/>
<point x="78.001" y="60"/>
<point x="77.001" y="58"/>
<point x="73.001" y="53" type="curve" smooth="yes"/>
<point x="67.001" y="47"/>
<point x="58.001" y="27"/>
<point x="58.001" y="21" type="curve" smooth="yes"/>
<point x="58.001" y="19"/>
<point x="56.001" y="14"/>
<point x="54.001" y="10" type="curve" smooth="yes"/>
<point x="45.001" y="-6"/>
<point x="64.001" y="-10"/>
<point x="106.001" y="0" type="curve" smooth="yes"/>
<point x="111.001" y="1"/>
<point x="113.001" y="6"/>
<point x="109.001" y="9" type="curve" smooth="yes"/>
<point x="102.001" y="14"/>
<point x="102.001" y="20"/>
<point x="109.001" y="20" type="curve" smooth="yes"/>
<point x="113.001" y="20"/>
<point x="118.001" y="22"/>
<point x="129.001" y="30" type="curve" smooth="yes"/>
<point x="132.001" y="32"/>
<point x="133.001" y="32"/>
<point x="138.001" y="31" type="curve" smooth="no"/>
<point x="150.001" y="26"/>
<point x="159.001" y="39"/>
<point x="151.001" y="50" type="curve" smooth="yes"/>
<point x="147.001" y="56"/>
<point x="147.001" y="65"/>
<point x="151.001" y="77" type="curve" smooth="yes"/>
<point x="153.001" y="82"/>
<point x="153.001" y="84"/>
<point x="152.001" y="89" type="curve" smooth="yes"/>
<point x="150.001" y="95"/>
<point x="150.001" y="97"/>
<point x="154.001" y="104" type="curve" smooth="yes"/>
<point x="157.001" y="110"/>
<point x="158.001" y="112"/>
<point x="157.001" y="120" type="curve" smooth="yes"/>
<point x="156.001" y="136"/>
<point x="173.001" y="140"/>
<point x="176.001" y="125" type="curve" smooth="yes"/>
<point x="178.001" y="119"/>
<point x="180.001" y="115"/>
<point x="181.001" y="115" type="curve" smooth="yes"/>
<point x="186.001" y="115"/>
<point x="192.001" y="127"/>
<point x="192.001" y="137" type="curve" smooth="yes"/>
<point x="192.001" y="139"/>
<point x="194.001" y="143"/>
<point x="197.001" y="147" type="curve" smooth="yes"/>
<point x="200.001" y="151"/>
<point x="201.001" y="155"/>
<point x="203.001" y="165" type="curve" smooth="yes"/>
<point x="204.001" y="172"/>
<point x="206.001" y="181"/>
<point x="208.001" y="185" type="curve" smooth="yes"/>
<point x="213.001" y="194"/>
<point x="212.001" y="196"/>
<point x="206.001" y="200" type="curve" smooth="yes"/>
<point x="201.001" y="203"/>
<point x="201.001" y="203"/>
<point x="200.001" y="219" type="curve" smooth="yes"/>
<point x="199.001" y="239"/>
<point x="209.001" y="247"/>
<point x="221.001" y="235" type="curve" smooth="yes"/>
<point x="230.001" y="225"/>
<point x="234.001" y="225"/>
<point x="241.001" y="233" type="curve" smooth="yes"/>
<point x="245.001" y="237"/>
<point x="246.001" y="246"/>
<point x="242.001" y="253" type="curve" smooth="yes"/>
<point x="236.001" y="264"/>
<point x="256.001" y="275"/>
<point x="263.001" y="264" type="curve" smooth="yes"/>
<point x="266.001" y="260"/>
<point x="266.001" y="260"/>
<point x="262.001" y="253" type="curve" smooth="yes"/>
<point x="251.001" y="235"/>
<point x="269.001" y="219"/>
<point x="285.001" y="232" type="curve" smooth="yes"/>
<point x="289.001" y="235"/>
<point x="289.001" y="236"/>
<point x="288.001" y="243" type="curve" smooth="yes"/>
<point x="287.001" y="251"/>
<point x="290.001" y="256"/>
<point x="297.001" y="254" type="curve" smooth="yes"/>
<point x="318.001" y="250"/>
<point x="323.001" y="248"/>
<point x="319.001" y="244" type="curve" smooth="yes"/>
<point x="318.001" y="243"/>
<point x="316.001" y="242"/>
<point x="312.001" y="243" type="curve" smooth="yes"/>
<point x="302.001" y="244"/>
<point x="296.001" y="237"/>
<point x="302.001" y="232" type="curve" smooth="yes"/>
<point x="306.001" y="228"/>
<point x="337.001" y="230"/>
<point x="347.001" y="234" type="curve" smooth="no"/>
<point x="356.001" y="239"/>
<point x="360.001" y="239"/>
<point x="367.001" y="236" type="curve" smooth="yes"/>
<point x="380.001" y="230"/>
<point x="390.001" y="228"/>
<point x="397.001" y="229" type="curve" smooth="yes"/>
<point x="401.001" y="229"/>
<point x="412.001" y="230"/>
<point x="421.001" y="231" type="curve" smooth="yes"/>
<point x="430.001" y="231"/>
<point x="437.001" y="232"/>
<point x="438.001" y="233" type="curve" smooth="yes"/>
<point x="439.001" y="233"/>
<point x="444.001" y="233"/>
<point x="449.001" y="232" type="curve" smooth="yes"/>
<point x="461.001" y="230"/>
<point x="470.001" y="232"/>
<point x="480.001" y="237" type="curve" smooth="yes"/>
<point x="488.001" y="241"/>
<point x="491.001" y="241"/>
<point x="497.001" y="236" type="curve" smooth="yes"/>
<point x="500.001" y="234"/>
<point x="503.001" y="232"/>
<point x="507.001" y="232" type="curve" smooth="yes"/>
<point x="513.001" y="232"/>
<point x="516.001" y="228"/>
<point x="519.001" y="214" type="curve" smooth="yes"/>
<point x="523.001" y="200"/>
<point x="526.001" y="193"/>
<point x="530.001" y="189" type="curve" smooth="yes"/>
<point x="536.001" y="181"/>
<point x="545.001" y="161"/>
<point x="545.001" y="155" type="curve" smooth="yes"/>
<point x="545.001" y="151"/>
<point x="547.001" y="147"/>
<point x="551.001" y="140" type="curve" smooth="yes"/>
<point x="554.001" y="135"/>
<point x="556.001" y="130"/>
<point x="556.001" y="129" type="curve" smooth="yes"/>
<point x="556.001" y="128"/>
<point x="560.001" y="121"/>
<point x="564.001" y="112" type="curve" smooth="yes"/>
<point x="584.001" y="72"/>
<point x="585.001" y="70"/>
<point x="588.001" y="80" type="curve" smooth="yes"/>
<point x="588.001" y="82"/>
<point x="589.001" y="85"/>
<point x="590.001" y="86" type="curve" smooth="yes"/>
<point x="591.001" y="87"/>
<point x="591.001" y="88"/>
<point x="589.001" y="90" type="curve" smooth="yes"/>
<point x="588.001" y="91"/>
<point x="588.001" y="93"/>
<point x="589.001" y="97" type="curve" smooth="yes"/>
<point x="589.001" y="100"/>
<point x="590.001" y="105"/>
<point x="591.001" y="107" type="curve" smooth="no"/>
<point x="591.001" y="110"/>
<point x="592.001" y="111"/>
<point x="594.001" y="110" type="curve" smooth="no"/>
<point x="597.001" y="110"/>
<point x="598.001" y="90"/>
<point x="594.001" y="90" type="curve" smooth="no"/>
<point x="594.001" y="90"/>
<point x="593.001" y="89"/>
<point x="593.001" y="88" type="curve" smooth="yes"/>
<point x="593.001" y="86"/>
<point x="602.001" y="87"/>
<point x="604.001" y="89" type="curve" smooth="yes"/>
<point x="606.001" y="93"/>
<point x="613.001" y="90"/>
<point x="613.001" y="84" type="curve" smooth="no"/>
<point x="614.001" y="80"/>
<point x="613.001" y="79"/>
<point x="608.001" y="74" type="curve" smooth="yes"/>
<point x="591.001" y="57"/>
<point x="589.001" y="51"/>
<point x="594.001" y="34" type="curve" smooth="yes"/>
<point x="600.001" y="15"/>
<point x="613.001" y="11"/>
<point x="619.001" y="26" type="curve" smooth="yes"/>
<point x="623.001" y="37"/>
<point x="635.001" y="41"/>
<point x="641.001" y="33" type="curve" smooth="yes"/>
<point x="643.001" y="30"/>
<point x="643.001" y="30"/>
<point x="641.001" y="24" type="curve" smooth="yes"/>
<point x="637.001" y="15"/>
<point x="640.001" y="12"/>
<point x="650.001" y="16" type="curve" smooth="yes"/>
<point x="657.001" y="19"/>
<point x="661.001" y="19"/>
<point x="670.001" y="14" type="curve" smooth="yes"/>
<point x="688.001" y="5"/>
<point x="690.001" y="9"/>
<point x="681.001" y="33" type="curve" smooth="yes"/>
<point x="678.001" y="42"/>
<point x="678.001" y="42"/>
<point x="680.001" y="49" type="curve" smooth="yes"/>
<point x="684.001" y="63"/>
<point x="683.001" y="66"/>
<point x="669.001" y="73" type="curve" smooth="yes"/>
<point x="659.001" y="79"/>
<point x="655.001" y="79"/>
<point x="654.001" y="72" type="curve" smooth="yes"/>
<point x="651.001" y="61"/>
<point x="636.001" y="59"/>
<point x="635.001" y="70" type="curve" smooth="yes"/>
<point x="635.001" y="74"/>
<point x="635.001" y="79"/>
<point x="634.001" y="82" type="curve" smooth="yes"/>
<point x="633.001" y="85"/>
<point x="634.001" y="87"/>
<point x="636.001" y="90" type="curve" smooth="yes"/>
<point x="648.001" y="105"/>
<point x="632.001" y="129"/>
<point x="619.001" y="115" type="curve" smooth="yes"/>
<point x="612.001" y="108"/>
<point x="602.001" y="111"/>
<point x="605.001" y="118" type="curve" smooth="yes"/>
<point x="605.001" y="120"/>
<point x="606.001" y="126"/>
<point x="607.001" y="131" type="curve" smooth="yes"/>
<point x="608.001" y="143"/>
<point x="608.001" y="144"/>
<point x="614.001" y="145" type="curve" smooth="yes"/>
<point x="622.001" y="147"/>
<point x="622.001" y="154"/>
<point x="614.001" y="164" type="curve" smooth="yes"/>
<point x="611.001" y="168"/>
<point x="611.001" y="169"/>
<point x="612.001" y="173" type="curve" smooth="yes"/>
<point x="614.001" y="179"/>
<point x="614.001" y="183"/>
<point x="611.001" y="190" type="curve" smooth="yes"/>
<point x="609.001" y="194"/>
<point x="608.001" y="197"/>
<point x="608.001" y="203" type="curve" smooth="yes"/>
<point x="608.001" y="214"/>
<point x="594.001" y="228"/>
<point x="582.001" y="228" type="curve" smooth="yes"/>
<point x="578.001" y="228"/>
<point x="573.001" y="233"/>
<point x="573.001" y="237" type="curve" smooth="yes"/>
<point x="573.001" y="239"/>
<point x="572.001" y="244"/>
<point x="571.001" y="248" type="curve" smooth="yes"/>
<point x="570.001" y="256"/>
<point x="570.001" y="256"/>
<point x="576.001" y="263" type="curve" smooth="yes"/>
<point x="584.001" y="271"/>
<point x="584.001" y="274"/>
<point x="579.001" y="283" type="curve" smooth="yes"/>
<point x="573.001" y="292"/>
<point x="568.001" y="302"/>
<point x="567.001" y="307" type="curve" smooth="yes"/>
<point x="567.001" y="309"/>
<point x="564.001" y="314"/>
<point x="560.001" y="319" type="curve" smooth="yes"/>
<point x="556.001" y="326"/>
<point x="554.001" y="329"/>
<point x="553.001" y="338" type="curve" smooth="yes"/>
<point x="553.001" y="345"/>
<point x="551.001" y="350"/>
<point x="547.001" y="357" type="curve" smooth="yes"/>
<point x="544.001" y="363"/>
<point x="539.001" y="373"/>
<point x="537.001" y="379" type="curve" smooth="yes"/>
<point x="530.001" y="394"/>
<point x="523.001" y="402"/>
<point x="515.001" y="401" type="curve" smooth="yes"/>
<point x="508.001" y="400"/>
<point x="499.001" y="409"/>
<point x="501.001" y="417" type="curve" smooth="yes"/>
<point x="502.001" y="423"/>
<point x="499.001" y="430"/>
<point x="494.001" y="433" type="curve" smooth="yes"/>
<point x="492.001" y="434"/>
<point x="488.001" y="438"/>
<point x="486.001" y="441" type="curve" smooth="yes"/>
<point x="482.001" y="449"/>
<point x="477.001" y="450"/>
<point x="472.001" y="444" type="curve" smooth="yes"/>
<point x="465.001" y="436"/>
<point x="460.001" y="439"/>
<point x="465.001" y="448" type="curve" smooth="yes"/>
<point x="472.001" y="459"/>
<point x="468.001" y="465"/>
<point x="456.001" y="461" type="curve" smooth="yes"/>
<point x="451.001" y="460"/>
<point x="446.001" y="459"/>
<point x="444.001" y="459" type="curve" smooth="yes"/>
<point x="436.001" y="460"/>
<point x="434.001" y="453"/>
<point x="439.001" y="434" type="curve" smooth="yes"/>
<point x="442.001" y="426"/>
<point x="442.001" y="424"/>
<point x="439.001" y="416" type="curve" smooth="no"/>
<point x="436.001" y="401"/>
<point x="437.001" y="398"/>
<point x="456.001" y="383" type="curve" smooth="yes"/>
<point x="465.001" y="375"/>
<point x="469.001" y="375"/>
<point x="480.001" y="378" type="curve" smooth="yes"/>
<point x="489.001" y="381"/>
<point x="493.001" y="377"/>
<point x="487.001" y="372" type="curve" smooth="yes"/>
<point x="484.001" y="370"/>
<point x="481.001" y="365"/>
<point x="480.001" y="361" type="curve" smooth="yes"/>
<point x="479.001" y="358"/>
<point x="475.001" y="352"/>
<point x="472.001" y="349" type="curve" smooth="yes"/>
<point x="466.001" y="342"/>
<point x="466.001" y="339"/>
<point x="470.001" y="330" type="curve" smooth="yes"/>
<point x="472.001" y="324"/>
<point x="472.001" y="322"/>
<point x="472.001" y="315" type="curve" smooth="yes"/>
<point x="471.001" y="308"/>
<point x="471.001" y="306"/>
<point x="476.001" y="295" type="curve" smooth="yes"/>
<point x="482.001" y="283"/>
<point x="481.001" y="282"/>
<point x="473.001" y="280" type="curve" smooth="yes"/>
<point x="467.001" y="279"/>
<point x="465.001" y="281"/>
<point x="460.001" y="291" type="curve" smooth="yes"/>
<point x="457.001" y="299"/>
<point x="453.001" y="302"/>
<point x="444.001" y="303" type="curve" smooth="yes"/>
<point x="439.001" y="304"/>
<point x="433.001" y="306"/>
<point x="429.001" y="309" type="curve" smooth="yes"/>
<point x="410.001" y="320"/>
<point x="381.001" y="326"/>
<point x="360.001" y="323" type="curve" smooth="yes"/>
<point x="354.001" y="322"/>
<point x="341.001" y="320"/>
<point x="332.001" y="319" type="curve" smooth="yes"/>
<point x="323.001" y="318"/>
<point x="312.001" y="317"/>
<point x="307.001" y="316" type="curve" smooth="yes"/>
<point x="276.001" y="308"/>
<point x="261.001" y="316"/>
<point x="271.001" y="335" type="curve" smooth="yes"/>
<point x="277.001" y="347"/>
<point x="278.001" y="356"/>
<point x="274.001" y="363" type="curve" smooth="yes"/>
<point x="269.001" y="373"/>
<point x="270.001" y="374"/>
<point x="279.001" y="382" type="curve" smooth="yes"/>
<point x="290.001" y="391"/>
<point x="290.001" y="395"/>
<point x="282.001" y="402" type="curve" smooth="yes"/>
<point x="268.001" y="413"/>
<point x="280.001" y="427"/>
<point x="296.001" y="421" type="curve" smooth="yes"/>
<point x="300.001" y="419"/>
<point x="306.001" y="426"/>
<point x="309.001" y="434" type="curve" smooth="yes"/>
<point x="314.001" y="450"/>
<point x="311.001" y="455"/>
<point x="296.001" y="454" type="curve" smooth="yes"/>
<point x="288.001" y="454"/>
<point x="285.001" y="454"/>
<point x="278.001" y="458" type="curve" smooth="yes"/>
<point x="274.001" y="460"/>
<point x="267.001" y="462"/>
<point x="264.001" y="463" type="curve" smooth="yes"/>
<point x="261.001" y="464"/>
<point x="256.001" y="466"/>
<point x="254.001" y="468" type="curve" smooth="yes"/>
<point x="248.001" y="473"/>
<point x="244.001" y="473"/>
<point x="236.001" y="466" type="curve" smooth="yes"/>
<point x="223.001" y="455"/>
<point x="220.001" y="450"/>
<point x="508.001" y="333" type="curve" smooth="yes"/>
<point x="510.001" y="326"/>
<point x="510.001" y="326"/>
<point x="518.001" y="326" type="curve" smooth="yes"/>
<point x="528.001" y="326"/>
<point x="532.001" y="323"/>
<point x="532.001" y="316" type="curve" smooth="yes"/>
<point x="532.001" y="305"/>
<point x="519.001" y="303"/>
<point x="511.001" y="312" type="curve" smooth="yes"/>
<point x="506.001" y="318"/>
<point x="504.001" y="319"/>
<point x="494.001" y="316" type="curve" smooth="yes"/>
<point x="485.001" y="313"/>
<point x="482.001" y="322"/>
<point x="489.001" y="333" type="curve" smooth="yes"/>
<point x="496.001" y="344"/>
<point x="497.001" y="345"/>
<point x="503.001" y="341" type="curve" smooth="yes"/>
<point x="504.001" y="340"/>
<point x="507.001" y="336"/>
<point x="244.001" y="300" type="curve" smooth="yes"/>
<point x="241.001" y="298"/>
<point x="237.001" y="295"/>
<point x="236.001" y="292" type="curve" smooth="yes"/>
<point x="231.001" y="281"/>
<point x="225.001" y="279"/>
<point x="216.001" y="285" type="curve" smooth="yes"/>
<point x="206.001" y="291"/>
<point x="218.001" y="311"/>
<point x="231.001" y="309" type="curve" smooth="yes"/>
<point x="236.001" y="308"/>
<point x="237.001" y="308"/>
<point x="239.001" y="311" type="curve" smooth="yes"/>
<point x="244.001" y="316"/>
<point x="250.001" y="314"/>
<point x="250.001" y="308" type="curve" smooth="yes"/>
<point x="250.001" y="304"/>
<point x="250.001" y="303"/>
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
<point x="527.001" y="280" type="curve" smooth="no"/>
<point x="524.001" y="275"/>
<point x="523.001" y="274"/>
<point x="526.001" y="269" type="curve" smooth="yes"/>
<point x="527.001" y="266"/>
<point x="529.001" y="263"/>
<point x="529.001" y="260" type="curve" smooth="no"/>
<point x="530.001" y="258"/>
<point x="532.001" y="253"/>
<point x="535.001" y="250" type="curve" smooth="yes"/>
<point x="545.001" y="239"/>
<point x="534.001" y="226"/>
<point x="518.001" y="231" type="curve" smooth="yes"/>
<point x="511.001" y="233"/>
<point x="503.001" y="249"/>
<point x="506.001" y="256" type="curve" smooth="yes"/>
<point x="507.001" y="259"/>
<point x="507.001" y="263"/>
<point x="507.001" y="265" type="curve" smooth="yes"/>
<point x="507.001" y="268"/>
<point x="509.001" y="272"/>
<point x="512.001" y="276" type="curve" smooth="yes"/>
<point x="514.001" y="279"/>
<point x="516.001" y="283"/>
<point x="516.001" y="285" type="curve" smooth="yes"/>
<point x="516.001" y="292"/>
<point x="526.001" y="293"/>
<point x="529.001" y="288" type="curve" smooth="yes"/>
<point x="530.001" y="285"/>
<point x="530.001" y="283"/>
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
<point x="188.001" y="256" type="curve" smooth="yes"/>
<point x="186.001" y="254"/>
<point x="185.001" y="253"/>
<point x="186.001" y="248" type="curve" smooth="yes"/>
<point x="187.001" y="243"/>
<point x="186.001" y="238"/>
<point x="182.001" y="234" type="curve" smooth="yes"/>
<point x="179.001" y="231"/>
<point x="179.001" y="224"/>
<point x="183.001" y="217" type="curve" smooth="yes"/>
<point x="186.001" y="213"/>
<point x="187.001" y="210"/>
<point x="186.001" y="207" type="curve" smooth="yes"/>
<point x="185.001" y="204"/>
<point x="185.001" y="197"/>
<point x="185.001" y="191" type="curve" smooth="yes"/>
<point x="185.001" y="178"/>
<point x="183.001" y="174"/>
<point x="173.001" y="169" type="curve" smooth="no"/>
<point x="157.001" y="159"/>
<point x="152.001" y="174"/>
<point x="167.001" y="191" type="curve" smooth="yes"/>
<point x="174.001" y="199"/>
<point x="174.001" y="199"/>
<point x="169.001" y="203" type="curve" smooth="yes"/>
<point x="157.001" y="213"/>
<point x="153.001" y="221"/>
<point x="153.001" y="232" type="curve" smooth="yes"/>
<point x="153.001" y="245"/>
<point x="158.001" y="249"/>
<point x="164.001" y="241" type="curve" smooth="yes"/>
<point x="168.001" y="235"/>
<point x="174.001" y="235"/>
<point x="176.001" y="240" type="curve" smooth="yes"/>
<point x="177.001" y="243"/>
<point x="179.001" y="246"/>
<point x="181.001" y="248" type="curve" smooth="yes"/>
<point x="183.001" y="251"/>
<point x="184.001" y="253"/>
<point x="183.001" y="257" type="curve" smooth="yes"/>
<point x="182.001" y="262"/>
<point x="185.001" y="264"/>
<point x="188.001" y="260" type="curve" smooth="yes"/>
<point x="190.001" y="258"/>
<point x="190.001" y="257"/>