aboutsummaryrefslogtreecommitdiffstats
path: root/sample-qml/apps/HVAC/images/static_parts_bg.svg
blob: f850fcb6b8a942080f8f67a03afb0721e96cb3e4 (plain)
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->

<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   version="1.1"
   id="Layer_1"
   x="0px"
   y="0px"
   width="720px"
   height="601px"
   viewBox="0 0 720 601"
   enable-background="new 0 0 720 601"
   xml:space="preserve"
   inkscape:version="0.48.4 r9939"
   sodipodi:docname="static_parts_bg.svg"><metadata
     id="metadata438"><rdf:RDF><cc:Work
         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
     id="defs436" /><sodipodi:namedview
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1"
     objecttolerance="10"
     gridtolerance="10"
     guidetolerance="10"
     inkscape:pageopacity="0"
     inkscape:pageshadow="2"
     inkscape:window-width="1068"
     inkscape:window-height="480"
     id="namedview434"
     showgrid="false"
     inkscape:zoom="1.5707155"
     inkscape:cx="86.949065"
     inkscape:cy="-11.125082"
     inkscape:window-x="639"
     inkscape:window-y="324"
     inkscape:window-maximized="0"
     inkscape:current-layer="Layer_1"
     showguides="true"
     inkscape:guide-bbox="true"><sodipodi:guide
       orientation="0,1"
       position="620.09958,601"
       id="guide3776" /><sodipodi:guide
       orientation="0,1"
       position="669.44015,597.18009"
       id="guide3778" /></sodipodi:namedview><linearGradient
     id="SVGID_1_"
     gradientUnits="userSpaceOnUse"
     x1="249.1294"
     y1="220.0005"
     x2="249.1293"
     y2="1119.1094"
     gradientTransform="matrix(1 0 0 -1 234 1166)"><stop
       offset="0"
       style="stop-color:#041724"
       id="stop4" /><stop
       offset="1"
       style="stop-color:#000000"
       id="stop6" /></linearGradient><path
     d="m 383.38834,582.66088 h 157.53014 v -65.64949 c -9.10944,-0.78829 -69.02402,-7.00169 -157.53014,-7.42264 l -26.86507,-0.1465 c -47.51394,0 -75.23906,1.9968 -118.27077,3.4333 v 69.78533 h 118.6982 26.43764 z"
     id="path46"
     inkscape:connector-curvature="0"
     style="fill:#53b5ce;opacity:1;fill-opacity:0.29019609" /><polyline
     style="fill:#53b5ce;fill-opacity:0.28999998999999999;stroke:none;stroke-width:0.23190000999999999;stroke-miterlimit:10;stroke-opacity:0.63999998999999996"
     transform="matrix(0.98240426,0,0,18.495948,637.45692,-8480.4544)"
     id="polyline3791"
     points="  63,474.719 63,484.688 20,484.688 20,458.768 63,458.768 63,474.719 "
     stroke-miterlimit="10" /><rect
     x="123.129"
     display="none"
     fill="url(#SVGID_1_)"
     width="720"
     height="1001"
     id="rect8" /><polygon
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#FFFFFF"
     stroke-width="1.3481"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  533.991,435.516 533.991,345.813 691.556,345.813 691.556,577.48 533.991,577.48 533.991,486.998 559.732,461.257 "
     id="polygon10" /><path
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#31ABFF"
     stroke-width="0.8902"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     d="  M268.629,643.039V738.5h-122v-80.76C186.629,651.722,227.629,646.832,268.629,643.039z"
     id="path12" /><polygon
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#FFFFFF"
     stroke-width="1.3481"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  433.048,435.516 433.048,345.813 275.482,345.813 275.482,577.48 433.048,577.48 433.048,486.998 407.307,461.257 "
     id="polygon14" /><g
     display="none"
     id="g16"><g
       display="inline"
       id="g18"><defs
         id="defs20"><rect
           id="SVGID_2_"
           x="275.129"
           y="346"
           width="158"
           height="232" /></defs><clipPath
         id="SVGID_3_"><use
           xlink:href="#SVGID_2_"
           overflow="visible"
           id="use24" /></clipPath><g
         clip-path="url(#SVGID_3_)"
         id="g26"><text
           transform="matrix(1 0 0 1 283.4937 784.9795)"
           fill="#FFFFFF"
           font-family="'MyriadPro-Regular'"
           font-size="93.6032"
           id="text28">20°</text>
<text
           transform="matrix(1 0 0 1 283.4937 888.7236)"
           fill="#FFFFFF"
           font-family="'MyriadPro-Regular'"
           font-size="93.6032"
           id="text30">21°</text>
<text
           transform="matrix(1 0 0 1 283.4937 689.0361)"
           fill="#FFFFFF"
           font-family="'MyriadPro-Regular'"
           font-size="93.6032"
           id="text32">19°</text>
<text
           transform="matrix(1 0 0 1 283.4937 591.3809)"
           fill="#FFFFFF"
           font-family="'MyriadPro-Regular'"
           font-size="93.6032"
           id="text34">18°</text>
<text
           transform="matrix(1 0 0 1 283.4937 496.998)"
           fill="#FFFFFF"
           font-family="'MyriadPro-Regular'"
           font-size="93.6032"
           id="text36">17°</text>
<text
           transform="matrix(1 0 0 1 283.4937 403.3945)"
           fill="#FFFFFF"
           font-family="'MyriadPro-Regular'"
           font-size="93.6032"
           id="text38">16°</text>
