-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1815 lines (1777 loc) · 159 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Calculadora Hcode</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
button,
hr,
input {
overflow: visible
}
progress,
sub,
sup {
vertical-align: baseline
}
[type=checkbox],
[type=radio],
legend {
box-sizing: border-box;
padding: 0
}
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%
}
body {
margin: 0;
}
h1 {
font-size: 2em;
margin: .67em 0
}
hr {
box-sizing: content-box;
height: 0
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em
}
a {
background-color: transparent
}
abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted
}
b,
strong {
font-weight: bolder
}
small {
font-size: 80%
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative
}
sub {
bottom: -.25em
}
sup {
top: -.5em
}
img {
border-style: none
}
button,
input,
optgroup,
select,
textarea {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0
}
button,
select {
text-transform: none
}
[type=button],
[type=reset],
[type=submit],
button {
-webkit-appearance: button
}
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
border-style: none;
padding: 0
}
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
outline: ButtonText dotted 1px
}
fieldset {
padding: .35em .75em .625em
}
legend {
color: inherit;
display: table;
max-width: 100%;
white-space: normal
}
textarea {
overflow: auto
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
height: auto
}
[type=search] {
-webkit-appearance: textfield;
outline-offset: -2px
}
[type=search]::-webkit-search-decoration {
-webkit-appearance: none
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit
}
details {
display: block
}
summary {
display: list-item
}
[hidden],
template {
display: none
}
.outer {
display: table;
position: absolute;
height: 100%;
width: 100%;
}
.middle {
display: table-cell;
vertical-align: middle;
text-align: center;
}
@font-face {
font-family: 'Digital-7';
src: url('digital-7.ttf');
}
svg{
font-family: 'Digital-7', sans-serif;
}
#calculadora-hcode {
margin: 0 auto;
}
</style>
</head>
<body>
<div class="outer">
<div class="middle">
<svg id="calculadora-hcode" version="1.1" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="600px" height="600px" viewBox="0 0 600 600" enable-background="new 0 0 600 600"
xml:space="preserve">
<switch>
<g i:extraneous="self">
<g id="base">
<g opacity="0.5">
<path opacity="0" fill="#FFFFFF" d="M158.528,585.563c-18.196,0-34.621-28.526-34.621-46.722V72.043c0-18.195,14.804-33,33-33
h290.484c18.196,0,33,14.805,33,33v477.03c0,18.195-14.804,35.887-33,35.887L158.528,585.563z" />
<path opacity="0.0222" fill="#F9F9F9" d="M158.465,584.941c-18.123,0-34.451-28.162-34.451-46.284V71.858
c0-18.122,14.744-32.867,32.867-32.867h290.484c18.122,0,32.866,14.745,32.866,32.867v476.803
c0,18.122-14.744,35.689-32.866,35.689L158.465,584.941z" />
<path opacity="0.0444" fill="#F4F4F4" d="M158.402,584.317c-18.049,0-34.282-27.796-34.282-45.845V71.674
c0-18.048,14.684-32.733,32.733-32.733h290.484c18.05,0,32.733,14.685,32.733,32.733V548.25
c0,18.048-14.684,35.491-32.733,35.491L158.402,584.317z" />
<path opacity="0.0667" fill="#EEEEEE" d="M158.339,583.695c-17.975,0-34.112-27.433-34.112-45.406V71.49
c0-17.975,14.625-32.6,32.6-32.6h290.485c17.976,0,32.6,14.625,32.6,32.6v476.348c0,17.975-14.624,35.294-32.6,35.294
L158.339,583.695z" />
<path opacity="0.0889" fill="#E8E8E8" d="M158.276,583.072c-17.902,0-33.943-27.066-33.943-44.969V71.305
c0-17.901,14.564-32.466,32.466-32.466h290.484c17.902,0,32.467,14.565,32.467,32.466v476.121
c0,17.901-14.564,35.097-32.467,35.097L158.276,583.072z" />
<path opacity="0.1111" fill="#E3E3E3" d="M158.214,582.45c-17.829,0-33.774-26.703-33.774-44.53V71.121
c0-17.828,14.505-32.333,32.333-32.333h290.484c17.828,0,32.333,14.505,32.333,32.333v475.894
c0,17.827-14.505,34.898-32.333,34.898L158.214,582.45z" />
<path opacity="0.1333" fill="#DDDDDD" d="M158.151,581.827c-17.755,0-33.604-26.338-33.604-44.093V70.937
c0-17.754,14.445-32.2,32.2-32.2H447.23c17.756,0,32.2,14.446,32.2,32.2v475.665c0,17.755-14.444,34.702-32.2,34.702
L158.151,581.827z" />
<path opacity="0.1556" fill="#D7D7D7" d="M158.088,581.204c-17.682,0-33.435-25.973-33.435-43.653V70.752
c0-17.681,14.385-32.066,32.067-32.066h290.484c17.682,0,32.066,14.386,32.066,32.066V546.19
c0,17.681-14.385,34.505-32.066,34.505L158.088,581.204z" />
<path opacity="0.1778" fill="#D2D2D2" d="M158.025,580.582c-17.608,0-33.266-25.608-33.266-43.216V70.568
c0-17.607,14.325-31.934,31.933-31.934h290.484c17.608,0,31.934,14.326,31.934,31.934v475.21
c0,17.608-14.325,34.307-31.934,34.307L158.025,580.582z" />
<path opacity="0.2" fill="#CCCCCC" d="M157.962,579.959c-17.534,0-33.096-25.243-33.096-42.777V70.383
c0-17.534,14.265-31.8,31.8-31.8H447.15c17.534,0,31.8,14.266,31.8,31.8v474.984c0,17.533-14.266,34.109-31.8,34.109
L157.962,579.959z" />
<path opacity="0.2222" fill="#C6C6C6" d="M157.899,579.336c-17.46,0-32.927-24.878-32.927-42.339V70.199
c0-17.46,14.206-31.667,31.667-31.667h290.484c17.461,0,31.667,14.207,31.667,31.667v474.756
c0,17.46-14.206,33.912-31.667,33.912L157.899,579.336z" />
<path opacity="0.2444" fill="#C1C1C1" d="M157.837,578.713c-17.388,0-32.758-24.514-32.758-41.9V70.015
c0-17.387,14.146-31.533,31.534-31.533h290.484c17.388,0,31.533,14.146,31.533,31.533v474.528
c0,17.387-14.146,33.715-31.533,33.715L157.837,578.713z" />
<path opacity="0.2667" fill="#BBBBBB" d="M157.773,578.091c-17.314,0-32.588-24.149-32.588-41.462V69.83
c0-17.313,14.086-31.4,31.4-31.4H447.07c17.313,0,31.399,14.087,31.399,31.4v474.301c0,17.314-14.086,33.518-31.399,33.518
L157.773,578.091z" />
<path opacity="0.2889" fill="#B5B5B5" d="M157.711,577.469c-17.241,0-32.419-23.785-32.419-41.025V69.646
c0-17.24,14.025-31.267,31.266-31.267h290.485c17.24,0,31.267,14.027,31.267,31.267V543.72c0,17.24-14.026,33.319-31.267,33.319
L157.711,577.469z" />
<path opacity="0.3111" fill="#B0B0B0" d="M157.648,576.846c-17.167,0-32.25-23.42-32.25-40.586V69.461
c0-17.166,13.967-31.133,31.134-31.133h290.484c17.168,0,31.134,13.968,31.134,31.133v473.847
c0,17.167-13.966,33.122-31.134,33.122L157.648,576.846z" />
<path opacity="0.3333" fill="#AAAAAA" d="M157.585,576.223c-17.094,0-32.081-23.055-32.081-40.148V69.276
c0-17.092,13.907-31,31-31h290.485c17.093,0,31,13.908,31,31v473.62c0,17.092-13.907,32.924-31,32.924L157.585,576.223z"
/>
<path opacity="0.3556" fill="#A4A4A4" d="M157.522,575.6c-17.02,0-31.911-22.689-31.911-39.709V69.092
c0-17.019,13.846-30.866,30.866-30.866h290.485c17.02,0,30.866,13.848,30.866,30.866v473.393
c0,17.02-13.847,32.727-30.866,32.727L157.522,575.6z" />
<path opacity="0.3778" fill="#9F9F9F" d="M157.459,574.977c-16.946,0-31.742-22.324-31.742-39.271V68.908
c0-16.946,13.788-30.734,30.734-30.734h290.484c16.946,0,30.733,13.788,30.733,30.734v473.164
c0,16.946-13.787,32.529-30.733,32.529L157.459,574.977z" />
<path opacity="0.4" fill="#999999" d="M157.396,574.354c-16.873,0-31.573-21.96-31.573-38.833V68.724
c0-16.872,13.727-30.601,30.6-30.601h290.484c16.873,0,30.601,13.729,30.601,30.601V541.66
c0,16.873-13.728,32.332-30.601,32.332L157.396,574.354z" />
<path opacity="0.4222" fill="#939393" d="M157.333,573.732c-16.799,0-31.402-21.596-31.402-38.396V68.539
c0-16.799,13.667-30.467,30.466-30.467h290.485c16.8,0,30.467,13.668,30.467,30.467v472.709c0,16.8-13.667,32.135-30.467,32.135
L157.333,573.732z" />
<path opacity="0.4444" fill="#8E8E8E" d="M157.271,573.109c-16.726,0-31.234-21.231-31.234-37.957V68.354
c0-16.725,13.608-30.333,30.334-30.333h290.485c16.726,0,30.333,13.608,30.333,30.333v472.482
c0,16.726-13.607,31.937-30.333,31.937L157.271,573.109z" />
<path opacity="0.4667" fill="#888888" d="M157.208,572.486c-16.652,0-31.064-20.866-31.064-37.518V68.17
c0-16.651,13.548-30.2,30.2-30.2h290.485c16.652,0,30.2,13.549,30.2,30.2v472.255c0,16.652-13.548,31.739-30.2,31.739
L157.208,572.486z" />
<path opacity="0.4889" fill="#828282" d="M157.145,571.863c-16.579,0-30.895-20.501-30.895-37.08V67.986
c0-16.578,13.487-30.067,30.066-30.067h290.485c16.578,0,30.066,13.489,30.066,30.067v472.028
c0,16.578-13.488,31.541-30.066,31.541L157.145,571.863z" />
<path opacity="0.5111" fill="#7D7D7D" d="M157.082,571.241c-16.505,0-30.725-20.137-30.725-36.642V67.801
c0-16.504,13.428-29.933,29.933-29.933h290.486c16.505,0,29.933,13.429,29.933,29.933v471.8
c0,16.505-13.428,31.344-29.933,31.344L157.082,571.241z" />
<path opacity="0.5333" fill="#777777" d="M157.019,570.618c-16.432,0-30.556-19.772-30.556-36.203V67.617
c0-16.43,13.369-29.8,29.8-29.8h290.486c16.432,0,29.8,13.37,29.8,29.8v471.573c0,16.432-13.368,31.146-29.8,31.146
L157.019,570.618z" />
<path opacity="0.5556" fill="#717171" d="M156.956,569.996c-16.358,0-30.387-19.407-30.387-35.766V67.433
c0-16.357,13.309-29.667,29.667-29.667h290.485c16.358,0,29.667,13.309,29.667,29.667v471.345
c0,16.358-13.309,30.95-29.667,30.95L156.956,569.996z" />
<path opacity="0.5778" fill="#6C6C6C" d="M156.893,569.373c-16.284,0-30.217-19.043-30.217-35.327V67.248
c0-16.284,13.248-29.533,29.533-29.533h290.486c16.284,0,29.533,13.249,29.533,29.533v471.117
c0,16.285-13.249,30.753-29.533,30.753L156.893,569.373z" />
<path opacity="0.6" fill="#666666" d="M156.83,568.75c-16.211,0-30.048-18.678-30.048-34.889V67.063
c0-16.21,13.189-29.4,29.4-29.4h290.486c16.211,0,29.399,13.19,29.399,29.4v470.891c0,16.211-13.188,30.555-29.399,30.555
L156.83,568.75z" />
<path opacity="0.6222" fill="#606060" d="M156.768,568.127c-16.138,0-29.88-18.313-29.88-34.45V66.879
c0-16.136,13.129-29.266,29.268-29.266h290.485c16.138,0,29.267,13.13,29.267,29.266v470.663
c0,16.138-13.129,30.357-29.267,30.357L156.768,568.127z" />
<path opacity="0.6444" fill="#5B5B5B" d="M156.704,567.505c-16.064,0-29.709-17.948-29.709-34.013V66.694
c0-16.063,13.069-29.133,29.133-29.133h290.485c16.064,0,29.134,13.07,29.134,29.133V537.13c0,16.065-13.069,30.16-29.134,30.16
L156.704,567.505z" />
<path opacity="0.6667" fill="#555555" d="M156.642,566.882c-15.991,0-29.541-17.583-29.541-33.574V66.511
c0-15.99,13.009-29,29-29h290.486c15.99,0,29,13.01,29,29v470.208c0,15.99-13.01,29.962-29,29.962L156.642,566.882z" />
<path opacity="0.6889" fill="#4F4F4F" d="M156.578,566.259c-15.917,0-29.371-17.218-29.371-33.136V66.326
c0-15.916,12.95-28.867,28.867-28.867h290.486c15.916,0,28.866,12.951,28.866,28.867v469.98
c0,15.917-12.95,29.765-28.866,29.765L156.578,566.259z" />
<path opacity="0.7111" fill="#4A4A4A" d="M156.516,565.637c-15.844,0-29.201-16.854-29.201-32.697V66.142
c0-15.843,12.889-28.733,28.732-28.733h290.486c15.844,0,28.733,12.891,28.733,28.733v469.753
c0,15.845-12.89,29.567-28.733,29.567L156.516,565.637z" />
<path opacity="0.7333" fill="#444444" d="M156.452,565.014c-15.77,0-29.032-16.488-29.032-32.259V65.957
c0-15.769,12.83-28.6,28.6-28.6h290.486c15.77,0,28.6,12.831,28.6,28.6v469.525c0,15.771-12.83,29.37-28.6,29.37
L156.452,565.014z" />
<path opacity="0.7556" fill="#3E3E3E" d="M156.39,564.391c-15.696,0-28.863-16.123-28.863-31.82V65.773
c0-15.696,12.771-28.467,28.467-28.467h290.486c15.696,0,28.467,12.771,28.467,28.467v469.298
c0,15.696-12.771,29.172-28.467,29.172L156.39,564.391z" />
<path opacity="0.7778" fill="#393939" d="M156.327,563.768c-15.624,0-28.694-15.759-28.694-31.382V65.588
c0-15.622,12.71-28.333,28.333-28.333h290.486c15.622,0,28.333,12.711,28.333,28.333v469.071
c0,15.623-12.711,28.975-28.333,28.975L156.327,563.768z" />
<path opacity="0.8" fill="#333333" d="M156.264,563.146c-15.549,0-28.524-15.395-28.524-30.944V65.404
c0-15.548,12.651-28.2,28.2-28.2h290.486c15.55,0,28.2,12.651,28.2,28.2v468.843c0,15.551-12.65,28.778-28.2,28.778
L156.264,563.146z" />
<path opacity="0.8222" fill="#2D2D2D" d="M156.201,562.522c-15.477,0-28.355-15.029-28.355-30.506V65.219
c0-15.475,12.59-28.066,28.067-28.066h290.486c15.476,0,28.066,12.591,28.066,28.066v468.617
c0,15.477-12.591,28.579-28.066,28.579L156.201,562.522z" />
<path opacity="0.8444" fill="#282828" d="M156.138,561.9c-15.402,0-28.186-14.665-28.186-30.068V65.035
c0-15.401,12.531-27.934,27.933-27.934h290.486c15.403,0,27.934,12.532,27.934,27.934v468.389
c0,15.403-12.53,28.383-27.934,28.383L156.138,561.9z" />
<path opacity="0.8667" fill="#222222" d="M156.075,561.277c-15.329,0-28.016-14.3-28.016-29.63V64.851
c0-15.328,12.471-27.8,27.8-27.8h290.487c15.329,0,27.8,12.473,27.8,27.8v468.161c0,15.33-12.471,28.186-27.8,28.186
L156.075,561.277z" />
<path opacity="0.8889" fill="#1C1C1C" d="M156.012,560.654c-15.255,0-27.847-13.935-27.847-29.19V64.666
c0-15.254,12.411-27.667,27.667-27.667h290.486c15.256,0,27.667,12.412,27.667,27.667v467.935
c0,15.256-12.411,27.987-27.667,27.987L156.012,560.654z" />
<path opacity="0.9111" fill="#171717" d="M155.949,560.032c-15.182,0-27.677-13.57-27.677-28.754V64.482
c0-15.181,12.352-27.534,27.533-27.534h290.487c15.182,0,27.533,12.353,27.533,27.534v467.707
c0,15.183-12.352,27.79-27.533,27.79L155.949,560.032z" />
<path opacity="0.9333" fill="#111111" d="M155.887,559.409c-15.108,0-27.508-13.206-27.508-28.314V64.297
c0-15.107,12.292-27.4,27.4-27.4h290.486c15.108,0,27.4,12.293,27.4,27.4v467.479c0,15.109-12.292,27.593-27.4,27.593
L155.887,559.409z" />
<path opacity="0.9556" fill="#0B0B0B" d="M155.824,558.786c-15.035,0-27.339-12.841-27.339-27.876V64.113
c0-15.034,12.232-27.267,27.267-27.267h290.487c15.035,0,27.267,12.233,27.267,27.267v467.252
c0,15.035-12.231,27.395-27.267,27.395L155.824,558.786z" />
<path opacity="0.9778" fill="#060606" d="M155.761,558.164c-14.961,0-27.169-12.477-27.169-27.438V63.929
c0-14.96,12.172-27.133,27.133-27.133h290.486c14.962,0,27.134,12.173,27.134,27.133v467.024
c0,14.962-12.172,27.197-27.134,27.197L155.761,558.164z" />
<path d="M155.698,557.541c-14.888,0-27-12.111-27-27V63.744c0-14.887,12.112-27,27-27h290.487c14.888,0,27,12.113,27,27v466.797
c0,14.889-12.112,27-27,27H155.698z" />
</g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="82.7842" y1="-66.4512" x2="597.344" y2="791.1471">
<stop offset="0" style="stop-color:#CCCCCC" />
<stop offset="0.4543" style="stop-color:#929292" />
<stop offset="1" style="stop-color:#474747" />
</linearGradient>
<path fill="url(#SVGID_1_)" d="M155.698,557.541c-14.888,0-27-12.111-27-27V63.744c0-14.887,12.112-27,27-27h290.487
c14.888,0,27,12.113,27,27v466.797c0,14.889-12.112,27-27,27H155.698z" />
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="82.8921" y1="-66.2725" x2="597.2014" y2="790.9083">
<stop offset="0" style="stop-color:#CCCCCC" />
<stop offset="0.4677" style="stop-color:#929292" />
<stop offset="1" style="stop-color:#4B4B4B" />
</linearGradient>
<path fill="url(#SVGID_2_)" d="M155.698,557.395c-14.807,0-26.853-12.045-26.853-26.854V63.744
c0-14.807,12.045-26.852,26.853-26.852h290.487c14.808,0,26.854,12.045,26.854,26.852v466.797
c0,14.809-12.046,26.854-26.854,26.854H155.698z" />
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="82.9971" y1="-66.0977" x2="597.0575" y2="790.6683">
<stop offset="0" style="stop-color:#CDCDCD" />
<stop offset="0.4747" style="stop-color:#939393" />
<stop offset="1" style="stop-color:#4E4E4E" />
</linearGradient>
<path fill="url(#SVGID_3_)" d="M155.698,557.248c-14.727,0-26.706-11.98-26.706-26.707V63.744
c0-14.727,11.979-26.705,26.706-26.705h290.487c14.727,0,26.706,11.979,26.706,26.705v466.797
c0,14.727-11.979,26.707-26.706,26.707H155.698z" />
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="83.1035" y1="-65.9199" x2="596.9117" y2="790.4257">
<stop offset="0" style="stop-color:#CDCDCD" />
<stop offset="0.4893" style="stop-color:#939393" />
<stop offset="1" style="stop-color:#525252" />
</linearGradient>
<path fill="url(#SVGID_4_)" d="M155.697,557.1c-14.646,0-26.558-11.912-26.558-26.559V63.744
c0-14.646,11.912-26.559,26.558-26.559h290.486c14.646,0,26.56,11.912,26.56,26.559v466.797
c0,14.646-11.913,26.559-26.56,26.559H155.697z" />
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="83.208" y1="-65.7441" x2="596.7682" y2="790.1881">
<stop offset="0" style="stop-color:#CECECE" />
<stop offset="0.497" style="stop-color:#949494" />
<stop offset="1" style="stop-color:#555555" />
</linearGradient>
<path fill="url(#SVGID_5_)" d="M155.698,556.953c-14.565,0-26.412-11.846-26.412-26.412V63.744
c0-14.564,11.847-26.412,26.412-26.412h290.487c14.565,0,26.411,11.848,26.411,26.412v466.797
c0,14.566-11.846,26.412-26.411,26.412H155.698z" />
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="83.3154" y1="-65.5654" x2="596.6234" y2="789.9464">
<stop offset="0" style="stop-color:#CECECE" />
<stop offset="0.5091" style="stop-color:#949494" />
<stop offset="1" style="stop-color:#595959" />
</linearGradient>
<path fill="url(#SVGID_6_)" d="M155.698,556.807c-14.486,0-26.265-11.779-26.265-26.266V63.744
c0-14.484,11.779-26.264,26.265-26.264h290.486c14.485,0,26.265,11.779,26.265,26.264v466.797
c0,14.486-11.779,26.266-26.265,26.266H155.698z" />
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="83.4209" y1="-65.3906" x2="596.4808" y2="789.7079">
<stop offset="0" style="stop-color:#CECECE" />
<stop offset="0.5263" style="stop-color:#949494" />
<stop offset="1" style="stop-color:#5D5D5D" />
</linearGradient>
<path fill="url(#SVGID_7_)" d="M155.698,556.66c-14.404,0-26.118-11.715-26.118-26.119V63.744
c0-14.404,11.713-26.117,26.118-26.117h290.487c14.404,0,26.118,11.713,26.118,26.117v466.797
c0,14.404-11.714,26.119-26.118,26.119H155.698z" />
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="83.5264" y1="-65.2139" x2="596.3358" y2="789.467">
<stop offset="0" style="stop-color:#CFCFCF" />
<stop offset="0.5354" style="stop-color:#959595" />
<stop offset="1" style="stop-color:#606060" />
</linearGradient>
<path fill="url(#SVGID_8_)" d="M155.698,556.512c-14.324,0-25.971-11.646-25.971-25.971V63.744
c0-14.324,11.646-25.971,25.971-25.971h290.487c14.324,0,25.971,11.646,25.971,25.971v466.797
c0,14.324-11.646,25.971-25.971,25.971H155.698z" />
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="83.6328" y1="-65.0361" x2="596.19" y2="789.2244">
<stop offset="0" style="stop-color:#CFCFCF" />
<stop offset="0.5546" style="stop-color:#959595" />
<stop offset="1" style="stop-color:#646464" />
</linearGradient>
<path fill="url(#SVGID_9_)" d="M155.698,556.365c-14.244,0-25.823-11.58-25.823-25.824V63.744
c0-14.242,11.58-25.822,25.823-25.822h290.487c14.243,0,25.823,11.58,25.823,25.822v466.797
c0,14.244-11.58,25.824-25.823,25.824H155.698z" />
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="83.7402" y1="-64.8594" x2="596.0486" y2="788.9865">
<stop offset="0" style="stop-color:#CFCFCF" />
<stop offset="0.5751" style="stop-color:#959595" />
<stop offset="1" style="stop-color:#686868" />
</linearGradient>
<path fill="url(#SVGID_10_)" d="M155.698,556.219c-14.163,0-25.676-11.514-25.676-25.676V63.744
c0-14.162,11.513-25.676,25.676-25.676h290.486c14.163,0,25.677,11.514,25.677,25.676v466.799
c0,14.162-11.514,25.676-25.677,25.676H155.698z" />
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="83.8457" y1="-64.6826" x2="595.9026" y2="788.7443">
<stop offset="0" style="stop-color:#D0D0D0" />
<stop offset="0.5861" style="stop-color:#969696" />
<stop offset="1" style="stop-color:#6B6B6B" />
</linearGradient>
<path fill="url(#SVGID_11_)" d="M155.698,556.07c-14.083,0-25.529-11.447-25.529-25.529V63.744
c0-14.082,11.447-25.529,25.529-25.529h290.487c14.083,0,25.529,11.447,25.529,25.529v466.797
c0,14.082-11.446,25.529-25.529,25.529H155.698z" />
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="83.9512" y1="-64.5078" x2="595.7601" y2="788.5056">
<stop offset="0" style="stop-color:#D0D0D0" />
<stop offset="0.6092" style="stop-color:#969696" />
<stop offset="1" style="stop-color:#6F6F6F" />
</linearGradient>
<path fill="url(#SVGID_12_)" d="M155.698,555.924c-14.002,0-25.382-11.381-25.382-25.383V63.744
c0-14.002,11.38-25.383,25.382-25.383h290.486c14.003,0,25.383,11.381,25.383,25.383v466.797
c0,14.002-11.38,25.383-25.383,25.383H155.698z" />
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="84.0576" y1="-64.3281" x2="595.6143" y2="788.265">
<stop offset="0" style="stop-color:#D1D1D1" />
<stop offset="0.6214" style="stop-color:#979797" />
<stop offset="1" style="stop-color:#727272" />
</linearGradient>
<path fill="url(#SVGID_13_)" d="M155.698,555.777c-13.922,0-25.235-11.314-25.235-25.236V63.744
c0-13.92,11.313-25.234,25.235-25.234h290.487c13.921,0,25.235,11.314,25.235,25.234v466.797
c0,13.922-11.314,25.236-25.235,25.236H155.698z" />
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="84.1641" y1="-64.1523" x2="595.4719" y2="788.026">
<stop offset="0" style="stop-color:#D1D1D1" />
<stop offset="0.6476" style="stop-color:#979797" />
<stop offset="1" style="stop-color:#767676" />
</linearGradient>
<path fill="url(#SVGID_14_)" d="M155.698,555.631c-13.841,0-25.088-11.248-25.088-25.09V63.744
c0-13.84,11.247-25.088,25.088-25.088h290.488c13.841,0,25.088,11.248,25.088,25.088v466.797
c0,13.842-11.247,25.09-25.088,25.09H155.698z" />
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="84.2695" y1="-63.9756" x2="595.3268" y2="787.7852">
<stop offset="0" style="stop-color:#D1D1D1" />
<stop offset="0.676" style="stop-color:#979797" />
<stop offset="1" style="stop-color:#7A7A7A" />
</linearGradient>
<path fill="url(#SVGID_15_)" d="M155.698,555.482c-13.761,0-24.941-11.18-24.941-24.941V63.744
c0-13.76,11.181-24.941,24.941-24.941h290.487c13.761,0,24.941,11.182,24.941,24.941v466.797
c0,13.762-11.181,24.941-24.941,24.941H155.698z" />
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="84.376" y1="-63.7988" x2="595.1827" y2="787.5444">
<stop offset="0" style="stop-color:#D2D2D2" />
<stop offset="0.6913" style="stop-color:#989898" />
<stop offset="1" style="stop-color:#7D7D7D" />
</linearGradient>
<path fill="url(#SVGID_16_)" d="M155.698,555.336c-13.681,0-24.794-11.115-24.794-24.795V63.744
c0-13.68,11.114-24.793,24.794-24.793h290.487c13.68,0,24.794,11.113,24.794,24.793v466.797
c0,13.68-11.114,24.795-24.794,24.795H155.698z" />
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="84.4814" y1="-63.6221" x2="595.0386" y2="787.305">
<stop offset="0" style="stop-color:#D2D2D2" />
<stop offset="0.7239" style="stop-color:#989898" />
<stop offset="1" style="stop-color:#818181" />
</linearGradient>
<path fill="url(#SVGID_17_)" d="M155.698,555.189c-13.6,0-24.647-11.049-24.647-24.648V63.744
c0-13.6,11.047-24.646,24.647-24.646h290.487c13.6,0,24.647,11.047,24.647,24.646v466.797c0,13.6-11.048,24.648-24.647,24.648
H155.698z" />
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="84.5879" y1="-63.4443" x2="594.8944" y2="787.0652">
<stop offset="0" style="stop-color:#D3D3D3" />
<stop offset="0.7415" style="stop-color:#999999" />
<stop offset="1" style="stop-color:#848484" />
</linearGradient>
<path fill="url(#SVGID_18_)" d="M155.698,555.041c-13.519,0-24.5-10.98-24.5-24.5V63.744c0-13.518,10.981-24.5,24.5-24.5
h290.487c13.519,0,24.5,10.982,24.5,24.5v466.797c0,13.52-10.981,24.5-24.5,24.5H155.698z" />
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="84.6943" y1="-63.2676" x2="594.7504" y2="786.8243">
<stop offset="0" style="stop-color:#D3D3D3" />
<stop offset="0.7792" style="stop-color:#999999" />
<stop offset="1" style="stop-color:#888888" />
</linearGradient>
<path fill="url(#SVGID_19_)" d="M155.698,554.895c-13.438,0-24.353-10.914-24.353-24.354V63.744
c0-13.438,10.915-24.352,24.353-24.352h290.487c13.438,0,24.353,10.914,24.353,24.352v466.797
c0,13.439-10.914,24.354-24.353,24.354H155.698z" />
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="84.8003" y1="-63.0918" x2="594.6058" y2="786.5826">
<stop offset="0" style="stop-color:#D3D3D3" />
<stop offset="0.8212" style="stop-color:#999999" />
<stop offset="1" style="stop-color:#8C8C8C" />
</linearGradient>
<path fill="url(#SVGID_20_)" d="M155.698,554.748c-13.358,0-24.206-10.848-24.206-24.207V63.744
c0-13.357,10.848-24.205,24.206-24.205h290.487c13.358,0,24.206,10.848,24.206,24.205v466.797
c0,13.359-10.848,24.207-24.206,24.207H155.698z" />
<linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="84.9063" y1="-62.915" x2="594.4629" y2="786.3445">
<stop offset="0" style="stop-color:#D4D4D4" />
<stop offset="0.8439" style="stop-color:#9A9A9A" />
<stop offset="1" style="stop-color:#8F8F8F" />
</linearGradient>
<path fill="url(#SVGID_21_)" d="M155.698,554.602c-13.277,0-24.059-10.783-24.059-24.061V63.744
c0-13.277,10.781-24.059,24.059-24.059h290.487c13.277,0,24.059,10.781,24.059,24.059v466.797
c0,13.277-10.781,24.061-24.059,24.061H155.698z" />
<linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="85.0127" y1="-62.7373" x2="594.3171" y2="786.102">
<stop offset="0" style="stop-color:#D4D4D4" />
<stop offset="0.8935" style="stop-color:#9A9A9A" />
<stop offset="1" style="stop-color:#939393" />
</linearGradient>
<path fill="url(#SVGID_22_)" d="M155.698,554.453c-13.197,0-23.912-10.715-23.912-23.912V63.744
c0-13.195,10.715-23.91,23.912-23.91h290.487c13.197,0,23.911,10.715,23.911,23.91v466.797
c0,13.197-10.714,23.912-23.911,23.912H155.698z" />
<linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="85.1187" y1="-62.5605" x2="594.1733" y2="785.8625">
<stop offset="0" style="stop-color:#D4D4D4" />
<stop offset="0.9495" style="stop-color:#9A9A9A" />
<stop offset="1" style="stop-color:#979797" />
</linearGradient>
<path fill="url(#SVGID_23_)" d="M155.698,554.307c-13.116,0-23.765-10.648-23.765-23.766V63.744
c0-13.115,10.648-23.764,23.765-23.764h290.487c13.116,0,23.765,10.648,23.765,23.764v466.797
c0,13.117-10.648,23.766-23.765,23.766H155.698z" />
<linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="85.2236" y1="-62.3848" x2="594.0286" y2="785.6221">
<stop offset="0" style="stop-color:#D5D5D5" />
<stop offset="0.9802" style="stop-color:#9B9B9B" />
<stop offset="1" style="stop-color:#9A9A9A" />
</linearGradient>
<path fill="url(#SVGID_24_)" d="M155.698,554.158c-13.036,0-23.618-10.58-23.618-23.617V63.744
c0-13.035,10.582-23.617,23.618-23.617h290.487c13.036,0,23.617,10.582,23.617,23.617v466.797
c0,13.037-10.581,23.617-23.617,23.617H155.698z" />
<linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="85.3301" y1="-62.208" x2="593.8854" y2="785.3828">
<stop offset="0" style="stop-color:#D5D5D5" />
<stop offset="1" style="stop-color:#9E9E9E" />
</linearGradient>
<path fill="url(#SVGID_25_)" d="M155.698,554.012c-12.956,0-23.471-10.514-23.471-23.471V63.744
c0-12.955,10.515-23.471,23.471-23.471h290.487c12.955,0,23.471,10.516,23.471,23.471v466.797
c0,12.957-10.516,23.471-23.471,23.471H155.698z" />
<linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="85.4365" y1="-62.0303" x2="593.7405" y2="785.1415">
<stop offset="0" style="stop-color:#D6D6D6" />
<stop offset="1" style="stop-color:#A1A1A1" />
</linearGradient>
<path fill="url(#SVGID_26_)" d="M155.698,553.865c-12.875,0-23.324-10.449-23.324-23.324V63.744
c0-12.875,10.449-23.322,23.324-23.322h290.487c12.875,0,23.323,10.447,23.323,23.322v466.797
c0,12.875-10.448,23.324-23.323,23.324H155.698z" />
<linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="85.543" y1="-61.8535" x2="593.5972" y2="784.9021">
<stop offset="0" style="stop-color:#D6D6D6" />
<stop offset="1" style="stop-color:#A5A5A5" />
</linearGradient>
<path fill="url(#SVGID_27_)" d="M155.698,553.719c-12.795,0-23.176-10.383-23.176-23.178V63.744
c0-12.793,10.381-23.176,23.176-23.176h290.487c12.795,0,23.177,10.383,23.177,23.176v466.797
c0,12.795-10.382,23.178-23.177,23.178H155.698z" />
<linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="85.6484" y1="-61.6777" x2="593.4529" y2="784.6617">
<stop offset="0" style="stop-color:#D6D6D6" />
<stop offset="1" style="stop-color:#A9A9A9" />
</linearGradient>
<path fill="url(#SVGID_28_)" d="M155.698,553.57c-12.714,0-23.029-10.314-23.029-23.029V63.744
c0-12.713,10.315-23.029,23.029-23.029h290.487c12.714,0,23.029,10.316,23.029,23.029v466.797
c0,12.715-10.315,23.029-23.029,23.029H155.698z" />
<linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="85.7559" y1="-61.499" x2="593.3098" y2="784.4229">
<stop offset="0" style="stop-color:#D7D7D7" />
<stop offset="1" style="stop-color:#ACACAC" />
</linearGradient>
<path fill="url(#SVGID_29_)" d="M155.698,553.424c-12.633,0-22.882-10.248-22.882-22.883V63.744
c0-12.633,10.249-22.881,22.882-22.881h290.487c12.634,0,22.883,10.248,22.883,22.881v466.797
c0,12.635-10.249,22.883-22.883,22.883H155.698z" />
<linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="85.8604" y1="-61.3242" x2="593.1655" y2="784.1829">
<stop offset="0" style="stop-color:#D7D7D7" />
<stop offset="1" style="stop-color:#B0B0B0" />
</linearGradient>
<path fill="url(#SVGID_30_)" d="M155.698,553.277c-12.553,0-22.735-10.184-22.735-22.736V63.744
c0-12.553,10.183-22.734,22.735-22.734h290.487c12.553,0,22.735,10.182,22.735,22.734v466.797
c0,12.553-10.183,22.736-22.735,22.736H155.698z" />
<linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="85.9678" y1="-61.1465" x2="593.0215" y2="783.9417">
<stop offset="0" style="stop-color:#D7D7D7" />
<stop offset="1" style="stop-color:#B4B4B4" />
</linearGradient>
<path fill="url(#SVGID_31_)" d="M155.698,553.131c-12.472,0-22.588-10.117-22.588-22.59V63.744
c0-12.471,10.116-22.588,22.588-22.588h290.487c12.473,0,22.589,10.117,22.589,22.588v466.797
c0,12.473-10.116,22.59-22.589,22.59H155.698z" />
<linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="86.0728" y1="-60.9697" x2="592.8768" y2="783.7023">
<stop offset="0" style="stop-color:#D8D8D8" />
<stop offset="1" style="stop-color:#B7B7B7" />
</linearGradient>
<path fill="url(#SVGID_32_)" d="M155.698,552.982c-12.392,0-22.441-10.049-22.441-22.441V63.744
c0-12.391,10.049-22.441,22.441-22.441h290.487c12.392,0,22.441,10.051,22.441,22.441v466.797
c0,12.393-10.05,22.441-22.441,22.441H155.698z" />
<linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="86.1787" y1="-60.793" x2="592.7322" y2="783.4615">
<stop offset="0" style="stop-color:#D8D8D8" />
<stop offset="1" style="stop-color:#BBBBBB" />
</linearGradient>
<path fill="url(#SVGID_33_)" d="M155.698,552.836c-12.312,0-22.294-9.982-22.294-22.295V63.744
c0-12.311,9.983-22.293,22.294-22.293h290.487c12.312,0,22.294,9.982,22.294,22.293v466.797
c0,12.313-9.982,22.295-22.294,22.295H155.698z" />
<linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="86.2852" y1="-60.6162" x2="592.5881" y2="783.2207">
<stop offset="0" style="stop-color:#D9D9D9" />
<stop offset="1" style="stop-color:#BEBEBE" />
</linearGradient>
<path fill="url(#SVGID_34_)" d="M155.698,552.688c-12.231,0-22.147-9.914-22.147-22.146V63.744
c0-12.23,9.916-22.146,22.147-22.146h290.487c12.23,0,22.147,9.916,22.147,22.146v466.797c0,12.232-9.917,22.146-22.147,22.146
H155.698z" />
<linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="86.3916" y1="-60.4404" x2="592.4448" y2="782.9803">
<stop offset="0" style="stop-color:#D9D9D9" />
<stop offset="1" style="stop-color:#C2C2C2" />
</linearGradient>
<path fill="url(#SVGID_35_)" d="M468.185,530.541c0,12.15-9.85,22-22,22H155.698c-12.15,0-22-9.85-22-22V63.744
c0-12.15,9.85-22,22-22h290.487c12.15,0,22,9.85,22,22V530.541z" />
</g>
<linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="86.3916" y1="-60.4404" x2="592.4448" y2="782.9803">
<stop offset="0" style="stop-color:#F5F5F5" />
<stop offset="1" style="stop-color:#C2C2C2" />
</linearGradient>
<path fill="url(#SVGID_36_)" d="M468.185,530.541c0,12.15-9.85,22-22,22H155.698c-12.15,0-22-9.85-22-22V63.744
c0-12.15,9.85-22,22-22h290.487c12.15,0,22,9.85,22,22V530.541z" />
<g>
<path fill="#BCC49A" d="M173.458,179.502c-4.962,0-9-4.039-9-9v-68.125c0-4.961,4.038-9,9-9h254.966c4.963,0,9,4.039,9,9v68.125
c0,4.961-4.037,9-9,9H173.458z" />
<g>
<linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="193.501" x2="300.9409" y2="81.1239">
<stop offset="0" style="stop-color:#F2F2F2" />
<stop offset="0.2559" style="stop-color:#E4E4E4" />
<stop offset="0.7391" style="stop-color:#BFBFBF" />
<stop offset="1" style="stop-color:#A8A8A8" />
</linearGradient>
<path fill="url(#SVGID_37_)" d="M173.458,191.502c-11.579,0-21-9.422-21-21v-68.125c0-11.578,9.421-21,21-21h254.966
c11.578,0,21,9.422,21,21v68.125c0,11.578-9.422,21-21,21H173.458z" />
<linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="300.9414" y1="193.23" x2="300.9414" y2="81.3871">
<stop offset="0" style="stop-color:#F0F0F0" />
<stop offset="0.2679" style="stop-color:#E2E2E2" />
<stop offset="0.7738" style="stop-color:#BDBDBD" />
<stop offset="1" style="stop-color:#AAAAAA" />
</linearGradient>
<path fill="url(#SVGID_38_)" d="M173.458,191.24c-11.436,0-20.739-9.303-20.739-20.738v-68.125
c0-11.436,9.303-20.738,20.739-20.738h254.966c11.435,0,20.739,9.303,20.739,20.738v68.125
c0,11.436-9.305,20.738-20.739,20.738H173.458z" />
<linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="192.9585" x2="300.9409" y2="81.6497">
<stop offset="0" style="stop-color:#EFEFEF" />
<stop offset="0.2743" style="stop-color:#E1E1E1" />
<stop offset="0.7925" style="stop-color:#BCBCBC" />
<stop offset="1" style="stop-color:#ABABAB" />
</linearGradient>
<path fill="url(#SVGID_39_)" d="M173.458,190.979c-11.293,0-20.479-9.184-20.479-20.477v-68.125
c0-11.293,9.186-20.477,20.479-20.477h254.966c11.292,0,20.479,9.184,20.479,20.477v68.125
c0,11.293-9.187,20.477-20.479,20.477H173.458z" />
<linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="300.9414" y1="192.6895" x2="300.9414" y2="81.9108">
<stop offset="0" style="stop-color:#EDEDED" />
<stop offset="0.2883" style="stop-color:#DFDFDF" />
<stop offset="0.8331" style="stop-color:#BABABA" />
<stop offset="1" style="stop-color:#ADADAD" />
</linearGradient>
<path fill="url(#SVGID_40_)" d="M173.458,190.719c-11.149,0-20.217-9.068-20.217-20.217v-68.125
c0-11.148,9.068-20.217,20.217-20.217h254.966c11.148,0,20.218,9.068,20.218,20.217v68.125
c0,11.148-9.069,20.217-20.218,20.217H173.458z" />
<linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="192.418" x2="300.9409" y2="82.1735">
<stop offset="0" style="stop-color:#EBEBEB" />
<stop offset="0.3" style="stop-color:#DDDDDD" />
<stop offset="0.8669" style="stop-color:#B8B8B8" />
<stop offset="1" style="stop-color:#AEAEAE" />
</linearGradient>
<path fill="url(#SVGID_41_)" d="M173.458,190.457c-11.006,0-19.957-8.949-19.957-19.955v-68.125
c0-11.006,8.951-19.955,19.957-19.955h254.966c11.005,0,19.956,8.949,19.956,19.955v68.125
c0,11.006-8.951,19.955-19.956,19.955H173.458z" />
<linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="192.1489" x2="300.9409" y2="82.4346">
<stop offset="0" style="stop-color:#EAEAEA" />
<stop offset="0.3127" style="stop-color:#DCDCDC" />
<stop offset="0.9038" style="stop-color:#B7B7B7" />
<stop offset="1" style="stop-color:#B0B0B0" />
</linearGradient>
<path fill="url(#SVGID_42_)" d="M173.458,190.197c-10.862,0-19.695-8.832-19.695-19.695v-68.125
c0-10.863,8.833-19.695,19.695-19.695h254.966c10.861,0,19.695,8.832,19.695,19.695v68.125
c0,10.863-8.834,19.695-19.695,19.695H173.458z" />
<linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="191.8779" x2="300.9409" y2="82.6978">
<stop offset="0" style="stop-color:#E8E8E8" />
<stop offset="0.3267" style="stop-color:#DADADA" />
<stop offset="0.9441" style="stop-color:#B5B5B5" />
<stop offset="1" style="stop-color:#B1B1B1" />
</linearGradient>
<path fill="url(#SVGID_43_)" d="M173.458,189.936c-10.72,0-19.435-8.715-19.435-19.434v-68.125
c0-10.719,8.715-19.434,19.435-19.434h254.966c10.719,0,19.435,8.715,19.435,19.434v68.125
c0,10.719-8.716,19.434-19.435,19.434H173.458z" />
<linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="191.6084" x2="300.9409" y2="82.9584">
<stop offset="0" style="stop-color:#E6E6E6" />
<stop offset="0.3477" style="stop-color:#D8D8D8" />
<stop offset="1" style="stop-color:#B3B3B3" />
</linearGradient>
<path fill="url(#SVGID_44_)" d="M173.458,189.676c-10.577,0-19.174-8.598-19.174-19.174v-68.125
c0-10.576,8.598-19.174,19.174-19.174h254.965c10.575,0,19.174,8.598,19.174,19.174v68.125
c0,10.576-8.599,19.174-19.174,19.174H173.458z" />
<linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="300.9414" y1="191.3374" x2="300.9414" y2="83.2215">
<stop offset="0" style="stop-color:#E5E5E5" />
<stop offset="0.3655" style="stop-color:#D7D7D7" />
<stop offset="1" style="stop-color:#B5B5B5" />
</linearGradient>
<path fill="url(#SVGID_45_)" d="M173.458,189.414c-10.433,0-18.913-8.48-18.913-18.912v-68.123
c0-10.436,8.479-18.914,18.913-18.914h254.966c10.432,0,18.913,8.479,18.913,18.914v68.123
c0,10.432-8.481,18.912-18.913,18.912H173.458z" />
<linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="191.0684" x2="300.9409" y2="83.4846">
<stop offset="0" style="stop-color:#E3E3E3" />
<stop offset="0.3855" style="stop-color:#D5D5D5" />
<stop offset="1" style="stop-color:#B6B6B6" />
</linearGradient>
<path fill="url(#SVGID_46_)" d="M173.458,189.154c-10.29,0-18.652-8.363-18.652-18.652v-68.123
c0-10.291,8.362-18.652,18.652-18.652h254.966c10.289,0,18.652,8.361,18.652,18.652v68.123
c0,10.289-8.363,18.652-18.652,18.652H173.458z" />
<linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="300.9414" y1="190.7969" x2="300.9414" y2="83.7453">
<stop offset="0" style="stop-color:#E1E1E1" />
<stop offset="0.4161" style="stop-color:#D3D3D3" />
<stop offset="1" style="stop-color:#B8B8B8" />
</linearGradient>
<path fill="url(#SVGID_47_)" d="M173.458,188.893c-10.147,0-18.392-8.244-18.392-18.391v-68.123
c0-10.148,8.245-18.393,18.392-18.393h254.965c10.146,0,18.392,8.244,18.392,18.393v68.123
c0,10.146-8.246,18.391-18.392,18.391H173.458z" />
<linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="300.9414" y1="190.5259" x2="300.9414" y2="84.0084">
<stop offset="0" style="stop-color:#E0E0E0" />
<stop offset="0.4337" style="stop-color:#D2D2D2" />
<stop offset="1" style="stop-color:#B9B9B9" />
</linearGradient>
<path fill="url(#SVGID_48_)" d="M173.458,188.631c-10.003,0-18.13-8.127-18.13-18.129v-68.123
c0-10.004,8.127-18.131,18.13-18.131h254.966c10.002,0,18.131,8.127,18.131,18.131v68.123c0,10.002-8.129,18.129-18.131,18.129
H173.458z" />
<linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="190.2563" x2="300.9409" y2="84.2691">
<stop offset="0" style="stop-color:#DEDEDE" />
<stop offset="0.4742" style="stop-color:#D0D0D0" />
<stop offset="1" style="stop-color:#BBBBBB" />
</linearGradient>
<path fill="url(#SVGID_49_)" d="M173.458,188.371c-9.86,0-17.87-8.01-17.87-17.869v-68.125c0-9.859,8.01-17.869,17.87-17.869
h254.966c9.859,0,17.869,8.01,17.869,17.869v68.125c0,9.859-8.01,17.869-17.869,17.869H173.458z" />
<linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="300.9414" y1="189.9854" x2="300.9414" y2="84.5322">
<stop offset="0" style="stop-color:#DDDDDD" />
<stop offset="0.4977" style="stop-color:#CFCFCF" />
<stop offset="1" style="stop-color:#BCBCBC" />
</linearGradient>
<path fill="url(#SVGID_50_)" d="M173.458,188.109c-9.717,0-17.609-7.891-17.609-17.607v-68.123
c0-9.719,7.892-17.609,17.609-17.609h254.965c9.716,0,17.609,7.891,17.609,17.609v68.123c0,9.717-7.894,17.607-17.609,17.607
H173.458z" />
<linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="189.7163" x2="300.9409" y2="84.7933">
<stop offset="0" style="stop-color:#DBDBDB" />
<stop offset="0.5528" style="stop-color:#CDCDCD" />
<stop offset="1" style="stop-color:#BEBEBE" />
</linearGradient>
<path fill="url(#SVGID_51_)" d="M173.458,187.85c-9.573,0-17.348-7.775-17.348-17.348v-68.123
c0-9.574,7.774-17.35,17.348-17.35h254.966c9.572,0,17.348,7.775,17.348,17.35v68.123c0,9.572-7.775,17.348-17.348,17.348
H173.458z" />
<linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="189.4448" x2="300.9409" y2="85.056">
<stop offset="0" style="stop-color:#D9D9D9" />
<stop offset="0.6049" style="stop-color:#CBCBCB" />
<stop offset="1" style="stop-color:#BFBFBF" />
</linearGradient>
<path fill="url(#SVGID_52_)" d="M173.458,187.588c-9.43,0-17.087-7.656-17.087-17.086v-68.123
c0-9.432,7.657-17.088,17.087-17.088h254.966c9.43,0,17.087,7.656,17.087,17.088v68.123c0,9.43-7.657,17.086-17.087,17.086
H173.458z" />
<linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="189.1758" x2="300.9409" y2="85.3171">
<stop offset="0" style="stop-color:#D8D8D8" />
<stop offset="0.6694" style="stop-color:#CACACA" />
<stop offset="1" style="stop-color:#C1C1C1" />
</linearGradient>
<path fill="url(#SVGID_53_)" d="M173.458,187.328c-9.288,0-16.827-7.539-16.827-16.826v-68.123
c0-9.289,7.539-16.828,16.827-16.828h254.965c9.286,0,16.826,7.539,16.826,16.828v68.123c0,9.287-7.54,16.826-16.826,16.826
H173.458z" />
<linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="300.9414" y1="188.9043" x2="300.9414" y2="85.5798">
<stop offset="0" style="stop-color:#D6D6D6" />
<stop offset="0.7837" style="stop-color:#C8C8C8" />
<stop offset="1" style="stop-color:#C3C3C3" />
</linearGradient>
<path fill="url(#SVGID_54_)" d="M173.458,187.066c-9.144,0-16.565-7.422-16.565-16.564v-68.123
c0-9.145,7.421-16.566,16.565-16.566h254.966c9.143,0,16.565,7.422,16.565,16.566v68.123c0,9.143-7.423,16.564-16.565,16.564
H173.458z" />
<linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="300.9414" y1="188.6353" x2="300.9414" y2="85.8429">
<stop offset="0" style="stop-color:#D4D4D4" />
<stop offset="0.9031" style="stop-color:#C6C6C6" />
<stop offset="1" style="stop-color:#C4C4C4" />
</linearGradient>
<path fill="url(#SVGID_55_)" d="M173.458,186.807c-9,0-16.304-7.305-16.304-16.305v-68.125c0-9,7.304-16.303,16.304-16.303
h254.966c8.999,0,16.305,7.303,16.305,16.303v68.125c0,9-7.306,16.305-16.305,16.305H173.458z" />
<linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="300.9414" y1="188.3643" x2="300.9414" y2="86.104">
<stop offset="0" style="stop-color:#D3D3D3" />
<stop offset="1" style="stop-color:#C6C6C6" />
</linearGradient>
<path fill="url(#SVGID_56_)" d="M173.458,186.545c-8.858,0-16.044-7.188-16.044-16.043v-68.125
c0-8.857,7.186-16.043,16.044-16.043h254.965c8.856,0,16.044,7.186,16.044,16.043v68.125c0,8.855-7.188,16.043-16.044,16.043
H173.458z" />
<linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="300.9414" y1="188.0928" x2="300.9414" y2="86.3667">
<stop offset="0" style="stop-color:#D1D1D1" />
<stop offset="1" style="stop-color:#C7C7C7" />
</linearGradient>
<path fill="url(#SVGID_57_)" d="M173.458,186.283c-8.714,0-15.783-7.068-15.783-15.781v-68.125
c0-8.713,7.069-15.781,15.783-15.781h254.966c8.713,0,15.783,7.068,15.783,15.781v68.125c0,8.713-7.07,15.781-15.783,15.781
H173.458z" />
<linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="187.8237" x2="300.9409" y2="86.6278">
<stop offset="0" style="stop-color:#CFCFCF" />
<stop offset="1" style="stop-color:#C9C9C9" />
</linearGradient>
<path fill="url(#SVGID_58_)" d="M173.458,186.023c-8.57,0-15.521-6.951-15.521-15.521v-68.125
c0-8.57,6.951-15.521,15.521-15.521h254.966c8.57,0,15.521,6.951,15.521,15.521v68.125c0,8.57-6.951,15.521-15.521,15.521
H173.458z" />
<linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="300.9409" y1="187.5522" x2="300.9409" y2="86.8904">
<stop offset="0" style="stop-color:#CECECE" />
<stop offset="1" style="stop-color:#CACACA" />
</linearGradient>
<path fill="url(#SVGID_59_)" d="M173.458,185.762c-8.428,0-15.261-6.834-15.261-15.26v-68.125
c0-8.426,6.833-15.26,15.261-15.26h254.966c8.427,0,15.261,6.834,15.261,15.26v68.125c0,8.426-6.834,15.26-15.261,15.26
H173.458z" />
<path fill="#CCCCCC" d="M443.424,170.502c0,8.283-6.717,15-15,15H173.458c-8.284,0-15-6.717-15-15v-68.125
c0-8.283,6.716-15,15-15h254.966c8.283,0,15,6.717,15,15V170.502z" />
</g>
<path fill="#BCC49A" d="M173.458,179.502c-4.962,0-9-4.039-9-9v-68.125c0-4.961,4.038-9,9-9h254.966c4.963,0,9,4.039,9,9v68.125
c0,4.961-4.037,9-9,9H173.458z" />
<text id="display" text-anchor="end" transform="matrix(1 0 0 1 420 164)" font-family="'Digital-7'" font-size="50">0</text>
<text id="hora" text-anchor="start" transform="matrix(1 0 0 1 175 113)" font-family="'Digital-7'" font-size="17.0079"></text>
<text id="data" text-anchor="end" transform="matrix(1 0 0 1 420 113)" font-family="'Digital-7'" font-size="17.0079"></text>
<path fill="#E0E0E0" d="M428.424,91.385H173.458c-6.616,0-12,5.385-12,12v68.125c0,6.615,5.384,12,12,12h254.966
c6.617,0,12-5.385,12-12v-68.125C440.424,96.77,435.041,91.385,428.424,91.385z M437.424,171.51c0,4.961-4.037,9-9,9H173.458
c-4.962,0-9-4.039-9-9v-68.125c0-4.961,4.038-9,9-9h254.966c4.963,0,9,4.039,9,9V171.51z" />
<path fill="#A3A3A3" d="M428.424,90.377H173.458c-6.616,0-12,5.385-12,12v68.125c0,6.615,5.384,12,12,12h254.966
c6.617,0,12-5.385,12-12v-68.125C440.424,95.762,435.041,90.377,428.424,90.377z M437.424,170.502c0,4.961-4.037,9-9,9H173.458
c-4.962,0-9-4.039-9-9v-68.125c0-4.961,4.038-9,9-9h254.966c4.963,0,9,4.039,9,9V170.502z" />
<g opacity="0.5">
<path d="M173.458,179.502c-4.962,0-9-4.039-9-9v-68.125c0-4.961,4.038-9,9-9h254.966c4.963,0,9,4.039,9,9v68.125
c0,4.961-4.037,9-9,9H173.458z" />
<path fill="#0C0C0C" d="M173.458,179.502c-4.883,0-8.857-3.975-8.857-8.857v-68.269c0-4.882,3.974-8.857,8.857-8.857h254.966
c4.884,0,8.856,3.975,8.856,8.857v68.269c0,4.882-3.973,8.857-8.856,8.857H173.458z" />
<path fill="#181818" d="M173.458,179.502c-4.804,0-8.714-3.911-8.714-8.714v-68.411c0-4.803,3.91-8.714,8.714-8.714h254.966
c4.805,0,8.715,3.911,8.715,8.714v68.411c0,4.804-3.91,8.714-8.715,8.714H173.458z" />
<path fill="#242424" d="M173.458,179.502c-4.726,0-8.571-3.846-8.571-8.571v-68.554c0-4.725,3.846-8.571,8.571-8.571h254.966
c4.727,0,8.571,3.847,8.571,8.571v68.554c0,4.725-3.845,8.571-8.571,8.571H173.458z" />
<path fill="#313131" d="M173.458,179.502c-4.647,0-8.429-3.783-8.429-8.429v-68.696c0-4.646,3.782-8.429,8.429-8.429h254.966
c4.648,0,8.429,3.782,8.429,8.429v68.696c0,4.646-3.78,8.429-8.429,8.429H173.458z" />
<path fill="#3D3D3D" d="M173.458,179.502c-4.568,0-8.286-3.718-8.286-8.286v-68.839c0-4.568,3.718-8.286,8.286-8.286h254.966
c4.569,0,8.285,3.718,8.285,8.286v68.839c0,4.568-3.716,8.286-8.285,8.286H173.458z" />
<path fill="#494949" d="M173.458,179.502c-4.489,0-8.143-3.654-8.143-8.143v-68.982c0-4.489,3.653-8.143,8.143-8.143h254.966
c4.49,0,8.143,3.654,8.143,8.143v68.982c0,4.488-3.652,8.143-8.143,8.143H173.458z" />
<path fill="#555555" d="M173.458,179.502c-4.411,0-8-3.59-8-8v-69.125c0-4.41,3.589-8,8-8h254.966c4.411,0,8,3.59,8,8v69.125
c0,4.41-3.589,8-8,8H173.458z" />
<path fill="#616161" d="M173.458,179.502c-4.332,0-7.857-3.525-7.857-7.857v-69.268c0-4.332,3.525-7.857,7.857-7.857h254.966
c4.332,0,7.857,3.525,7.857,7.857v69.268c0,4.332-3.525,7.857-7.857,7.857H173.458z" />
<path fill="#6D6D6D" d="M173.458,179.502c-4.253,0-7.714-3.461-7.714-7.714v-69.411c0-4.253,3.461-7.714,7.714-7.714h254.966
c4.254,0,7.715,3.461,7.715,7.714v69.411c0,4.253-3.461,7.714-7.715,7.714H173.458z" />
<path fill="#797979" d="M173.458,179.502c-4.175,0-7.571-3.397-7.571-7.571v-69.554c0-4.174,3.396-7.571,7.571-7.571h254.966
c4.175,0,7.571,3.397,7.571,7.571v69.554c0,4.174-3.396,7.571-7.571,7.571H173.458z" />
<path fill="#868686" d="M173.458,179.502c-4.096,0-7.429-3.333-7.429-7.429v-69.696c0-4.096,3.333-7.429,7.429-7.429h254.966
c4.097,0,7.429,3.333,7.429,7.429v69.696c0,4.096-3.332,7.429-7.429,7.429H173.458z" />
<path fill="#929292" d="M173.458,179.502c-4.018,0-7.286-3.269-7.286-7.286v-69.839c0-4.017,3.268-7.285,7.286-7.285h254.966
c4.018,0,7.285,3.269,7.285,7.285v69.839c0,4.017-3.268,7.286-7.285,7.286H173.458z" />
<path fill="#9E9E9E" d="M173.458,179.502c-3.938,0-7.143-3.205-7.143-7.143v-69.982c0-3.938,3.205-7.143,7.143-7.143h254.966
c3.939,0,7.143,3.204,7.143,7.143v69.982c0,3.938-3.203,7.143-7.143,7.143H173.458z" />
<path fill="#AAAAAA" d="M173.458,179.502c-3.86,0-7-3.141-7-7v-70.125c0-3.859,3.14-7,7-7h254.966c3.859,0,7,3.141,7,7v70.125
c0,3.859-3.141,7-7,7H173.458z" />
<path fill="#B6B6B6" d="M173.458,179.502c-3.781,0-6.857-3.076-6.857-6.857v-70.268c0-3.78,3.076-6.857,6.857-6.857h254.966
c3.781,0,6.857,3.077,6.857,6.857v70.268c0,3.781-3.076,6.857-6.857,6.857H173.458z" />
<path fill="#C2C2C2" d="M173.458,179.502c-3.702,0-6.714-3.012-6.714-6.714v-70.411c0-3.702,3.012-6.714,6.714-6.714h254.966
c3.702,0,6.714,3.012,6.714,6.714v70.411c0,3.702-3.012,6.714-6.714,6.714H173.458z" />
<path fill="#CECECE" d="M173.458,179.502c-3.624,0-6.571-2.948-6.571-6.572v-70.553c0-3.623,2.948-6.572,6.571-6.572h254.966
c3.624,0,6.571,2.949,6.571,6.572v70.553c0,3.624-2.947,6.572-6.571,6.572H173.458z" />
<path fill="#DBDBDB" d="M173.458,179.502c-3.545,0-6.428-2.884-6.428-6.429v-70.696c0-3.545,2.883-6.429,6.428-6.429h254.966
c3.545,0,6.429,2.884,6.429,6.429v70.696c0,3.545-2.884,6.429-6.429,6.429H173.458z" />
<path fill="#E7E7E7" d="M173.458,179.502c-3.466,0-6.286-2.82-6.286-6.286v-70.839c0-3.466,2.819-6.286,6.286-6.286h254.966
c3.466,0,6.286,2.819,6.286,6.286v70.839c0,3.466-2.82,6.286-6.286,6.286H173.458z" />
<path fill="#F3F3F3" d="M173.458,179.502c-3.387,0-6.143-2.756-6.143-6.143v-70.982c0-3.387,2.755-6.143,6.143-6.143h254.966
c3.387,0,6.143,2.755,6.143,6.143v70.982c0,3.387-2.756,6.143-6.143,6.143H173.458z" />
<path fill="#FFFFFF" d="M173.458,179.502c-3.309,0-6-2.691-6-6v-71.125c0-3.309,2.691-6,6-6h254.966c3.309,0,6,2.691,6,6
v71.125c0,3.309-2.691,6-6,6H173.458z" />
</g>
<linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="159.6675" y1="137.0479" x2="303.0522" y2="137.0479">
<stop offset="0" style="stop-color:#000000" />
<stop offset="1" style="stop-color:#FFFFFF" />
</linearGradient>
<path opacity="0.4" fill="url(#SVGID_60_)" d="M173.331,94.594c-4.892,0-8.873,3.98-8.873,8.873v67.162
c0,4.893,3.981,8.873,8.873,8.873h113.608l51.74-84.908H173.331z" />
</g>
</g>
<g id="buttons">
<g class="btn-ac">
<linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="187.7412" y1="268.6016" x2="187.7412" y2="250.5344">
<stop offset="0" style="stop-color:#FFFFFF" />
<stop offset="0.1942" style="stop-color:#F8F8F8" />
<stop offset="0.4701" style="stop-color:#E6E6E6" />
<stop offset="0.7932" style="stop-color:#C7C7C7" />
<stop offset="1" style="stop-color:#B0B0B0" />
</linearGradient>
<path fill="url(#SVGID_61_)" d="M166.776,268.602c-7.088,0-12.854-5.766-12.854-12.854v-31.402
c0-7.088,5.766-12.854,12.854-12.854h41.93c7.088,0,12.854,5.766,12.854,12.854v31.402c0,7.088-5.766,12.854-12.854,12.854
H166.776z" />
<path fill="#616161" d="M166.776,267.102c-6.261,0-11.354-5.094-11.354-11.354v-31.402c0-6.26,5.093-11.354,11.354-11.354h41.93
c6.261,0,11.354,5.094,11.354,11.354v31.402c0,6.26-5.093,11.354-11.354,11.354H166.776z" />
<linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="187.7412" y1="266.6016" x2="187.7412" y2="213.3196">
<stop offset="0" style="stop-color:#BD5338" />
<stop offset="0.328" style="stop-color:#A64127" />
<stop offset="0.6882" style="stop-color:#A64127" />
<stop offset="1" style="stop-color:#E0765A" />
</linearGradient>
<path fill="url(#SVGID_62_)" d="M219.56,255.748c0,5.994-4.859,10.854-10.854,10.854h-41.93
c-5.994,0-10.854-4.859-10.854-10.854v-31.402c0-5.994,4.859-10.854,10.854-10.854h41.93c5.994,0,10.854,4.859,10.854,10.854
V255.748z" />
<linearGradient id="SVGID_63_" class="btn-light" gradientUnits="userSpaceOnUse" x1="187.7412" y1="169.3364" x2="187.7412" y2="309.3546">
<stop offset="0" style="stop-color:#FFFFFF" />
<stop offset="1" style="stop-color:#FFFFFF" />
</linearGradient>
<path opacity="0.8" fill="url(#SVGID_63_)" d="M166.776,263.758c-4.883,0-8.854-3.973-8.854-8.854v-31.402
c0-4.883,3.971-8.854,8.854-8.854h41.93c4.881,0,8.854,3.971,8.854,8.854v31.402c0,4.881-3.973,8.854-8.854,8.854H166.776z"
/>
<linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="155.207" y1="191.9209" x2="225.488" y2="295.8864">
<stop offset="0" style="stop-color:#EB673F" />
<stop offset="1" style="stop-color:#FFA03F" />
</linearGradient>
<path fill="url(#SVGID_64_)" d="M166.776,264.602c-4.883,0-8.854-3.971-8.854-8.854v-31.402c0-4.881,3.971-8.854,8.854-8.854
h41.93c4.881,0,8.854,3.973,8.854,8.854v31.402c0,4.883-3.973,8.854-8.854,8.854H166.776z" />
</g>
<g class="btn-ce">
<linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="263.5166" y1="268.6016" x2="263.5166" y2="250.5344">
<stop offset="0" style="stop-color:#FFFFFF" />
<stop offset="0.1942" style="stop-color:#F8F8F8" />
<stop offset="0.4701" style="stop-color:#E6E6E6" />
<stop offset="0.7932" style="stop-color:#C7C7C7" />
<stop offset="1" style="stop-color:#B0B0B0" />
</linearGradient>
<path fill="url(#SVGID_65_)" d="M242.551,268.602c-7.088,0-12.854-5.766-12.854-12.854v-31.402
c0-7.088,5.766-12.854,12.854-12.854h41.932c7.088,0,12.854,5.766,12.854,12.854v31.402c0,7.088-5.766,12.854-12.854,12.854
H242.551z" />
<path fill="#616161" d="M242.551,267.102c-6.261,0-11.354-5.094-11.354-11.354v-31.402c0-6.26,5.093-11.354,11.354-11.354
h41.932c6.262,0,11.354,5.094,11.354,11.354v31.402c0,6.26-5.092,11.354-11.354,11.354H242.551z" />
<linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="263.5166" y1="266.6016" x2="263.5166" y2="213.3196">
<stop offset="0" style="stop-color:#BD5338" />
<stop offset="0.328" style="stop-color:#A64127" />
<stop offset="0.6882" style="stop-color:#A64127" />
<stop offset="1" style="stop-color:#E0765A" />
</linearGradient>
<path fill="url(#SVGID_66_)" d="M295.336,255.748c0,5.994-4.859,10.854-10.854,10.854h-41.932
c-5.994,0-10.854-4.859-10.854-10.854v-31.402c0-5.994,4.859-10.854,10.854-10.854h41.932c5.994,0,10.854,4.859,10.854,10.854
V255.748z" />
<linearGradient id="SVGID_67_" class="btn-light" gradientUnits="userSpaceOnUse" x1="263.5166" y1="169.3364" x2="263.5166" y2="309.3546">
<stop offset="0" style="stop-color:#FFFFFF" />
<stop offset="1" style="stop-color:#FFFFFF" />
</linearGradient>
<path opacity="0.8" fill="url(#SVGID_67_)" d="M242.551,263.758c-4.883,0-8.854-3.973-8.854-8.854v-31.402
c0-4.883,3.971-8.854,8.854-8.854h41.932c4.881,0,8.854,3.971,8.854,8.854v31.402c0,4.881-3.973,8.854-8.854,8.854H242.551z"
/>
<linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="224.3481" y1="196.7173" x2="304.3507" y2="285.2199">
<stop offset="0" style="stop-color:#EB673F" />
<stop offset="1" style="stop-color:#FFA03F" />
</linearGradient>
<path fill="url(#SVGID_68_)" d="M242.551,264.602c-4.883,0-8.854-3.971-8.854-8.854v-31.402c0-4.881,3.971-8.854,8.854-8.854
h41.932c4.881,0,8.854,3.973,8.854,8.854v31.402c0,4.883-3.973,8.854-8.854,8.854H242.551z" />
</g>
<g class="btn-porcento">
<linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="339.4473" y1="268.6016" x2="339.4473" y2="250.5344">
<stop offset="0" style="stop-color:#FFFFFF" />
<stop offset="0.1942" style="stop-color:#F8F8F8" />
<stop offset="0.4701" style="stop-color:#E6E6E6" />
<stop offset="0.7932" style="stop-color:#C7C7C7" />
<stop offset="1" style="stop-color:#B0B0B0" />
</linearGradient>
<path fill="url(#SVGID_69_)" d="M318.482,268.602c-7.088,0-12.854-5.766-12.854-12.854v-31.402
c0-7.088,5.766-12.854,12.854-12.854h41.93c7.088,0,12.854,5.766,12.854,12.854v31.402c0,7.088-5.766,12.854-12.854,12.854
H318.482z" />
<path fill="#4D4D4D" d="M318.482,267.102c-6.262,0-11.354-5.094-11.354-11.354v-31.402c0-6.26,5.092-11.354,11.354-11.354h41.93
c6.26,0,11.354,5.094,11.354,11.354v31.402c0,6.26-5.094,11.354-11.354,11.354H318.482z" />
<linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="339.4473" y1="266.6016" x2="339.4473" y2="213.3196">
<stop offset="0" style="stop-color:#3D3D3D" />
<stop offset="0.1393" style="stop-color:#393939" />
<stop offset="0.4946" style="stop-color:#363636" />
<stop offset="0.5978" style="stop-color:#3B3B3B" />
<stop offset="0.7271" style="stop-color:#4B4B4B" />
<stop offset="0.8697" style="stop-color:#646464" />
<stop offset="1" style="stop-color:#828282" />
</linearGradient>
<path fill="url(#SVGID_70_)" d="M371.266,255.748c0,5.994-4.859,10.854-10.854,10.854h-41.93
c-5.994,0-10.854-4.859-10.854-10.854v-31.402c0-5.994,4.859-10.854,10.854-10.854h41.93c5.994,0,10.854,4.859,10.854,10.854
V255.748z" />
<linearGradient id="SVGID_71_" class="btn-light" gradientUnits="userSpaceOnUse" x1="339.4473" y1="169.4004" x2="339.4473" y2="309.1791">
<stop offset="0" style="stop-color:#FFFFFF" />
<stop offset="1" style="stop-color:#FFFFFF" />
</linearGradient>
<path opacity="0.8" fill="url(#SVGID_71_)" d="M318.518,263.66c-4.875,0-8.838-3.965-8.838-8.838v-31.35
c0-4.873,3.963-8.838,8.838-8.838h41.859c4.873,0,8.838,3.965,8.838,8.838v31.35c0,4.873-3.965,8.838-8.838,8.838H318.518z"
/>
<linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="309.6289" y1="240.0469" x2="369.2656" y2="240.0469">
<stop offset="0" style="stop-color:#525252" />
<stop offset="1" style="stop-color:#7A7A7A" />
</linearGradient>
<path fill="url(#SVGID_72_)" d="M318.482,264.602c-4.883,0-8.854-3.971-8.854-8.854v-31.402c0-4.881,3.971-8.854,8.854-8.854
h41.93c4.881,0,8.854,3.973,8.854,8.854v31.402c0,4.883-3.973,8.854-8.854,8.854H318.482z" />
</g>
<g class="btn-divisao">
<linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="414.2949" y1="268.6016" x2="414.2949" y2="250.5344">
<stop offset="0" style="stop-color:#FFFFFF" />
<stop offset="0.1942" style="stop-color:#F8F8F8" />
<stop offset="0.4701" style="stop-color:#E6E6E6" />
<stop offset="0.7932" style="stop-color:#C7C7C7" />