-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
3129 lines (2756 loc) · 390 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 class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rugged Programming</title>
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<!-- build:css styles/vendor.css -->
<!-- bower:css -->
<!-- <link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.css" /> -->
<!-- endbower -->
<!-- endbuild -->
<!-- build:css styles/main.css -->
<link rel="stylesheet" href="styles/main.css">
<!-- endbuild -->
<!-- build:js scripts/vendor/modernizr.js -->
<script type="text/javascript" src="scripts/jquery-3.1.0.min.js"></script>
<script type="text/javascript" src="scripts/modernizr.js"></script>
<script type="text/javascript" src="scripts/jquery.drawsvg.min.js"></script>
<!-- build:js scripts/vendor.js -->
<!-- bower:js -->
<!-- mustache:js -->
<!-- scripts/ -->
<script type="text/javascript" src="scripts/mustache.min.js"></script>
<!-- scrollmagic -->
<script type="text/javascript" src="scripts/ScrollMagic.min.js"></script>
<script type="text/javascript" src="scripts/debug.addIndicators.min.js"></script>
<script type="text/javascript" src="scripts/animation.gsap.min.js"></script>
<!-- gsap -->
<script type="text/javascript" src="scripts/TweenMax.min.js"></script>
<script type="text/javascript" src="scripts/BezierPlugin.min.js"></script>
<script type="text/javascript" src="scripts/jquery.gsap.min.js"></script>
<script type="text/javascript" src="scripts/TimelineMax.min.js"></script>
<!-- drawing svgs: -->
<!-- endbuild -->
<!-- build:js scripts/plugins.js -->
<script type="text/javascript" src="scripts/bootstrap/js/affix.js"></script>
<script type="text/javascript" src="scripts/bootstrap/js/alert.js"></script>
<script type="text/javascript" src="scripts/bootstrap/js/dropdown.js"></script>
<script type="text/javascript" src="scripts/bootstrap/js/tooltip.js"></script>
<script type="text/javascript" src="scripts/bootstrap/js/modal.js"></script>
<script type="text/javascript" src="scripts/bootstrap/js/transition.js"></script>
<script type="text/javascript" src="scripts/bootstrap/js/button.js"></script>
<script type="text/javascript" src="scripts/bootstrap/js/popover.js"></script>
<script type="text/javascript" src="scripts/bootstrap/js/carousel.js"></script>
<script type="text/javascript" src="scripts/bootstrap/js/scrollspy.js"></script>
<script type="text/javascript" src="scripts/bootstrap/js/collapse.js"></script>
<script type="text/javascript" src="scripts/bootstrap/js/tab.js"></script>
<!-- endbuild -->
<!-- build:js scripts/main.js -->
<!-- endbuild -->
<script type="text/javascript" src="scripts/main.js"></script>
<!-- endbuild -->
<!-- <script>
$(function(){
$("#Resume-svg").load("Resume.html");
});
</script> -->
</head>
<body>
<!--[if lt IE 10]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="page-view">
<!-- <div id="navigation">
</div> -->
<div class="container-nav" id="progress-bar">
</div>
<div class="container-content">
<div id="nav-bar">
<div class="nav-bar-button">
<button type="button" id="home-tag">Home</button>
<button type="button" id="about-tag">About Me</button>
<button type="button" id="portfolio-tag">Portfolio</button>
<button type="button" id="resume-tag">Resume</button>
<button type="button" id="contact-tag">Contact</button>
</div>
</div>
<div id="home">
<div class="svg-Container">
<!-- <div id=owlSVG>
</div> -->
<svg version="1.1" id="cover1-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="564.4px" height="463.4px" viewBox="0 0 564.4 463.4" style="enable-background:new 0 0 564.4 463.4;" xml:space="preserve">
<font horiz-adv-x="1000">
<!-- (C) 2012, font by Santino Calvo. -->
<!-- Copyright: Copyright 2016 Adobe System Incorporated. All rights reserved. -->
<font-face font-family="Regina" units-per-em="1000" underline-position="-75" underline-thickness="50"/>
<missing-glyph horiz-adv-x="300"/>
<glyph unicode=" " horiz-adv-x="300"/>
<glyph unicode="0" horiz-adv-x="701" d="M645,330C645,285 637,242 622,202C606,162 585,127 558,97C531,67 500,43 464,26C427,9 389,0 348,0C313,0 279,7 248,20C216,33 187,50 162,73l-40,-67C119,1 114,-2 108,-2C106,-2 103,-1 99,0C96,3 93,6 92,11C91,15 91,19 94,22l45,74C112,126 90,161 75,201C60,241 52,284 52,330C52,333 53,337 55,340C56,340 56,340 56,341l1,1C60,345 63,346 68,346C71,346 75,345 78,343C78,342 78,342 79,342C79,342 79,342 79,341C79,341 80,340 81,339l0,-1C82,337 83,335 83,333C84,332 84,331 84,330C84,290 91,253 104,218C117,183 134,152 157,125l360,593C494,739 468,756 440,768C411,780 381,786 349,786C314,786 280,779 249,764C218,749 190,729 166,704C142,679 123,649 109,615C94,580 86,543 84,504C107,500 126,489 141,472C156,454 164,433 164,409C164,405 163,401 160,398C157,395 153,393 148,393C143,393 140,395 137,398C134,401 132,405 132,409C132,427 126,442 113,455C100,468 85,474 68,474C57,474 52,479 52,490C52,535 60,578 76,618C91,657 112,692 139,722C166,751 197,775 233,792C269,809 308,818 349,818C384,818 418,812 449,799C480,786 509,769 534,746l41,69C581,824 589,826 598,820C601,818 604,815 605,811C606,806 606,802 603,798l-46,-75C585,693 607,658 622,619C637,579 645,536 645,490M348,32C385,32 419,40 451,56C483,71 511,93 535,120C559,147 578,178 592,214C606,250 613,289 613,330l0,160C613,530 607,567 594,602C581,637 563,667 540,694l-361,-593C202,80 228,63 257,51C286,38 316,32 348,32z"/>
<glyph unicode="1" horiz-adv-x="553" d="M531,33C542,33 547,28 547,17C547,6 542,1 531,1l-401,-1C103,0 81,9 62,28C43,47 34,69 34,96C34,107 39,112 50,112C61,112 66,107 66,96C66,79 72,64 85,51C98,38 113,32 130,32l144,0l0,738l-213,-211C58,556 54,554 50,555C46,555 42,557 39,560C36,563 34,567 34,571C34,575 36,579 39,582l240,238C285,825 291,826 297,823C303,821 306,816 306,808l0,-776l225,1z"/>
<glyph unicode="2" horiz-adv-x="607" d="M545,111C556,111 561,106 561,95C561,68 552,46 533,27C514,8 492,-1 465,-1l-400,1C58,0 53,3 50,9C49,12 48,16 49,19C49,22 50,24 53,26l474,550C526,606 520,634 508,660C496,686 480,709 460,728C440,747 417,763 390,774C363,785 335,791 305,791C274,791 246,785 219,774C192,762 168,746 148,726C128,706 112,683 101,656C89,629 83,601 83,570C83,559 78,554 67,554C56,554 51,559 51,570C51,605 58,638 71,669C84,700 103,727 126,750C149,773 175,791 206,804C237,817 270,824 305,824C340,824 373,817 404,804C435,791 462,773 485,750C508,727 526,700 539,669C552,638 559,605 559,570l0,-1l0,-2C559,567 559,567 558,566l0,-2C558,564 558,564 557,563l0,-1C556,561 556,561 556,560C555,560 555,560 555,559l-455,-527l365,-1C482,31 497,37 510,50C523,63 529,78 529,95C529,106 534,111 545,111z"/>
<glyph unicode="6" horiz-adv-x="591" d="M307,512C342,512 376,505 407,492C438,479 465,461 488,438C511,415 530,387 543,356C556,325 563,291 563,256C563,221 556,188 543,157C530,126 511,98 488,75C465,52 438,33 407,20C376,7 342,0 307,0C272,0 238,7 207,20C176,33 148,52 125,75C102,98 83,126 70,157C57,188 50,221 50,256C50,337 57,412 70,482C83,551 102,612 125,664C148,715 175,756 206,786C237,815 270,830 306,830l1,0C311,830 315,829 318,826C321,823 323,819 323,814l0,-1C323,796 329,781 342,768C355,755 370,749 387,749C392,749 396,748 399,745C402,742 404,738 404,733C404,728 402,724 399,721C396,718 392,716 387,716C364,716 343,724 325,739C307,754 296,773 292,796C268,792 245,779 224,757C202,735 182,706 165,671C147,635 132,594 119,547C106,500 96,449 90,394C113,430 144,459 182,480C219,501 261,512 307,512M307,33C338,33 367,39 394,51C421,62 444,78 465,99C485,119 501,143 513,170C524,197 530,225 530,256C530,287 524,316 513,343C501,370 485,394 465,415C444,435 421,451 394,463C367,474 338,480 307,480C276,480 247,474 220,463C193,451 169,435 149,415C128,394 112,370 101,343C89,316 83,287 83,256C83,225 89,197 101,170C112,143 128,119 149,99C169,78 193,62 220,51C247,39 276,33 307,33z"/>
<glyph unicode="-" horiz-adv-x="659" d="M418,549C423,549 427,547 430,544C433,541 434,537 434,532C434,505 425,483 406,464C387,445 365,436 338,436l-322,0C5,436 0,441 0,452C0,463 5,468 16,468l322,0C355,468 370,474 383,487C396,500 402,515 402,532C402,537 404,541 407,544C410,547 413,549 418,549z"/>
</font>
<font horiz-adv-x="1000">
<!-- Copyright © Quentin Grébeude, 2014. All rights reserved. -->
<!-- Copyright: Copyright 2016 Adobe System Incorporated. All rights reserved. -->
<font-face font-family="Pirou-Regular" units-per-em="1000" underline-position="-100" underline-thickness="50"/>
<missing-glyph horiz-adv-x="500" d="M0,0l500,0l0,700l-500,0M250,395l-170,255l340,0M280,350l170,255l0,-510M80,50l170,255l170,-255M50,605l170,-255l-170,-255z"/>
<glyph unicode="A" horiz-adv-x="855" d="M741,44l-292,680C445,733 436,739 426,739C415,739 406,733 402,724l-292,-680l-87,0C11,44 1,34 1,22C1,10 11,0 23,0l205,0C240,0 250,10 250,22C250,34 240,44 228,44l-70,0l69,161l236,0l69,-161l-68,0C452,44 442,34 442,22C442,10 452,0 464,0l368,0C844,0 854,10 854,22C854,34 844,44 832,44M369,535l57,132l179,-418l-113,0M444,249l-198,0l99,230M580,44l-69,161l113,0l69,-161z"/>
<glyph unicode="D" horiz-adv-x="800" d="M430,722l-9,0l-369,0C40,722 30,712 30,700C30,688 40,678 52,678l73,0l0,-634l-73,0C40,44 30,34 30,22C30,10 40,0 52,0l367,0l2,0l120,0C641,0 723,82 723,183l0,356C723,640 641,722 541,722M169,44l0,634l104,0l0,-634M317,44l0,634l112,0C487,674 532,626 532,567l0,-412C532,95 485,46 425,44M680,183C680,106 617,44 541,44l-12,0C558,72 576,111 576,155l0,412C576,611 558,650 529,678l12,0C617,678 680,616 680,539z"/>
<glyph unicode="E" horiz-adv-x="734" d="M670,700C670,712 660,722 648,722l-596,0C40,722 30,712 30,700C30,688 40,678 52,678l73,0l0,-634l-73,0C40,44 30,34 30,22C30,10 40,0 52,0l596,0C660,0 670,10 670,22l0,91C670,125 660,135 648,135C636,135 626,125 626,113l0,-69l-309,0l0,217l144,0l0,-69C461,180 471,170 483,170C495,170 505,180 505,192l0,184C505,388 495,398 483,398C471,398 461,388 461,376l0,-71l-144,0l0,373l309,0l0,-69C626,597 636,587 648,587C660,587 670,597 670,609M273,678l0,-373l-104,0l0,373M273,261l0,-217l-104,0l0,217z"/>
<glyph unicode="G" horiz-adv-x="835" d="M592,243C580,243 570,234 570,221C570,209 580,199 592,199l81,0l0,-49C613,82 528,44 437,44C384,44 333,57 287,82l0,442C286,608 354,676 436,677l1,0C528,677 613,638 673,571l0,-70C673,489 683,479 695,479C708,479 717,489 717,501l0,199C717,713 708,722 695,722C683,722 673,713 673,700l0,-67C608,689 525,721 437,721C388,721 341,711 297,693C254,674 216,648 183,615C149,582 123,544 105,501C87,456 77,409 77,360C77,312 87,265 105,220C123,177 149,139 183,106C216,72 254,46 297,28C342,10 389,0 437,0C525,0 608,32 673,88l0,-66C673,10 683,0 695,0C708,0 717,10 717,22l0,177l74,0C804,199 813,209 813,221C813,234 804,243 791,243M242,111C233,119 223,127 214,137C154,196 121,276 121,360C121,445 154,524 214,584C232,602 252,618 273,631C253,600 242,564 242,524z"/>
<glyph unicode="I" horiz-adv-x="447" d="M320,45l0,630l72,0C404,675 414,685 414,698C414,710 404,720 392,720l-336,0C43,720 33,710 33,698C33,685 43,675 56,675l75,0l0,-630l-75,0C43,45 33,35 33,23C33,10 43,0 56,0l336,0C404,0 414,10 414,23C414,35 404,45 392,45M275,45l-99,0l0,630l99,0z"/>
<glyph unicode="M" horiz-adv-x="986" d="M861,44l0,633l77,0C950,677 960,687 960,699C960,711 950,721 938,721l-245,0C689,721 685,720 681,718C677,715 673,711 671,706l-186,-454l-231,456C249,717 243,721 234,721l-186,0C36,721 26,711 26,699C26,687 36,677 48,677l71,0l0,-633l-71,0C36,44 26,34 26,22C26,10 36,0 48,0l186,0C246,0 256,10 256,22C256,34 246,44 234,44l-71,0l0,426l232,-459C399,3 406,-1 415,-1C424,-1 432,4 435,12l73,178C508,191 508,192 509,193l162,398l0,-547l-69,0C590,44 580,34 580,22C580,10 590,0 602,0l336,0C950,0 960,10 960,22C960,34 950,44 938,44M163,568l0,109l58,0l242,-479l-51,-124M817,44l-102,0l0,633l102,0z"/>
<glyph unicode="N" horiz-adv-x="803" d="M615,721C603,721 593,711 593,699C593,686 603,677 615,677l63,0l0,-395l-426,427C247,714 242,721 228,721l-185,0C31,721 21,711 21,699C21,686 31,677 43,677l70,0l0,-633l-70,0C31,44 21,34 21,22C21,9 31,0 43,0l186,0C241,0 251,9 251,22C251,34 241,44 229,44l-72,0l0,489l527,-531C689,-3 694,-5 700,-5C703,-5 706,-4 708,-3C717,0 722,8 722,17l0,660l79,0C813,677 823,686 823,699C823,711 813,721 801,721M157,596l0,81l65,0l456,-458l0,-149z"/>
<glyph unicode="O" horiz-adv-x="883" d="M785,504C767,548 740,588 705,622C671,657 631,684 587,702C541,722 492,732 442,732C391,732 342,722 296,702C252,684 212,657 177,622C143,588 116,548 97,504C78,458 68,409 68,358C68,308 78,259 97,213C116,169 143,129 177,94C212,60 252,33 296,14C342,-5 391,-15 441,-15C492,-15 541,-5 587,14C631,33 671,60 705,94C740,129 767,169 785,213C805,259 815,308 815,358C815,409 805,458 785,504M283,528C283,616 354,688 441,688C495,688 547,675 594,651l0,-466C594,143 577,103 548,74C518,45 479,29 437,29C382,30 330,44 283,69M239,98l-31,27C146,188 112,270 112,358C112,446 146,529 208,591C228,611 250,628 274,642C252,610 239,570 239,528M638,623C650,613 663,603 674,591C736,529 771,446 771,358C771,270 736,188 674,125C653,104 628,85 602,71C625,104 638,143 638,185z"/>
<glyph unicode="P" horiz-adv-x="785" d="M52,722C40,722 30,712 30,700l0,-91C30,597 40,587 52,587C64,587 74,597 74,609l0,69l90,0l0,-373l-71,0C81,305 71,295 71,283C71,271 81,261 93,261l71,0l0,-217l-71,0C81,44 71,34 71,22C71,10 81,0 93,0l337,0C442,0 452,10 452,22C452,34 442,44 430,44l-76,0l0,217l194,0C597,261 643,280 677,314C712,348 731,393 731,442l0,97C731,588 712,634 677,668C643,703 597,722 548,722M208,305l0,373l102,0l0,-373M354,305l0,373l48,0C439,678 473,664 499,637C526,611 540,576 540,539l0,-97C540,405 526,371 500,345C473,319 439,305 402,305M687,442C687,366 625,305 548,305l-27,0l9,9C565,348 584,393 584,442l0,97C584,595 559,644 520,678l28,0C585,678 620,664 646,637C673,611 687,576 687,539M310,261l0,-217l-102,0l0,217z"/>
<glyph unicode="R" horiz-adv-x="862" d="M731,541C731,590 712,636 678,670C644,705 599,724 550,724l-498,0C40,724 30,714 30,702l0,-91C30,599 40,589 52,589C64,589 74,599 74,611l0,69l91,0l0,-373l-71,0C82,307 72,297 72,285C72,273 82,263 94,263l71,0l0,-219l-75,0C78,44 68,34 68,22C68,10 78,0 90,0l338,0C440,0 450,10 450,22C450,34 440,44 428,44l-73,0l0,219l51,0l5,0C432,263 494,262 520,228C536,207 539,176 539,135C539,99 541,70 553,46C569,16 598,0 639,0l151,0C802,0 812,10 812,22C812,34 802,44 790,44C759,44 749,56 744,66C735,83 734,109 734,135C734,185 729,224 706,255C693,272 674,285 651,293C661,300 670,307 678,316C712,350 731,395 731,444M311,680l0,-373l-102,0l0,373M355,307l0,373l49,0C480,680 542,618 542,541l0,-97C542,407 528,373 502,347C475,321 441,307 404,307M523,307l9,9C567,350 586,395 586,444l0,97C586,597 561,646 522,680l28,0C587,680 621,666 647,639C673,613 687,578 687,541l0,-97C687,407 673,372 647,347C622,321 587,307 550,307M311,263l0,-219l-102,0l0,219M639,44C608,44 598,56 593,66C584,83 583,109 583,135C583,185 578,224 555,255C553,258 551,260 548,263l9,0l5,0C583,263 645,262 671,228C687,207 690,176 690,135C690,99 692,70 704,46C705,46 705,45 706,44z"/>
<glyph unicode="U" horiz-adv-x="828" d="M599,723C586,723 576,713 576,701C576,688 586,678 599,678l70,0l0,-443C669,184 649,137 613,101C582,69 541,50 496,46C444,46 396,66 360,101C323,137 304,185 304,235l0,443l77,0C393,678 403,688 403,701C403,713 393,723 381,723l-337,0C31,723 21,713 21,701C21,688 31,678 44,678l70,0l0,-443C114,172 138,113 182,69C227,24 286,0 349,0l130,0C542,0 601,24 645,69C689,113 714,172 714,235l0,443l71,0C797,678 807,688 807,701C807,713 797,723 785,723M159,678l100,0l0,-443C259,173 283,113 328,69C337,60 347,52 357,45l-8,0C298,45 250,65 214,101C178,137 159,184 159,235z"/>
</font>
<!-- Part 1 -->
<g class="wide-load" style="fill:#F8F3ED; fill-opacity:0; stroke:#F8F3ED">
<path d="M100.2,351.5l182.2,104.2c2,1.1,2.6,3.6,1.5,5.6s-3.6,2.6-5.6,1.5c0,0-0.1-0.1-0.1-0.1L99.7,352.4
c-0.2-0.1-0.3-0.5-0.2-0.7C99.6,351.5,99.9,351.4,100.2,351.5z"/>
<path d="M462.3,352.2L282.3,462.8c-1.9,1.2-4.5,0.6-5.6-1.3c-1.2-1.9-0.6-4.5,1.3-5.6c0,0,0.1-0.1,0.1-0.1
l183.6-104.4c0.2-0.1,0.5-0.1,0.7,0.2C462.6,351.8,462.5,352.1,462.3,352.2z"/>
</g>
<g style="fill:none;stroke:#F8F3ED;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;">
<path d="M99.9,352,99.9,332.6"/>
<path d="M462,351.8,462,332.5"/>
<path d="M99.9,352,153.3,352"/>
<path d="M462,351.8,408.7,351.8"/>
<path d="M153.3,352,153.3,383.5"/>
<path d="M408.7,351.8,408.7,383.4"/>
<path d="M200.7,411.6,201.3,377.3"/>
<path d="M361.2,411.5,360.7,377.1"/>
<path d="M201.3,377.3,177.6,364.3"/>
<path d="M360.7,377.1,384.3,364.1"/>
<path d="M177.6,364.3,177.6,332.6"/>
<path d="M384.3,364.1,384.3,332.5"/>
<path d="M220,423.1,264.9,377.3"/>
<path d="M341.9,422.9,297,377.1"/>
<path d="M280.3,423.1,201.3,377.3"/>
<path d="M280.3,423.1,360.7,377.1"/>
<path d="M201,394.5,153.3,367.8"/>
<path d="M360.9,394.3,408.7,367.6"/>
<path d="M264.9,377.3,280.3,377.3"/>
<path d="M297,377.1,280.3,377.3"/>
</g>
<!-- Part 2 -->
<g class="wide-load" style="fill:#F8F3ED; fill-opacity:0; stroke:#F8F3ED">
<path d="M164,75.9L278.7,2.5c1.7-1.1,4-0.6,5.1,1.1c1.1,1.7,0.6,4-1.1,5.1c0,0-0.1,0.1-0.1,0.1l-118,67.9
c-0.2,0.1-0.5,0.1-0.7-0.2C163.7,76.3,163.8,76,164,75.9z"/>
<path d="M398,77.1L278.7,8.8c-1.8-1-2.4-3.3-1.4-5.1s3.3-2.4,5.1-1.4c0,0,0.1,0.1,0.1,0.1l116,73.7
c0.2,0.1,0.3,0.5,0.2,0.7C398.5,77.1,398.2,77.2,398,77.1z"/>
<path d="M206.1,51L125.4,4.3c-1.1-0.6-1.5-2-0.8-3.1s2-1.5,3.1-0.8c0,0,0.1,0,0.1,0l78.9,49.7
c0.2,0.1,0.3,0.5,0.2,0.7C206.7,51,206.4,51.1,206.1,51z"/>
<path d="M355.2,50.4l78.9-49.7c1.1-0.7,2.5-0.4,3.1,0.7c0.7,1.1,0.4,2.5-0.7,3.1c0,0-0.1,0-0.1,0l-80.7,46.7
c-0.2,0.1-0.5,0.1-0.7-0.2C354.9,50.9,355,50.6,355.2,50.4z"/>
</g>
<g style="fill:none;stroke:#F8F3ED;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;">
<path d="M163.6,76.3,163.6,130"/>
<path d="M398.3,76.6,398.3,130.3"/>
<path d="M143.7,115,280.6,36"/>
<path d="M418.1,115.3,280.6,36"/>
<path d="M124.6,2.3,124.6,151.3"/>
<path d="M437.3,2.6,437.3,151.6"/>
<path d="M98.9,167.3,280.6,61.6"/>
<path d="M462.9,167.6,280.6,61.6"/>
<path d="M105.9,162.6,105.9,61"/>
<path d="M455.9,163,455.9,61.4"/>
</g>
<g class="wide-load" style="fill:#F8F3ED; fill-opacity:0; stroke:#F8F3ED">
<path d="M107.4,60.1l56.4,28.5c0.2,0.1,0.2,0.3,0.2,0.5c-0.1,0.2-0.3,0.2-0.5,0.2l-56.9-27.3
c-0.5-0.2-0.7-0.8-0.5-1.3S106.9,59.9,107.4,60.1C107.4,60.1,107.4,60.1,107.4,60.1z"/>
<path d="M455.4,62.3l-56.9,27.3c-0.2,0.1-0.4,0-0.5-0.2c-0.1-0.2,0-0.4,0.2-0.5l56.4-28.5
c0.5-0.2,1.1-0.1,1.3,0.4C456.1,61.4,455.9,62,455.4,62.3C455.4,62.3,455.4,62.3,455.4,62.3z"/>
</g>
<g style="fill:none;stroke:#F8F3ED;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;">
<path d="M151.8,110.3,151.8,16.9"/>
<path d="M410.1,110.6,410.1,17.2"/>
<path d="M124.6,34,227.3,92.7"/>
<path d="M437.3,34.3,334.6,93"/>
<path d="M98.9,167.3,98.9,239"/>
<path d="M462.9,167.6,462.9,239.3"/>
<path d="M143.7,115,143.7,189.6"/>
<path d="M418.1,115.3,418.1,190"/>
<path d="M243.3,83.3,243.3,145"/>
<path d="M318.6,83.7,318.6,145.3"/>
<path d="M143.7,158,243.3,100.3"/>
<path d="M418.1,158.3,318.6,100.6"/>
<path d="M176.9,153.6,243.3,115"/>
<path d="M384.9,154,384.9,190"/>
<path d="M176.9,153.6,176.9,189.6"/>
<path d="M366.9,163,366.9,190"/>
<path d="M194.9,162.6,194.9,189.6"/>
<path d="M366.9,176.5,295.2,176.5"/>
<path d="M194.9,176.1,266.6,176.1"/>
<path d="M295.2,176.5,295.2,132.6"/>
<path d="M266.6,176.1,266.6,132.3"/>
<path d="M336.9,156,295.2,132.6"/>
<path d="M224.9,155.6,266.6,132.3"/>
<path d="M318.6,115.3,280.6,92.9"/>
<path d="M243.3,115,280.6,92.9"/>
<path d="M295.2,132.6,280.6,124"/>
<path d="M266.6,132.3,280.6,124"/>
<path d="M254.7,108.2,255.1,176.1"/>
<path d="M305.6,108,305.6,176"/>
<path d="M280.3,377.3,280.1,459"/>
</g>
<g class="words">
<rect y="200.3" style="fill:none;" width="563.2" height="116"/>
<text transform="matrix(1 0 0 1 133.353 240.6846)"><tspan x="0" y="0" style="fill:#5E5E5E; font-family:'Pirou-Regular'; font-size:56; letter-spacing:4;">RUGGED</tspan><tspan x="-130.1" y="67.2" style="fill:#5E5E5E; font-family:'Pirou-Regular'; font-size:56; letter-spacing:4;">PROGRAMMING</tspan></text>
<rect x="182.1" y="333" style="fill:none;" width="195" height="33"/>
<text transform="matrix(1 0 0 1 209.6646 359.3428)" style="fill:#5E5E5E; font-family:'Regina'; font-size:32;">- 2016 -</text>
</g>
</svg>
<svg id="cover2-svg" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="396.2px" height="511.2px" viewBox="0 0 396.2 511.2" style="enable-background:new 0 0 396.2 511.2;" xml:space="preserve">
<g id="Owl" stroke="#F8F3ED" stroke-width="2.5" fill="none" stroke-miterlimit:"10">
<path d="M198.5,210.5,304.4,70.4"/>
<path d="M197.7,210.8,91.8,70.7"/>
<path d="M231.5,226.7,198.5,210.5"/>
<path d="M164.7,227,197.7,210.8"/>
<path d="M244,48,198.5,210.5"/>
<path d="M152.2,48.2,197.7,210.8"/>
<path d="M244,48,304.4,70.4" />
<path d="M152.2,48.2,91.8,70.7"/>
<path d="M231.5,226.7,281.4,100.8" />
<path d="M164.7,227,114.8,101.1"/>
<path d="M244.6,193.6,297.5,143.4"/>
<path d="M151.6,193.9,98.7,143.6"/>
<path d="M304.4,70.4,297.5,143.4"/>
<path d="M91.8,70.7,98.7,143.6"/>
<path d="M297.5,143.4,354.4,105"/>
<path d="M98.7,143.6,41.8,105.2"/>
<path d="M364.5,158.8,342.7,112.9"/>
<path d="M31.7,159.1,53.5,113.2"/>
<path d="M364.5,158.8,394.9,135.3"/>
<path d="M31.7,159.1,1.2,135.6"/>
<path d="M355.3,209.7,364.5,158.8"/>
<path d="M40.9,210,31.7,159.1"/>
<path d="M231.5,226.7,310.4,252.9"/>
<path d="M164.7,227,85.8,253.2"/>
<path d="M310.4,252.9,355.8,206.8"/>
<path d="M85.8,253.2,40.4,207.1"/>
<path d="M393.1,227.9,355.3,209.7"/>
<path d="M3.1,228.2,40.9,210"/>
<path d="M393.1,227.9,394.9,135.3"/>
<path d="M3.1,228.2,1.2,135.6"/>
<path d="M328.7,298.6,393.1,227.9"/>
<path d="M67.5,298.9,3.1,228.2"/>
<path d="M328.7,298.6,310.4,252.9"/>
<path d="M67.5,298.9,85.8,253.2"/>
<path d="M213,255.9,266.4,278.3"/>
<path d="M183.2,256.2,129.8,278.5"/>
<path d="M266.4,278.3,328.7,298.6"/>
<path d="M129.8,278.5,67.5,298.9"/>
<path d="M197.4,287.4,213,255.9"/>
<path d="M197.4,287.4,183.2,256.2"/>
<path d="M213,255.9,231.5,226.7"/>
<path d="M183.2,256.2,164.7,227"/>
<path d="M328.7,298.6,388.1,288.3"/>
<path d="M67.5,298.9,8.1,288.6"/>
<path d="M388.1,288.3,384.4,237.5"/>
<path d="M8.1,288.6,11.8,237.7"/>
<path d="M197.4,419.4,266.4,278.3"/>
<path d="M198.8,419.7,129.8,278.5"/>
<path d="M199.3,510.4,197.4,419.4"/>
<path d="M199.3,510.4,63.7,356.3"/>
<path d="M199.3,510.4,332.5,356"/>
<path d="M198.8,419.7,63.7,356.3"/>
<path d="M197.4,419.4,332.5,356"/>
<path d="M63.7,356.3,129.8,278.5"/>
<path d="M332.5,356,266.4,278.3"/>
<path d="M63.7,356.3,8.1,288.6"/>
<path d="M332.5,356,388.1,288.3"/>
<path d="M41.8,105.2,47,52"/>
<path d="M354.4,105,349.2,51.7"/>
<path d="M41.8,105.2,47,52"/>
<path d="M349.2,51.7,368.5,1.2"/>
<path d="M47,52,27.7,1.4"/>
<path d="M304.4,70.4,326.3,18.9"/>
<path d="M91.8,70.7,69.9,19.2"/>
<path d="M326.3,18.9,368.5,1.2"/>
<path d="M69.9,19.2,27.7,1.4"/>
<path d="M354.4,105,379.9,53.3"/>
<path d="M41.8,105.2,16.3,53.6"/>
<path d="M379.9,53.3,368.5,1.2"/>
<path d="M16.3,53.6,27.7,1.4"/>
<path d="M394.9,135.3,364.5,82.4"/>
<path d="M1.2,135.6,31.7,84.8"/>
<path d="M111.9,157.7"/>
<path d="M99.4,147"/>
<path d="M152.2,48.2,244,48"/>
<!--eyes-->
<path d="M136.1,179.3c-16.8,53.9-99.8,5.3-34.5-32.8"/>
<path d="M302.6,161.4c0,5.9-4.7,10.6-10.6,10.6
s-10.6-2.9-10.6-8.8c0-5.9,1.8-6.1,11.2-15C296.8,144.1,302.6,155.5,302.6,161.4z"/>
<path d="M92.4,162.4c0,5.9,4.7,10.6,10.6,10.6
s10.6-2.9,10.6-8.8c0-5.9-1.8-6.1-11.2-15C98.1,145.1,92.4,156.5,92.4,162.4z"/>
<path d="M260,179c16.8,53.9,99.8,5.3,34.5-32.8"/> <!-- //right eye -->
</g>
</svg>
<svg version="1.1" id="cover3-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="341px" height="553.6px" viewBox="0 0 341 553.6" style="enable-background:new 0 0 341 553.6; transform: scale(0.75); fill:none;stroke:#F8F3ED;stroke-width:2;stroke-miterlimit:10;" xml:space="preserve">
<g id="GR">
<path d="M1,210.6,1,552.6"/>
<path d="M1,552.6,340,552.6"/>
<path d="M340,552.6,340,210.6"/>
<path d="M340,210.6,1,210.6"/>
<path d="M340,210.6,340,1"/>
<path d="M340,1,129.8,1"/>
<path d="M129.8,1,129.8,210.6"/>
<path d="M129.8,1,1,1"/>
<path d="M1,1,1,131.1"/>
<path d="M1,131.1,129.8,131.1"/>
<path d="M1,131.1,1,210.6"/>
<path d="M80.6,131.1,80.6,210.6"/>
<path d="M129.8,161.6,80.6,161.6"/>
<path d="M99.6,131.1,99.6,161.6"/>
<path d="M99.6,149.9,80.6,149.9"/>
<path d="M92.1,149.9,92.1,161.6"/>
<path d="M92.1,154.7,99.6,154.7"/>
<path d="M94.7,149.9,94.7,154.7"/>
<path d="M92.1,152.8,94.7,152.8"/>
</g>
</svg>
<svg version="1.1" id="cover4-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="431.2px" height="410.4px" viewBox="0 0 431.2 410.4" style="enable-background:new 0 0 431.2 410.4;" xml:space="preserve"
>
<g style="fill:none;stroke:#F8F3ED;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;">
<path d="M57.2,267.5,21.3,254.9"/>
<path d="M57.2,267.5,86.6,218.9"/>
<path d="M21.3,254.9,0.5,222.9"/>
<path d="M0.5,222.9,25.8,136.8"/>
<path d="M21.3,254.9,86.6,218.9"/>
<path d="M6.6,232.4,31.9,238.9"/>
<path d="M31.9,238.9,31.9,249"/>
<path d="M31.9,238.9,46.1,163.2"/>
<path d="M25.8,136.8,46.1,163.2"/>
<path d="M46.1,163.2,86.6,218.9"/>
<path d="M86.6,218.9,185.4,81.6"/>
<path d="M122.9,168.5,136,97.3"/>
<path d="M46.1,163.2,133,113.9"/>
<path d="M25.8,136.8,169.2,39"/>
<path d="M136,97.3,174.8,58.8"/>
<path d="M185.4,81.6,174.8,58.8"/>
<path d="M174.8,58.8,169.2,39"/>
<path d="M86.6,218.9,142.4,193.5"/>
<path d="M104,211,223.4,236.9"/>
<path d="M142.4,193.5,185.4,228.6"/>
<path d="M150.9,221.2,151,265.5"/>
<path d="M151,265.5,223.4,236.9"/>
<path d="M151,244,223.4,236.9"/>
<path d="M151,265.5,129.5,365.3"/>
<path d="M223.4,236.9,262,214.8"/>
<path d="M129.5,365.3,227.5,409.9"/>
<path d="M227.5,409.9,262,214.8"/>
<path d="M227.5,409.9,409.9,376.5"/>
<path d="M409.9,376.5,262,214.8"/>
<path d="M409.9,376.5,430.7,281.7"/>
<path d="M430.7,281.7,311.1,186.5"/>
<path d="M430.7,281.7,335.9,113.9"/>
<path d="M311.1,186.5,335.9,113.9"/>
<path d="M262,214.8,307.6,81.6"/>
<path d="M262,214.8,195.1,100.8"/>
<path d="M195.1,100.8,185.4,81.6"/>
<path d="M195.1,100.8,239.7,51.7"/>
<path d="M195.1,97.3,200.7,42"/>
<path d="M200.7,42,155.4,0.5"/>
<path d="M262,214.8,257.9,48.9"/>
<path d="M335.9,113.9,307.6,81.6"/>
<path d="M307.6,81.6,257.9,48.9"/>
<path d="M239.7,51.7,239.7,116"/>
<path d="M239.7,51.7,220.9,23.3"/>
<path d="M257.9,48.9,220.9,23.3"/>
<path d="M220.9,23.3,155.4,0.5"/>
<path d="M169.2,39,155.4,0.5"/>
</g>
</svg>
<svg version="1.1" id="cover5-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="288.3px" height="410.6px" viewBox="0 0 288.3 410.6" style="enable-background:new 0 0 288.3 410.6;" xml:space="preserve"
>
<g id="Solid" style="fill:none;stroke:#F8F3ED;stroke-width:1.5;stroke-miterlimit:10;">
<path d="M144.2,410.2,0.3,285.5"/>
<path d="M144.2,410.2,288,285.5"/>
<path d="M144.2,410.2,198.8,318.4"/>
<path d="M144.2,410.2,85.8,318.4"/>
<path d="M85.8,318.4,198.8,318.4"/>
<path d="M85.8,318.4,0.3,285.5"/>
<path d="M198.8,318.4,288,285.5"/>
<path d="M85.8,318.4,142.3,219.2"/>
<path d="M198.8,318.4,142.3,219.2"/>
<path d="M142.3,219.2,85.8,114.1"/>
<path d="M142.3,219.2,198.8,114.1"/>
<path d="M198.8,318.4,198.8,114.1"/>
<path d="M85.8,318.4,85.8,114.1"/>
<path d="M114.6,267.8,76.8,217.8"/>
<path d="M170.6,268.8,209.7,217.8"/>
<path d="M76.8,217.8,119.5,117.3"/>
<path d="M209.7,217.8,166.2,117.3"/>
<path d="M0.3,285.5,142.3,173.3"/>
<path d="M288,285.5,142.3,173.3"/>
<path d="M76.8,217.8,56.9,261.6"/>
<path d="M209.7,217.8,228.8,261.6"/>
<path d="M209.7,217.8,228.8,173.3"/>
<path d="M76.8,217.8,56.9,173.3"/>
<path d="M85.8,114.1,142.3,0.2"/>
<path d="M198.8,114.1,142.3,0.2"/>
<path d="M142.3,173.3,142.3,0.2"/>
</g>
<g id="Dashed" style="fill:none;stroke:#F8F3ED;stroke-width:0.5;stroke-miterlimit:10;stroke-dasharray: 6;">
<path d="M144.2,410.2,114.6,267.8"/>
<path d="M144.2,410.2,170.6,268.8"/>
<path d="M125.1,318.4,170.6,268.8"/>
<path d="M114.6,267.8,161.3,318.4"/>
<path d="M170.6,268.8,228.8,261.6"/>
<path d="M114.6,267.8,56.9,261.6"/>
<path d="M56.9,261.6,0.3,285.5"/>
<path d="M228.8,261.6,288,285.5"/>
<path d="M56.9,261.6,85.8,318.4"/>
<path d="M228.8,261.6,198.8,318.4"/>
<path d="M56.9,261.6,142.3,173.3"/>
<path d="M228.8,261.6,142.3,173.3"/>
<path d="M228.8,261.6,228.8,173.3"/>
<path d="M56.9,261.6,56.9,173.3"/>
<path d="M114.6,267.8,85.8,114.1"/>
<path d="M170.6,268.8,198.8,114.1"/>
<path d="M114.6,267.8,119.5,117.3"/>
<path d="M170.6,268.8,166.2,117.3"/>
<path d="M228.8,173.3,166.2,117.3"/>
<path d="M56.9,173.3,119.5,117.3"/>
<path d="M142.3,173.3,119.5,117.3"/>
<path d="M142.3,173.3,166.2,117.3"/>
<path d="M119.5,117.3,142.3,0.2"/>
<path d="M166.2,117.3,142.3,0.2"/>
</g>
</svg>
<svg version="1.1" id="cover6-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="395.7px" height="451.8px" viewBox="0 0 395.7 451.8" style="enable-background:new 0 0 395.7 451.8;" xml:space="preserve"
>
<g style="fill:none;stroke:#F8F3ED;stroke-width:1.5;stroke-miterlimit:10;">
<path d="M19.9,341.2c-0.8,0.2-1.9,0.3-2.4,1.1c-0.6,1.1,0.4,2.6,1.7,2.2c2.8-1,1.4-3.4,0.2-5.1c-2.6-3.7-2.5-6.2-7.5-7.1
C3.8,331,0,339.9,0,346.5c0,8.1,6,11.5,13.3,11.3c5.9-0.1,16.6-3,15.8-10.7c-0.1-1-1.2-2-2.3-1.3c-2.3,1.7-4.4,3.1-6.2,5.4
c-1,1.2,0.3,3.4,1.8,2.4c4.7-3.3,10.1,0.4,15.5,0.1c4.8-0.3,9.8-2.2,14.6-2.9c2.8-0.4,7.7-0.4,9.8-2.6c2.7-2.7,4.3-6.1,3.6-9.9
c-1.7-9.6-10.7-15.6-13.2-24.8c-1.8-6.7-0.1-13.8-1.3-20.6c-1.2-6.8-4.4-12.8-7.8-18.8c-3.7-6.6-6.4-12.8-7.3-20.3
c-0.9-7.7-0.8-15.5-0.5-23.3c0.6-14.9,2.1-29.7,2.3-44.7c0.2-14.9,1.1-30,6.5-44.1c4.5-11.8,13.9-21.3,23.4-29.3
c9.6-8.1,20.3-14.7,30.6-22c12.4-8.7,24.9-17.4,38-25.2c17.8-10.7,37.2-19,56.7-25.9c19.7-7,40.7-12.6,61.8-12.1
c9.4,0.2,18.8,2.1,26.9,6.9c4,2.4,7.8,5.7,10.1,9.7c3.3,5.7,2.9,13.2,3.8,19.5c0.8,6,1.5,11.7,3.7,17.5c2.6,6.8,6.7,12.8,9.4,19.5
c3,7.3,3.8,15,0.4,22.2c-2.8,5.8-7.3,10.7-10,16.6c-5.3,11.8-6.1,26.1-4.6,38.7c1.5,13,7.6,24.7,10,37.5
c2.5,13.5,0.2,26.8-1.1,40.3c-1.5,15.1,1.4,30.3,0.5,45.5c-0.9,15.2-7.6,30.2-12.1,44.6c-4.5,14.2-8.9,29-16.1,42.1
c-12.1,22.1-32.3,37.8-55,47.9c-8.5,3.8-17.4,6.8-26.4,9.3c-8.1,2.3-18,5.2-26.4,3.2c-1.8-0.4-3-1.4-3.6-3.1
c-0.9-2.4,2.1-3.5,3.8-4.1c3.9-1.4,8.3-1.7,12.4-2.3c9.8-1.4,19.6-5.5,28.2-10.5c17.3-10.1,29.2-26.7,36-45.3
c3.7-10.2,5.8-20.9,7-31.6c1.5-13.7,3.4-27.5,4.7-41.2c1.2-12.9,0.6-25.4-3.8-37.6c-4.4-12.3-11.3-24.2-12.4-37.4
c-0.2-2.4-0.1-14.5,4.3-12.4c3.2,1.5,5.9,3.7,9.4,4.7c2.6,0.7,5.7,0.4,8.4,0.5c1.6,0.1,3.4,0.2,4.9,0.9c1.1,0.5-0.8,1.7-1.1,2
c-1.7,1.6-3.4,2.2-5.7,2.3c-5.4,0.2-11.2-2.9-15.9-5c-4.4-1.9-8.8-2.9-13.4-4.1c-5-1.3-9.2-3.3-10.8-8.5c-1-3.2-0.7-6.9,0.2-10.1
c1.8-6.3,7.3-4.7,10.9-1.1c4.9,4.9,6.2,23.4,16.8,14.9c5.9-4.8,10.2-11.1,10.6-18.9c0.4-7.8-4.3-15.2-8.5-21.4
c-4.7-6.7-10.3-12.8-14.3-20c-4.7-8.5-3.5-18.3-3.9-27.6c-0.2-3.5-0.6-8.1-4.4-9.5c-1.5-0.5-3.3-0.1-4.8,0.1
c-3.3,0.5-6.5,1.1-9.8,1.1c0.5,0.5,1,1,1.5,1.5c0.3-4,7.7-4.9,10.1-7.6c3.3-3.8-1.6-9.5-4.6-11.6c-4.1-2.9-8.9-2.5-11.7,1.8
c-3.4,5.2,1,11,5.4,13.6c0.6,0.4,1.7,0.2,2.1-0.5c5.6-12.6-14.3-8.3-19.7-4.3c-1.5,1.1-0.1,3.7,1.5,2.6
c5.6-3.7,16.9-16.3,24.2-12.3c3,1.7,1.2,10.6,0.8,13.1c-0.6,3.7-1.4,9.6-4.7,11.9c-7,4.8-19.6-0.5-26.4-3.2
c-7.6-3.1-18.3-7.7-21.5-15.9c-4-10.2,1-23.4,2.9-33.5c1.3-7,1.5-13.4,0-20.3c-1.7-7.7-4.3-15.2-7.7-22.2
c-2.6-5.4-6.5-12.4-12.5-14.7c-5.4-2-11.4,0.8-13.1,6.3c-2.3,7.4,3.5,17,7.5,22.8c5.3,7.8,12.8,12.7,22.2,14
c8.4,1.2,17.3,0.6,25.8,0.9c15.2,0.4,35.8,1.5,47.8-9.8c4.8-4.5,7.1-12.3,4.9-18.6c-2.2-6.4-9.2-9.4-15.1-11.1
c-7.8-2.2-16.3-2.6-24.3-2.7c-10.6-0.2-20.3,0.6-29.9-4.8c-11.4-6.4-21.2-14.6-34.3-17.2c-9.9-2-20.1-1-29.8,1.4
C93.5,7.7,74.1,21.4,60,38.2C45.4,55.6,38.7,76.7,40.6,99.4c0.8,8.7,3.4,17.2,8.1,24.5c5.6,8.6,14.7,14.3,22.7,20.4
c8.8,6.8,16.2,15.3,24.3,22.9c3.5,3.3,7.2,6.4,11.3,9.1c5,3.2,10.5,5.5,15.4,9c1.6,1.1,0,0,3.1-1.5"/>
<path d="M221.5,353.3c4.4-14.2,10.4-27.9,14.7-42.2c2.1-7.1,3.6-14.3,5.3-21.5c1.8-8,3.2-15.9,7.3-23.1c3.9-6.7,13.9-17.7,8.6-26
c-2.3-3.6-7.1-6-10.3-8.8c-4.6-4.2-9.6-8-14.8-11.5c-10.3-7-21.8-12.2-33.2-17.1c-9.8-4.3-20-8.2-25.7-18
c-5.7-9.8-3.1-21.5-1.3-31.9c2.3-13.5,5.4-26.9,11.2-39.3c12.1-25.7,36.7-40.3,59.6-55.3c9.9-6.5,20.4-13.5,28.5-22.3
c5.9-6.6,9.7-14.8,16.1-20.9c8.8-8.5,18.9-3.3,23.9,6.2c4.9,9.2,6.6,19.8,9.5,29.6c3.3,11.2,10.6,20.1,14.9,30.8
c2.6,6.4,2.5,13,2.3,19.7c-0.3,8.5-1.2,16.9-2.5,25.3c-3.2,19.9-12.3,37.6-18.4,56.5c-4.7,14.6-7.5,32-2.2,46.8
c5,14,18.1,23.4,30.2,31c15.2,9.6,32,14,49.4,7.8c1.3-0.5,1.4-2,0.4-2.7c-8.8-6.4-21.3-7.5-31.3-10.9
c-13.1-4.5-23.2-14.3-32.5-24.1c-9.1-9.6-17.7-17.6-30.5-21.9c-6.7-2.2-14-3.8-21-4.4c-8.1-0.6-15.2,5.1-23.1,3.9
c0.3,0.7,0.6,1.5,0.9,2.2c10.9-19.7,39.7-2,56.4-8.1c0.8-0.3,1.5-1.3,0.9-2.2c-5.6-8.2-14.5-9-23.7-8.2c-5,0.4-9.9,1.2-14.9,1.2
c-2.9,0-10.9,0.2-12.8-2.4c-0.9-1.1-1-3.1-1.3-4.4c-0.7-3.3-1.3-6.6-1.7-9.9c-0.8-6.5-1.1-13-3.5-19.2
c-3.9-9.9-12.4-17.3-18.4-25.9c-3.2-4.6-5.7-10-4.6-15.7c0.9-4.7,3.7-10,2.4-14.9c-2.5-9.8-12.2-9.3-19.5-5.2
c-4.3,2.4-7.6,6.1-10.8,9.7c-2.1,2.4-4.4,4.5-7.2,6.2c-3.8,2.3-8.5,2.3-12.6,4c-9.7,4-13.2,13.5-12.4,23.2
c1.1,14.2,7.7,27.4,9,41.6c1,11.2-0.7,26.4-13.3,30c-9.1,2.6-19.4-1.9-27-6.5c-8-4.8-15.9-12.1-19.3-21c-0.5,0.6-1,1.3-1.4,1.9
c0.2,0,0.3,0,0.5,0c1.7,0,2.1-2.5,0.4-2.9c-0.2-0.2-0.3-0.2-0.3,0c-1.2-1.5-3.8,0-2.6,1.5c0.6,0,0,0,0,0"/>
</g>
</svg>
<svg version="1.1" id="cover7-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="521.2px" height="451.4px" viewBox="0 0 521.2 451.4" style="enable-background:new 0 0 521.2 451.4;" xml:space="preserve"
>
<g style="fill:none;stroke:#F8F3ED;stroke-width:1.5;stroke-miterlimit:10;">
<path d="M260.6,2l129.4,224.2l129.4,224.2H260.6H1.7
l129.4-224.2L260.6,2z"/>
<path d="M221.1,71.5l128.4,154.9L478,381.3l-198.4,33.8
L81.2,448.8l70-188.7L221.1,71.5z"/>
<path d="M199.5,133l118.2,99.7l118.2,99.7l-145.5,52.5
L145,437.4l27.3-152.2L199.5,133z"/>
<path d="M192.3,181.9l102.7,60.3l102.7,60.3L294,361.3
L190.5,420l0.9-119.1L192.3,181.9z"/>
<path d="M193.3,221l85.7,31.9l85.7,31.9L294.3,343
l-70.5,58.3l-15.3-90.2L193.3,221z"/>
<path d="M198.2,251.2l68.1,11.3l68.1,11.3l-43.8,53.4
l-43.8,53.4l-24.3-64.7L198.2,251.2z"/>
<path d="M206.1,270.1l53.9,0.4l53.9,0.4l-27.3,46.5
l-27.3,46.5L232.7,317L206.1,270.1z"/>
</g>
</svg>
</div>
<img src="./images/left_clicker.png" id="left-clicker" />
<img src="./images/right_clicker.png" id="right-clicker" />
<!-- <div id="owlSVG">
</div> -->
</div>
<div id="about">
<div class="container">
<div class="about-cover">
<div id="spinner-contain">
<div class="holder-spinner">
<div id="background-horiz-spinner"></div>
</div>
</div>
<div id="left-spinner-contain">
<div class="holder-spinner">
<div id="left-background-horiz-spinner"></div>
</div>
</div>
<div id="right-spinner-contain">
<div class="holder-spinner">
<div id="right-background-horiz-spinner"></div>
</div>
</div>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1029.9px" height="802px" viewBox="0 0 1029.9 802" style="enable-background:new 0 0 1029.9 802;" xml:space="preserve">
<font horiz-adv-x="1100">
<!-- Created by Sizenko Alexander. (C) 2008 Style-7. All rights reserved. http://www.styleseven.com -->
<!-- Copyright: Copyright 2016 Adobe System Incorporated. All rights reserved. -->
<font-face font-family="Digital-7" units-per-em="1100" underline-position="-120" underline-thickness="70"/>
<missing-glyph horiz-adv-x="580" d="M460,0l-360,0C73,7 57,23 50,50l80,30l300,0M430,640l-299,0l-80,30C58,697 74,713 101,720l359,0M130,100l-80,-30l0,580l80,-30M530,50C523,23 507,7 480,0l-30,80l0,560l30,80C507,713 523,697 530,670z"/>
<glyph unicode="8" horiz-adv-x="520" d="M390,400l40,-40l-40,-40l-260,0l-40,40l40,40M450,350l20,-20l0,-280C463,23 447,7 420,0l-30,80l0,210M400,0l-300,0C73,7 57,23 50,50l80,30l240,0M50,70l0,260l20,20l60,-60l0,-190M370,640l-239,0l-80,30C58,697 74,713 101,720l299,0M130,620l0,-190l-60,-60l-20,20l0,260M390,430l0,210l30,80C447,713 463,697 470,670l0,-280l-20,-20z"/>
<glyph unicode=":" horiz-adv-x="180" d="M130,160l-80,0l0,80l80,0M130,480l-80,0l0,80l80,0z"/>
</font>
<font horiz-adv-x="1000">
<!-- Copyright 2010, 2012 Adobe Systems Incorporated. All Rights Reserved.
Copyright (c) 2013, Kim Silkebaekken and Carl X. Su. -->
<font-face font-family="SauceCodePowerline-ExtraLight" units-per-em="1000" underline-position="-50" underline-thickness="50"/>
<missing-glyph horiz-adv-x="599" d="M84,0l432,0l0,660l-432,0M122,74l0,536l154,-270M324,340l152,270l0,-536M132,32l102,176l64,106l4,0l62,-106l100,-176M298,366l-56,92l-94,168l302,0l-94,-168l-54,-92z"/>
<glyph unicode="A" horiz-adv-x="599" d="M175,264l47,132C250,476 274,544 298,626l4,0C326,544 350,476 378,396l46,-132M516,0l34,0l-236,660l-28,0l-236,-660l32,0l83,236l269,0z"/>
<glyph unicode="B" horiz-adv-x="599" d="M119,0l172,0C441,0 535,66 535,192C535,284 473,338 375,352l0,4C453,376 493,430 493,500C493,608 411,660 279,660l-160,0M151,366l0,266l114,0C393,632 461,594 461,504C461,412 403,366 259,366M151,28l0,310l128,0C421,338 503,290 503,190C503,78 417,28 279,28z"/>
<glyph unicode="E" horiz-adv-x="599" d="M132,0l394,0l0,28l-362,0l0,310l296,0l0,28l-296,0l0,266l352,0l0,28l-384,0z"/>
<glyph unicode="M" horiz-adv-x="599" d="M95,0l31,0l0,495C126,536 123,582 122,623l2,0l39,-110l124,-332l27,0l123,332l36,110l3,0C475,582 473,536 473,495l0,-495l32,0l0,660l-46,0l-116,-318l-40,-120l-4,0l-42,120l-116,318l-46,0z"/>
<glyph unicode="O" horiz-adv-x="599" d="M300,-12C442,-12 544,124 544,332C544,540 442,672 300,672C158,672 56,540 56,332C56,124 158,-12 300,-12M300,18C175,18 90,142 90,332C90,522 175,642 300,642C425,642 510,522 510,332C510,142 425,18 300,18z"/>
<glyph unicode="T" horiz-adv-x="599" d="M284,0l32,0l0,632l234,0l0,28l-500,0l0,-28l234,0z"/>
<glyph unicode="U" horiz-adv-x="599" d="M92,246C92,42 196,-12 300,-12C404,-12 508,42 508,246l0,414l-30,0l0,-406C478,72 394,18 300,18C208,18 124,72 124,254l0,406l-32,0z"/>
<glyph unicode="." horiz-adv-x="599" d="M248,46C248,8 274,-12 300,-12C326,-12 352,8 352,46C352,84 326,104 300,104C274,104 248,84 248,46z"/>
<glyph unicode=" " horiz-adv-x="599"/>
</font>
<g id="AboutMeLogo">
<g id="About-Me-Centerpiece">
<rect x="214.5" y="561.5" style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" width="600" height="170"/>
<g id="left-about">
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="281.2" y1="618.2" x2="309" y2="646"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="281.2" y1="673.6" x2="309" y2="645.8"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="261.6" y1="618.2" x2="289.4" y2="646"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="261.6" y1="673.6" x2="289.4" y2="645.8"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="251.1" y1="618.2" x2="278.9" y2="646"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="251.1" y1="673.6" x2="278.9" y2="645.8"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="271.4" y1="617.6" x2="299.2" y2="645.4"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="271.4" y1="673" x2="299.2" y2="645.2"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="309" y1="645.5" x2="357" y2="645.5"/>
</g>
<g id="right-about">
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="747.2" y1="618.2" x2="719.4" y2="646"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="747.2" y1="673.6" x2="719.4" y2="645.8"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="766.8" y1="618.2" x2="739" y2="646"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="766.8" y1="673.6" x2="739" y2="645.8"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="777.3" y1="618.2" x2="749.5" y2="646"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="777.3" y1="673.6" x2="749.5" y2="645.8"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="757" y1="617.6" x2="729.2" y2="645.4"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="757" y1="673" x2="729.2" y2="645.2"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="719" y1="645.5" x2="671" y2="645.5"/>
</g>
<rect x="373.5" y="630" style="fill:none;" width="288.5" height="30.6"/>
<text transform="matrix(1 0 0 1 413.356 659.4941)"><tspan x="0" y="0" style="fill:#C69F73; font-family:'SauceCodePowerline-ExtraLight'; font-size:40.7844;">ABOUT ME</tspan><tspan x="195.4" y="0" style="fill:#C69F73; font-family:'SauceCodePowerline-ExtraLight'; font-size:22.4314;">.</tspan></text>
</g>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="200.5" y1="609" x2="200.5" y2="686"/>
<g id="Left-Scroll-Wheel">
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="185.5" y1="451" x2="185.5" y2="802"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="150" y1="497.5" x2="175" y2="497.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="151" y1="801.5" x2="185" y2="801.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="150.5" y1="497" x2="150.5" y2="802"/>
</g>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="136.5" y1="563" x2="136.5" y2="739"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="828.5" y1="611" x2="828.5" y2="688"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="892.5" y1="565" x2="892.5" y2="741"/>
<g>
<rect x="495.2" y="472.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -200.5952 515.7199)" style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" width="54" height="55"/>
<rect x="505.9" y="483.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -200.595 515.7275)" style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" width="32.6" height="33.2"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="483.7" y1="499.6" x2="498.9" y2="499.8"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="545.5" y1="500.2" x2="560.8" y2="500.4"/>
</g>
<g>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="427.5" y1="477.1" x2="405" y2="499.6"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="427.5" y1="522.6" x2="405" y2="500.1"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="479.5" y1="477.1" x2="457" y2="499.6"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="479.5" y1="522.6" x2="457" y2="500.1"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="427" y1="477.5" x2="479" y2="477.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="427" y1="522.5" x2="479" y2="522.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="416.2" y1="499.6" x2="427.5" y2="488.4"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="416.2" y1="499.4" x2="427.5" y2="510.6"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="428" y1="488.5" x2="454" y2="488.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="428" y1="510.5" x2="454" y2="510.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="416" y1="499.5" x2="439" y2="499.5"/>
</g>
<g>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="617" y1="476.1" x2="639.5" y2="498.6"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="617" y1="521.6" x2="639.5" y2="499.1"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="565" y1="476.1" x2="587.5" y2="498.6"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="565" y1="521.6" x2="587.5" y2="499.1"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="617" y1="476.5" x2="565" y2="476.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="617" y1="521.5" x2="565" y2="521.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="628.2" y1="498.6" x2="617" y2="487.4"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="628.2" y1="498.4" x2="617" y2="509.6"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="616" y1="487.5" x2="590" y2="487.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="616" y1="509.5" x2="590" y2="509.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="628" y1="498.5" x2="605" y2="498.5"/>
</g>
<rect x="339.9" y="482.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -248.5094 398.0537)" style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" width="32.6" height="33.2"/>
<rect x="292.9" y="482.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -262.2758 364.8193)" style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" width="32.6" height="33.2"/>
<rect x="245.9" y="482.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -276.0421 331.585)" style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" width="32.6" height="33.2"/>
<rect x="763.9" y="482.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -124.3195 697.8701)" style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" width="32.6" height="33.2"/>
<rect x="716.9" y="482.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -138.0859 664.6359)" style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" width="32.6" height="33.2"/>
<rect x="669.9" y="482.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -151.8522 631.4014)" style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" width="32.6" height="33.2"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="185" y1="451.5" x2="522" y2="451.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="521.5" y1="452" x2="521.5" y2="399"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="174.5" y1="498" x2="174.5" y2="476"/>
<g>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="842.5" y1="451" x2="842.5" y2="802"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="877.5" y1="497" x2="877.5" y2="802"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="878" y1="497.5" x2="853" y2="497.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="877" y1="801.5" x2="843" y2="801.5"/>
</g>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="842" y1="451.5" x2="519" y2="451.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="853.5" y1="498" x2="853.5" y2="476"/>
</g>
<g id="Top-Elec">
<g>
<g>
<g>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="161.5,403.4 127.5,437.8 127.5,411.2 161.5,376.7
"/>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="161.5,403.4 195.5,437.8 195.5,411.2 161.5,376.7
"/>
</g>
<g>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="230.5,403.4 196.5,437.8 196.5,411.2 230.5,376.7
"/>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="230.5,403.4 264.5,437.8 264.5,411.2 230.5,376.7
"/>
</g>
<g>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="299.5,403.4 265.5,437.8 265.5,411.2 299.5,376.7
"/>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="299.5,403.4 333.5,437.8 333.5,411.2 299.5,376.7
"/>
</g>
<g>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="368.5,403.4 334.5,437.8 334.5,411.2 368.5,376.7
"/>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="368.5,403.4 402.5,437.8 402.5,411.2 368.5,376.7
"/>
</g>
<g>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="437.5,403.4 403.5,437.8 403.5,411.2 437.5,376.7
"/>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="437.5,403.4 471.5,437.8 471.5,411.2 437.5,376.7
"/>
</g>
</g>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="178" y1="376.7" x2="195.7" y2="394.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="195.7" y1="394.5" x2="213.5" y2="376.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="247" y1="376.7" x2="264.7" y2="394.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="264.7" y1="394.5" x2="282.5" y2="376.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="316" y1="376.7" x2="333.7" y2="394.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="333.7" y1="394.5" x2="351.5" y2="376.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="385" y1="376.7" x2="402.7" y2="394.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="402.7" y1="394.5" x2="420.5" y2="376.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="144" y1="437.4" x2="161.7" y2="419.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="161.7" y1="419.7" x2="179.5" y2="437.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="213" y1="437.4" x2="230.7" y2="419.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="230.7" y1="419.7" x2="248.5" y2="437.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="282" y1="437.4" x2="299.7" y2="419.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="299.7" y1="419.7" x2="317.5" y2="437.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="351" y1="437.4" x2="368.7" y2="419.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="368.7" y1="419.7" x2="386.5" y2="437.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="420" y1="438.4" x2="437.7" y2="420.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="437.7" y1="420.7" x2="455.5" y2="438.5"/>
</g>
<g>
<g>
<g>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="591.5,403.4 557.5,437.8 557.5,411.2 591.5,376.7
"/>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="591.5,403.4 625.5,437.8 625.5,411.2 591.5,376.7
"/>
</g>
<g>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="660.5,403.4 626.5,437.8 626.5,411.2 660.5,376.7
"/>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="660.5,403.4 694.5,437.8 694.5,411.2 660.5,376.7
"/>
</g>
<g>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="729.5,403.4 695.5,437.8 695.5,411.2 729.5,376.7
"/>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="729.5,403.4 763.5,437.8 763.5,411.2 729.5,376.7
"/>
</g>
<g>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="798.5,403.4 764.5,437.8 764.5,411.2 798.5,376.7
"/>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="798.5,403.4 832.5,437.8 832.5,411.2 798.5,376.7
"/>
</g>
<g>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="867.5,403.4 833.5,437.8 833.5,411.2 867.5,376.7
"/>
<polygon style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" points="867.5,403.4 901.5,437.8 901.5,411.2 867.5,376.7
"/>
</g>
</g>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="608" y1="376.7" x2="625.7" y2="394.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="625.7" y1="394.5" x2="643.5" y2="376.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="677" y1="376.7" x2="694.7" y2="394.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="694.7" y1="394.5" x2="712.5" y2="376.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="746" y1="376.7" x2="763.7" y2="394.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="763.7" y1="394.5" x2="781.5" y2="376.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="815" y1="376.7" x2="832.7" y2="394.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="832.7" y1="394.5" x2="850.5" y2="376.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="574" y1="437.4" x2="591.7" y2="419.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="591.7" y1="419.7" x2="609.5" y2="437.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="643" y1="437.4" x2="660.7" y2="419.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="660.7" y1="419.7" x2="678.5" y2="437.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="712" y1="437.4" x2="729.7" y2="419.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="729.7" y1="419.7" x2="747.5" y2="437.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="781" y1="437.4" x2="798.7" y2="419.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="798.7" y1="419.7" x2="816.5" y2="437.5"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="850" y1="438.4" x2="867.7" y2="420.7"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="867.7" y1="420.7" x2="885.5" y2="438.5"/>
</g>
<rect x="95" y="198.2" style="fill:none;" width="199.5" height="55.4"/>
<text transform="matrix(1 0 0 1 117.688 247.3481)" style="fill:#F8F3ED; font-family:'Digital-7'; font-size:75;">88:88</text>
<g id="digital-clock_1_" style="fill:#C69F73;">
<g id="Hour-1">
<path id="H-1-1" d="M126.3,205.1v13l-4.1,4.1l-1.4-1.4V203L126.3,205.1z"/>
<path id="H-1-2" d="M120.9,242.6v-17.7l1.4-1.4l4.1,4.1v13
L120.9,242.6z"/>
<path id="H-1-3" d="M144.7,247.3h-20.5c-1.8-0.5-3-1.6-3.4-3.4l5.5-2h16.4L144.7,247.3z"/>
<path id="H-1-4" d="M142.7,203.7h-16.3l-5.5-2
c0.5-1.8,1.6-3,3.4-3.4h20.4L142.7,203.7z"/>
<path id="H-1-5" d="M144,220.1l2.7,2.7l-2.7,2.7h-17.7l-2.7-2.7l2.7-2.7H144z"/>
<path id="H-1-6" d="M144,218v-14.3l2-5.5
c1.8,0.5,3,1.6,3.4,3.4v19.1l-1.4,1.4L144,218z"/>
<path id="H-1-7" d="M148.1,223.5l1.4,1.4v19.1c-0.5,1.8-1.6,3-3.4,3.4l-2-5.5v-14.3L148.1,223.5z"/>
</g>
<g id="Hour-2">
<path id="H-2-1" d="M161.8,205.1v13l-4.1,4.1l-1.4-1.4V203L161.8,205.1z"/>
<path id="H-2-2" d="M156.3,242.6v-17.7l1.4-1.4l4.1,4.1v13
L156.3,242.6z"/>
<path id="H-2-3" d="M180.2,247.3h-20.5c-1.8-0.5-3-1.6-3.4-3.4l5.5-2h16.4L180.2,247.3z"/>
<path id="H-2-4" d="M178.1,203.7h-16.3l-5.5-2
c0.5-1.8,1.6-3,3.4-3.4h20.4L178.1,203.7z"/>
<path id="H-2-5" d="M179.5,220.1l2.7,2.7l-2.7,2.7h-17.7l-2.7-2.7l2.7-2.7H179.5z"/>
<path id="H-2-6" d="M179.5,218v-14.3l2-5.5
c1.8,0.5,3,1.6,3.4,3.4v19.1l-1.4,1.4L179.5,218z"/>
<path id="H-2-7" d="M183.6,223.5l1.4,1.4v19.1c-0.5,1.8-1.6,3-3.4,3.4l-2-5.5v-14.3L183.6,223.5z"/>
</g>
<path id="middle-digital" d="M197.2,214.6h-5.5v-5.5h5.5V214.6z M197.2,236.4h-5.5V231h5.5V236.4z"/>
<g id="Minute-1">
<path id="M-1-1" d="M209.5,205.1v13l-4.1,4.1l-1.4-1.4V203L209.5,205.1z"/>
<path id="M-1-2" d="M204,242.6v-17.7l1.4-1.4l4.1,4.1v13
L204,242.6z"/>
<path id="M-1-3" d="M227.9,247.3h-20.5c-1.8-0.5-3-1.6-3.4-3.4l5.5-2h16.4L227.9,247.3z"/>
<path id="M-1-4" d="M225.9,203.7h-16.3l-5.5-2c0.5-1.8,1.6-3,3.4-3.4
h20.4L225.9,203.7z"/>
<path id="M-1-5" d="M227.2,220.1l2.7,2.7l-2.7,2.7h-17.7l-2.7-2.7l2.7-2.7H227.2z"/>
<path id="M-1-6" d="M227.2,218v-14.3l2-5.5c1.8,0.5,3,1.6,3.4,3.4
v19.1l-1.4,1.4L227.2,218z"/>
<path id="M-1-7" d="M231.3,223.5l1.4,1.4v19.1c-0.5,1.8-1.6,3-3.4,3.4l-2-5.5v-14.3L231.3,223.5z"/>
</g>
<g id="Minute-2">
<path id="M-2-1" d="M245,205.1v13l-4.1,4.1l-1.4-1.4V203L245,205.1z"/>
<path id="M-2-2" d="M239.5,242.6v-17.7l1.4-1.4l4.1,4.1v13
L239.5,242.6z"/>
<path id="M-2-3" d="M263.4,247.3h-20.5c-1.8-0.5-3-1.6-3.4-3.4l5.5-2h16.4L263.4,247.3z"/>
<path id="M-2-4" d="M261.3,203.7H245l-5.5-2c0.5-1.8,1.6-3,3.4-3.4
h20.4L261.3,203.7z"/>
<path id="M-2-5" d="M262.7,220.1l2.7,2.7l-2.7,2.7H245l-2.7-2.7l2.7-2.7H262.7z"/>
<path id="M-2-6" d="M262.7,218v-14.3l2-5.5c1.8,0.5,3,1.6,3.4,3.4
v19.1l-1.4,1.4L262.7,218z"/>
<path id="M-2-7" d="M266.8,223.5l1.4,1.4v19.1c-0.5,1.8-1.6,3-3.4,3.4l-2-5.5v-14.3L266.8,223.5z"/>
</g>
</g>
<circle style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" cx="253.3" cy="182.3" r="7"/>
<circle style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" cx="218.3" cy="182.3" r="7"/>
<circle style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" cx="170.3" cy="260.3" r="7"/>
<circle style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" cx="135.3" cy="260.3" r="7"/>
<circle style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" cx="193.3" cy="272.3" r="7"/>
<g id="Animate-Ball-Line_1_" style="fill:none;stroke:#C69F73;stroke-miterlimit:10;">
<path id="a-b-l" d="M 346,247.3,324,269.5,233,269.5,223,272.5,193,272.5"/>
</g>
<g id="Second-line_1_">
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="253.3" y1="182.3" x2="273.6" y2="162.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="351.5" y1="209.2" x2="305.5" y2="162.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="274" y1="162.5" x2="305" y2="162.5"/>
</g>
<g id="Minute-Line_1_">
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="362.7" y1="189.3" x2="322.7" y2="149.3"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="323" y1="149.5" x2="252" y2="149.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="218.3" y1="182.3" x2="252.3" y2="149.5"/>
</g>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="390.5" y1="162.5" x2="343.5" y2="115.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="343" y1="115.5" x2="214" y2="115.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="214" y1="115.5" x2="185.7" y2="87.2"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="404.5" y1="149.3" x2="357.6" y2="102.4"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="358" y1="102.5" x2="287" y2="102.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="287" y1="102.5" x2="273.6" y2="115.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="185.5" y1="87" x2="185.5" y2="77"/>
<rect x="177.5" y="61.5" style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" width="16" height="15"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="419" y1="134" x2="366" y2="81"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="362.7" y1="258.3" x2="321.2" y2="299.8"/>
<line style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" x1="321" y1="299.5" x2="48" y2="299.5"/>
<g id="animate-to-about_1_" style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;">
<path id="a-t-a"
d="M 373.5,272.5,327,319.5,218,319.5,217.5,328,327,328.5,326.5,336,217,336.5,216.5,344,
327,344.5,326.5,353,72,353.5,71.5,648,136,648.5"/>
</g>
<circle style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" cx="48.2" cy="299.2" r="14.5"/>
<circle style="fill:none;stroke:#C69F73;stroke-miterlimit:10;" cx="48" cy="299.7" r="6"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="437.5" y1="328" x2="408.5" y2="357"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="408" y1="357.5" x2="363" y2="357.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="362.5" y1="358" x2="362.5" y2="343"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="362.5" y1="343" x2="377.5" y2="328"/>
<circle style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" cx="377.7" cy="327.8" r="10.2"/>
<circle style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" cx="128.7" cy="141.8" r="7.8"/>
<g id="Hour-2-Line_1_">
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="128.5" y1="142" x2="128.5" y2="166"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="128.5" y1="166" x2="85.2" y2="209.3"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="85.5" y1="209" x2="85.5" y2="279"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="85.5" y1="279" x2="95.2" y2="288.8"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="95" y1="288.5" x2="170" y2="288.5"/>
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="169.5" y1="289" x2="169.5" y2="260"/>
</g>
<g id="Hour-Line_1_">
<line style="fill:none;stroke:#C69F73;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="135.5" y1="260" x2="135.5" y2="279"/>