</g></g></g><line
     display="none"
     fill="none"
     stroke="#00507F"
     stroke-miterlimit="10"
     x1="483.629"
     y1="98"
     x2="483.629"
     y2="610"
     id="line40" /><linearGradient
     id="SVGID_4_"
     gradientUnits="userSpaceOnUse"
     x1="120.1284"
     y1="816.3398"
     x2="120.1284"
     y2="591.9827"
     gradientTransform="matrix(1 0 0 -1 234 1166)"><stop
       offset="0"
       style="stop-color:#2175AD"
       id="stop43" /><stop
       offset="0.2822"
       style="stop-color:#2175AD;stop-opacity:0"
       id="stop45" /><stop
       offset="0.7055"
       style="stop-color:#2175AD;stop-opacity:0"
       id="stop47" /><stop
       offset="1"
       style="stop-color:#2175AD"
       id="stop49" /></linearGradient><polygon
     display="none"
     fill="url(#SVGID_4_)"
     stroke="#31ABFF"
     stroke-miterlimit="10"
     points="432.629,435.516 432.629,345.5   275.629,345.5 275.629,577.5 432.629,577.5 432.629,486.998 406.889,461.257 "
     id="polygon51" /><g
     display="none"
     id="g53"><g
       display="inline"
       id="g55"><defs
         id="defs57"><rect
           id="SVGID_5_"
           x="533.129"
           y="346"
           width="158"
           height="232" /></defs><clipPath
         id="SVGID_6_"><use
           xlink:href="#SVGID_5_"
           overflow="visible"
           id="use61" /></clipPath><g
         clip-path="url(#SVGID_6_)"
         id="g63"><text
           transform="matrix(1 0 0 1 550.7227 489.4902)"
           fill="#FFFFFF"
           font-family="'MyriadPro-Regular'"
           font-size="93.6032"
           id="text65">20°</text>
<text
           transform="matrix(1 0 0 1 550.7227 593.2334)"
           fill="#FFFFFF"
           font-family="'MyriadPro-Regular'"
           font-size="93.6032"
           id="text67">21°</text>
<text
           transform="matrix(1 0 0 1 550.7227 393.5469)"
           fill="#FFFFFF"
           font-family="'MyriadPro-Regular'"
           font-size="93.6032"
           id="text69">19°</text>
<text
           transform="matrix(1 0 0 1 550.7227 295.8906)"
           fill="#FFFFFF"
           font-family="'MyriadPro-Regular'"
           font-size="93.6032"
           id="text71">18°</text>
<text
           transform="matrix(1 0 0 1 550.7227 201.5078)"
           fill="#FFFFFF"
           font-family="'MyriadPro-Regular'"
           font-size="93.6032"
           id="text73">17°</text>
