-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1862 lines (1797 loc) · 270 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 lang="es-ES">
<!-- Mirrored from xift.ai/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 16 Apr 2020 16:58:20 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="xmlrpc.php">
<title>Xift | Sistemas Embebidos, IA y Ciberseguridad</title>
<style type="text/css">
.verso-footer > .upper-footer {
padding-top: 90px;
padding-bottom: 90px;
}
.verso-blog-header {
padding-top: 80px;
padding-bottom: 50px;
}
.verso-default-page-padding {
padding-top: 80px;
padding-bottom: 80px;
}
.verso-global-margin-bottom-big {
margin-bottom: 70px !important;
}
.verso-global-margin-bottom-small {
margin-bottom: 50px !important;
}
</style>
<!-- This site is optimized with the Yoast SEO plugin v13.4.1 - https://yoast.com/wordpress/plugins/seo/ -->
<meta name="description" content="Consultoría tecnológica de Sistemas Embebidos, Inteligencia Artificial y Ciberseguridad para la empresa."/>
<meta name="robots" content="max-snippet:-1, max-image-preview:large, max-video-preview:-1"/>
<link rel="canonical" href="https://xift.ai/" />
<meta property="og:locale" content="es_ES" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Sistemas Embebidos, IA y Ciberseguridad" />
<meta property="og:description" content="Consultoría en tecnología avanzada para tu negocio." />
<meta property="og:url" content="https://xift.ai/" />
<meta property="og:site_name" content="xift.ai" />
<meta property="fb:app_id" content="2094911657465858" />
<meta property="og:image" content="https://xift.ai/wp-content/uploads/2019/04/card-facebook-xift.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:description" content="Consultoría en tecnología avanzada para tu negocio." />
<meta name="twitter:title" content="Sistemas Embebidos, IA y Ciberseguridad" />
<meta name="twitter:image" content="https://xift.ai/wp-content/uploads/2019/04/card-twitter-xift.png" />
<script type='application/ld+json' class='yoast-schema-graph yoast-schema-graph--main'>{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://xift.ai/#website","url":"https://xift.ai/","name":"xift.ai","inLanguage":"es","description":"Sistemas Embebidos | Inteligencia Artificial | Ciberseguridad","potentialAction":[{"@type":"SearchAction","target":"https://xift.ai/?s={search_term_string}","query-input":"required name=search_term_string"}]},{"@type":"WebPage","@id":"https://xift.ai/#webpage","url":"https://xift.ai/","name":"Xift | Sistemas Embebidos, IA y Ciberseguridad","isPartOf":{"@id":"https://xift.ai/#website"},"inLanguage":"es","datePublished":"2017-09-18T13:20:28+00:00","dateModified":"2019-06-18T05:59:58+00:00","description":"Consultor\u00eda tecnol\u00f3gica de Sistemas Embebidos, Inteligencia Artificial y Ciberseguridad para la empresa.","potentialAction":[{"@type":"ReadAction","target":["https://xift.ai/"]}]}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='http://www.google.com/' />
<link rel='dns-prefetch' href='http://maxcdn.bootstrapcdn.com/' />
<link rel='dns-prefetch' href='http://fonts.googleapis.com/' />
<link rel='dns-prefetch' href='http://s.w.org/' />
<link rel="alternate" type="application/rss+xml" title="xift.ai » Feed" href="feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="xift.ai » Feed de los comentarios" href="comments/feed/index.html" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/xift.ai\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.4"}};
/*! This file is auto-generated */
!function(e,a,t){var r,n,o,i,p=a.createElement("canvas"),s=p.getContext&&p.getContext("2d");function c(e,t){var a=String.fromCharCode;s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,e),0,0);var r=p.toDataURL();return s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,t),0,0),r===p.toDataURL()}function l(e){if(!s||!s.fillText)return!1;switch(s.textBaseline="top",s.font="600 32px Arial",e){case"flag":return!c([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])&&(!c([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!c([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]));case"emoji":return!c([55357,56424,55356,57342,8205,55358,56605,8205,55357,56424,55356,57340],[55357,56424,55356,57342,8203,55358,56605,8203,55357,56424,55356,57340])}return!1}function d(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(i=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},o=0;o<i.length;o++)t.supports[i[o]]=l(i[o]),t.supports.everything=t.supports.everything&&t.supports[i[o]],"flag"!==i[o]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[i[o]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(r=t.source||{}).concatemoji?d(r.concatemoji):r.wpemoji&&r.twemoji&&(d(r.twemoji),d(r.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='font-awesome-css' href='wp-content/themes/verso/assets/css/fontawesome.min91d5.css?ver=5.4' type='text/css' media='all' />
<link rel='stylesheet' id='a-excited-testimonials-all-css' href='wp-content/plugins/a-excited-testimonials/public/css/all.min9e1e.css?ver=1.3.2' type='text/css' media='all' />
<link rel='stylesheet' id='a-excited-testimonials-font-awesome-css' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css?ver=1.3.2' type='text/css' media='all' />
<link rel='stylesheet' id='rs-plugin-settings-css' href='wp-content/plugins/revslider/public/assets/css/settings84f5.css?ver=5.4.8.1' type='text/css' media='all' />
<style id='rs-plugin-settings-inline-css' type='text/css'>
#rs-demo-id {}
</style>
<link rel='stylesheet' id='div-plug-google-fonts-css' href='https://fonts.googleapis.com/css?family=Open+Sans%3Aregular%2C300italic%2Cregular%7CDosis%3A200%2Cregular%2Cregular&subsets=latin%2Clatin%2Clatin%2Clatin&ver=5.4' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-css' href='wp-content/uploads/verso-plug/93/stack.min6bc5.css?ver=1.5.2' type='text/css' media='all' />
<link rel='stylesheet' id='verso-child-style-css' href='wp-content/themes/verso-child/style91d5.css?ver=5.4' type='text/css' media='all' />
<link rel='stylesheet' id='js_composer_front-css' href='wp-content/plugins/js_composer/assets/css/js_composer.min40df.css?ver=5.6' type='text/css' media='all' />
<script type='text/javascript' src='wp-includes/js/jquery/jquery4a5f.js?ver=1.12.4-wp'></script>
<script type='text/javascript' src='wp-includes/js/jquery/jquery-migrate.min330a.js?ver=1.4.1'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var aet_localize = {"ajax_nonce":"afe1ad8f43","ajaxurl":"http:\/\/xift.ai\/wp-admin\/admin-ajax.php","default_avatar":"http:\/\/xift.ai\/wp-content\/plugins\/a-excited-testimonials\/admin\/img\/default-avatar.png","submit_selectors":[{"id":359,"panel_animation":"push","selector":".aet_submission_form_trigger_359"},{"id":358,"panel_animation":"push","selector":".aet_submission_form_trigger_358"},{"id":224,"panel_animation":"push","selector":".aet_submission_form_trigger_224"}]};
/* ]]> */
</script>
<script type='text/javascript' src='wp-content/plugins/a-excited-testimonials/public/js/all.min9e1e.js?ver=1.3.2'></script>
<script type='text/javascript' async defer src='https://www.google.com/recaptcha/api.js?onload=reCaptchaOnloadCallback&render=explicit&hl=es&ver=1.3.2'></script>
<script type='text/javascript' src='wp-content/plugins/revslider/public/assets/js/jquery.themepunch.tools.min84f5.js?ver=5.4.8.1'></script>
<script type='text/javascript' src='wp-content/plugins/revslider/public/assets/js/jquery.themepunch.revolution.min84f5.js?ver=5.4.8.1'></script>
<script type='text/javascript' src='wp-content/themes/verso/assets/js/bootstrap.min6bc5.js?ver=1.5.2'></script>
<script type='text/javascript' src='wp-content/themes/verso/assets/js/jquery-waypoints.min6bc5.js?ver=1.5.2'></script>
<script type='text/javascript' src='wp-content/themes/verso/assets/js/magnific-popup.min6bc5.js?ver=1.5.2'></script>
<script type='text/javascript' src='wp-content/themes/verso/assets/js/pace.min6bc5.js?ver=1.5.2'></script>
<script type='text/javascript' src='wp-content/themes/verso/assets/js/parallax-background.min6bc5.js?ver=1.5.2'></script>
<script type='text/javascript' src='wp-content/themes/verso/assets/js/smooth-scroll.min6bc5.js?ver=1.5.2'></script>
<script type='text/javascript' src='wp-content/themes/verso/assets/js/jquery.countdown.min6bc5.js?ver=1.5.2'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var theme = {"siteLoader":"on"};
/* ]]> */
</script>
<script type='text/javascript' src='wp-content/themes/verso/assets/js/verso.min6bc5.js?ver=1.5.2'></script>
<link rel='https://api.w.org/' href='wp-json/index.html' />
<link rel='shortlink' href='index.html' />
<link rel="alternate" type="application/json+oembed" href="wp-json/oembed/1.0/embed1408.json?url=http%3A%2F%2Fxift.ai%2F" />
<link rel="alternate" type="text/xml+oembed" href="wp-json/oembed/1.0/embed7e56?url=http%3A%2F%2Fxift.ai%2F&format=xml" />
<!--[if IE 9]> <script>var _gambitParallaxIE9 = true;</script> <![endif]--><link rel="alternate" href="https://xift.ai/" hreflang="es" />
<link rel="alternate" href="home/index.html" hreflang="en" />
<link rel="alternate" href="accueil/index.html" hreflang="fr" />
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/>
<!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="https://xift.ai/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]--><meta name="generator" content="Powered by Slider Revolution 5.4.8.1 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
<link rel="icon" href="wp-content/uploads/2019/01/favicon.ico" sizes="32x32" />
<link rel="icon" href="wp-content/uploads/2019/01/favicon.ico" sizes="192x192" />
<link rel="apple-touch-icon" href="wp-content/uploads/2019/01/favicon.ico" />
<meta name="msapplication-TileImage" content="https://xift.ai/wp-content/uploads/2019/01/favicon.ico" />
<script type="text/javascript">function setREVStartSize(e){
try{ e.c=jQuery(e.c);var i=jQuery(window).width(),t=9999,r=0,n=0,l=0,f=0,s=0,h=0;
if(e.responsiveLevels&&(jQuery.each(e.responsiveLevels,function(e,f){f>i&&(t=r=f,l=e),i>f&&f>r&&(r=f,n=e)}),t>r&&(l=n)),f=e.gridheight[l]||e.gridheight[0]||e.gridheight,s=e.gridwidth[l]||e.gridwidth[0]||e.gridwidth,h=i/s,h=h>1?1:h,f=Math.round(h*f),"fullscreen"==e.sliderLayout){var u=(e.c.width(),jQuery(window).height());if(void 0!=e.fullScreenOffsetContainer){var c=e.fullScreenOffsetContainer.split(",");if (c) jQuery.each(c,function(e,i){u=jQuery(i).length>0?u-jQuery(i).outerHeight(!0):u}),e.fullScreenOffset.split("%").length>1&&void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0?u-=jQuery(window).height()*parseInt(e.fullScreenOffset,0)/100:void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0&&(u-=parseInt(e.fullScreenOffset,0))}f=u}else void 0!=e.minHeight&&f<e.minHeight&&(f=e.minHeight);e.c.closest(".rev_slider_wrapper").css({height:f})
}catch(d){console.log("Failure at Presize of Slider:"+d)}
};</script>
<style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1552025674985{padding-top: 160px !important;padding-bottom: 80px !important;}.vc_custom_1555926512078{padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1552026198284{padding-bottom: 80px !important;}.vc_custom_1555926371961{padding-top: 80px !important;padding-bottom: 40px !important;}.vc_custom_1555926379577{padding-top: 80px !important;padding-bottom: 40px !important;}.vc_custom_1555926379577{padding-top: 80px !important;padding-bottom: 40px !important;}.vc_custom_1552026415894{padding-top: 80px !important;padding-bottom: 0px !important;}.vc_custom_1552017162585{margin-bottom: 0px !important;}.vc_custom_1552010204363{margin-top: 0px !important;margin-bottom: 30px !important;}.vc_custom_1555910137742{margin-bottom: 16px !important;}.vc_custom_1552010288844{margin-top: 0px !important;margin-bottom: 30px !important;}.vc_custom_1555910171259{margin-bottom: 16px !important;}.vc_custom_1552010308224{margin-top: 0px !important;margin-bottom: 30px !important;}.vc_custom_1555910186331{margin-bottom: 16px !important;}</style><noscript><style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> </head>
<body class="home page-template-default page page-id-92 pace-on pace-double-dot wpb-js-composer js-comp-ver-5.6 vc_responsive">
<div class="pace-overlay"></div>
<div class="verso-content-box verso-content-box-move-behind">
<div class="verso-header ">
<div class="verso-nav verso-nav-layout-logo-l-menu-r verso-nav-click verso-nav-sticky">
<div class="verso-nav-inner">
<div class="verso-nav-container verso-customizer-menu-layout">
<div class="verso-nav-brand">
<a href="https://xift.ai/" class="verso-customizer-menu-logo-text" >
<img src="wp-content/uploads/2019/03/logo-xift.png" alt="xift.ai">
<!--img src="" alt=""-->
</a>
</div>
<!-- Mobile menu toggle button -->
<div class="verso-nav-mobile">
<a id="nav-toggle" href="#">
<span></span>
</a>
</div>
<nav class="verso-nav-menu"><ul id="menu-menu-es" class="verso-nav-list"><li id="menu-item-94" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-92 current_page_item nav-item menu-item-94 active"><a title="Inicio" href="https://xift.ai/">Inicio</a></li>
<li id="menu-item-556" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-556"><a title="Sobre mí" href="sobre-mi/index.html">Sobre mí</a></li>
<li id="menu-item-603" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-603"><a title="Portfolio" href="portfolio/index.html">Portfolio</a></li>
</ul></nav> </div>
</div>
</div>
</div>
<div id="content" role="main">
<article id="post-92" class="post-92 page type-page status-publish hentry">
<div class="entry-content">
<div class="section">
<div class="section-content">
<div class="container">
<div class="row align-items-center vc_custom_1552025674985">
<div class="col-lg-4 text-center verso-text-normal text-lg-left">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeIn fadeIn" >
<div class="wpb_wrapper">
<h1 class="verso-font-weight-200 text-muted">Hola, soy <span class="verso-demo-color-gray-dark">Carlos</span>, consultor en <span class="verso-demo-color-gray-dark">tecnologías avanzadas</span> para tu negocio.</h1>
</div>
</div>
</div>
<div class="col-lg-8 verso-text-normal">
<div class="wpb_single_image wpb_content_element vc_align_center wpb_animate_when_almost_visible wpb_fadeIn fadeIn vc_custom_1552017162585">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"><img width="457" height="475" src="wp-content/uploads/2019/03/carlos-circulos-cabecera.png" class="vc_single_image-img attachment-full" alt="Carlos CEO Xift" srcset="https://xift.ai/wp-content/uploads/2019/03/carlos-circulos-cabecera.png 457w, https://xift.ai/wp-content/uploads/2019/03/carlos-circulos-cabecera-289x300.png 289w" sizes="(max-width: 457px) 100vw, 457px" /></div>
</figure>
</div>
</div>
</div>
<div class="row vc_custom_1555926512078">
<div class="col-lg-12 verso-text-normal">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeIn fadeIn" >
<div class="wpb_wrapper">
<h2 style="text-align: center;">¿En qué puedo ayudarte?</h2>
</div>
</div>
</div>
</div>
<div class="row vc_custom_1552026198284">
<div class="col-lg-4 col-md-6 text-center verso-text-normal">
<div class="wpb_single_image wpb_content_element vc_align_center wpb_animate_when_almost_visible wpb_fadeIn fadeIn imagen-servicio">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"><img width="426" height="308" src="wp-content/uploads/2019/03/servicios-xift-sistemas-embebidos.png" class="vc_single_image-img attachment-full" alt="Sistemas Embebidos" srcset="https://xift.ai/wp-content/uploads/2019/03/servicios-xift-sistemas-embebidos.png 426w, https://xift.ai/wp-content/uploads/2019/03/servicios-xift-sistemas-embebidos-300x217.png 300w" sizes="(max-width: 426px) 100vw, 426px" /></div>
</figure>
</div>
<h2 style="text-align: center" class="vc_custom_heading h4 wpb_animate_when_almost_visible wpb_fadeIn fadeIn vc_custom_1552010204363" >Sistemas Embebidos</h2>
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeIn fadeIn vc_custom_1555910137742" >
<div class="wpb_wrapper">
<p style="text-align: center;">Hardware<br />
Drivers<br />
Sistemas Operativos<br />
Edge Computing</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center verso-text-normal">
<div class="wpb_single_image wpb_content_element vc_align_center wpb_animate_when_almost_visible wpb_fadeIn fadeIn imagen-servicio">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"><img width="378" height="266" src="wp-content/uploads/2019/03/servicios-xift-inteligencia-artificial.png" class="vc_single_image-img attachment-full" alt="Inteligencia Artificial" srcset="https://xift.ai/wp-content/uploads/2019/03/servicios-xift-inteligencia-artificial.png 378w, https://xift.ai/wp-content/uploads/2019/03/servicios-xift-inteligencia-artificial-300x211.png 300w" sizes="(max-width: 378px) 100vw, 378px" /></div>
</figure>
</div>
<h2 style="text-align: center" class="vc_custom_heading h4 wpb_animate_when_almost_visible wpb_fadeIn fadeIn vc_custom_1552010288844" >Inteligencia Artificial</h2>
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeIn fadeIn vc_custom_1555910171259" >
<div class="wpb_wrapper">
<p style="text-align: center;">Data Science<br />
Machine Learning<br />
Deep Learning<br />
Edge AI</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center verso-text-normal">
<div class="wpb_single_image wpb_content_element vc_align_center wpb_animate_when_almost_visible wpb_fadeIn fadeIn imagen-servicio">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"><img width="342" height="246" src="wp-content/uploads/2019/03/servicio-xift-ciberseguridad.png" class="vc_single_image-img attachment-full" alt="Ciberseguridad" srcset="https://xift.ai/wp-content/uploads/2019/03/servicio-xift-ciberseguridad.png 342w, https://xift.ai/wp-content/uploads/2019/03/servicio-xift-ciberseguridad-300x216.png 300w" sizes="(max-width: 342px) 100vw, 342px" /></div>
</figure>
</div>
<h2 style="text-align: center" class="vc_custom_heading h4 wpb_animate_when_almost_visible wpb_fadeIn fadeIn vc_custom_1552010308224" >Ciberseguridad</h2>
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeIn fadeIn vc_custom_1555910186331" >
<div class="wpb_wrapper">
<p style="text-align: center;">Seguridad defensiva<br />
Hacking ético y Pentesting<br />
Auditorías de seguridad<br />
Hardware de seguridad</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 verso-text-normal">
<div class="card verso-transition verso-shadow-5 verso-shadow-hover-10 ">
<div class="card-img-container">
<img width="1005" height="200" src="wp-content/uploads/2019/04/soluciones-sistemas-embebidos.jpg" class="card-img" alt="Soluciones Sistemas Embebidos" srcset="https://xift.ai/wp-content/uploads/2019/04/soluciones-sistemas-embebidos.jpg 1005w, https://xift.ai/wp-content/uploads/2019/04/soluciones-sistemas-embebidos-300x60.jpg 300w, https://xift.ai/wp-content/uploads/2019/04/soluciones-sistemas-embebidos-768x153.jpg 768w, https://xift.ai/wp-content/uploads/2019/04/soluciones-sistemas-embebidos-1000x200.jpg 1000w" sizes="(max-width: 1005px) 100vw, 1005px" /> </div>
<div class="card-body">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<h2 style="text-align: center;">SISTEMAS EMBEBIDOS</h2>
<p>Trabajamos en la creación de <b>sistemas operativos GNU/Linux y Android<span class="Apple-converted-space"> </span>optimizados</b> para equipos que puedan desempeñar tareas de <b>alto rendimiento</b> y <b>criticidad,</b> incluyendo sistemas con soporte de <b>tiempo real,</b> arranque rápido, actualizaciones remotas, desarrollo de <b>drivers</b> o <b>filesystems</b> adaptados para <b>alta tolerancia a fallos</b>.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 verso-text-normal">
<div class="vc_empty_space" style="height: 32px" ><span class="vc_empty_space_inner"></span></div>
</div>
</div>
<div class="row">
<div class="col-lg-12 verso-text-normal">
<div class="card verso-transition verso-shadow-5 verso-shadow-hover-10 ">
<div class="card-img-container">
<img width="1005" height="200" src="wp-content/uploads/2019/04/soluciones-inteligencia-artificial.jpg" class="card-img" alt="Soluciones Inteligencia Artificial" srcset="https://xift.ai/wp-content/uploads/2019/04/soluciones-inteligencia-artificial.jpg 1005w, https://xift.ai/wp-content/uploads/2019/04/soluciones-inteligencia-artificial-300x60.jpg 300w, https://xift.ai/wp-content/uploads/2019/04/soluciones-inteligencia-artificial-768x153.jpg 768w, https://xift.ai/wp-content/uploads/2019/04/soluciones-inteligencia-artificial-1000x200.jpg 1000w" sizes="(max-width: 1005px) 100vw, 1005px" /> </div>
<div class="card-body">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<h2 style="text-align: center;">INTELIGENCIA ARTIFICIAL</h2>
<p>Convertimos la información de tu empresa en <b>mejores estrategias y decisiones</b> aplicando <b>ciencia de datos</b> y <b>machine learning</b> junto con modelos avanzados de <b>deep learning</b> en el campo de visión computacional, procesamiento del lenguaje natural y agentes inteligentes.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 verso-text-normal">
<div class="vc_empty_space" style="height: 32px" ><span class="vc_empty_space_inner"></span></div>
</div>
</div>
<div class="row">
<div class="col-lg-12 verso-text-normal">
<div class="card verso-transition verso-shadow-5 verso-shadow-hover-10 ">
<div class="card-img-container">
<img width="1005" height="200" src="wp-content/uploads/2019/04/soluciones-ciberseguridad.jpg" class="card-img" alt="Soluciones Ciberseguridad" srcset="https://xift.ai/wp-content/uploads/2019/04/soluciones-ciberseguridad.jpg 1005w, https://xift.ai/wp-content/uploads/2019/04/soluciones-ciberseguridad-300x60.jpg 300w, https://xift.ai/wp-content/uploads/2019/04/soluciones-ciberseguridad-768x153.jpg 768w, https://xift.ai/wp-content/uploads/2019/04/soluciones-ciberseguridad-1000x200.jpg 1000w" sizes="(max-width: 1005px) 100vw, 1005px" /> </div>
<div class="card-body">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<h2 style="text-align: center;">CIBERSEGURIDAD</h2>
<p>Ayudamos a las empresas a tratar con los principales problemas relacionados con la ciberseguridad desde un enfoque <b>defensivo</b> de <b>protección de infraestructuras críticas</b> hasta un enfoque de <b>hacking ético</b>, <b>pentesting</b> y <b>auditorías</b> de seguridad tanto para sistemas y redes como para web y aplicaciones móviles.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row vc_custom_1555926371961">
<div class="col-lg-12 verso-text-normal">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeIn fadeIn" >
<div class="wpb_wrapper">
<h2 style="text-align: center;">Colaboramos entre otros con</h2>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 verso-text-normal">
</div>
<div class="col-lg-6 verso-text-normal">
<div class="row">
<div class="col-lg-4">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<a href="https://www.ringsoutheuropa.com/" target="_blank" class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="wp-content/uploads/2019/04/colaboracion-ringsouth-200x200.png" width="200" height="200" alt="Colaboración RingSouth" title="Colaboración RingSouth" /></a>
</figure>
</div>
</div>
<div class="col-lg-4">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<a href="https://rancher.com/" target="_blank" class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="wp-content/uploads/2019/04/colaboracion-rancher-200x200.png" width="200" height="200" alt="colaboracion-rancher" title="colaboracion-rancher" /></a>
</figure>
</div>
</div>
<div class="col-lg-4">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<a href="http://www.nimbooks.com/" target="_blank" class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="wp-content/uploads/2019/04/colaboracion-nimbooks-200x200.png" width="200" height="200" alt="Colaboración Nimbooks" title="Colaboración Nimbooks" /></a>
</figure>
</div>
</div>
</div>
</div>
<div class="col-lg-3 verso-text-normal">
</div>
</div>
<div class="row vc_custom_1555926379577">
<div class="col-lg-12 verso-text-normal">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeIn fadeIn" >
<div class="wpb_wrapper">
<h2 style="text-align: center;">Testimonios</h2>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-12 verso-text-normal">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<!-- Excited Testimonials by Looks Awesome: http://testimonial.looks-awesome.com --><div class='aet-layout-grid aet-layout aet-effect-nova '
id='aet-layout-224'
itemscope
itemtype='http://schema.org/Product'><meta itemprop="name" content="Awesome testimonials group" /><style type="text/css">#aet-layout-224.aet-effect-nova .photo-shape:after{border-color: rgba(254,75,1,1);}#aet-layout-224 .aet-button{background-color:rgba(245,245,245,1);color:rgba(156,159,164,1);}#aet-layout-224 .aet-search input{background-color:rgba(245,245,245,1);color:rgba(156,159,164,1);}#aet-layout-224 .aet-search input:focus{border-color:rgba(254,75,1,1);}#aet-layout-224 .aet-button.aet-button-active,#aet-layout-224 .aet-button:hover{background-color:rgba(254,75,1,1);color:rgba(255,255,255,1);}</style><ul group-id='224' class=' slider-enabled testimonials-box filter-container' style='
width: calc(100% + 30px);
text-align: center;
margin: 0 -15px -15px;'
><li class='a-grid-3 filter-item'
style=''
testimonial-id='225'
itemprop='review'
itemscope itemtype='http://schema.org/Review'
data-title='Raúl Sánchez Liébana'><meta itemprop="author" content="Raúl Sánchez Liébana"><div aet-profile data-profile=' https://www.linkedin.com/in/ra%C3%BAl-s-a496848/'
class='sortable-box '
title=''
style='
background-color: rgba(255,255,255,1);
border: 1px solid rgba(156,159,164,1);
box-shadow: 0 0 5px 0 rgba(156,159,164,1);
padding: 10px;
margin: 0 15px 30px;'><div class='testimonial_photo grid-container sortable'
data-block-name='photo'
data-tooltip-name='photo'
style='
margin-top: 30px;
font-size: 10px;
;'><div class='photo-border aet-shape-round'></div><div class='photo-shape aet-shape-round' style='width: 100px;'><div class='photo-wrapper aet-shape-round'><div class='photo-container' style='
background-image:url(wp-content/uploads/2019/04/testimonio-raul.jpg);
'></div></div></div></div><div class='testimonial_name grid-container sortable'
style='margin-top: 20px;'
data-block-name='name'
data-tooltip-name='name'><span class='group-field-content' style='
font-size: 20px;
color: rgba(59,59,59,1);
font-weight: bold;
font-style: normal;
text-align: center;
text-transform: none;'>Raúl Sánchez Liébana</span></div><div class='testimonial_divider grid-container sortable'
style='margin-top: 10px;'
data-block-name='divider'
data-tooltip-name='divider'><span style='background-color: rgba(227,227,227,1);width: 40%;'></span></div><div class='testimonial_short_text body_off nubbin-none grid-container sortable'
style='margin-top:0px;'
data-block-name='short_text'
data-tooltip-name='short_text'><span class="nubbin nubbin-top" style="border-bottom-color:#EDEDED;"><span style="border-bottom-color:#FCFCFC;"></span></span><div class='group-field-content' style='
font-size: 14px;
color: rgba(169,169,169,1);
font-weight: normal;
font-style: normal;
text-align: left;
text-transform: none;
padding:10px;
border-width:10px;
border-color:#EDEDED;
border-radius:3px;
background-color:#FCFCFC
'><blockquote class="overflow-hidden" itemprop="reviewBody">Colaboro con Carlos desde hace bastantes años en distintos proyectos técnicos y varias reuniones. Es un profesional increíble y serio con un profundo conocimiento en sistemas embebidos, seguridad y procesos de Machine Learning. Siempre es un placer colaborar con él.</blockquote></div><span class="nubbin nubbin-bottom" style="border-top-color:#EDEDED;"><span style="border-top-color:#FCFCFC;"></span></span></div><div class='testimonial_position grid-container sortable'
style='margin-top: 20px;'
data-block-name='position'
data-tooltip-name='position'><span class='group-field-content' style='
font-size: 14px;
color: rgba(99,99,99,1);
font-weight: normal;
font-style: normal;
text-align: center;
text-transform: none;
'>Arquitecto de Microservicios y Jefe de DevOps, Rancher Labs</span></div></div></li><li class='a-grid-3 filter-item'
style=''
testimonial-id='227'
itemprop='review'
itemscope itemtype='http://schema.org/Review'
data-title='Rafael Chao Foriscot'><meta itemprop="author" content="Rafael Chao Foriscot"><div aet-profile data-profile='https://www.linkedin.com/in/rafaelchao/'
class='sortable-box '
title=''
style='
background-color: rgba(255,255,255,1);
border: 1px solid rgba(156,159,164,1);
box-shadow: 0 0 5px 0 rgba(156,159,164,1);
padding: 10px;
margin: 0 15px 30px;'><div class='testimonial_photo grid-container sortable'
data-block-name='photo'
data-tooltip-name='photo'
style='
margin-top: 30px;
font-size: 10px;
;'><div class='photo-border aet-shape-round'></div><div class='photo-shape aet-shape-round' style='width: 100px;'><div class='photo-wrapper aet-shape-round'><div class='photo-container' style='
background-image:url(wp-content/uploads/2019/04/testimonio-rafael.jpg);
'></div></div></div></div><div class='testimonial_name grid-container sortable'
style='margin-top: 20px;'
data-block-name='name'
data-tooltip-name='name'><span class='group-field-content' style='
font-size: 20px;
color: rgba(59,59,59,1);
font-weight: bold;
font-style: normal;
text-align: center;
text-transform: none;'>Rafael Chao Foriscot</span></div><div class='testimonial_divider grid-container sortable'
style='margin-top: 10px;'
data-block-name='divider'
data-tooltip-name='divider'><span style='background-color: rgba(227,227,227,1);width: 40%;'></span></div><div class='testimonial_short_text body_off nubbin-none grid-container sortable'
style='margin-top:0px;'
data-block-name='short_text'
data-tooltip-name='short_text'><span class="nubbin nubbin-top" style="border-bottom-color:#EDEDED;"><span style="border-bottom-color:#FCFCFC;"></span></span><div class='group-field-content' style='
font-size: 14px;
color: rgba(169,169,169,1);
font-weight: normal;
font-style: normal;
text-align: left;
text-transform: none;
padding:10px;
border-width:10px;
border-color:#EDEDED;
border-radius:3px;
background-color:#FCFCFC
'><blockquote class="overflow-hidden" itemprop="reviewBody">Trabajo con Carlos desde hace más de nueve años. Es un profesional extraordinario, con la formación necesaria para llevar a cabo los proyectos más exigentes en sistemas embebidos, ciberseguridad, dockers, Linux y AI. No sólo es un excelente experto en su área, sino que también está capacitado para dirigir con talento equipos, siempre enfocándose en el objetivo final del proyecto.</blockquote></div><span class="nubbin nubbin-bottom" style="border-top-color:#EDEDED;"><span style="border-top-color:#FCFCFC;"></span></span></div><div class='testimonial_position grid-container sortable'
style='margin-top: 20px;'
data-block-name='position'
data-tooltip-name='position'><span class='group-field-content' style='
font-size: 14px;
color: rgba(99,99,99,1);
font-weight: normal;
font-style: normal;
text-align: center;
text-transform: none;
'>Director de Inversiones, Elandis</span></div></div></li><li class='a-grid-3 filter-item'
style=''
testimonial-id='229'
itemprop='review'
itemscope itemtype='http://schema.org/Review'
data-title='Miguel López Laguna'><meta itemprop="author" content="Miguel López Laguna"><div aet-profile data-profile='https://www.linkedin.com/in/miguel-lopez-laguna-605185a/'
class='sortable-box '
title=''
style='
background-color: rgba(255,255,255,1);
border: 1px solid rgba(156,159,164,1);
box-shadow: 0 0 5px 0 rgba(156,159,164,1);
padding: 10px;
margin: 0 15px 30px;'><div class='testimonial_photo grid-container sortable'
data-block-name='photo'
data-tooltip-name='photo'
style='
margin-top: 30px;
font-size: 10px;
;'><div class='photo-border aet-shape-round'></div><div class='photo-shape aet-shape-round' style='width: 100px;'><div class='photo-wrapper aet-shape-round'><div class='photo-container' style='
background-image:url(wp-content/uploads/2019/04/testimonio-miguel.jpg);
'></div></div></div></div><div class='testimonial_name grid-container sortable'
style='margin-top: 20px;'
data-block-name='name'
data-tooltip-name='name'><span class='group-field-content' style='
font-size: 20px;
color: rgba(59,59,59,1);
font-weight: bold;
font-style: normal;
text-align: center;
text-transform: none;'>Miguel López Laguna</span></div><div class='testimonial_divider grid-container sortable'
style='margin-top: 10px;'
data-block-name='divider'
data-tooltip-name='divider'><span style='background-color: rgba(227,227,227,1);width: 40%;'></span></div><div class='testimonial_short_text body_off nubbin-none grid-container sortable'
style='margin-top:0px;'
data-block-name='short_text'
data-tooltip-name='short_text'><span class="nubbin nubbin-top" style="border-bottom-color:#EDEDED;"><span style="border-bottom-color:#FCFCFC;"></span></span><div class='group-field-content' style='
font-size: 14px;
color: rgba(169,169,169,1);
font-weight: normal;
font-style: normal;
text-align: left;
text-transform: none;
padding:10px;
border-width:10px;
border-color:#EDEDED;
border-radius:3px;
background-color:#FCFCFC
'><blockquote class="overflow-hidden" itemprop="reviewBody">He trabajado con Carlos durante algunos años. Probablemente es uno de los mejores profesionales que he conocido, siempre dispuesto a ayudar, aportar ideas innovadoras y encontrar la mejor solución para mis necesidades. Concretamente estuvimos colaborando en temas de optimización y hardening de sistemas Linux, además de algunas tareas de consultoría de nuevas tecnologías como Cloud, IA y contenedores, entre otros.</blockquote></div><span class="nubbin nubbin-bottom" style="border-top-color:#EDEDED;"><span style="border-top-color:#FCFCFC;"></span></span></div><div class='testimonial_position grid-container sortable'
style='margin-top: 20px;'
data-block-name='position'
data-tooltip-name='position'><span class='group-field-content' style='
font-size: 14px;
color: rgba(99,99,99,1);
font-weight: normal;
font-style: normal;
text-align: center;
text-transform: none;
'>Responsable de Sistemas, IBM</span></div></div></li><li class='a-grid-3 filter-item'
style=''
testimonial-id='228'
itemprop='review'
itemscope itemtype='http://schema.org/Review'
data-title='Nick Lekuona'><meta itemprop="author" content="Nick Lekuona"><div aet-profile data-profile='https://www.linkedin.com/in/lekuona/'
class='sortable-box '
title=''
style='
background-color: rgba(255,255,255,1);
border: 1px solid rgba(156,159,164,1);
box-shadow: 0 0 5px 0 rgba(156,159,164,1);
padding: 10px;
margin: 0 15px 30px;'><div class='testimonial_photo grid-container sortable'
data-block-name='photo'
data-tooltip-name='photo'
style='
margin-top: 30px;
font-size: 10px;
;'><div class='photo-border aet-shape-round'></div><div class='photo-shape aet-shape-round' style='width: 100px;'><div class='photo-wrapper aet-shape-round'><div class='photo-container' style='
background-image:url(wp-content/uploads/2019/04/testimonio-nick.jpg);
'></div></div></div></div><div class='testimonial_name grid-container sortable'
style='margin-top: 20px;'
data-block-name='name'
data-tooltip-name='name'><span class='group-field-content' style='
font-size: 20px;
color: rgba(59,59,59,1);
font-weight: bold;
font-style: normal;
text-align: center;
text-transform: none;'>Nick Lekuona</span></div><div class='testimonial_divider grid-container sortable'
style='margin-top: 10px;'
data-block-name='divider'
data-tooltip-name='divider'><span style='background-color: rgba(227,227,227,1);width: 40%;'></span></div><div class='testimonial_short_text body_off nubbin-none grid-container sortable'
style='margin-top:0px;'
data-block-name='short_text'
data-tooltip-name='short_text'><span class="nubbin nubbin-top" style="border-bottom-color:#EDEDED;"><span style="border-bottom-color:#FCFCFC;"></span></span><div class='group-field-content' style='
font-size: 14px;
color: rgba(169,169,169,1);
font-weight: normal;
font-style: normal;
text-align: left;
text-transform: none;
padding:10px;
border-width:10px;
border-color:#EDEDED;
border-radius:3px;
background-color:#FCFCFC
'><blockquote class="overflow-hidden" itemprop="reviewBody">Cuando requerimos de un análisis de seguridad para nuestras apps móviles que fuera más allá de las comprobaciones meramente automáticas, Carlos nos proporcionó, en un tiempo record, una exhaustiva lista de vulnerabilidades y recomendaciones que, una vez aplicadas, nos permitió salir al mercado con la confianza de disponer de un producto plenamente acorde con los requisitos de seguridad más estrictos.</blockquote></div><span class="nubbin nubbin-bottom" style="border-top-color:#EDEDED;"><span style="border-top-color:#FCFCFC;"></span></span></div><div class='testimonial_position grid-container sortable'
style='margin-top: 20px;'
data-block-name='position'
data-tooltip-name='position'><span class='group-field-content' style='
font-size: 14px;
color: rgba(99,99,99,1);
font-weight: normal;
font-style: normal;
text-align: center;
text-transform: none;
'>Consultor Senior, LEANtastic!</span></div></div></li><li class='a-grid-3 filter-item'
style=''
testimonial-id='233'
itemprop='review'
itemscope itemtype='http://schema.org/Review'
data-title='Carlos Moreno'><meta itemprop="author" content="Carlos Moreno"><div aet-profile data-profile=' https://www.linkedin.com/in/carlos-moreno-25700410'
class='sortable-box '
title=''
style='
background-color: rgba(255,255,255,1);
border: 1px solid rgba(156,159,164,1);
box-shadow: 0 0 5px 0 rgba(156,159,164,1);
padding: 10px;
margin: 0 15px 30px;'><div class='testimonial_photo grid-container sortable'
data-block-name='photo'
data-tooltip-name='photo'
style='
margin-top: 30px;
font-size: 10px;
;'><div class='photo-border aet-shape-round'></div><div class='photo-shape aet-shape-round' style='width: 100px;'><div class='photo-wrapper aet-shape-round'><div class='photo-container' style='
background-image:url(wp-content/uploads/2019/04/testimonio-carlos.jpg);
'></div></div></div></div><div class='testimonial_name grid-container sortable'
style='margin-top: 20px;'
data-block-name='name'
data-tooltip-name='name'><span class='group-field-content' style='
font-size: 20px;
color: rgba(59,59,59,1);
font-weight: bold;
font-style: normal;
text-align: center;
text-transform: none;'>Carlos Moreno</span></div><div class='testimonial_divider grid-container sortable'
style='margin-top: 10px;'
data-block-name='divider'
data-tooltip-name='divider'><span style='background-color: rgba(227,227,227,1);width: 40%;'></span></div><div class='testimonial_short_text body_off nubbin-none grid-container sortable'
style='margin-top:0px;'
data-block-name='short_text'
data-tooltip-name='short_text'><span class="nubbin nubbin-top" style="border-bottom-color:#EDEDED;"><span style="border-bottom-color:#FCFCFC;"></span></span><div class='group-field-content' style='
font-size: 14px;
color: rgba(169,169,169,1);
font-weight: normal;
font-style: normal;
text-align: left;
text-transform: none;
padding:10px;
border-width:10px;
border-color:#EDEDED;
border-radius:3px;
background-color:#FCFCFC
'><blockquote class="overflow-hidden" itemprop="reviewBody">He tenido la suerte de trabajar con Carlos durante varios años en empresas anteriores. Sus conocimientos de sistemas embebidos, ciberseguridad y gestión de proyectos hicieron que fuera una persona clave en la empresa y un ejemplo a seguir. Gracias a su liderazgo fue promocionado a director de departamento de diseño de sistemas operativos donde siempre fue una fuente de nuevas ideas y soluciones.</blockquote></div><span class="nubbin nubbin-bottom" style="border-top-color:#EDEDED;"><span style="border-top-color:#FCFCFC;"></span></span></div><div class='testimonial_position grid-container sortable'
style='margin-top: 20px;'
data-block-name='position'
data-tooltip-name='position'><span class='group-field-content' style='
font-size: 14px;
color: rgba(99,99,99,1);
font-weight: normal;
font-style: normal;
text-align: center;
text-transform: none;
'>Ingeniero de Software, Professional Software S.A</span></div></div></li><li class='a-grid-3 filter-item'
style=''
testimonial-id='231'
itemprop='review'
itemscope itemtype='http://schema.org/Review'
data-title='Mario Merino'><meta itemprop="author" content="Mario Merino"><div aet-profile data-profile='https://www.linkedin.com/in/mario-merino-a7400a3b'
class='sortable-box '
title=''
style='
background-color: rgba(255,255,255,1);
border: 1px solid rgba(156,159,164,1);
box-shadow: 0 0 5px 0 rgba(156,159,164,1);
padding: 10px;
margin: 0 15px 30px;'><div class='testimonial_photo grid-container sortable'
data-block-name='photo'
data-tooltip-name='photo'
style='
margin-top: 30px;
font-size: 10px;
;'><div class='photo-border aet-shape-round'></div><div class='photo-shape aet-shape-round' style='width: 100px;'><div class='photo-wrapper aet-shape-round'><div class='photo-container' style='
background-image:url(wp-content/uploads/2019/04/testimonio-mario.jpg);
'></div></div></div></div><div class='testimonial_name grid-container sortable'
style='margin-top: 20px;'
data-block-name='name'
data-tooltip-name='name'><span class='group-field-content' style='
font-size: 20px;
color: rgba(59,59,59,1);
font-weight: bold;
font-style: normal;
text-align: center;
text-transform: none;'>Mario Merino</span></div><div class='testimonial_divider grid-container sortable'
style='margin-top: 10px;'
data-block-name='divider'
data-tooltip-name='divider'><span style='background-color: rgba(227,227,227,1);width: 40%;'></span></div><div class='testimonial_short_text body_off nubbin-none grid-container sortable'
style='margin-top:0px;'
data-block-name='short_text'
data-tooltip-name='short_text'><span class="nubbin nubbin-top" style="border-bottom-color:#EDEDED;"><span style="border-bottom-color:#FCFCFC;"></span></span><div class='group-field-content' style='
font-size: 14px;
color: rgba(169,169,169,1);
font-weight: normal;
font-style: normal;
text-align: left;
text-transform: none;
padding:10px;
border-width:10px;
border-color:#EDEDED;
border-radius:3px;
background-color:#FCFCFC
'><blockquote class="overflow-hidden" itemprop="reviewBody">He trabajado con Carlos más de 9 años. Carlos es un gran profesional, una excelente persona técnica entrenada para enfrentar los proyectos más desafiantes en sistemas embebidos, ciberseguridad, dockers, Linux y AI.
Centrándose en el objetivo del proyecto es capaz de gestionar equipos de talento y encontrar soluciones creativas.</blockquote></div><span class="nubbin nubbin-bottom" style="border-top-color:#EDEDED;"><span style="border-top-color:#FCFCFC;"></span></span></div><div class='testimonial_position grid-container sortable'
style='margin-top: 20px;'
data-block-name='position'
data-tooltip-name='position'><span class='group-field-content' style='
font-size: 14px;
color: rgba(99,99,99,1);
font-weight: normal;
font-style: normal;
text-align: center;
text-transform: none;
'>Vicepresidente Regional, AVNet Abacus</span></div></div></li></ul><div itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating"><meta itemprop="ratingValue" content="0"><meta itemprop="reviewCount" content="6"><meta itemprop="bestRating " content="100"><meta itemprop="worstRating " content="0"></div></div><!-- Excited Testimonials by Looks Awesome: http://testimonial.looks-awesome.com -->
<script type="text/javascript">
// handle click on testimonial to open profile url
jQuery(document).ready(function ($) {
AET.bind_profiles(224);
});
</script>
<script type="text/javascript">
(function ($) {
$(function () {
AET.calc_rating_icons_size(224);
AET.calc_social_icons_size(224);
});
}(jQuery));
</script>
<script type="text/javascript">
jQuery(document).ready(function($){
var slider_options = {
count: 3,
autoplay: 1,
speed: 5000,
adaptive: 0,
}
AET.enable_slider(224, slider_options);
});
</script>
<svg display="none" width="0" height="0" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<g id="face-dashboard" transform="translate(-121.000000, -104.000000)" fill="#231F20" opacity="0.9">
<path d="M142.155142,138.466338 C142.140224,138.436502 142.134364,138.402405 142.117315,138.373635 C141.781667,137.790246 141.18709,137.612832 140.987832,137.568612 C140.759272,137.490827 140.123139,137.350174 138.508299,137.350174 L138.49711,137.350174 C136.064461,137.350707 135.577505,138.547852 135.539145,138.659735 L134.034589,142.37797 C133.418168,142.892098 132.918958,143.593229 132.637653,144.495217 C131.872056,146.659348 130.064351,151.291825 130.046237,151.338176 C129.939149,151.612555 130.075007,151.921032 130.348853,152.028119 C130.621634,152.134674 130.931709,151.999882 131.038796,151.725503 C131.055312,151.682881 132.544951,147.866083 133.402185,145.512817 C134.055367,144.858037 135.470417,144.370015 136.71338,144.457923 C137.612704,144.521856 138.400678,144.880413 138.721941,145.372164 C138.816775,145.517079 138.867922,145.67478 138.886036,145.844735 C138.114045,148.182018 137.134272,151.335512 137.122551,151.373872 C137.035176,151.654644 137.192345,151.953531 137.473117,152.040373 C137.526395,152.056889 137.579139,152.064348 137.631351,152.064348 C137.858846,152.064348 138.069292,151.917835 138.140151,151.689275 C138.154536,151.642923 139.589299,147.024299 140.356494,144.818611 C140.445468,144.506938 140.468377,144.204855 140.452394,143.912894 C140.475303,143.912894 140.49395,143.914492 140.517392,143.914492 C141.585606,143.914492 143.398105,143.658761 143.840841,141.985848 C144.180219,140.706656 144.424762,139.781759 143.912766,139.119519 C143.590437,138.703955 143.040081,138.49937 142.155142,138.466338 L142.155142,138.466338 Z M136.769855,143.661424 C135.833236,143.59536 134.766089,143.809003 133.900862,144.224567 C134.795924,142.487722 136.769855,142.163262 138.025072,142.538335 C138.430513,142.659808 139.721427,143.160616 139.340493,144.497348 C139.311723,144.579395 139.280822,144.671033 139.250454,144.759473 C138.661205,144.045555 137.607909,143.720562 136.769855,143.661424 L136.769855,143.661424 Z M142.806725,141.727985 C142.500913,142.882508 140.79337,142.880909 140.135926,142.835623 C139.784827,142.23785 139.167341,141.766877 138.330885,141.517006 C137.431561,141.247955 136.432608,141.262872 135.513039,141.562825 L136.526376,139.05825 C136.529573,139.051857 136.848172,138.415724 138.496578,138.415191 L138.507766,138.415191 C140.149245,138.415191 140.606366,138.563303 140.612759,138.563303 L140.612759,138.563303 C140.65325,138.583015 140.704929,138.598466 140.749149,138.60699 C140.752346,138.607523 141.062421,138.669858 141.196147,138.910139 C141.342128,139.172797 141.240368,139.573444 141.129018,139.863273 C141.023528,140.138185 141.160984,140.446129 141.435363,140.551618 C141.709742,140.656575 142.018752,140.519652 142.123708,140.245273 C142.219075,139.996467 142.270221,139.765242 142.301122,139.54201 C142.822709,139.583566 143.010778,139.696515 143.069383,139.771636 C143.259584,140.017778 143.041146,140.841448 142.806725,141.727985 L142.806725,141.727985 Z M168.620729,145.907603 L164.648893,131.342606 C164.585493,131.110849 164.375047,130.949951 164.134765,130.949951 L150.646506,130.949951 C150.406225,130.949951 150.195779,131.110849 150.132379,131.342606 L146.160543,145.907603 C146.116855,146.067968 146.15042,146.239522 146.251114,146.371117 C146.351809,146.503245 146.508445,146.580497 146.67467,146.580497 L157.817122,146.580497 C158.560343,148.849585 159.431962,151.654112 159.443151,151.689807 C159.51401,151.918368 159.724456,152.064881 159.95195,152.064881 C160.004162,152.064881 160.05744,152.056889 160.110185,152.040906 C160.390957,151.953531 160.548125,151.655177 160.46075,151.374405 C160.448497,151.336045 159.464462,148.168166 158.697266,145.845801 C158.71538,145.675846 158.766527,145.518144 158.86136,145.372697 C159.182624,144.880946 159.970598,144.522388 160.870454,144.458455 C162.107557,144.370548 163.525804,144.859102 164.180584,145.513882 C165.033023,147.851698 166.527989,151.683414 166.544505,151.726036 C166.651593,152.000415 166.961135,152.135207 167.234449,152.028652 C167.508828,151.921564 167.644685,151.612555 167.537065,151.338709 C167.523746,151.304079 166.534383,148.769136 165.711779,146.58103 L168.106601,146.58103 C168.272827,146.58103 168.42893,146.503245 168.530157,146.37165 C168.630319,146.238989 168.664416,146.067435 168.620729,145.907603 L168.620729,145.907603 Z M155.281114,139.540944 C155.312015,139.764177 155.362629,139.995934 155.458528,140.245273 C155.461192,140.252199 155.467052,140.256461 155.470249,140.263387 C155.528322,140.408834 155.641803,140.53084 155.803766,140.579855 C155.855445,140.595306 155.906592,140.602764 155.957738,140.602764 C156.186831,140.602764 156.398343,140.45412 156.467603,140.223962 L156.967346,138.568098 C157.074967,138.536664 157.586963,138.415724 159.075536,138.415724 L159.086724,138.415724 C160.735662,138.416257 161.053729,139.051857 161.056925,139.059316 L162.070263,141.564423 C161.150694,141.262872 160.151741,141.248487 159.252417,141.517539 C158.415961,141.76741 157.798475,142.238383 157.448975,142.839353 C156.792063,142.892098 155.044029,142.918736 154.781371,141.747697 L154.71584,141.458933 C154.540557,140.691205 154.374864,139.965566 154.544819,139.754587 C154.58904,139.69758 154.752601,139.581968 155.281114,139.540944 L155.281114,139.540944 Z M160.813447,143.661424 C159.974327,143.721095 158.921031,144.046088 158.331782,144.760006 C158.305144,144.681688 158.276907,144.599108 158.251333,144.526651 C157.861342,143.161149 159.151723,142.659808 159.557164,142.538868 C160.808652,142.164327 162.774591,142.486123 163.678177,144.222969 C162.813484,143.807405 161.747401,143.593762 160.813447,143.661424 L160.813447,143.661424 Z M165.314329,145.514948 C165.179004,145.147866 165.054867,144.806357 164.951509,144.513864 C164.668073,143.605483 164.167264,142.900089 163.550311,142.383298 L162.052681,138.68371 C162.005264,138.547319 161.518308,137.350174 159.085659,137.349642 L159.07447,137.349642 C158.263054,137.349642 157.699379,137.385338 157.309388,137.430623 L158.164491,134.596262 C158.249735,134.314424 158.089903,134.017135 157.808598,133.931891 C157.525694,133.848246 157.229471,134.00648 157.14476,134.287785 L156.096792,137.759878 C155.876223,137.882416 155.636475,138.073683 155.463856,138.373102 C155.447873,138.401339 155.441479,138.433838 155.427094,138.463141 C154.785101,138.483386 154.100485,138.600597 153.710494,139.088086 C153.219808,139.700777 153.410542,140.537766 153.674798,141.696018 L153.739797,141.981053 C154.115936,143.655031 155.86397,143.927279 156.961486,143.927279 C157.02382,143.927279 157.076565,143.924615 157.134637,143.923017 C157.119187,144.219772 157.143162,144.527716 157.234799,144.847381 C157.305125,145.04877 157.382378,145.276798 157.462294,145.514415 L147.372073,145.514415 L151.053013,132.014968 L163.727725,132.014968 L167.408666,145.514415 L165.314329,145.514415 L165.314329,145.514948 Z M129.168224,126.755948 L147.028966,126.755948 C147.032695,126.756481 147.036957,126.755948 147.039621,126.755948 C147.334245,126.755948 147.572396,126.517265 147.572396,126.223173 C147.572396,126.09957 147.530307,125.985556 147.459448,125.894984 L144.193005,119.538448 C144.101368,119.361034 143.918626,119.249152 143.718836,119.249152 L132.478354,119.249152 C132.278563,119.249152 132.095821,119.360501 132.004184,119.538448 L128.694055,125.979695 C128.609343,126.144855 128.616269,126.342515 128.713234,126.500749 C128.810199,126.658983 128.982286,126.755948 129.168224,126.755948 L129.168224,126.755948 Z M132.803346,120.314701 L143.393843,120.314701 L146.15628,125.690399 L130.041442,125.690399 L132.803346,120.314701 L132.803346,120.314701 Z M128.635449,127.609986 C128.635449,127.315894 128.8736,127.077211 129.168224,127.077211 L147.028966,127.077211 C147.32359,127.077211 147.56174,127.315894 147.56174,127.609986 C147.56174,127.904078 147.32359,128.142761 147.028966,128.142761 L129.168224,128.142761 C128.8736,128.142761 128.635449,127.904078 128.635449,127.609986 L128.635449,127.609986 Z M128.635449,128.996799 C128.635449,128.702707 128.8736,128.464024 129.168224,128.464024 L147.028966,128.464024 C147.32359,128.464024 147.56174,128.702707 147.56174,128.996799 C147.56174,129.29089 147.32359,129.529574 147.028966,129.529574 L129.168224,129.529574 C128.8736,129.529574 128.635449,129.291423 128.635449,128.996799 L128.635449,128.996799 Z M128.635449,130.383612 C128.635449,130.08952 128.8736,129.850837 129.168224,129.850837 L147.028966,129.850837 C147.32359,129.850837 147.56174,130.08952 147.56174,130.383612 C147.56174,130.677703 147.32359,130.916386 147.028966,130.916386 L129.168224,130.916386 C128.8736,130.916386 128.635449,130.678236 128.635449,130.383612 L128.635449,130.383612 Z M128.635449,131.770424 C128.635449,131.476333 128.8736,131.237649 129.168224,131.237649 L147.028966,131.237649 C147.32359,131.237649 147.56174,131.476333 147.56174,131.770424 C147.56174,132.064516 147.32359,132.303199 147.028966,132.303199 L129.168224,132.303199 C128.8736,132.303199 128.635449,132.065049 128.635449,131.770424 L128.635449,131.770424 Z M128.635449,133.157237 C128.635449,132.863145 128.8736,132.624462 129.168224,132.624462 L147.028966,132.624462 C147.32359,132.624462 147.56174,132.863145 147.56174,133.157237 C147.56174,133.451329 147.32359,133.690012 147.028966,133.690012 L129.168224,133.690012 C128.8736,133.690012 128.635449,133.451861 128.635449,133.157237 L128.635449,133.157237 Z M128.635449,134.544582 C128.635449,134.250491 128.8736,134.011808 129.168224,134.011808 L147.028966,134.011808 C147.32359,134.011808 147.56174,134.250491 147.56174,134.544582 C147.56174,134.838674 147.32359,135.077357 147.028966,135.077357 L129.168224,135.077357 C128.8736,135.077357 128.635449,134.838674 128.635449,134.544582 L128.635449,134.544582 Z M147.028966,136.46417 L129.168224,136.46417 C128.8736,136.46417 128.635449,136.225487 128.635449,135.931395 C128.635449,135.637304 128.8736,135.39862 129.168224,135.39862 L147.028966,135.39862 C147.32359,135.39862 147.56174,135.637304 147.56174,135.931395 C147.56174,136.225487 147.32359,136.46417 147.028966,136.46417 L147.028966,136.46417 Z M163.125157,127.043646 C163.419781,127.043646 163.657932,127.28233 163.657932,127.576421 C163.657932,127.870513 163.419781,128.109196 163.125157,128.109196 L152.862317,128.109196 C152.567692,128.109196 152.329542,127.870513 152.329542,127.576421 C152.329542,127.28233 152.567692,127.043646 152.862317,127.043646 L163.125157,127.043646 L163.125157,127.043646 Z M155.486765,113.45789 C155.486765,113.163798 155.724915,112.925115 156.01954,112.925115 L159.968466,112.925115 C160.263091,112.925115 160.501241,113.163798 160.501241,113.45789 C160.501241,113.751981 160.263091,113.990665 159.968466,113.990665 L156.01954,113.990665 C155.724915,113.990665 155.486765,113.751981 155.486765,113.45789 L155.486765,113.45789 Z M151.624148,126.694679 L164.363858,126.694679 C164.658483,126.694679 164.896633,126.455996 164.896633,126.161904 L164.896633,114.880931 C164.896633,114.58684 164.658483,114.348156 164.363858,114.348156 L151.624148,114.348156 C151.329524,114.348156 151.091373,114.58684 151.091373,114.880931 L151.091373,126.161904 C151.091373,126.455996 151.329524,126.694679 151.624148,126.694679 L151.624148,126.694679 Z M152.156923,115.413706 L163.831084,115.413706 L163.831084,125.629129 L152.156923,125.629129 L152.156923,115.413706 L152.156923,115.413706 Z M157.994003,116.026397 C155.515535,116.026397 153.49845,118.042949 153.49845,120.52195 C153.49845,123.000951 155.515002,125.017504 157.994003,125.017504 C160.473004,125.017504 162.489557,123.000951 162.489557,120.52195 C162.489557,118.042949 160.472471,116.026397 157.994003,116.026397 L157.994003,116.026397 Z M157.994003,123.951422 C156.102653,123.951422 154.563999,122.412768 154.563999,120.521418 C154.563999,118.630067 156.102653,117.091414 157.994003,117.091414 C159.885354,117.091414 161.424007,118.630067 161.424007,120.521418 C161.424007,122.412768 159.884821,123.951422 157.994003,123.951422 L157.994003,123.951422 Z M160.414399,119.198538 C160.575297,119.44468 160.506569,119.775 160.260427,119.935898 L158.285964,121.228943 C158.196458,121.287548 158.09523,121.316318 157.994003,121.316318 C157.84749,121.316318 157.70151,121.255581 157.597619,121.139436 L156.630633,120.062166 C156.434039,119.843195 156.452153,119.506482 156.671123,119.309888 C156.889561,119.113827 157.226807,119.130876 157.423401,119.350379 L158.085108,120.087206 L159.676506,119.045099 C159.923181,118.883135 160.252968,118.952929 160.414399,119.198538 L160.414399,119.198538 Z M144.068869,124.097402 C144.068869,124.391494 143.830719,124.630177 143.536094,124.630177 L140.828533,124.630177 C140.533908,124.630177 140.295758,124.391494 140.295758,124.097402 C140.295758,123.80331 140.533908,123.564627 140.828533,123.564627 L143.536094,123.564627 C143.830719,123.564627 144.068869,123.80331 144.068869,124.097402 L144.068869,124.097402 Z"></path>
</g>
<g id="face-testimonial" transform="translate(-192.000000, -104.000000)" >
<path d="M231.656311,121.032626 C230.589115,120.644198 229.404952,121.196382 229.016525,122.263578 L227.817274,125.558493 C227.694113,125.461004 227.553793,125.381034 227.398293,125.324437 L225.394467,124.595104 C225.221545,124.532165 225.044496,124.50293 224.870389,124.504104 C224.930564,123.839427 224.540423,123.189809 223.884419,122.951043 L221.880593,122.22171 C221.725092,122.165113 221.566174,122.136242 221.409186,122.131692 L223.505819,116.371242 C223.990004,115.040753 223.301555,113.564371 221.97109,113.080121 C220.640624,112.595871 219.164241,113.28432 218.679992,114.614785 L213.672981,128.371432 C213.657611,128.397743 213.644054,128.42552 213.633257,128.455183 L212.983576,130.240168 L211.402338,127.317838 C211.06858,126.700917 210.511954,126.260245 209.834666,126.076735 C209.157548,125.893361 208.454514,125.992979 207.854926,126.357103 C206.756022,127.024665 206.330433,128.409779 206.864968,129.579157 L210.24423,137.680615 L210.627798,141.629521 C210.613499,141.895911 210.655012,142.156872 210.743378,142.398726 L208.640028,148.177634 C208.590549,148.313575 208.600262,148.464019 208.666874,148.59234 C208.726795,148.707811 208.827666,148.796013 208.948971,148.840164 C208.962506,148.845091 208.976384,148.849482 208.990385,148.853331 L220.243087,151.906973 C220.502343,151.97735 220.772318,151.837317 220.864203,151.584863 L222.865154,146.087295 L225.536639,142.856697 C225.542706,142.849297 225.548602,142.841762 225.554263,142.834068 C226.024035,142.197087 226.39953,141.497114 226.670189,140.753483 L232.887199,123.672389 C233.275668,122.605281 232.723442,121.42103 231.656311,121.032626 L231.656311,121.032626 L231.656311,121.032626 Z M225.698757,140.399984 C225.463527,141.046273 225.137839,141.654944 224.730655,142.209236 L222.011665,145.497207 C222.00889,145.500598 222.006287,145.504124 222.003577,145.507539 C222.001091,145.510741 221.998476,145.513897 221.996031,145.517187 C221.995419,145.518065 221.994677,145.518895 221.993999,145.519748 C221.751055,145.849094 221.312799,145.981347 220.928225,145.841374 L213.850393,143.265253 C213.582072,143.167593 213.285523,143.305875 213.187862,143.574196 C213.090225,143.842453 213.228484,144.139066 213.496805,144.236727 L220.574702,146.812871 C220.864525,146.918358 221.168655,146.949473 221.463501,146.91582 L220.055303,150.78481 L209.80387,148.002893 L211.494301,143.358472 C211.622224,143.444491 211.761503,143.516235 211.910462,143.570452 C212.178783,143.668113 212.475356,143.529765 212.572993,143.261509 C212.67063,142.993252 212.532371,142.696639 212.26405,142.598978 C211.883491,142.460466 211.635374,142.081401 211.660701,141.677103 C211.661358,141.666633 211.661691,141.656046 211.661652,141.645471 L211.278251,137.569153 C211.278408,137.494766 211.262408,137.421245 211.231508,137.353597 L207.805253,129.149514 C207.488611,128.456751 207.740703,127.636172 208.391641,127.24079 C208.746755,127.025028 209.163255,126.966049 209.564361,127.074708 C209.965732,127.183242 210.29532,127.444464 210.493096,127.8099 L212.621435,131.743357 C212.718257,131.922279 212.911034,132.027797 213.113992,132.012847 C213.316862,131.997939 213.492227,131.865349 213.561813,131.674163 L214.577104,128.884674 C214.592474,128.858364 214.606032,128.830587 214.616804,128.800989 L219.651465,114.968372 C219.940747,114.173578 220.822707,113.762313 221.617567,114.051618 C222.412297,114.340876 222.823586,115.222772 222.53428,116.017631 L219.94826,123.122665 L218.554889,126.950918 C218.457252,127.219174 218.595511,127.515787 218.863832,127.613448 C219.132153,127.711109 219.428726,127.572761 219.526363,127.304505 L220.919733,123.476252 C221.009073,123.230793 221.281482,123.10382 221.526941,123.19316 L223.530767,123.922493 C223.776226,124.011833 223.903287,124.284201 223.813947,124.52966 L223.462198,125.496082 L222.420577,128.357913 C222.322939,128.626169 222.461199,128.922783 222.72952,129.020443 C222.997841,129.118104 223.294413,128.979757 223.39205,128.7115 L224.433672,125.849669 C224.523011,125.60421 224.795356,125.477214 225.040815,125.566554 L227.044641,126.295887 C227.2901,126.385226 227.41716,126.657594 227.327821,126.903053 L227.04125,127.6904 L226.894228,128.094339 L226.286176,129.764949 C226.188538,130.033205 226.326798,130.329819 226.595119,130.42748 C226.86344,130.525141 227.160012,130.386793 227.257649,130.118537 L227.865702,128.447926 L228.012723,128.043987 L228.299294,127.256641 L229.987934,122.617142 C230.181393,122.085617 230.771198,121.81064 231.302659,122.004076 C231.83412,122.197512 232.109185,122.787276 231.915726,123.318801 L225.698692,140.39996 L225.698757,140.399984 L225.698757,140.399984 Z M225.305866,131.841499 C225.208228,132.109755 224.911656,132.248103 224.643335,132.150442 C224.375014,132.052781 224.236755,131.756168 224.334392,131.487911 C224.390047,131.335002 224.310916,131.165305 224.158071,131.109674 C224.005161,131.05402 223.835465,131.13315 223.77981,131.28606 C223.682173,131.554316 223.385601,131.692664 223.11728,131.595003 C222.848959,131.497342 222.7107,131.200729 222.808337,130.932473 C223.05896,130.243892 223.823078,129.887578 224.511659,130.138201 C225.200239,130.388824 225.556488,131.152918 225.305866,131.841499 L225.305866,131.841499 L225.305866,131.841499 Z M221.440178,130.434504 C221.342541,130.70276 221.045969,130.841108 220.777648,130.743447 C220.509327,130.645786 220.371068,130.349173 220.468705,130.080916 C220.52436,129.928006 220.445229,129.75831 220.292384,129.702679 C220.139474,129.647025 219.969778,129.726155 219.914123,129.879065 C219.816486,130.147321 219.519914,130.285669 219.251593,130.188008 C218.983272,130.090347 218.845012,129.793734 218.94265,129.525478 C219.193272,128.836897 219.957391,128.480583 220.645971,128.731206 C221.334552,128.981828 221.690801,129.745923 221.440178,130.434504 L221.440178,130.434504 L221.440178,130.434504 Z M217.574556,129.027532 C217.476919,129.295788 217.180346,129.434136 216.912025,129.336475 C216.643704,129.238814 216.505445,128.942201 216.603082,128.673945 C216.658737,128.521035 216.579606,128.351339 216.426696,128.295684 C216.273851,128.240053 216.104155,128.319184 216.0485,128.472094 C215.950863,128.74035 215.654291,128.878697 215.38597,128.781037 C215.117649,128.683376 214.97939,128.386762 215.077027,128.118506 C215.32765,127.429926 216.091703,127.073588 216.780284,127.324211 C217.468864,127.574833 217.825179,128.338952 217.574556,129.027532 L217.574556,129.027532 L217.574556,129.027532 Z M228.389612,132.71936 C228.291975,132.987616 227.995403,133.125964 227.727082,133.028303 C227.458761,132.930642 227.320502,132.634029 227.418139,132.365773 C227.430467,132.331901 227.412896,132.294334 227.379089,132.282029 C227.345281,132.269724 227.307738,132.287231 227.29541,132.321103 C227.197772,132.589359 226.9012,132.727707 226.632879,132.630046 C226.364558,132.532385 226.226299,132.235772 226.323936,131.967515 C226.531233,131.397973 227.163198,131.103282 227.732676,131.310555 C228.302219,131.517852 228.596909,132.149818 228.389612,132.71936 L228.389612,132.71936 L228.389612,132.71936 Z"></path>
</g>
<g id="face-group" transform="translate(-263.000000, -104.000000)" fill="#231F20">
<path d="M278.369277,128.606122 C277.389386,128.279682 275.557666,126.94248 275.637703,124.218339 C275.650281,123.780418 275.6903,122.44779 276.610162,122.100198 C277.517447,121.756035 278.479043,122.711914 278.661986,122.907435 C278.877516,123.13783 278.864939,123.499714 278.634545,123.715245 C278.405294,123.930203 278.043409,123.919341 277.826735,123.687803 C277.536884,123.381945 277.128692,123.143547 277.012066,123.170416 C277.013781,123.170416 276.807969,123.327633 276.7811,124.251497 C276.705064,126.816135 278.710581,127.514178 278.731162,127.521039 C279.03016,127.621086 279.192522,127.944667 279.092475,128.244237 C279.013009,128.483778 278.790047,128.63585 278.550505,128.63585 C278.490477,128.63585 278.429877,128.626131 278.369277,128.606122 L278.369277,128.606122 Z M286.498824,122.598147 C286.498824,122.913724 286.754373,123.169845 287.070522,123.169845 L288.356842,123.169845 L288.356842,126.528571 C288.356842,126.844148 288.612391,127.100269 288.92854,127.100269 C289.24469,127.100269 289.500239,126.844148 289.500239,126.528571 L289.500239,122.598147 C289.500239,122.282569 289.24469,122.026448 288.92854,122.026448 L287.070522,122.026448 C286.754373,122.026448 286.498824,122.282569 286.498824,122.598147 L286.498824,122.598147 Z M285.95571,122.598147 C285.95571,122.282569 285.700161,122.026448 285.384012,122.026448 L279.807098,122.026448 C279.490948,122.026448 279.235399,122.282569 279.235399,122.598147 C279.235399,122.913724 279.490948,123.169845 279.807098,123.169845 L285.384012,123.169845 C285.69959,123.169845 285.95571,122.914296 285.95571,122.598147 L285.95571,122.598147 Z M281.447871,134.680986 C282.387171,134.680986 283.186977,134.526055 283.849003,134.226486 C282.149916,133.32892 281.041394,131.69958 280.813858,129.63918 C280.71038,128.69988 281.39013,127.850337 282.329429,127.746288 C282.399177,127.739427 282.456918,127.736569 282.514088,127.736569 C283.392216,127.736569 284.126848,128.392307 284.223465,129.262431 C284.384112,130.719118 285.318839,131.23479 285.963714,131.42002 C286.084914,130.796297 286.055186,130.327505 286.054614,130.318358 C286.042609,130.159997 286.098063,130.003352 286.206114,129.886725 C286.314165,129.770671 286.466237,129.703782 286.624597,129.703782 L287.770852,129.703782 L287.770852,128.291116 C287.770852,127.975539 288.026401,127.719418 288.34255,127.719418 C288.658699,127.719418 288.914248,127.975539 288.914248,128.291116 L288.914248,130.27548 C288.914248,130.591057 288.658699,130.847178 288.34255,130.847178 L287.190007,130.847178 C287.139125,131.642982 286.89158,133.055076 285.846516,134.18418 C284.840327,135.272693 283.360201,135.824382 281.447871,135.824382 C281.131722,135.824382 280.876173,135.568261 280.876173,135.252684 C280.876173,134.937106 281.131722,134.680986 281.447871,134.680986 L281.447871,134.680986 Z M284.93866,133.474131 C284.958669,133.454122 284.980965,133.436399 285.000403,133.415818 C285.266814,133.129397 285.463478,132.814391 285.613263,132.498242 C284.371535,132.126067 283.27902,131.133027 283.086929,129.388205 C283.054343,129.09378 282.80108,128.879965 282.514088,128.879965 C282.49465,128.879965 282.475212,128.881109 282.455775,128.882824 C282.141913,128.917697 281.91552,129.200116 281.950394,129.513978 C282.183075,131.621829 283.465965,132.90472 284.93866,133.474131 L284.93866,133.474131 Z M277.96623,137.083261 C277.655798,137.05925 277.376237,137.293646 277.351654,137.60808 C277.327071,137.923085 277.562039,138.198072 277.877045,138.223227 C277.936501,138.227801 283.816416,138.742329 283.816416,143.256457 L283.816416,151.353417 C283.816416,151.668994 284.071965,151.925115 284.388114,151.925115 C284.704263,151.925115 284.959812,151.668994 284.959812,151.353417 L284.959812,143.256457 C284.959241,138.808074 280.385084,137.273065 277.96623,137.083261 L277.96623,137.083261 Z M304.776583,127.199173 C304.682253,127.070541 304.538757,126.987073 304.380396,126.968778 L291.088416,125.436056 C290.77341,125.400611 290.491563,125.625288 290.455546,125.938578 C290.419529,126.252441 290.644206,126.536003 290.958069,126.57202 L303.636045,128.033852 L300.289325,145.153351 L286.308448,142.647598 C285.998016,142.590429 285.700733,142.798527 285.644707,143.10953 C285.58868,143.419963 285.796207,143.717246 286.106639,143.773272 L290.286323,144.522196 L290.286323,151.353417 C290.286323,151.668994 290.541872,151.925115 290.858022,151.925115 C291.174171,151.925115 291.42972,151.668994 291.42972,151.353417 L291.42972,144.727436 L300.641491,146.3785 C300.675793,146.384789 300.709523,146.387647 300.743253,146.387647 C301.011951,146.387647 301.250921,146.197844 301.303517,145.925715 L304.87663,127.646812 C304.90693,127.490167 304.870913,127.327805 304.776583,127.199173 L304.776583,127.199173 Z M292.237529,121.816064 C292.378738,121.816064 292.519948,121.764039 292.630857,121.659418 L296.494393,118.001694 C296.723644,117.78502 296.733363,117.422564 296.516689,117.193313 C296.298301,116.964634 295.937559,116.954915 295.708308,117.171017 L291.844772,120.828741 C291.615521,121.045415 291.605803,121.407871 291.822476,121.637122 C291.935101,121.756035 292.086029,121.816064 292.237529,121.816064 L292.237529,121.816064 Z M295.520791,123.100097 C295.623697,123.293331 295.820933,123.403097 296.026172,123.403097 C296.116501,123.403097 296.208544,123.381373 296.294299,123.336209 L300.427104,121.138601 C300.705521,120.990532 300.811857,120.644082 300.663215,120.365094 C300.514574,120.086105 300.168125,119.980341 299.889708,120.128983 L295.756902,122.32659 C295.478485,122.475231 295.37215,122.821681 295.520791,123.100097 L295.520791,123.100097 Z M290.487561,129.394493 L300.56374,130.651657 C300.575746,130.652801 300.58718,130.653944 300.599757,130.653944 C300.741538,130.653944 300.865025,130.54818 300.882747,130.403541 C300.902185,130.246895 300.791276,130.103971 300.634059,130.084533 L290.55788,128.827369 C290.410954,128.806788 290.258882,128.918269 290.238872,129.075486 C290.220006,129.231559 290.330916,129.374484 290.487561,129.394493 L290.487561,129.394493 Z M290.187991,130.797441 L300.26417,132.054605 C300.276176,132.055748 300.28761,132.056891 300.300187,132.056891 C300.441968,132.056891 300.565455,131.951127 300.583178,131.806488 C300.602615,131.649842 300.491706,131.506918 300.334489,131.48748 L290.25831,130.230316 C290.109669,130.21145 289.959312,130.321216 289.939303,130.478433 C289.919865,130.635078 290.030774,130.778003 290.187991,130.797441 L290.187991,130.797441 Z M289.73978,132.378186 L299.815959,133.63535 C299.827964,133.637065 299.839398,133.637637 299.851976,133.637637 C299.993757,133.637637 300.117244,133.531872 300.134966,133.387233 C300.154404,133.230588 300.043495,133.087663 299.886278,133.068225 L289.810099,131.811061 C289.661457,131.79391 289.511101,131.901961 289.491091,132.059178 C289.471654,132.215823 289.582563,132.358748 289.73978,132.378186 L289.73978,132.378186 Z M299.586136,134.471172 L289.509957,133.214008 C289.360173,133.19114 289.210388,133.304908 289.19095,133.462125 C289.171512,133.618771 289.282422,133.761695 289.439639,133.781133 L299.515817,135.038297 C299.527823,135.03944 299.539257,135.040584 299.551834,135.040584 C299.693615,135.040584 299.817102,134.93482 299.834825,134.79018 C299.854263,134.633535 299.743353,134.49061 299.586136,134.471172 L299.586136,134.471172 Z M277.905058,119.041041 L287.954939,119.041041 C288.243646,119.041041 288.48719,118.825511 288.522063,118.53909 C288.532354,118.460768 288.740452,116.599319 287.197439,114.855639 C285.476627,112.911294 282.356299,111.925115 277.921637,111.925115 C277.605488,111.925115 277.349939,112.181236 277.349939,112.496813 C277.349939,112.81239 277.605488,113.068511 277.921637,113.068511 C281.936673,113.068511 284.840899,113.940351 286.31931,115.5897 C287.102537,116.463254 287.322069,117.358534 287.377524,117.897645 L277.905058,117.897645 C277.588909,117.897645 277.33336,118.153766 277.33336,118.469343 C277.33336,118.78492 277.588909,119.041041 277.905058,119.041041 L277.905058,119.041041 Z M277.905058,116.055062 C282.383169,116.055062 284.105695,116.825139 284.141712,116.841147 C284.221178,116.878879 284.304646,116.897173 284.387543,116.897173 C284.599643,116.897173 284.803739,116.778832 284.902071,116.575307 C285.03985,116.291173 284.921509,115.949298 284.637375,115.811519 C284.561339,115.77493 282.727331,114.912237 277.905058,114.912237 C277.588909,114.912237 277.33336,115.168358 277.33336,115.483936 C277.33336,115.799513 277.588909,116.055062 277.905058,116.055062 L277.905058,116.055062 Z"></path>
</g>
<g id="face-help" transform="translate(-50.000000, -104.000000)" fill="#231F20">
<path d="M65.8215483,122.902516 C65.8339461,122.481531 65.8716784,121.200251 66.7529968,120.867668 C67.6267689,120.537241 68.5463586,121.45683 68.7220833,121.644414 C68.9252986,121.862183 68.913979,122.203391 68.6967488,122.406606 C68.4795186,122.609821 68.1377719,122.598502 67.9345565,122.381271 C67.645096,122.074562 67.2440556,121.842778 67.1335539,121.876737 C67.1324759,121.877276 66.9260263,122.029822 66.8990747,122.934858 C66.8268443,125.397698 68.716693,126.08227 68.7970089,126.1103 C68.964648,126.168515 69.096172,126.306508 69.1436069,126.47792 L69.1732537,126.585187 C69.1818782,126.61699 69.1878076,126.649871 69.1905027,126.682752 C69.7241451,133.040104 74.7614057,135.096514 77.1175177,135.096514 C79.4736297,135.096514 84.5108903,133.040104 85.0439936,126.682752 C85.0466888,126.649332 85.0526182,126.615912 85.0617817,126.58357 L85.0914285,126.476303 C85.1394024,126.303273 85.2703874,126.16582 85.4407217,126.108683 C85.5183424,126.081731 87.4076521,125.397159 87.3354217,122.934319 C87.3090091,122.029283 87.1020205,121.877276 87.0998644,121.876198 C86.9882846,121.8417 86.5796978,122.082108 86.2999398,122.381271 C86.0967245,122.598502 85.7555168,122.609821 85.5377476,122.406606 C85.3205174,122.203391 85.3091977,121.862183 85.5124131,121.644414 C85.6881377,121.45683 86.6061104,120.53778 87.4814995,120.867668 C88.362279,121.20079 88.4000113,122.481531 88.412409,122.902516 C88.4814052,125.257011 87.0696785,126.536675 86.0967245,127.002399 C85.4541975,133.326331 80.4864721,136.174579 77.1169787,136.174579 C73.7474852,136.174579 68.7797598,133.326331 68.1372328,127.002399 C67.1642788,126.536136 65.7520131,125.257011 65.8215483,122.902516 L65.8215483,122.902516 Z M73.101724,136.886102 L70.5715045,138.074131 L70.3580476,134.1683 C70.3413376,133.871293 70.0826019,133.645977 69.7904461,133.659453 C69.4934391,133.675624 69.2654283,133.930047 69.2815993,134.227054 L69.3236438,134.995176 C67.4041483,135.722331 58.6351643,139.618998 58.6351643,150.07785 C58.6351643,150.375396 58.8766509,150.616883 59.174197,150.616883 C59.471743,150.616883 59.7132297,150.375396 59.7132297,150.07785 C59.7132297,140.64909 67.135171,137.006846 69.3856326,136.119598 L69.5392569,138.931193 C69.5489595,139.110151 69.6470634,139.2724 69.8006878,139.364575 C69.8858549,139.415244 69.9812637,139.441118 70.0772115,139.441118 C70.1553713,139.441118 70.233531,139.424408 70.3063004,139.389909 L73.5599018,137.86283 C73.8294182,137.736157 73.9453102,137.415433 73.8186375,137.145916 C73.6919649,136.875322 73.3707014,136.75943 73.101724,136.886102 L73.101724,136.886102 Z M66.3578859,147.669991 C66.0603398,147.669991 65.8188532,147.911477 65.8188532,148.209024 L65.8188532,150.077311 C65.8188532,150.374857 66.0603398,150.616344 66.3578859,150.616344 C66.6554319,150.616344 66.8969186,150.374857 66.8969186,150.077311 L66.8969186,148.209024 C66.8969186,147.911477 66.6559709,147.669991 66.3578859,147.669991 L66.3578859,147.669991 Z M68.8298899,120.594378 L68.832046,120.594378 C69.128514,120.594378 69.3700006,120.354508 69.3710787,120.057501 C69.3775471,118.652243 69.8141636,117.362877 70.6000733,116.428194 C70.7914299,116.200183 70.7623221,115.860054 70.5343113,115.668697 C70.3063004,115.477341 69.9667098,115.506987 69.7748142,115.734459 C68.8271947,116.862116 68.3005597,118.396203 68.2930133,120.053189 C68.2919352,120.350196 68.5323438,120.592761 68.8298899,120.594378 L68.8298899,120.594378 Z M67.2618437,119.734621 L67.2634608,119.734621 C67.5604678,119.734621 67.8019545,119.494212 67.8024935,119.197205 C67.8046496,118.537968 68.1032738,117.580646 68.2471955,117.120312 C68.3361359,116.836242 68.1776603,116.533845 67.893051,116.445443 C67.6100588,116.356503 67.3065834,116.514439 67.2181821,116.799588 C66.9632196,117.616222 66.7265842,118.471667 66.7244281,119.193971 C66.72335,119.492056 66.9637586,119.734082 67.2618437,119.734621 L67.2618437,119.734621 Z M72.0948109,114.990594 L80.0078111,114.990594 C80.1829967,114.99275 84.3049798,115.103252 84.3049798,119.966405 C84.3049798,120.263951 84.5464665,120.505438 84.8440125,120.505438 C85.1415586,120.505438 85.3830452,120.263951 85.3830452,119.966405 C85.3830452,114.052138 80.0757292,113.913068 80.0148185,113.912529 L72.0948109,113.912529 C71.7972649,113.912529 71.5557782,114.154015 71.5557782,114.451561 C71.5557782,114.749107 71.7972649,114.990594 72.0948109,114.990594 L72.0948109,114.990594 Z M73.3308129,113.00318 L80.0148185,113.00318 C80.3123645,113.00318 80.5538512,112.761694 80.5538512,112.464148 C80.5538512,112.166602 80.3123645,111.925115 80.0148185,111.925115 L73.3308129,111.925115 C73.0332669,111.925115 72.7917802,112.166602 72.7917802,112.464148 C72.7917802,112.761694 73.0332669,113.00318 73.3308129,113.00318 L73.3308129,113.00318 Z M77.4937625,123.249114 L77.4937625,127.695056 L76.2011621,127.695056 C75.903616,127.695056 75.6621294,127.936542 75.6621294,128.234089 C75.6621294,128.531635 75.903616,128.773121 76.2011621,128.773121 L78.0327952,128.773121 C78.3303413,128.773121 78.5718279,128.531635 78.5718279,128.234089 L78.5718279,123.249114 C78.5718279,122.951568 78.3303413,122.710081 78.0327952,122.710081 C77.7352492,122.710081 77.4937625,122.951568 77.4937625,123.249114 L77.4937625,123.249114 Z M91.5156203,150.260043 C91.5156203,151.40387 89.8068866,151.925115 88.2188963,151.925115 C86.6724114,151.925115 85.0159639,151.429205 84.9302577,150.346827 C84.9297187,150.344671 84.9286406,150.343054 84.9281016,150.340359 L83.3902413,140.173663 C83.3746094,140.110057 83.3665239,140.043756 83.3605945,139.976916 L83.3541261,139.933254 C83.3535871,139.928403 83.3552042,139.924091 83.3546651,139.91924 C83.3535871,139.8966 83.3476577,139.875578 83.3476577,139.852939 C83.3476577,139.631935 83.4053342,139.42872 83.501282,139.23898 L80.5684051,137.862291 C80.2988887,137.735618 80.1829967,137.414894 80.3096694,137.145377 C80.435803,136.875322 80.7576056,136.75943 81.0265829,136.886642 L83.5568024,138.07467 L83.7702594,134.168839 C83.7864303,133.871832 84.044627,133.647594 84.3378608,133.659992 C84.6348678,133.676163 84.8628787,133.930586 84.8467077,134.227593 L84.8014289,135.053391 C86.2875421,135.470603 88.3078367,136.673724 89.2090994,137.552347 C89.2220361,137.564745 89.2268874,137.581455 89.2376681,137.594391 C91.2811411,137.785748 93.0890568,138.552253 93.0890568,139.853478 C93.0890568,141.368698 90.6386141,142.161616 88.2178182,142.161616 C86.9165933,142.161616 85.610517,141.930371 84.6774514,141.483512 L85.825052,149.071476 C86.4654229,148.749673 87.358061,148.59551 88.2178182,148.59551 C89.8063476,148.594432 91.5156203,149.115677 91.5156203,150.260043 L91.5156203,150.260043 Z M88.2188963,138.622866 C85.7981004,138.622866 84.4650725,139.412549 84.4294964,139.834611 L84.4462064,139.943496 C84.6154626,140.377417 85.9323195,141.082472 88.2194353,141.082472 C90.6736512,141.082472 92.0126085,140.27015 92.0126085,139.852399 C92.0126085,139.434649 90.6731122,138.622866 88.2188963,138.622866 L88.2188963,138.622866 Z M84.7415963,136.158947 L84.6273214,138.24716 C85.3922088,137.86822 86.4212222,137.641287 87.4955144,137.570674 C86.6670211,137.009002 85.6035096,136.442479 84.7415963,136.158947 L84.7415963,136.158947 Z M90.439711,150.242255 C90.3755661,150.104802 89.6209203,149.672497 88.2183572,149.672497 C86.8163332,149.672497 86.0611484,150.104802 85.9970035,150.277292 C86.0611484,150.414206 86.8163332,150.84705 88.2183572,150.84705 C89.6209203,150.84705 90.3761052,150.414206 90.439711,150.242255 L90.439711,150.242255 Z M96.9797948,144.249289 L96.9792558,147.990176 C96.9792558,149.60997 95.6613208,150.927904 94.0415276,150.927904 C92.4217343,150.927904 91.1037993,149.60997 91.1037993,147.990176 L91.1032603,144.249289 C91.098948,143.448287 91.0940967,142.540017 91.7377018,141.892638 C92.219058,141.408587 92.9726257,141.173569 94.0415276,141.173569 C95.1104294,141.173569 95.8639971,141.409126 96.3453534,141.892638 C96.9889584,142.540017 96.9841071,143.448287 96.9797948,144.249289 L96.9797948,144.249289 Z M95.581005,142.652674 C95.3163399,142.386392 94.7977905,142.251095 94.0415276,142.251095 C93.2852647,142.251095 92.7667152,142.385853 92.5020502,142.652674 C92.2832029,142.873139 92.2131286,143.220815 92.1910283,143.620238 L93.4442793,143.620238 C93.7418254,143.620238 93.983312,143.861725 93.983312,144.159271 C93.983312,144.456817 93.7418254,144.698303 93.4442793,144.698303 L92.1813257,144.698303 L92.1813257,145.679882 L93.4442793,145.679882 C93.7418254,145.679882 93.983312,145.921369 93.983312,146.218915 C93.983312,146.516461 93.7418254,146.757947 93.4442793,146.757947 L92.1818647,146.757947 L92.1818647,147.667835 L93.4442793,147.667835 C93.7418254,147.667835 93.983312,147.909321 93.983312,148.206867 C93.983312,148.504413 93.7418254,148.7459 93.4442793,148.7459 L92.3462697,148.7459 C92.6368083,149.394895 93.2858037,149.8493 94.0415276,149.8493 C95.0667678,149.8493 95.9011904,149.014877 95.9011904,147.989637 L95.9017294,144.242821 C95.9049636,143.594904 95.9087369,142.982562 95.581005,142.652674 L95.581005,142.652674 Z M77.1169787,138.361974 C76.8194326,138.361974 76.577946,138.603461 76.577946,138.901007 L76.577946,150.388872 C76.577946,150.686418 76.8194326,150.927904 77.1169787,150.927904 C77.4145247,150.927904 77.6560114,150.686418 77.6560114,150.388872 L77.6560114,138.901007 C77.6560114,138.603461 77.4150638,138.361974 77.1169787,138.361974 L77.1169787,138.361974 Z M88.5002714,143.451521 C89.3745824,143.451521 90.0839494,144.366259 90.0839494,145.494994 C90.0839494,146.623728 89.3751214,147.538467 88.5002714,147.538467 C87.6259603,147.538467 86.9165933,146.623728 86.9165933,145.494994 C86.9165933,144.366798 87.6254213,143.451521 88.5002714,143.451521 L88.5002714,143.451521 Z M88.6538957,144.392133 C88.5897508,144.091353 88.4997323,143.890833 88.4997323,143.890833 C88.4997323,143.890833 88.4097139,144.091353 88.345569,144.392133 C88.2771118,144.692913 88.2323721,145.093954 88.230216,145.494994 C88.2318331,145.896034 88.2760337,146.297075 88.3450299,146.597855 C88.4091748,146.898635 88.4997323,147.099155 88.4997323,147.099155 C88.4997323,147.099155 88.5902898,146.898635 88.6544347,146.597855 C88.7228919,146.297075 88.7676316,145.896034 88.7692487,145.494994 C88.7676316,145.093954 88.7223528,144.692913 88.6538957,144.392133 L88.6538957,144.392133 Z"></path>
</g>
<!-- Icons -->
<g id="icon-settings" transform="translate(-309.000000, -124.000000)">
<path d="M327.666667,141.756199 L327.666667,133.660866 L326.333333,133.660866 L326.333333,141.756199 C325.185333,142.052866 324.333333,143.086866 324.333333,144.327532 C324.333333,145.568199 325.185333,146.602199 326.333333,146.898866 L326.333333,149.660866 L327.666667,149.660866 L327.666667,146.898866 C328.815333,146.602199 329.666667,145.568199 329.666667,144.327532 C329.666667,143.086866 328.815333,142.052866 327.666667,141.756199 L327.666667,141.756199 Z M327,145.660866 C326.264,145.660866 325.666667,145.063532 325.666667,144.327532 C325.666667,143.591532 326.264,142.994199 327,142.994199 C327.736,142.994199 328.333333,143.591532 328.333333,144.327532 C328.333333,145.063532 327.736,145.660866 327,145.660866 L327,145.660866 Z M322.333333,135.755532 L322.333333,133.660866 L321,133.660866 L321,135.755532 C319.852,136.052866 319,137.086866 319,138.327532 C319,139.568199 319.852,140.602199 321,140.899532 L321,149.660866 L322.333333,149.660866 L322.333333,140.899532 C323.481333,140.602199 324.333333,139.568199 324.333333,138.327532 C324.333333,137.086866 323.481333,136.052866 322.333333,135.755532 L322.333333,135.755532 Z M321.666667,139.660866 C320.930667,139.660866 320.333333,139.063532 320.333333,138.327532 C320.333333,137.591532 320.930667,136.994199 321.666667,136.994199 C322.402667,136.994199 323,137.591532 323,138.327532 C323,139.063532 322.402667,139.660866 321.666667,139.660866 L321.666667,139.660866 Z M333,135.755532 L333,133.660866 L331.666667,133.660866 L331.666667,135.755532 C330.518,136.052866 329.666667,137.086866 329.666667,138.327532 C329.666667,139.568199 330.518,140.602199 331.666667,140.899532 L331.666667,149.660866 L333,149.660866 L333,140.899532 C334.148667,140.602199 335,139.568199 335,138.327532 C335,137.086866 334.148667,136.052866 333,135.755532 L333,135.755532 Z M332.333333,139.660866 C331.597333,139.660866 331,139.063532 331,138.327532 C331,137.591532 331.597333,136.994199 332.333333,136.994199 C333.069333,136.994199 333.666667,137.591532 333.666667,138.327532 C333.666667,139.063532 333.069333,139.660866 332.333333,139.660866 L332.333333,139.660866 Z"></path>
</g>
<g id="icon-help" transform="translate(-355.000000, -124.000000)">
<path d="M371.569832,145.888268 L373.067039,145.888268 L373.067039,144.927374 C373.067039,141.977654 377.067039,141.664804 377.067039,137.955307 C377.067039,135.631285 375.145251,134 372.597765,134 C371.212291,134 369.804469,134.558659 369,135.273743 L369.849162,136.391061 C370.586592,135.832402 371.592179,135.452514 372.530726,135.452514 C374.251397,135.452514 375.458101,136.592179 375.458101,138.022346 C375.458101,140.994413 371.569832,141.329609 371.569832,144.882682 L371.569832,145.888268 Z M371.435754,150 L373.201117,150 L373.201117,148.234637 L371.435754,148.234637 L371.435754,150 Z"></path>
</g>
<g id="icon-delete" transform="translate(-48.000000, -409.000000)">
<path d="M57.8994949,418.095161 L53.3519144,413.547581 L52.5475805,414.351914 L57.095161,418.899495 L52.5475805,423.447075 L53.3519144,424.251409 L57.8994949,419.703829 L62.4470754,424.251409 L63.2514094,423.447075 L58.7038289,418.899495 L63.2514094,414.351914 L62.4470754,413.547581 L57.8994949,418.095161 L57.8994949,418.095161 Z"></path>
</g>
<symbol id="icon-check" viewBox="0 0 20 20">
<g transform="translate(-88.000000, -409.000000)">
<path d="M96.2440777,424 L105.410744,414.833333 L104.577411,414 L96.2440777,422.333333 L91.8333333,417.922589 L91,418.755922 L96.2440777,424 L96.2440777,424 L96.2440777,424 Z" sketch:type="MSShapeGroup"></path>
</g>
</symbol>
<g id="icon-plus" transform="translate(-263.000000, -124.000000)">
<path d="M281.65,141.010866 L281.65,133.660866 L280.35,133.660866 L280.35,141.010866 L273,141.010866 L273,142.310866 L280.35,142.310866 L280.35,149.660866 L281.65,149.660866 L281.65,142.310866 L289,142.310866 L289,141.010866 L281.65,141.010866 Z" ></path>
</g>
<g id="icon-trash" transform="translate(-100.000000, -276.000000)">
<path d="M116,284 C116,283.522667 115.4624,283 115,283 L112,283 C111.5376,283 111,283.522667 111,284 L111,285 L108,285 L108,287 L109,287 L109,296 C109.2,296.477333 109.7376,297 110,297 L117,297 C117.2624,297 117.8,296.477333 118,296 L118,287 L119,287 L119,285 L116,285 L116,284 Z M112,284 L115,284 L115,285 L112,285 L112,284 L112,284 Z M112,288 L111,288 L111,295 L112,295 L112,288 L112,288 Z M114,288 L113,288 L113,295 L114,295 L114,288 L114,288 Z M116,288 L115,288 L115,295 L116,295 L116,288 L116,288 Z"></path>
</g>
<g id="icon-pen" transform="translate(-138.000000, -276.000000)">
<path d="M148.625,295.25 L146,295.25 L146,292.625 L148.625,295.25 L148.625,295.25 Z M158.25,285.625 L149.5,294.375 L146.875,291.75 L155.625,283 L158.25,285.625 Z M146,297 L146,296 L156,296 L156,297 L146,297 Z"></path>
</g>
<g id="icon-arrow-down" viewBox="0 0 1024 1024">
<path d="M877.254 621.254l-320 320c-24.992 24.994-65.514 24.994-90.508 0l-320-320c-24.994-24.994-24.994-65.516 0-90.51 24.994-24.996 65.516-24.996 90.51 0l210.744 210.746v-613.49c0-35.346 28.654-64 64-64s64 28.654 64 64v613.49l210.746-210.746c12.496-12.496 28.876-18.744 45.254-18.744s32.758 6.248 45.254 18.746c24.994 24.994 24.994 65.514 0 90.508z"></path>
</g>
<g id="icon-arrow-down-2" viewBox="0 0 1024 1024">
<path d="m899 386q0-30-21-50l-363-364q-22-21-51-21-29 0-50 21l-363 364q-21 20-21 50 0 29 21 51l41 41q22 21 51 21 29 0 50-21l164-164v393q0 29 21 50t51 22h71q29 0 50-22t21-50v-393l164 164q21 21 51 21 29 0 50-21l42-42q21-21 21-50z" transform="scale(1,-1)"></path>
</g>
<g id="icon-triangle-down" viewBox="0 0 767 1024">
<path d="M0 384l383.75 383.75 383.75-383.75h-767.5z"></path>
</g>
<symbol id="icon-chevron-thin-down" viewBox="0 0 1024 1024">
<path class="path1" d="M891.802 312.781c13.926-13.722 36.301-13.722 50.125 0s13.875 35.891 0 49.613l-404.89 400.896c-13.824 13.722-36.198 13.722-50.125 0l-404.89-400.896c-13.824-13.722-13.824-35.891 0-49.613 13.875-13.722 36.301-13.722 50.125 0l379.853 365.619 379.802-365.619z"></path>
</symbol>
<symbol id="icon-search" viewBox="0 0 1024 1024">
<path class="path1" d="M992.262 871.396l-242.552-206.294c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.068 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.076 0-384 171.922-384 384s171.922 384 384 384c95.098 0 182.108-34.586 249.176-91.844-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.22 7.356s31.892-92.898-7.354-128.22zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256z"></path>
</symbol>
<!-- Eyes -->
<symbol id="icon-eye" viewBox="0 0 1024 1024">
<path class="path1" d="M512 192c-223.318 0-416.882 130.042-512 320 95.118 189.958 288.682 320 512 320 223.312 0 416.876-130.042 512-320-95.116-189.958-288.688-320-512-320zM764.45 361.704c60.162 38.374 111.142 89.774 149.434 150.296-38.292 60.522-89.274 111.922-149.436 150.296-75.594 48.218-162.89 73.704-252.448 73.704-89.56 0-176.858-25.486-252.452-73.704-60.158-38.372-111.138-89.772-149.432-150.296 38.292-60.524 89.274-111.924 149.434-150.296 3.918-2.5 7.876-4.922 11.86-7.3-9.96 27.328-15.41 56.822-15.41 87.596 0 141.382 114.616 256 256 256 141.382 0 256-114.618 256-256 0-30.774-5.452-60.268-15.408-87.598 3.978 2.378 7.938 4.802 11.858 7.302v0zM512 416c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.982 96 96z"></path>
</symbol>
<symbol id="icon-eye-blocked" viewBox="0 0 1024 1024">
<path class="path1" d="M945.942 14.058c-18.746-18.744-49.136-18.744-67.882 0l-202.164 202.164c-51.938-15.754-106.948-24.222-163.896-24.222-223.318 0-416.882 130.042-512 320 41.122 82.124 100.648 153.040 173.022 207.096l-158.962 158.962c-18.746 18.746-18.746 49.136 0 67.882 9.372 9.374 21.656 14.060 33.94 14.060s24.568-4.686 33.942-14.058l864-864c18.744-18.746 18.744-49.138 0-67.884zM416 320c42.24 0 78.082 27.294 90.92 65.196l-121.724 121.724c-37.902-12.838-65.196-48.68-65.196-90.92 0-53.020 42.98-96 96-96zM110.116 512c38.292-60.524 89.274-111.924 149.434-150.296 3.918-2.5 7.876-4.922 11.862-7.3-9.962 27.328-15.412 56.822-15.412 87.596 0 54.89 17.286 105.738 46.7 147.418l-60.924 60.924c-52.446-36.842-97.202-83.882-131.66-138.342z"></path>
<path class="path2" d="M768 442c0-27.166-4.256-53.334-12.102-77.898l-321.808 321.808c24.568 7.842 50.742 12.090 77.91 12.090 141.382 0 256-114.618 256-256z"></path>
<path class="path3" d="M830.026 289.974l-69.362 69.362c1.264 0.786 2.53 1.568 3.786 2.368 60.162 38.374 111.142 89.774 149.434 150.296-38.292 60.522-89.274 111.922-149.436 150.296-75.594 48.218-162.89 73.704-252.448 73.704-38.664 0-76.902-4.76-113.962-14.040l-76.894 76.894c59.718 21.462 123.95 33.146 190.856 33.146 223.31 0 416.876-130.042 512-320-45.022-89.916-112.118-166.396-193.974-222.026z"></path>
</symbol>
<!-- Slider arrows -->
<g id="icon-arrow-left">
<path d="M17,6.91086002 L16.1019091,6 L9,12.7962958 L16.1019091,19.5930315 L17,18.6819882 L10.8506871,12.7962958 L17,6.91086002 Z"></path>
</g>
<g id="icon-arrow-right" transform="scale(-1,1) translate(-28, 0)">
<path d="M17,6.91086002 L16.1019091,6 L9,12.7962958 L16.1019091,19.5930315 L17,18.6819882 L10.8506871,12.7962958 L17,6.91086002 Z"></path>
</g>
<!-- Close button -->
<g id="icon-delete" transform="translate(-48.000000, -409.000000)">
<path d="M57.8994949,418.095161 L53.3519144,413.547581 L52.5475805,414.351914 L57.095161,418.899495 L52.5475805,423.447075 L53.3519144,424.251409 L57.8994949,419.703829 L62.4470754,424.251409 L63.2514094,423.447075 L58.7038289,418.899495 L63.2514094,414.351914 L62.4470754,413.547581 L57.8994949,418.095161 L57.8994949,418.095161 Z"></path>
</g>
<!-- Align icons -->
<g id="icon-align-left" transform="translate(10, 0)">
<path d="M0,2.6 L16,2.6 L16,3.6 L0,3.6 L0,2.6 Z M0,7.6 L12,7.6 L12,8.6 L0,8.6 L0,7.6 Z M0,12.6 L16,12.6 L16,13.6 L0,13.6 L0,12.6 Z"></path>
</g>
<g id="icon-align-center" transform="translate(-40, 0)">
<path d="M50,2.6 L66,2.6 L66,3.6 L50,3.6 L50,2.6 Z M50,7.6 L66,7.6 L66,8.6 L50,8.6 L50,7.6 Z M50,12.6 L66,12.6 L66,13.6 L50,13.6 L50,12.6 Z"></path>
</g>
<g id="icon-align-right" transform="translate(-90, 0)">
<path d="M100,2.6 L116,2.6 L116,3.6 L100,3.6 L100,2.6 Z M104,7.6 L116,7.6 L116,8.6 L104,8.6 L104,7.6 Z M100,12.6 L116,12.6 L116,13.6 L100,13.6 L100,12.6 Z"></path>
</g>
<!-- Image shape icons -->
<g id="icon-image-round" transform="translate(-139, 1)" stroke="#000000">
<rect x="150" y="0.6" width="16" height="16" rx="20"></rect>
</g>
<g id="icon-image-square" transform="translate(-190, 1)" stroke="#000000">
<rect x="200" y="0.6" width="16" height="16"></rect>
</g>
<g id="icon-image-squarerounded" transform="translate(-298, -547)" stroke="#000000">
<g transform="translate(58.000000, 548.400000)">
<rect sketch:type="MSShapeGroup" x="250" y="0.6" width="16" height="16" rx="4"></rect>
</g>
</g>
<!-- Rating icons -->
<!--<symbol id="aet_icon-star-empty" viewBox="0 0 1024 1024">
<title>star-empty</title>
<path d="M1024 397.050l-353.78-51.408-158.22-320.582-158.216 320.582-353.784 51.408 256 249.538-60.432 352.352 316.432-166.358 316.432 166.358-60.434-352.352 256.002-249.538zM512 753.498l-223.462 117.48 42.676-248.83-180.786-176.222 249.84-36.304 111.732-226.396 111.736 226.396 249.836 36.304-180.788 176.222 42.678 248.83-223.462-117.48z"></path>
</symbol>
<symbol id="aet_icon-star-full" viewBox="0 0 1024 1024">
<title>star-full</title>
<path d="M1024 397.050l-353.78-51.408-158.22-320.582-158.216 320.582-353.784 51.408 256 249.538-60.432 352.352 316.432-166.358 316.432 166.358-60.434-352.352 256.002-249.538z"></path>
</symbol>-->
<symbol id="aet_icon-cog" viewBox="0 0 1024 1024">
<title>cog</title>
<path d="M933.79 610.25c-53.726-93.054-21.416-212.304 72.152-266.488l-100.626-174.292c-28.75 16.854-62.176 26.518-97.846 26.518-107.536 0-194.708-87.746-194.708-195.99h-201.258c0.266 33.41-8.074 67.282-25.958 98.252-53.724 93.056-173.156 124.702-266.862 70.758l-100.624 174.292c28.97 16.472 54.050 40.588 71.886 71.478 53.638 92.908 21.512 211.92-71.708 266.224l100.626 174.292c28.65-16.696 61.916-26.254 97.4-26.254 107.196 0 194.144 87.192 194.7 194.958h201.254c-0.086-33.074 8.272-66.57 25.966-97.218 53.636-92.906 172.776-124.594 266.414-71.012l100.626-174.29c-28.78-16.466-53.692-40.498-71.434-71.228zM512 719.332c-114.508 0-207.336-92.824-207.336-207.334 0-114.508 92.826-207.334 207.336-207.334 114.508 0 207.332 92.826 207.332 207.334-0.002 114.51-92.824 207.334-207.332 207.334z"></path>
</symbol>
<g id="aet_icon-invader-1">
<g sketch:type="MSArtboardGroup" transform="translate(-72.000000, -60.000000)" >
<g sketch:type="MSLayerGroup" transform="translate(75.000000, 66.000000)">
<g sketch:type="MSShapeGroup">
<g>
<path d="M25.573779,9.34938095 L23.8208043,9.34938095 C23.6616486,9.34938095 23.3962319,9.3397619 23.3962319,9.17890476 L23.3962319,7.39009524 C23.3962319,7.2292381 23.4036739,7.01795238 23.2445181,7.01795238 L21.4835362,7.01795238 C21.3240978,7.01795238 21.0900507,6.96809524 21.0900507,6.8072381 L21.0900507,5.02804762 C21.0900507,4.86690476 21.0664058,4.68652381 20.90725,4.68652381 L19.1512609,4.68652381 C18.9921051,4.68652381 18.7840109,4.60547619 18.7840109,4.44461905 L18.7840109,2.65671429 C18.7840109,2.49585714 18.6946123,2.3667619 18.5355507,2.36819048 C17.9603949,2.37285714 17.37125,2.37342857 16.774192,2.37342857 C16.6151304,2.37342857 16.4781594,2.504 16.4781594,2.66485714 L16.4781594,4.43704762 C16.4778768,4.59847619 16.4046341,4.68652381 16.2452428,4.68652381 L9.77816667,4.68652381 C9.61905797,4.68652381 9.55966304,4.59847619 9.55966304,4.43761905 L9.55966304,2.66371429 C9.55966304,2.50285714 9.39593841,2.37228571 9.23682971,2.37228571 C8.64561232,2.37228571 8.09071014,2.37171429 7.52139493,2.36704762 C7.36167391,2.36590476 7.25357609,2.495 7.25357609,2.65585714 L7.25357609,4.46038095 C7.25357609,4.62157143 7.04859058,4.68657143 6.88919928,4.68657143 L5.1187029,4.68657143 C4.9595942,4.68657143 4.94748913,4.88209524 4.94748913,5.04295238 L4.94748913,6.82447619 C4.94748913,6.98561905 4.70128986,7.018 4.54218116,7.018 L2.77776087,7.018 C2.61865217,7.018 2.3531413,7.24619048 2.3531413,7.40733333 L2.3531413,9.19114286 C2.3531413,9.352 2.36034783,9.34938095 2.20123913,9.34938095 L0.463902174,9.34938095 C0.304793478,9.34938095 0.0470543478,9.61280952 0.0470543478,9.77366667 L0.0470543478,16.2369524 C0.0470543478,16.3981429 0.304746377,16.6350476 0.463902174,16.6350476 L2.2003913,16.6350476 C2.3595,16.6350476 2.35318841,16.3975238 2.35318841,16.2366667 L2.35318841,12.1231429 C2.35318841,11.9619524 2.61780435,11.9721905 2.77696014,11.9721905 L4.55894928,11.9721905 C4.71805797,11.9721905 4.94753623,11.9622857 4.94753623,12.1231429 L4.94753623,16.2629048 C4.94753623,16.4237619 5.02619565,16.5540476 5.18563406,16.5540476 C5.77713406,16.5540476 6.37442754,16.5549048 6.94402536,16.5592381 C7.10313406,16.5607143 7.25362319,16.431619 7.25362319,16.2707143 L7.25362319,14.4933333 C7.25362319,14.3324286 7.28937319,14.303619 7.44876449,14.303619 L18.5903297,14.303619 C18.7494855,14.303619 18.8785435,14.3834762 18.8785435,14.5443333 C18.8785435,15.142381 18.8776957,15.745619 18.8731268,16.3279048 C18.8719493,16.4890476 18.9993587,16.6350476 19.1585145,16.6350476 L20.9140326,16.6350476 C21.0728116,16.6350476 21.0900978,16.4222857 21.0900978,16.2614286 L21.0900978,12.1272381 C21.0900978,11.9663333 21.3311159,11.9721905 21.4904601,11.9721905 L23.282058,11.9721905 C23.4411196,11.9721905 23.6844457,11.9663333 23.6844457,12.1272381 L23.6844457,16.2366667 C23.6844457,16.3975238 23.6997065,16.6350476 23.8588623,16.6350476 L25.5733551,16.6350476 C25.7325109,16.6350476 25.9905326,16.3978571 25.9905326,16.2369524 L25.9905326,9.76171429 C25.9906268,9.60061905 25.7328406,9.34938095 25.573779,9.34938095 L25.573779,9.34938095 Z M9.55971014,9.16547619 C9.55971014,9.32638095 9.37926449,9.34938095 9.2201558,9.34938095 L7.45917391,9.34938095 C7.29978261,9.34938095 7.25367029,9.32661905 7.25367029,9.16580952 L7.25367029,7.38838095 C7.25367029,7.22752381 7.30006522,7.018 7.45950362,7.018 L9.21992029,7.018 C9.37902899,7.018 9.55975725,7.22752381 9.55975725,7.38871429 C9.55971014,7.98114286 9.55971014,8.56895238 9.55971014,9.16547619 L9.55971014,9.16547619 Z M18.7841051,9.17019048 C18.7841051,9.33104762 18.7359203,9.34942857 18.5768587,9.34942857 L16.8190326,9.34942857 C16.6595942,9.34942857 16.4780181,9.33104762 16.4780181,9.16985714 L16.4780181,7.39157143 C16.4780181,7.231 16.6598768,7.01795238 16.8190326,7.01795238 L18.5768587,7.01795238 C18.7359203,7.01795238 18.7841051,7.23066667 18.7841051,7.39157143 L18.7841051,9.17019048 L18.7841051,9.17019048 Z"></path>
<path d="M11.5559167,16.5748095 C11.1221123,16.5750952 10.6845399,16.5756667 10.2578949,16.5744762 C9.32505072,16.5715714 8.38678986,16.5675238 7.45399275,16.5636667 C7.29488406,16.5630952 7.16427174,16.6930952 7.16573188,16.8542857 C7.17034783,17.4370952 7.1695,18.0578571 7.16973551,18.641 C7.16973551,18.8018571 7.29742754,18.9668095 7.45658333,18.9668095 L11.5340145,18.9668095 C11.6931232,18.9665238 11.8657971,18.766619 11.8657971,18.6057619 L11.8657971,16.8665238 C11.8657971,16.7053333 11.7150254,16.5744762 11.5559167,16.5748095 L11.5559167,16.5748095 Z"></path>
<path d="M18.6915507,16.568381 C18.6468514,16.5718571 18.6226413,16.6042381 18.5770942,16.6042381 C17.2046051,16.6050952 15.8538768,16.6350952 14.4814819,16.6350952 L14.3508696,16.6350952 C14.2788514,16.6350952 14.1719312,16.7050476 14.1719312,16.8659048 L14.1719312,18.6095238 C14.1719312,18.770381 14.3495036,18.9665238 14.5088949,18.9665238 L18.5825109,18.9665238 C18.7416667,18.9665238 18.784058,18.7700952 18.784058,18.6092381 L18.784058,16.8443333 C18.7841051,16.6834762 18.7668188,16.5625238 18.6915507,16.568381 L18.6915507,16.568381 Z"></path>
<path d="M5.14413768,2.35514286 L6.88957609,2.35514286 C7.04868478,2.35514286 7.1760942,2.2292381 7.17496377,2.06838095 C7.17034783,1.48552381 7.16978261,0.898857143 7.1695,0.315714286 C7.1695,0.154857143 7.04034783,0.024 6.88095652,0.024 L5.14418478,0.024 C4.98507609,0.0237142857 4.94758333,0.15952381 4.94758333,0.320666667 L4.94758333,2.07333333 C4.94753623,2.23414286 4.98498188,2.35514286 5.14413768,2.35514286 L5.14413768,2.35514286 Z"></path>
<path d="M19.1158406,2.37085714 C19.6923623,2.36619048 20.2487717,2.36561905 20.8255761,2.36533333 C20.9849203,2.36533333 21.0901449,2.23447619 21.0901449,2.07361905 L21.0901449,0.317190476 C21.0901449,0.156333333 21.0515217,0.0237142857 20.8924601,0.0237142857 L19.1593623,0.0237142857 C19.0003007,0.0237142857 18.7841051,0.156857143 18.7841051,0.317761905 L18.7841051,2.08261905 C18.7841051,2.24347619 18.9566848,2.37228571 19.1158406,2.37085714 L19.1158406,2.37085714 Z"></path>
</g>
</g>
</g>
</g>
</g>
<g id="aet_icon-invader-2">
<g transform="translate(-568.000000, -370.000000)" >
<g transform="translate(571.000000, 377.000000)">
<g>
<g>
<path d="M21.4045772,15.7274667 L21.4045772,15.7366667 L21.4167772,15.7274667 L21.4045772,15.7274667 L21.4045772,15.7274667 Z"></path>
<path d="M21.4162214,15.7277989 C21.4168214,15.7270989 21.4046214,15.7362989 21.4046214,15.7362989 L21.4162214,15.7362989 L21.4162214,15.7277989 L21.4162214,15.7277989 Z"></path>
<path d="M4.61294737,15.7274667 L4.62514737,15.7366667 L4.62514737,15.7274667 L4.61294737,15.7274667 L4.61294737,15.7274667 Z"></path>
<path d="M21.3861698,0.0355555556 L18.9547946,0.0355555556 L18.9547946,2.21155556 L21.3861698,2.21155556 L21.3861698,0.0355555556 L21.3861698,0.0355555556 Z"></path>
<path d="M23.5473922,6.83551111 L21.3861698,6.83551111 L21.3861698,4.38751111 L18.9547946,4.38751111 L18.9547946,2.21151111 L16.5234635,2.21151111 L16.5234635,4.38751111 L13.0114329,4.38751111 L9.49944652,4.38751111 L9.49944652,2.21151111 L7.06807131,2.21151111 L7.06807131,4.38751111 L4.6366961,4.38751111 L4.6366961,6.83551111 L2.47547368,6.83551111 L2.47547368,2.21151111 L0.044098472,2.21151111 L0.044098472,11.1875111 L2.20532088,11.1875111 L2.20532088,13.6355111 L4.6366961,13.6355111 L4.6366961,15.7418667 C4.0213039,15.7505778 3.4380034,15.7497778 2.82234635,15.7581778 C2.69186078,15.7598222 2.47547368,15.7584889 2.47547368,15.7584889 L2.47547368,17.9875111 L4.61369779,17.9875111 C4.61369779,17.1973778 4.64397963,16.5254667 4.64587776,15.8115111 L4.64614261,15.8115111 L7.06807131,15.8115111 L7.06807131,13.6355111 L13.0114329,13.6355111 L18.9547946,13.6355111 L18.9547946,15.8115111 L21.3767233,15.8115111 L21.3772971,15.8115111 C21.3788862,16.5254667 21.4094329,17.1973778 21.4094329,17.9875111 L23.5474363,17.9875111 L23.5474363,15.7584889 C23.5474363,15.7584889 23.3310934,15.7598222 23.2006078,15.7581778 C22.5849508,15.75 22.0016503,15.7508444 21.3862139,15.7418667 L21.3862139,13.6355111 L23.8175891,13.6355111 L23.8175891,11.1875111 L25.9788115,11.1875111 L25.9788115,2.21151111 L23.5474363,2.21151111 C23.5473922,3.84351111 23.5473922,5.20355556 23.5473922,6.83551111 L23.5473922,6.83551111 Z M9.49949066,9.01155556 L9.49949066,10.3715556 L7.06811545,10.3715556 L7.06811545,9.01155556 L7.06811545,8.19555556 L9.49949066,8.19555556 L9.49949066,9.01155556 L9.49949066,9.01155556 Z M18.9547946,9.01155556 L18.9547946,10.3715556 L16.5234635,10.3715556 L16.5234635,9.01155556 L16.5234635,8.19555556 L18.9547946,8.19555556 L18.9547946,9.01155556 L18.9547946,9.01155556 Z"></path>
<path d="M4.63674024,0.0355555556 L4.63674024,2.21155556 L7.06811545,2.21155556 L7.06811545,0.0355555556 C6.25765705,0.0355555556 5.44719864,0.0355555556 4.63674024,0.0355555556 L4.63674024,0.0355555556 Z"></path>
<path d="M4.61322419,15.7366601 L4.62482419,15.7366601 C4.62482419,15.7366601 4.61262419,15.7274601 4.61322419,15.7280601 L4.61322419,15.7366601 L4.61322419,15.7366601 Z"></path>
</g>
</g>
</g>
</g>
</g>
<g id="aet_icon-apple">
<g transform="translate(-258.000000, -60.000000)" >
<g transform="translate(263.000000, 62.000000)">
<path d="M11.616,7.95419608 C12.09945,7.14823529 12.8645,5.9947451 13.83085,4.88792157 L13.83195,4.88792157 C14.65035,3.94854902 16.25305,2.74290196 16.25305,2.74290196 C16.49395,2.56117647 16.4681,2.30807843 16.1942,2.18070588 L14.2571,1.27701961 C13.9832,1.14909804 13.61085,1.24243137 13.42935,1.48345098 C13.42935,1.48345098 11.9966,3.53513725 10.3103,7.90258824 C5.0963,5.54839216 0.14025,8.84580392 0.14025,14.5797647 C0.14025,20.5690196 4.7564,29.6668235 10.9989,26.9206275 C17.5736,29.7607059 21.86085,20.5695686 21.86085,14.5797647 C21.86085,8.79639216 17.40585,5.40564706 11.616,7.95419608 L11.616,7.95419608 Z M10.44835,6.0145098 C10.74975,5.9892549 11.01595,5.72298039 11.04015,5.42266667 C11.04015,5.42266667 11.23375,3.08054902 9.5986,1.44666667 C7.9585,-0.187764706 5.6166,0.0071372549 5.6166,0.0071372549 C5.3152,0.0323921569 5.049,0.298666667 5.02425,0.598980392 C5.02425,0.598980392 4.82735,2.94219608 6.4647,4.57662745 C8.10095,6.20941176 10.44835,6.0145098 10.44835,6.0145098 L10.44835,6.0145098 Z" sketch:type="MSShapeGroup"></path>
</g>
</g>
</g>
<g id="aet_icon-alien">
<g transform="translate(-134.000000, -60.000000)" >
<g transform="translate(140.000000, 63.000000)">
<path d="M0.0248347107,10.0610654 C0.0248347107,16.7494379 5.32173554,26 10.0000413,26 C14.4042149,26 19.9752066,16.7494379 19.9752066,10.0610654 C19.9752066,3.37269281 15.5091736,0 10,0 C4.49082645,0 0.0248347107,3.37269281 0.0248347107,10.0610654 L0.0248347107,10.0610654 Z M12.5917769,15.0068007 C13.8097521,13.7545948 15.5090496,13.2991699 17.0773967,13.6399739 C17.408843,15.2523987 16.9659091,16.9994542 15.7479339,18.2516601 C14.5299587,19.503866 12.8306612,19.9592908 11.262314,19.6184869 C10.9308264,18.0060196 11.3738017,16.2589641 12.5917769,15.0068007 L12.5917769,15.0068007 Z M2.92260331,13.6399314 C4.49095041,13.2991699 6.19024793,13.7545523 7.40822314,15.0067582 C8.62619835,16.2589641 9.06917355,18.0060196 8.73768595,19.6184444 C7.16933884,19.9592059 5.47004132,19.5038235 4.25206612,18.2516176 C3.03409091,16.9993693 2.59115702,15.2523562 2.92260331,13.6399314 L2.92260331,13.6399314 Z" sketch:type="MSShapeGroup"></path>
</g>
</g>
</g>
<g id="aet_icon-anchor">
<g transform="translate(-196.000000, -60.000000)">
<g transform="translate(199.000000, 63.000000)">
<path d="M17.6949659,16.3096098 L19.8300098,18.3814927 C19.8300098,18.3814927 17.2117463,22.1707707 14.4112293,22.246361 C14.4719805,22.246361 14.4260683,11.5810341 14.4161756,8.99625366 C16.2798049,8.38785366 17.6378927,6.6902439 17.6378927,4.66921951 C17.6378927,2.13149268 15.5202244,0.0757170732 12.9105854,0.0757170732 C10.296,0.0757170732 8.17833171,2.13149268 8.17833171,4.66795122 C8.17833171,6.65549268 9.4943122,8.33699512 11.3171024,8.9752 L11.3295317,22.2005756 C7.95041951,21.9675902 5.99496585,18.7160683 5.99496585,18.7160683 L8.2775122,16.5079707 L0,15.283561 L1.25396098,23.3119805 L3.45597073,21.1818829 C5.36297561,22.7171512 7.51666341,25.9055122 12.6987805,25.9055122 C19.2091805,25.7394927 20.712361,22.2352 22.3814341,20.8572 L24.7903024,23.2053171 L25.9811024,15.100039 L17.6949659,16.3096098 L17.6949659,16.3096098 L17.6949659,16.3096098 Z M10.4707707,4.59223415 C10.4707707,3.28614634 11.5625171,2.22547317 12.9081756,2.22547317 C14.2538341,2.22547317 15.3505268,3.28614634 15.3505268,4.59223415 C15.3505268,5.902 14.2538341,6.96153171 12.9081756,6.96153171 C11.5625171,6.96153171 10.4707707,5.902 10.4707707,4.59223415 L10.4707707,4.59223415 L10.4707707,4.59223415 Z" sketch:type="MSShapeGroup"></path>
</g>
</g>
</g>
<g id="aet_icon-ball-1">
<g transform="translate(-320.000000, -60.000000)" >
<g transform="translate(323.000000, 63.000000)">
<path d="M14.0538241,2.09951329 C14.3477996,1.70988548 14.3005317,0.883468303 14.2586871,0.154458078 C14.257092,0.123034765 14.2553374,0.0923026585 14.2535828,0.0610920245 C13.8415174,0.0217464213 13.4244008,0 13.0022331,0 C11.384544,0 9.83666667,0.29801636 8.40804908,0.838274029 C9.42715337,1.32802045 11.0046462,2.17097342 12.7580777,3.41647444 C13.3563436,2.9016319 13.8075419,2.42634765 14.0538241,2.09951329 L14.0538241,2.09951329 Z M20.6385235,9.51498978 C19.9979877,9.58735378 19.4577832,9.69247035 18.9957914,9.83991002 C21.2043027,13.6958855 22.0653865,18.567456 22.2760982,22.0967035 C24.4640327,19.8674029 25.8535174,16.8536892 25.9848998,13.5154806 C24.4773252,11.662409 22.4801636,9.30608589 20.6385235,9.51498978 L20.6385235,9.51498978 Z M7.50926789,6.18661759 C9.06102658,5.86371779 10.5188875,5.08270757 11.6812843,4.25831084 C9.25631902,2.58814315 7.23374233,1.72137014 6.83140695,1.55638446 C4.31557464,2.91641309 2.30235583,5.0833456 1.13113292,7.70892025 C2.65348875,7.10235992 4.30222904,6.79376278 5.92161963,6.49308793 C6.44550102,6.39578732 6.98703476,6.29524335 7.50926789,6.18661759 L7.50926789,6.18661759 Z M16.4917096,6.56449489 C16.6302168,6.70369325 16.7683517,6.84528425 16.9055297,6.98953374 C17.4117587,7.52096524 17.871092,8.10221677 18.2923027,8.71717791 C18.9057219,8.48557055 19.6278732,8.32132924 20.4923067,8.22360327 C22.5290798,7.99321881 24.3401472,9.6066544 25.8945644,11.3829489 C25.5612965,8.69016769 24.4063967,6.25302658 22.6855583,4.33099387 C21.7462618,4.44419223 20.6990838,4.63597546 19.6317546,4.95446217 C18.9316155,5.16357873 17.816593,5.73175051 16.4917096,6.56449489 L16.4917096,6.56449489 Z M14.781771,13.2758446 C15.3147975,11.4704663 15.9322045,10.1690307 17.1284172,9.32426994 C16.7694151,8.80889571 16.3830838,8.32521063 15.9645849,7.88581595 C15.7709939,7.68249489 15.5752229,7.48613906 15.3786012,7.29323926 C10.5793415,10.5599346 4.00527607,16.5607239 3.40748875,21.7599796 C5.40294888,23.9432352 8.13385276,25.4404949 11.2081268,25.8652679 C12.3275092,23.6366585 13.3810675,19.1061186 14.0073006,16.411636 C14.3081881,15.1174315 14.5678691,13.9999632 14.781771,13.2758446 L14.781771,13.2758446 Z M9.34022086,10.4129202 C11.0135787,8.87094479 12.780728,7.48821268 14.3970348,6.37691207 C13.8582658,5.9002454 13.3178487,5.46085072 12.7873211,5.0578773 C11.4448384,6.06703885 9.68715337,7.06099387 7.77389366,7.45891616 C7.23810225,7.57041309 6.68944376,7.67233947 6.15902249,7.77080982 C4.11528425,8.15033538 2.1534274,8.51789775 0.503570552,9.43842536 C0.182265849,10.5693988 0.0065398773,11.7617832 0.0065398773,12.9957464 C0.0065398773,15.7561595 0.86991002,18.3137832 2.33744785,20.418454 C3.28817587,16.6541963 6.549182,12.9847935 9.34022086,10.4129202 L9.34022086,10.4129202 Z M15.5164703,5.63466258 C17.0625399,4.64900204 18.3954519,3.96747239 19.2602577,3.70933333 C20.0368548,3.47740695 20.7986708,3.30848671 21.5200777,3.18529243 C19.853047,1.73668303 17.815317,0.704233129 15.5658119,0.254204499 C15.6156851,1.16181186 15.6374315,2.15826585 15.0914315,2.88222495 C14.8320164,3.22602045 14.3931534,3.69752965 13.8221104,4.20907566 C14.3813497,4.64437628 14.949681,5.11907566 15.5164703,5.63466258 L15.5164703,5.63466258 Z M16.0280164,13.6438323 C15.8251207,14.3312106 15.5691616,15.4316646 15.2730593,16.705771 C14.3987362,20.4677955 13.5621104,23.8340777 12.5850634,25.9808057 C12.7237832,25.9852188 12.8624499,25.9913865 13.0022331,25.9913865 C16.0309407,25.9913865 18.8151738,24.9525031 21.0247485,23.2156074 C20.9374969,19.5223845 20.0521145,14.2985112 17.82191,10.420683 C16.9569448,11.0635583 16.4913906,12.0748998 16.0280164,13.6438323 L16.0280164,13.6438323 Z" sketch:type="MSShapeGroup"></path>
</g>
</g>
</g>
<g id="aet_icon-ball-2">
<g transform="translate(-320.000000, -494.000000)" >
<g transform="translate(323.000000, 497.000000)">
<g>
<g>
<path d="M11.760878,0.050097561 C8.85712195,0.320878049 6.0224878,1.57078049 3.79473171,3.79726829 C1.56697561,6.02312195 0.318341463,8.8577561 0.048195122,11.7653171 C3.23668293,12.1350244 6.62682927,13.7647805 9.41009756,16.5480488 C12.1946341,19.3319512 13.8262927,22.7246341 14.1928293,25.9105854 C17.1048293,25.640439 19.9324878,24.3911707 22.1621463,22.1659512 C24.3892683,19.9407317 25.6366341,17.1048293 25.9055122,14.1979024 C22.7246341,13.8288293 19.3287805,12.1990732 16.5455122,9.41517073 C13.7641463,6.63190244 12.1324878,3.23858537 11.760878,0.050097561 L11.760878,0.050097561 Z" id="aet_Shape"></path>
<path d="M25.9575122,12.5878049 C25.8630244,9.39487805 24.5998049,6.2317561 22.1659512,3.79473171 C19.7308293,1.35770732 16.5639024,0.0989268293 13.3709756,0 C13.7299024,2.78834146 15.2106341,5.78468293 17.6926829,8.26736585 C20.1747317,10.7500488 23.1672683,12.2282439 25.9575122,12.5878049 L25.9575122,12.5878049 Z"></path>
<path d="M0.000634146341,13.3741463 C0.0944878049,16.5658049 1.35834146,19.729561 3.79473171,22.1653171 C6.22921951,24.5998049 9.39234146,25.8649268 12.5846341,25.9575122 C12.2257073,23.1729756 10.746878,20.1785366 8.26356098,17.6958537 C5.78278049,15.214439 2.78707317,13.7356098 0.000634146341,13.3741463 L0.000634146341,13.3741463 Z"></path>
</g>
</g>
</g>
</g>
</g>
<g id="aet_icon-bell">
<g transform="translate(-382.000000, -60.000000)" >
<g transform="translate(387.000000, 63.000000)">
<path d="M11.0131673,25.9432194 C9.29495911,25.9432194 7.86945725,24.6360903 7.63187361,22.9405548 L14.394052,22.9405548 C14.1568773,24.6360065 12.7314572,25.9432194 11.0131673,25.9432194 L11.0131673,25.9432194 Z M21.9931301,21.9396387 L14.917145,21.9396387 L7.10918959,21.9396387 L0.033204461,21.9396387 L0.033204461,19.7581548 C2.73765056,19.1465677 4.79117472,13.4910645 4.79117472,6.38073548 C4.79125651,2.86251613 7.58255762,0 11.0131673,0 C14.443777,0 17.2351599,2.86251613 17.2351599,6.38073548 C17.2351599,13.4910645 19.288684,19.1471548 21.9931301,19.7581548 L21.9931301,21.9396387 L21.9931301,21.9396387 Z" sketch:type="MSShapeGroup"></path>
</g>
</g>
</g>
<g id="aet_icon-bookmark">
<g transform="translate(-444.000000, -60.000000)" >
<g transform="translate(452.000000, 63.000000)">
<path d="M0.663262411,25.8968235 L0.663262411,3.30152941 L0.00703546099,3.30152941 L0.00703546099,0 L15.8935603,0 L15.8935603,3.30152941 L15.2373333,3.30152941 L15.2373333,25.8969412 L7.95029787,20.2691765 L0.663262411,25.8968235 L0.663262411,25.8968235 Z" sketch:type="MSShapeGroup"></path>
</g>
</g>
</g>
<g id="aet_icon-cat-1">
<g transform="translate(-506.000000, -60.000000)" >
<g transform="translate(510.000000, 66.000000)">
<path d="M5.90163934,19.635 C7.67213115,20.5054595 9.65901639,20.9593243 11.6459016,20.9971622 L11.9606557,20.9971622 C13.9672131,20.9971622 15.9540984,20.5809459 17.7639344,19.7485135 C19.4161967,18.9917568 20.9114754,17.8566216 22.0133115,16.4377027 C23.2721311,14.8104865 23.9213115,12.862027 23.9213115,10.8375135 L23.9213115,6.99697297 L23.9213115,2.81589189 L23.9213115,1.35913514 C23.9213115,0.469945946 22.996918,-0.116540541 22.1508197,0.205081081 L17.6655738,2.00237838 C17.3704918,2.11589189 17.0360656,2.13481081 16.7409836,2.0212973 C15.2852459,1.47264865 13.6721311,1.18886486 11.9606557,1.18886486 C10.2491803,1.18886486 8.63606557,1.49156757 7.18032787,2.0212973 C6.8852459,2.13481081 6.55081967,2.11589189 6.2557377,2.00237838 L1.7704918,0.262027027 C0.924590164,-0.0785135135 0,0.526891892 0,1.41608108 L0,3.42148649 L0,7.58364865 L0,11.0836486 C0,12.9566216 0.629508197,14.7728378 1.75081967,16.2863514 C2.81311475,17.7052703 4.26885246,18.8404054 5.90163934,19.635 L5.90163934,19.635 L5.90163934,19.635 Z M16.3278689,10.8755405 C17.4098361,10.8755405 18.295082,11.7268919 18.295082,12.7674324 C18.295082,13.807973 17.4098361,14.6593243 16.3278689,14.6593243 C15.2459016,14.6593243 14.3606557,13.807973 14.3606557,12.7674324 C14.3606557,11.7081622 15.2459016,10.8755405 16.3278689,10.8755405 L16.3278689,10.8755405 L16.3278689,10.8755405 Z M7.59344262,10.8755405 C8.67540984,10.8755405 9.56065574,11.7268919 9.56065574,12.7674324 C9.56065574,13.807973 8.67540984,14.6593243 7.59344262,14.6593243 C6.51147541,14.6593243 5.62622951,13.807973 5.62622951,12.7674324 C5.62622951,11.7081622 6.51147541,10.8755405 7.59344262,10.8755405 L7.59344262,10.8755405 L7.59344262,10.8755405 Z" sketch:type="MSShapeGroup"></path>
</g>
</g>
</g>
<g id="aet_icon-cat-2">
<g transform="translate(-382.000000, -308.000000)" >
<g transform="translate(387.000000, 311.000000)">
<g>
<g>
<path d="M13.3404663,10.1699565 C13.7517303,10.1699565 14.0848202,10.5085845 14.0848202,10.926343 C14.0848202,11.3439758 13.7517303,11.6824783 13.3404663,11.6824783 C12.929573,11.6824783 12.5961742,11.3440386 12.5961742,10.926343 C12.5961742,10.5085217 12.9295112,10.1699565 13.3404663,10.1699565 L13.3404663,10.1699565 Z"></path>
<path d="M21.1366236,21.3301111 C20.6188202,20.3401643 20.032236,19.2178309 20.032236,17.4566135 C20.032236,14.5100725 21.6404607,13.4734638 21.7059663,13.4327681 C21.9438876,13.2897053 22.0220618,12.9777053 21.8812865,12.7359179 C21.7402022,12.4936908 21.432882,12.4143092 21.1952697,12.557372 C21.1069607,12.6107536 19.0310506,13.9007053 19.0310506,17.4566135 C19.0310506,19.4714879 19.7082303,20.7667778 20.2521742,21.807657 C20.6422416,22.5528019 20.9498708,23.1419469 20.9498708,23.8153092 C20.9498708,24.2978164 20.8465449,24.6461787 20.6513876,24.8240338 C20.4525843,25.0048406 20.1928483,24.9780242 20.1879663,24.9780242 C20.1641742,24.9743816 20.139764,24.9727488 20.1156011,24.9727488 L18.2731011,24.9727488 C18.4875393,24.6316087 18.6139775,24.2282319 18.6139775,23.7940193 L18.6139775,0.860574879 C18.6139775,0.632227053 18.4640562,0.431826087 18.2473315,0.370405797 C18.0312865,0.308483092 17.8008427,0.401995169 17.6845393,0.597434783 L15.2396966,4.71001932 C14.4895337,4.69551208 12.2852079,4.67805314 5.68650562,4.67805314 C4.28536517,4.67805314 3.59187079,4.67905797 3.24153933,4.68157005 L0.989320225,0.274507246 C0.882780899,0.0661932367 0.648938202,-0.0412608696 0.426404494,0.0146956522 C0.202016854,0.0703381643 0.044247191,0.274507246 0.044247191,0.508821256 L0.044247191,23.7933913 C0.044247191,25.0042126 1.01329775,25.9895121 2.20506742,25.9895121 L9.85426966,25.9895121 L16.4532809,25.9895121 L20.0882247,25.9895121 C20.1211011,25.9924638 20.1676966,25.9954783 20.2257247,25.9954783 C20.4705056,25.9954783 20.9107528,25.9401498 21.2985337,25.6000145 C21.7313034,25.2198116 21.9509944,24.6194251 21.9509944,23.8146184 C21.9510562,22.8882899 21.555736,22.1312126 21.1366236,21.3301111 L21.1366236,21.3301111 Z M5.31714045,12.6998068 C4.35482584,12.6998068 3.57184831,11.9042947 3.57184831,10.926343 C3.57184831,9.9482029 4.35513483,9.15256522 5.31714045,9.15256522 C6.27933146,9.15256522 7.06243258,9.9482029 7.06243258,10.926343 C7.06243258,11.9042947 6.27964045,12.6998068 5.31714045,12.6998068 L5.31714045,12.6998068 Z M10.2049101,14.74357 L9.83523596,14.74357 L9.79482022,15.4502802 C9.77949438,15.7205797 9.5588764,15.9295217 9.29555618,15.9295217 C9.28591573,15.9295217 9.27602809,15.9292077 9.26620225,15.9288309 C8.99033708,15.9122512 8.77935955,15.6715314 8.79579775,15.3916232 L8.83281461,14.7438841 L8.45300562,14.7438841 C8.17676966,14.7438841 7.95238202,14.5163527 7.95238202,14.2351884 C7.95238202,13.9539614 8.17676966,13.72643 8.45300562,13.72643 L10.2049719,13.72643 C10.4813315,13.72643 10.7055337,13.9539614 10.7055337,14.2351884 C10.7054719,14.5163527 10.4812697,14.74357 10.2049101,14.74357 L10.2049101,14.74357 Z M13.3404663,12.6998068 C12.3781517,12.6998068 11.5950506,11.9042947 11.5950506,10.926343 C11.5950506,9.9482029 12.3784607,9.15256522 13.3404663,9.15256522 C14.3031517,9.15256522 15.0865618,9.9482029 15.0865618,10.926343 C15.0865,11.9042947 14.3031517,12.6998068 13.3404663,12.6998068 L13.3404663,12.6998068 Z"></path>
<ellipse cx="5.31714045" cy="10.9261546" rx="0.744168539" ry="0.75626087"></ellipse>
</g>
</g>
</g>
</g>
</g>
<g id="aet_icon-check">
<g transform="translate(-568.000000, -60.000000)" >
<g transform="translate(571.000000, 63.000000)">
<path d="M24.2551362,6.4993971 L21.2386841,4.75777391 L19.497513,1.74177391 L16.0147942,1.74177391 L12.998342,0.000150724638 L9.98188986,1.74177391 L6.49917101,1.74177391 L4.75754783,4.75822609 L1.74162319,6.4993971 L1.74162319,9.98211594 L0,12.9985681 L1.74162319,16.0150203 L1.74162319,19.4977391 L4.75807536,21.2393623 L6.49969855,24.2558145 L9.98241739,24.2558145 L12.9984174,25.9969855 L16.0148696,24.2553623 L19.4975884,24.2553623 L21.2392116,21.2389101 L24.2556638,19.497287 L24.2556638,16.0145681 L25.997287,12.9981159 L24.2556638,9.98166377 L24.2556638,6.4993971 L24.2551362,6.4993971 L24.2551362,6.4993971 L24.2551362,6.4993971 Z M11.8251768,18.3186957 C11.5828116,18.5610609 11.2635014,18.6788522 10.9456232,18.6744058 C10.6276696,18.6789275 10.3084348,18.5610609 10.0660696,18.3186957 L6.26449275,14.5171188 C5.78827826,14.0409043 5.78827826,13.2683652 6.26449275,12.7921507 L7.27088116,11.7857623 C7.74709565,11.3095478 8.51963478,11.3095478 8.99584928,11.7857623 L10.9456232,13.7355362 L17.0005333,7.68017391 C17.4767478,7.20395942 18.249287,7.20395942 18.7255014,7.68017391 L19.7318899,8.68656232 C20.2081043,9.16277681 20.2081043,9.93531594 19.7318899,10.4115304 L11.8251768,18.3186957 L11.8251768,18.3186957 L11.8251768,18.3186957 Z" sketch:type="MSShapeGroup"></path>
</g>
</g>