</g></g></g><path
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#31ABFF"
     stroke-width="0.8902"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     d="  M698.129,643.039v95.783h122V657.74C780.41,651.722,739.326,646.832,698.129,643.039z"
     id="path75" /><circle
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.5936"
     stroke-miterlimit="10"
     cx="756.627"
     cy="420.198"
     r="6.141"
     id="circle77" /><circle
     display="none"
     fill="#31ABFF"
     fill-opacity="0.45"
     cx="756.627"
     cy="420.198"
     r="10.912"
     id="circle79" /><line
     display="none"
     fill="none"
     stroke="#31ABFF"
     stroke-width="2"
     stroke-miterlimit="10"
     x1="756.129"
     y1="419"
     x2="756.129"
     y2="607"
     id="line81" /><circle
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.5936"
     stroke-miterlimit="10"
     cx="494.93"
     cy="726.5"
     r="6.141"
     id="circle83" /><circle
     display="none"
     fill="#31ABFF"
     fill-opacity="0.45"
     cx="494.93"
     cy="726.5"
     r="10.912"
     id="circle85" /><circle
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.5936"
     stroke-miterlimit="10"
     cx="210.631"
     cy="524.197"
     r="6.141"
     id="circle87" /><circle
     display="none"
     fill="#31ABFF"
     fill-opacity="0.45"
     cx="210.631"
     cy="524.197"
     r="10.912"
     id="circle89" /><line
     display="none"
     fill="none"
     stroke="#31ABFF"
     stroke-width="2"
     stroke-miterlimit="10"
     x1="211.129"
     y1="529"
     x2="211.129"
     y2="607"
     id="line91" /><path
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#31ABFF"
     stroke-width="0.8472"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     d="  M268.629,643.039V738.5h-122v-80.76C186.629,651.722,227.629,646.832,268.629,643.039z"
     id="path93" /><path
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#31ABFF"
     stroke-width="0.8902"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     d="  M698.129,643.039v95.783h122V657.74C780.41,651.722,739.326,646.832,698.129,643.039z"
     id="path95" /><g
     display="none"
     id="g97"><g
       display="inline"
       id="g99"><g
         display="none"
         id="g101"><circle
           display="inline"
           fill="#31ABFF"
           cx="236.991"
           cy="676.459"
           r="8.235"
           id="circle103" /><path
           display="inline"
           fill="#31ABFF"
           d="M239.268,687.889l-1.035-0.569c-2.861-1.577-6.458-0.536-8.035,2.322l-6.644,12.054     l-13.158-4.315c-3.009-0.986-6.572,0.18-9.142,3.18l0.004,0.003c-0.45,0.409-0.876,0.873-1.262,1.396l-10.893,14.743     c-1.679,2.271-1.607,5.14,0.098,6.485l0.618,0.487c1.706,1.35,4.512,0.756,6.334-1.402l11.504-13.621l15.161,5.822     c1.32,0.508,2.731,0.665,4.069,0.524c2.312,0.265,4.662-0.854,5.854-3.02l8.852-16.056     C243.169,693.063,242.128,689.466,239.268,687.889z"
           id="path105" /></g><polygon
         display="none"
         fill="#31ABFF"
         points="165.347,682 179.608,699.699 193.868,682 187.129,682 187.129,666 172.129,666     172.129,682   "
         id="polygon107" /></g></g><path
     display="none"
     fill="#31ABFF"
     d="M747.514,675.48c-0.104-2.278-0.234-5.027-0.209-7.41h-0.079  c-0.575,2.146-1.31,4.528-2.095,6.755l-2.565,7.646h-2.487l-2.356-7.541c-0.681-2.251-1.309-4.66-1.779-6.858h-0.054  c-0.078,2.304-0.183,5.104-0.313,7.515l-0.395,7.096h-3.011l1.178-17.647h4.242l2.306,7.097c0.628,2.068,1.178,4.163,1.623,6.127  h0.077c0.473-1.912,1.074-4.085,1.755-6.152l2.436-7.07h4.189l1.021,17.647h-3.142L747.514,675.48z"
     id="path109" /><path
     display="none"
     fill="#31ABFF"
     d="M757.646,677.68l-1.519,5.001h-3.325l5.656-17.647h4.11l5.733,17.647h-3.456l-1.598-5.001  H757.646z M762.701,675.244l-1.389-4.347c-0.34-1.073-0.628-2.277-0.891-3.3h-0.052c-0.262,1.021-0.523,2.252-0.838,3.3  l-1.361,4.347H762.701z"
     id="path111" /><path
     display="none"
     fill="#31ABFF"
     d="M779.695,682.681l-1.911-3.509c-0.76-1.361-1.257-2.304-1.755-3.325h-0.078  c-0.419,1.021-0.892,1.964-1.599,3.325l-1.754,3.509h-3.691l5.236-8.929l-5.026-8.72h3.69l1.912,3.64  c0.575,1.101,0.995,1.964,1.466,2.959h0.054c0.471-1.1,0.838-1.885,1.388-2.959l1.885-3.64h3.692l-5.158,8.615l5.367,9.032  L779.695,682.681L779.695,682.681z"
     id="path113" /><path
     display="none"
     fill="#31ABFF"
     d="M773.577,723.188c-0.509,0-1.007-0.109-1.483-0.324c-8.057-3.664-16.873-3.663-24.926-0.001  c-0.478,0.216-0.977,0.325-1.484,0.325c-1.701,0-3.187-1.207-3.779-3.075l-6.004-19.563c-0.773-2.435,0.854-5.537,3.557-6.764  c13.016-5.92,27.331-5.92,40.349,0c2.702,1.227,4.329,4.329,3.553,6.775l-5.996,19.539  C776.762,721.979,775.279,723.188,773.577,723.188z M759.629,717.658c4.595,0,9.127,1.002,13.473,2.979  c0.757,0.344,1.593-0.218,1.927-1.266l5.996-19.54c0.37-1.165-0.508-3.04-2.23-3.822c-12.381-5.631-25.948-5.631-38.327,0  c-1.725,0.782-2.602,2.657-2.234,3.812l6.004,19.563c0.328,1.032,1.156,1.604,1.923,1.253  C750.501,718.66,755.035,717.658,759.629,717.658z"
     id="path115" /><path
     display="none"
     fill="#31ABFF"
     d="M750.686,703.627l3.011,0.176l-1.854-5.906l-6.055,4.575l2.897,0.903  c-6.05,8.577,7.235,16.625,0.381,26.625c0.572,0,1.298,0,2.209,0C758.053,720,745.121,712.109,750.686,703.627z"
     id="path117" /><path
     display="none"
     fill="#31ABFF"
     d="M759.294,703.627l3.01,0.176l-1.854-5.906l-6.057,4.575l2.897,0.903  c-6.049,8.577,7.235,16.625,0.382,26.625c0.574,0,1.297,0,2.209,0C766.661,720,753.73,712.109,759.294,703.627z"
     id="path119" /><path
     display="none"
     fill="#31ABFF"
     d="M767.904,703.627l3.008,0.176l-1.854-5.906l-6.055,4.575l2.897,0.903  c-6.051,8.577,7.234,16.625,0.38,26.625c0.572,0,1.298,0,2.209,0C775.269,720,762.336,712.109,767.904,703.627z"
     id="path121" /><linearGradient
     id="SVGID_7_"
     gradientUnits="userSpaceOnUse"
     x1="-26.3711"
     y1="522.374"
     x2="-26.3711"
     y2="428.5638"
     gradientTransform="matrix(1 0 0 -1 234 1166)"><stop
       offset="0.5092"
       style="stop-color:#31ABFF;stop-opacity:0"
       id="stop124" /><stop
       offset="0.9018"
       style="stop-color:#31ABFF"
       id="stop126" /><stop
       offset="1"
       style="stop-color:#63E6FF"
       id="stop128" /></linearGradient><path
     display="none"
     fill="url(#SVGID_7_)"
     stroke="#31ABFF"
     stroke-miterlimit="10"
     d="M268.629,643.039V738.5h-122v-80.76  C186.629,651.722,227.629,646.832,268.629,643.039z"
     id="path130" /><linearGradient
     id="SVGID_8_"
     gradientUnits="userSpaceOnUse"
     x1="524.6279"
     y1="522.374"
     x2="524.6279"
     y2="428.5638"
     gradientTransform="matrix(1 0 0 -1 234 1166)"><stop
       offset="0.5092"
       style="stop-color:#31ABFF;stop-opacity:0"
       id="stop133" /><stop
       offset="0.9018"
       style="stop-color:#31ABFF"
       id="stop135" /><stop
       offset="1"
       style="stop-color:#63E6FF"
       id="stop137" /></linearGradient><path
     display="none"
     fill="url(#SVGID_8_)"
     stroke="#31ABFF"
     stroke-miterlimit="10"
     d="M697.629,643.039V738.5h122v-80.76  C780.629,651.722,739.629,646.832,697.629,643.039z"
     id="path139" /><g
     display="none"
     id="g141"><g
       display="inline"
       id="g143"><g
         id="g145"><circle
           fill="#FFFFFF"
           cx="236.991"
           cy="676.459"
           r="8.235"
           id="circle147" /><path
           fill="#FFFFFF"
           d="M239.268,687.889l-1.035-0.569c-2.861-1.577-6.458-0.536-8.035,2.322l-6.644,12.054l-13.158-4.315     c-3.009-0.986-6.572,0.18-9.142,3.18l0.004,0.003c-0.45,0.409-0.876,0.873-1.262,1.396l-10.893,14.743     c-1.679,2.271-1.607,5.14,0.098,6.485l0.618,0.487c1.706,1.35,4.512,0.756,6.334-1.402l11.504-13.621l15.161,5.822     c1.32,0.508,2.731,0.665,4.069,0.524c2.312,0.265,4.662-0.854,5.854-3.02l8.852-16.056     C243.169,693.063,242.128,689.466,239.268,687.889z"
           id="path149" /></g><polygon
         fill="#FFFFFF"
         points="165.347,682 179.608,699.699 193.868,682 187.129,682 187.129,666 172.129,666 172.129,682   "
         id="polygon151" /></g></g><path
     display="none"
     fill="#FFFFFF"
     d="M747.514,675.48c-0.104-2.278-0.234-5.027-0.209-7.41h-0.079  c-0.575,2.146-1.31,4.528-2.095,6.755l-2.565,7.646h-2.487l-2.356-7.541c-0.681-2.251-1.309-4.66-1.779-6.858h-0.054  c-0.078,2.304-0.183,5.104-0.313,7.515l-0.395,7.096h-3.011l1.178-17.647h4.242l2.306,7.097c0.628,2.068,1.178,4.163,1.623,6.127  h0.077c0.473-1.912,1.074-4.085,1.755-6.152l2.436-7.07h4.189l1.021,17.647h-3.142L747.514,675.48z"
     id="path153" /><path
     display="none"
     fill="#FFFFFF"
     d="M757.646,677.68l-1.519,5.001h-3.325l5.656-17.647h4.11l5.733,17.647h-3.456l-1.598-5.001  H757.646z M762.701,675.244l-1.389-4.347c-0.34-1.073-0.628-2.277-0.891-3.3h-0.052c-0.262,1.021-0.523,2.252-0.838,3.3  l-1.361,4.347H762.701z"
     id="path155" /><path
     display="none"
     fill="#FFFFFF"
     d="M779.695,682.681l-1.911-3.509c-0.76-1.361-1.257-2.304-1.755-3.325h-0.078  c-0.419,1.021-0.892,1.964-1.599,3.325l-1.754,3.509h-3.691l5.236-8.929l-5.026-8.72h3.69l1.912,3.64  c0.575,1.101,0.995,1.964,1.466,2.959h0.054c0.471-1.1,0.838-1.885,1.388-2.959l1.885-3.64h3.692l-5.158,8.615l5.367,9.032  L779.695,682.681L779.695,682.681z"
     id="path157" /><path
     display="none"
     fill="#FFFFFF"
     d="M773.577,723.188c-0.509,0-1.007-0.109-1.483-0.324c-8.057-3.664-16.873-3.663-24.926-0.001  c-0.478,0.216-0.977,0.325-1.484,0.325c-1.701,0-3.187-1.207-3.779-3.075l-6.004-19.563c-0.773-2.435,0.854-5.537,3.557-6.764  c13.016-5.92,27.331-5.92,40.349,0c2.702,1.227,4.329,4.329,3.553,6.775l-5.996,19.539  C776.762,721.979,775.279,723.188,773.577,723.188z M759.629,717.658c4.595,0,9.127,1.002,13.473,2.979  c0.757,0.344,1.593-0.218,1.927-1.266l5.996-19.54c0.37-1.165-0.508-3.04-2.23-3.822c-12.381-5.631-25.948-5.631-38.327,0  c-1.725,0.782-2.602,2.657-2.234,3.812l6.004,19.563c0.328,1.032,1.156,1.604,1.923,1.253  C750.501,718.66,755.035,717.658,759.629,717.658z"
     id="path159" /><path
     display="none"
     fill="#FFFFFF"
     d="M750.686,703.627l3.011,0.176l-1.854-5.906l-6.055,4.575l2.897,0.903  c-6.05,8.577,7.235,16.625,0.381,26.625c0.572,0,1.298,0,2.209,0C758.053,720,745.121,712.109,750.686,703.627z"
     id="path161" /><path
     display="none"
     fill="#FFFFFF"
     d="M759.294,703.627l3.01,0.176l-1.854-5.906l-6.057,4.575l2.897,0.903  c-6.049,8.577,7.235,16.625,0.382,26.625c0.574,0,1.297,0,2.209,0C766.661,720,753.73,712.109,759.294,703.627z"
     id="path163" /><path
     display="none"
     fill="#FFFFFF"
     d="M767.904,703.627l3.008,0.176l-1.854-5.906l-6.055,4.575l2.897,0.903  c-6.051,8.577,7.234,16.625,0.38,26.625c0.572,0,1.298,0,2.209,0C775.269,720,762.336,712.109,767.904,703.627z"
     id="path165" /><g
     display="none"
     id="g167"><g
       display="inline"
       id="g169"><g
         display="none"
         id="g171"><circle
           display="inline"
           fill="#31ABFF"
           cx="236.991"
           cy="676.459"
           r="8.235"
           id="circle173" /><path
           display="inline"
           fill="#31ABFF"
           d="M239.268,687.889l-1.035-0.569c-2.861-1.577-6.458-0.536-8.035,2.322l-6.644,12.054     l-13.158-4.315c-3.009-0.986-6.572,0.18-9.142,3.18l0.004,0.003c-0.45,0.409-0.876,0.873-1.262,1.396l-10.893,14.743     c-1.679,2.271-1.607,5.14,0.098,6.485l0.618,0.487c1.706,1.35,4.512,0.756,6.334-1.402l11.504-13.621l15.161,5.822     c1.32,0.508,2.731,0.665,4.069,0.524c2.312,0.265,4.662-0.854,5.854-3.02l8.852-16.056     C243.169,693.063,242.128,689.466,239.268,687.889z"
           id="path175" /></g><polygon
         display="none"
         fill="#31ABFF"
         points="165.347,682 179.608,699.699 193.868,682 187.129,682 187.129,666 172.129,666     172.129,682   "
         id="polygon177" /></g></g><text
     transform="matrix(1 0 0 1 730.7559 682.6807)"
     display="none"
     fill="#31ABFF"
     enable-background="new    "
     font-family="'MyriadPro-Semibold'"
     font-size="26.1844"
     id="text179">MAX</text>
<path
     display="none"
     fill="none"
     stroke="#31ABFF"
     stroke-width="2.4433"
     stroke-miterlimit="10"
     d="M776.192,719.741  c-0.579,1.821-2.173,2.649-3.597,2.008c-8.41-3.825-17.522-3.825-25.935,0c-1.42,0.643-3.017-0.187-3.595-2.008  c-2-6.519-3.999-13.035-6-19.552c-0.577-1.816,0.695-4.297,2.894-5.293c12.758-5.804,26.58-5.804,39.338,0  c2.197,0.996,3.472,3.477,2.895,5.293C780.191,706.706,778.192,713.224,776.192,719.741z"
     id="path181" /><path
     display="none"
     fill="#31ABFF"
     d="M750.686,703.627l3.011,0.176l-1.854-5.906l-6.055,4.575l2.897,0.903  c-6.05,8.577,7.235,16.625,0.381,26.625c0.572,0,1.298,0,2.209,0C758.053,720,745.121,712.109,750.686,703.627z"
     id="path183" /><path
     display="none"
     fill="#31ABFF"
     d="M759.294,703.627l3.01,0.176l-1.854-5.906l-6.057,4.575l2.897,0.903  c-6.049,8.577,7.235,16.625,0.382,26.625c0.574,0,1.297,0,2.209,0C766.661,720,753.73,712.109,759.294,703.627z"
     id="path185" /><path
     display="none"
     fill="#31ABFF"
     d="M767.904,703.627l3.008,0.176l-1.854-5.906l-6.055,4.575l2.897,0.903  c-6.051,8.577,7.234,16.625,0.38,26.625c0.572,0,1.298,0,2.209,0C775.269,720,762.336,712.109,767.904,703.627z"
     id="path187" /><linearGradient
     id="SVGID_9_"
     gradientUnits="userSpaceOnUse"
     x1="227.6294"
     y1="816.3398"
     x2="227.6294"
     y2="591.984"
     gradientTransform="matrix(-1 0 0 -1 840.2578 1166)"><stop
       offset="0"
       style="stop-color:#2175AD"
       id="stop190" /><stop
       offset="0.2822"
       style="stop-color:#2175AD;stop-opacity:0"
       id="stop192" /><stop
       offset="0.7055"
       style="stop-color:#2175AD;stop-opacity:0"
       id="stop194" /><stop
       offset="1"
       style="stop-color:#2175AD"
       id="stop196" /></linearGradient><polygon
     display="none"
     fill="url(#SVGID_9_)"
     stroke="#31ABFF"
     stroke-miterlimit="10"
     points="533.629,435.516 533.629,345.5   691.629,345.5 691.629,577.5 533.629,577.5 533.629,486.998 559.371,461.257 "
     id="polygon198" /><path
     fill="none"
     stroke="#B2F0FF"
     stroke-miterlimit="10"
     d="M844,542.502c-139.158-37.287-329.548-54.752-484-54.752  s-344.841,17.465-484,54.752"
     id="path200" /><polyline
     stroke-miterlimit="10"
     points="  63,474.719 63,484.688 20,484.688 20,458.768 63,458.768 63,474.719 "
     id="polyline202"
     transform="matrix(0.98240426,0,0,18.495948,0.73022345,-8480.4544)"
     style="fill:#53b5ce;fill-opacity:0.28999998999999999;stroke:none;stroke-width:0.23190000999999999;stroke-miterlimit:10;stroke-opacity:0.63999998999999996" /><path
     fill="#B5B5B5"
     d="M208.089,536.85c-2.009-2.358-5.185-3.605-8.527-3.605c-1.786-0.001-3.478,0.394-4.998,1.096  c0,0-1.44,0.746-3.202-1.096s-5.605-8.78-1.645-10.731c15.362-7.283,32.982,0.008,37.59,10.775  C229.739,537.861,212.352,541.854,208.089,536.85z"
     id="path264" /><path
     opacity="0.64"
     fill="#B2F0FF"
     enable-background="new    "
     d="M208.089,536.85c-2.009-2.358-5.185-3.605-8.527-3.605  c-1.786-0.001-3.478,0.394-4.998,1.096c0,0-1.44,0.746-3.202-1.096s-5.605-8.78-1.645-10.731  c15.362-7.283,32.982,0.008,37.59,10.775C229.739,537.861,212.352,541.854,208.089,536.85z"
     id="path266" /><path
     fill="#B5B5B5"
     d="M188.729,542.391c-1.04,2.922-0.532,6.294,1.14,9.189c0.891,1.547,2.078,2.814,3.448,3.779  c0,0,1.363,0.875,0.651,3.321c-0.715,2.446-4.801,9.245-8.473,6.791c-13.987-9.664-16.484-28.568-9.462-37.943  C178.778,523.136,190.929,536.196,188.729,542.391z"
     id="path268" /><path
     opacity="0.64"
     fill="#B2F0FF"
     enable-background="new    "
     d="M188.729,542.391c-1.04,2.922-0.532,6.294,1.14,9.189  c0.891,1.547,2.078,2.814,3.448,3.779c0,0,1.363,0.875,0.651,3.321c-0.715,2.446-4.801,9.245-8.473,6.791  c-13.987-9.664-16.484-28.568-9.462-37.943C178.778,523.136,190.929,536.196,188.729,542.391z"
     id="path270" /><path
     fill="#B5B5B5"
     d="M203.207,556.387c3.049-0.561,5.715-2.686,7.388-5.581c0.894-1.547,1.397-3.208,1.548-4.876  c0,0,0.076-1.617,2.552-2.226c2.474-0.604,10.405-0.465,10.116,3.942c-1.375,16.943-16.498,28.562-28.129,27.167  C191.507,574.632,196.743,557.578,203.207,556.387z"
     id="path272" /><path
     opacity="0.64"
     fill="#B2F0FF"
     enable-background="new    "
     d="M203.207,556.387c3.049-0.561,5.715-2.686,7.388-5.581  c0.894-1.547,1.397-3.208,1.548-4.876c0,0,0.076-1.617,2.552-2.226c2.474-0.604,10.405-0.465,10.116,3.942  c-1.375,16.943-16.498,28.562-28.129,27.167C191.507,574.632,196.743,557.578,203.207,556.387z"
     id="path274" /><circle
     fill="#B5B5B5"
     cx="199.561"
     cy="545.272"
     r="7.302"
     id="circle276" /><circle
     opacity="0.64"
     fill="#B2F0FF"
     enable-background="new    "
     cx="199.561"
     cy="545.272"
     r="7.302"
     id="circle278" /><rect
     x="210.129"
     y="127"
     display="none"
     fill="#31ABFF"
     width="2"
     height="482"
     id="rect296" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,596.969 187.129,606.938 144.129,606.938 144.129,581.018 187.129,581.018 187.129,596.969 "
     id="polyline298" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,561.967 187.129,571.938 144.129,571.938 144.129,546.016 187.129,546.016 187.129,561.967 "
     id="polyline300" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,526.966 187.129,536.935 144.129,536.935 144.129,511.015 187.129,511.015 187.129,526.966 "
     id="polyline302" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,491.964 187.129,501.934 144.129,501.934 144.129,476.014 187.129,476.014 187.129,491.964 "
     id="polyline304" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,456.963 187.129,466.932 144.129,466.932 144.129,441.012 187.129,441.012 187.129,456.963 "
     id="polyline306" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,421.961 187.129,431.931 144.129,431.931 144.129,406.01 187.129,406.01 187.129,421.961 "
     id="polyline308" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,386.96 187.129,396.929 144.129,396.929 144.129,371.009 187.129,371.009 187.129,386.96 "
     id="polyline310" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,351.959 187.129,361.928 144.129,361.928 144.129,336.008 187.129,336.008 187.129,351.959 "
     id="polyline312" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,316.958 187.129,326.927 144.129,326.927 144.129,301.007 187.129,301.007 187.129,316.958 "
     id="polyline314" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,281.956 187.129,291.925 144.129,291.925 144.129,266.005 187.129,266.005 187.129,281.956 "
     id="polyline316" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,246.955 187.129,256.924 144.129,256.924 144.129,231.004 187.129,231.004 187.129,246.955 "
     id="polyline318" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,211.954 187.129,221.923 144.129,221.923 144.129,196.003 187.129,196.003 187.129,211.954 "
     id="polyline320" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,176.952 187.129,186.921 144.129,186.921 144.129,161.001 187.129,161.001 187.129,176.952 "
     id="polyline322" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  187.129,141.951 187.129,151.92 144.129,151.92 144.129,126 187.129,126 187.129,141.951 "
     id="polyline324" /><rect
     x="755.129"
     y="127"
     display="none"
     fill="#31ABFF"
     width="2"
     height="482"
     id="rect326" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,596.969 780.129,606.938 823.129,606.938 823.129,581.018 780.129,581.018 780.129,596.969 "
     id="polyline328" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,561.967 780.129,571.938 823.129,571.938 823.129,546.016 780.129,546.016 780.129,561.967 "
     id="polyline330" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,526.966 780.129,536.935 823.129,536.935 823.129,511.015 780.129,511.015 780.129,526.966 "
     id="polyline332" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,491.964 780.129,501.934 823.129,501.934 823.129,476.014 780.129,476.014 780.129,491.964 "
     id="polyline334" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,456.963 780.129,466.932 823.129,466.932 823.129,441.012 780.129,441.012 780.129,456.963 "
     id="polyline336" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,421.961 780.129,431.931 823.129,431.931 823.129,406.01 780.129,406.01 780.129,421.961 "
     id="polyline338" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,386.96 780.129,396.929 823.129,396.929 823.129,371.009 780.129,371.009 780.129,386.96 "
     id="polyline340" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,351.959 780.129,361.928 823.129,361.928 823.129,336.008 780.129,336.008 780.129,351.959 "
     id="polyline342" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,316.958 780.129,326.927 823.129,326.927 823.129,301.007 780.129,301.007 780.129,316.958 "
     id="polyline344" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,281.956 780.129,291.925 823.129,291.925 823.129,266.005 780.129,266.005 780.129,281.956 "
     id="polyline346" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,246.955 780.129,256.924 823.129,256.924 823.129,231.004 780.129,231.004 780.129,246.955 "
     id="polyline348" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,211.954 780.129,221.923 823.129,221.923 823.129,196.003 780.129,196.003 780.129,211.954 "
     id="polyline350" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,176.952 780.129,186.921 823.129,186.921 823.129,161.001 780.129,161.001 780.129,176.952 "
     id="polyline352" /><polyline
     display="none"
     fill="#31ABFF"
     stroke="#31ABFF"
     stroke-width="0.2319"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     points="  780.129,141.951 780.129,151.92 823.129,151.92 823.129,126 780.129,126 780.129,141.951 "
     id="polyline354" /><rect
     x="274.702"
     y="175.708"
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#31ABFF"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     width="157.956"
     height="127.534"
     id="rect356" /><path
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#31ABFF"
     stroke-width="0.8243"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     d="  M337.796,255.953l-51.053-3.023c-3.593-0.142-5.474,3.107-4.104,7.17l2.857,10.824c1.528,4.532,5.986,9.041,9.909,9.041h62.589  c5.253,0,6.745-6.561,6.745-11.152c-0.12-25.828,4.734-52.385,14.563-78.246c0.954-2.52-0.953-5.045-4.298-5.702  c-1.817-0.356-3.633-0.713-5.449-1.069c-3.336-0.655-7.05,0.767-8.259,3.236c-11.038,22.563-18.271,43.783-21.696,66.559  C339.6,253.589,338.936,256.021,337.796,255.953z"
     id="path358" /><path
     display="none"
     fill="#31ABFF"
     d="M304.629,298c-18.86,0,15.646,0-3.215,0c10.184-23-10.184-45,0-67c18.86,0-15.645,0,3.215,0  C294.445,253,314.813,275,304.629,298z"
     id="path360" /><polygon
     display="none"
     fill="#31ABFF"
     points="296.641,231.288 304.142,223.451 307.177,233.866 "
     id="polygon362" /><path
     display="none"
     fill="#31ABFF"
     d="M317.488,298c-18.86,0,15.646,0-3.215,0c10.184-23-10.185-45,0-67c18.859,0-15.646,0,3.215,0  C307.304,253,327.672,275,317.488,298z"
     id="path364" /><polygon
     display="none"
     fill="#31ABFF"
     points="309.5,231.288 317,223.451 320.037,233.866 "
     id="polygon366" /><path
     display="none"
     fill="#31ABFF"
     d="M330.99,298c-18.859,0,15.646,0-3.214,0c10.184-23-10.185-45,0-67c18.859,0-15.646,0,3.214,0  C320.806,253,341.174,275,330.99,298z"
     id="path368" /><polygon
     display="none"
     fill="#31ABFF"
     points="323.001,231.288 330.502,223.451 333.538,233.866 "
     id="polygon370" /><g
     display="none"
     id="g372"><g
       display="inline"
       id="g374"><g
         display="none"
         id="g376"><path
           display="inline"
           fill="#31ABFF"
           d="M425.129,219v-22h-40.439c-2.568,7-4.733,14-6.517,22H425.129z"
           id="path378" /><path
           display="inline"
           opacity="0.64"
           fill="none"
           stroke="#31ABFF"
           stroke-miterlimit="10"
           enable-background="new    "
           d="     M425.629,218.5v-22h-40.939c-2.568,8-4.733,15-6.517,22H425.629z"
           id="path380" /></g><g
         display="none"
         id="g382"><path
           display="inline"
           fill="#31ABFF"
           d="M425.129,244v-21h-47.87c-1.63,7-2.88,14-3.729,21H425.129z"
           id="path384" /><path
           display="inline"
           opacity="0.64"
           fill="none"
           stroke="#31ABFF"
           stroke-miterlimit="10"
           enable-background="new    "
           d="     M425.629,244.5v-22h-48.37c-1.63,7-2.88,15-3.729,22H425.629z"
           id="path386" /></g><g
         display="none"
         id="g388"><path
           display="inline"
           fill="#31ABFF"
           d="M372.116,270h53.013v-22H373.12c-0.671,7-1.003,13.871-0.971,20.759     C372.149,269.155,372.131,270,372.116,270z"
           id="path390" /><path
           display="inline"
           opacity="0.64"
           fill="none"
           stroke="#31ABFF"
           stroke-miterlimit="10"
           enable-background="new    "
           d="     M372.116,270.5h53.513v-22H373.12c-0.671,7-1.003,13.871-0.971,20.759C372.149,269.655,372.131,269.5,372.116,270.5z"
           id="path392" /></g></g></g><rect
     x="533.601"
     y="175.708"
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#31ABFF"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     width="157.955"
     height="127.534"
     id="rect394" /><path
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#31ABFF"
     stroke-width="0.8243"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     d="  M628.462,255.953l51.054-3.023c3.594-0.142,5.476,3.107,4.104,7.17l-2.858,10.824c-1.526,4.532-5.984,9.041-9.908,9.041h-62.589  c-5.254,0-6.745-6.561-6.745-11.152c0.12-25.828-4.734-52.385-14.563-78.246c-0.953-2.52,0.953-5.045,4.299-5.702  c1.817-0.356,3.634-0.713,5.448-1.069c3.337-0.655,7.051,0.767,8.26,3.236c11.037,22.563,18.271,43.783,21.695,66.559  C626.659,253.589,627.323,256.021,628.462,255.953z"
     id="path396" /><path
     display="none"
     fill="#31ABFF"
     d="M661.629,298c18.86,0-15.645,0,3.215,0c-10.184-23,10.185-45,0-67  c-18.858,0,15.646,0-3.215,0C671.814,253,651.446,275,661.629,298z"
     id="path398" /><polygon
     display="none"
     fill="#31ABFF"
     points="669.619,231.288 662.118,223.451 659.082,233.866 "
     id="polygon400" /><path
     display="none"
     fill="#31ABFF"
     d="M648.771,298c18.858,0-15.646,0,3.214,0c-10.185-23,10.186-45,0-67  c-18.86,0,15.646,0-3.214,0C658.955,253,638.586,275,648.771,298z"
     id="path402" /><polygon
     display="none"
     fill="#31ABFF"
     points="656.759,231.288 649.258,223.451 646.222,233.866 "
     id="polygon404" /><path
     display="none"
     fill="#31ABFF"
     d="M635.269,298c18.86,0-15.646,0,3.215,0c-10.185-23,10.185-45,0-67  c-18.859,0,15.646,0-3.215,0C645.453,253,625.084,275,635.269,298z"
     id="path406" /><polygon
     display="none"
     fill="#31ABFF"
     points="643.257,231.288 635.756,223.451 632.721,233.866 "
     id="polygon408" /><path
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#31ABFF"
     stroke-width="0.8243"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     d="  M541.011,218.609v-21.841h40.56c2.567,7.243,4.732,14.529,6.516,21.841H541.011z"
     id="path410" /><path
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#31ABFF"
     stroke-width="0.8243"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     d="  M541.011,244.35v-21.841h47.987c1.63,7.263,2.881,14.548,3.729,21.841H541.011z"
     id="path412" /><path
     display="none"
     fill="#31ABFF"
     fill-opacity="0.29"
     stroke="#31ABFF"
     stroke-width="0.8243"
     stroke-miterlimit="10"
     stroke-opacity="0.64"
     d="  M594.143,270.091h-53.132V248.25h52.128c0.67,6.894,1.002,13.792,0.972,20.679C594.11,269.325,594.127,269.707,594.143,270.091z"
     id="path414" /><line
     display="none"
     fill="none"
     stroke="#31ABFF"
     stroke-width="3"
     stroke-miterlimit="10"
     x1="667.129"
     y1="726.5"
     x2="363.129"
     y2="726.5"
     id="line416" /><path
     display="none"
     fill="#31ABFF"
     d="M362.629,703.5h29v-68.552c-9.607,0.396-19.279,0.849-29,1.366V703.5z"
     id="path418" /><path
     display="none"
     fill="#31ABFF"
     d="M401.629,703.5h29v-69.834c-9.582,0.234-19.253,0.529-29,0.89V703.5z"
     id="path420" /><path
     display="none"
     fill="#31ABFF"
     d="M440.629,703.5h28v-70.443c-9.225,0.067-18.563,0.196-28,0.387V703.5z"
     id="path422" /><path
     display="none"
     fill="#31ABFF"
     d="M479.629,633.008V703.5h29v-70.351c-8.34-0.099-16.598-0.149-24.75-0.149  C482.468,633,481.047,633.005,479.629,633.008z"
     id="path424" /><path
     display="none"
     fill="#31ABFF"
     d="M519.629,703.5h28v-69.553c-9.42-0.273-18.76-0.488-28-0.644V703.5z"
     id="path426" /><path
     display="none"
     fill="#31ABFF"
     d="M558.629,703.5h29v-68.051c-9.729-0.447-19.404-0.835-29-1.159V703.5z"
     id="path428" /><path
     display="none"
     fill="#31ABFF"
     d="M597.629,703.5h28v-66.005c-9.371-0.578-18.71-1.104-28-1.567V703.5z"
     id="path430" /><path
     display="none"
     fill="#31ABFF"
     d="M636.629,703.5h29v-63.205c-9.684-0.759-19.355-1.46-29-2.099V703.5z"
     id="path432" /></svg>