-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1323 lines (1307 loc) · 139 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 itemscope="" class=" chrome-clearly-theme-default"><!--<![endif]-->
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- META FOR OUR ROBOT OVERLORDS -->
<!--
''''''''''''''''''''''''''''''''''''''''''';''''''''++#############+''+'''++######@@@@#############++''''''''';;';''''''';;'''';;'''''''''''''''''''''''''''''
'''''''''''''''''''''''''''''''''''''''''''''''+'###@@#@############'#+'''+++++###@###########@@@###@#####+''';;;;''''''';;''';;'''''''''''''''''''';''';'''''
'''''''''''''''''''''''''''''''''''''';;;'''''+##+######################+######################@@###@#######++'''''''';;;;;;;;;''''''''''''''''''''';''';'''''
''''''''''''''''''''''';'''''''''''''';;;;;'+###############################++''++#+##########################+'';''';;;;;;;;;'''''''';;'''''''''''';'''''''''
''''''''''''''''''''''''';'''''';;;''';;;';++######################@###########+++++''++#######################++';;;;;;;;;;'''';'''''';;;;;;;''';'';'';''''''
'''''''''''';'''''''';'''''''''';;;;;;;;;;'#+#######@#########@######@#########+++''+++#############@########@##+'''';;;;;;;;'''';''''';;;;'';;;;;;';';;;'''''
'''''';'''''';;'''''';;;''''''''''';;;;''+####################################+#+###############################@#+''';;;;;;;'''''''''''';;;;;;;;;;;;;;;;;;'';
;;;''';;';;';';;'''''';;';'';;;;;;;;;;;;+###################################++++@#############################@##@#+'';;;;;;;;''''';'''''';;;;;;;;;;;;;;;;;;';
'';';;;;;'';;;;;;'''';;;'';;;;;;;;;';;;++###+###############################++#++++#################################+';;;;;;;;;''''';;'''';;;;;;;;;;;;;;;;;;;;
;'''';'';';';;';;;''';;;;;;';;;;;;;;;;''#####@####@########################+++++''+++++#########################@####+';;;;;;;;;''''';''''';;;;;;;;;;;;;;;;;;;
''''''''''';;;';;;;';;;;'''''''''';;;;+#######@@##################+##@#######++++'++################@#@@###########@##+';;;;;;;;;''''';''';;;;;;;;;;;;;;;;;;;;
''''';;;;;;;;;;;;;;;;;''''''''''''''''+###@##################+########++###+###+'+';;'''+###########@@#############@###+'''';;;;;;''''';'';;;;;;;;;;;;;;;;;;;;
''''';;';;;;;;;;;;';;;''''''''''''''+##@#####################++''''######+++++++';';''+#############@@#@@##########@####'''''''''''''''';;;;;;;;;;;;;;;;;;;;;;
'''';'''';;;;;;;;;;;''''''';;;;;'''+######################+#+;'++++';;++++##+'+'++#+++++############@@#@@@###########@#@#+'''''''''''''';;;;;;;;;;;;;;;;;;;;;;
;;;''''''';;;;;;;;;'''''''''';;;;''#########################++#++'+'++';'++++'''+++#++####@###########@@@###########@@##@#+''''''''''';;;;;;;;;;;;;;;;;;;';;;;
;;''''''''';;;;;;;'''''';'''';';;'+##@########################+':;++++#;+''++##+'+#+''###@@###########@#@############@@##@#+'''''''''';;;;;;;;;;;'';;;;;;;;;;'
;''''''''''';;;;;'''''';;'';'''''+##########################++''''';;###++#'#+#########@############@@@#################@###';';;;'';;;;;;;;;''''''''''''';;;;
''''';;'''';;;;;;''''';;;;';;'''+#########################+'+'++'';'##++##++########@##@############@@@##################@###';;;;;;;;;;;;''''''''''''''''';;;
'''';;;'''';;;';''''';;;;;';;;'+###############@########++####'''+#+''#####@++######################@@@######################+';;;;;;;;;;;'''''';;;;;';'''''';
''';;;'''';;;;;;'';;''';;;'';''#######@###############+'''';+''++####++##########################@@@@@##@@@###@######@########+;;;;;;;;;'''''''';;;;;;;;;'''''
'';;;'''';;;;;;''';;''';;;'';'+#@##################+#+++';''++''++##############################@@######@@@###@##@#############';;;;;;;'''''';''';;;;;;;;;;'''
';;;''''';;;;;;''';;''';;;;';'+######@#####@@#######++++''#+'+#+#+##################@#########################@################+;;;;;;;''''';;';'';;;;;;;;;;''
;';''''';;;;;;;'';;;'';;;;;''+#@###################+''';'#+'+++#+################@###########################@###@#############@+;;;;;''''';;;';;'';;;;;;;;;;'
''''''';;;;;;;;'';;;'';;;;;'+'#@@##########@########++';'+++++#+################################+++##############@###############';;;''';';;;;;';;;';;;;;;;;;;
'''''';;;;;;;;;'';;;;';;;;''+####################+++''''#''++++################+##++''++'+++++++'++++++++########@##############@#';;'';;';;;;;';;;'';;;;;';;;
'''';;;;;;;;;;''';;;;';;;''+##@#@################++++##++'+'+++####+++#++#+++'''''';';';''+''''''''''''+++++####################@#+;'';;;';;;;;';;;;'';;;;'';;
;;;;;;;;;;;;;;''';;;;';'''+#@##########++#####+####+##++++++++++++++++'++'';;;;;;;;;;;;;;;''';'';;;;'''''+++#######@############@##''';;;';;;;;';;;;;;';'''';;
;;;;;;;;;;;;;;''';;;;';;'+##@@########++####'+++#####''''''''''''''''''';';;;:::::::::::;;:;;;;;;;;;''''''+++#################@#@##+';;;;';;;;;;;;;;;;'''';;';
;;;;;;;;;;;;;;;'';;;;';'+##@@#########+#+##+++++####+'''''''';;'';;;;;;;;;::::::,,::::::::::::;;;;;;;;;'''+++++#####################';;;;';;;;;;';;;;;;';;;;''
;;;;;;;;;;;;;;;'';;;;';'+####@#######+###++''+'####';;;;;;;;;;;;;;;;::;:::::::,,,,,,,:::::::::::;;;;;;;;;''+++++#####@@#############';;;;';;;;;;';;;;;;;;;;;;'
;;;;;;;;;;;;;;;;';;;;';'#@@@@############++'++'##@+;::;::::;::::::::::::,:,,,,,,,,,,,,:,:::::::::::;;;;;''''++++##################@#+;;;;';;;;;;';;;;;;;;;;;;'
;;;;;;;;;;;;;;;;';;;;'''####@@###'#####+'+++'+@##+;:::::::::::::::::,,,,,,,,,,,,,,,,,,,,:::::::::::;;;;;;''''''+++#####@##########@##';;;;;;;;;;'';;;;;;;;;;;;
;;;;;;;;;;;;;;;;';;;;''+############@##+''++####+':,,:::::::::::,,,,,,,,,,,,..,,,,,,,,,,:,::::::::::;:;;;;''''++++++####@############';;;;;;;;;;;'';;;;;;;;;';
;;;;;;;;;;;;;;;;';;;;''######@#######+++++'++####;:,,,,,,,,:,,,,,,,,,,,,,,,,,,,,,,,,,,,,::::::::::::::;;;;;;'''++++++##@#####@#######+;;;;;;;;;;;;';;;;;;;;;''
;;;;;;;;;;;;;;;;;';;;;++############+'+#'+'+####':,,,,,,,,,,,,,,,,.,...,,,,,,,.,,,,,,,,,,:::::::::::::;;;;;;'''+'++++################+;;;;';;;;;;';;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;';;;+###@###'#####+#+#++'#####;,,,,,,,,,,,,,,,,,.............,.,,,,,,,,,:::::::::::;;;;;;;;''''+++++####@##########+';;;';;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;';'+######''####'#'+;+'+####;:,,.,,,.,,...,,................,,,,,,,,,,,::::::::::::;;;;;;;'''''+'+#####@########@##';;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;''+###+##'+##+'+;+@''+####+:,,..,.............................,,,,,,,:,,:,:,:::::::;;;;;'''''''''+####@#########@#+;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;'+#@+++'++#+#;;'#;+'+####+:,,...,..,........................,,,,,,,,,,,:,:,::::::::;;;;'''''''''+###@############+;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;';;;;;'+##''#'+'+#''+++'+;####+':,..,.,,.........................,,,,,,,,,,,::,::::::::::;;;;';'''''''++###@#########@##;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;'+#++''+;++''#++;'++####+;:,............................,...,,,,,,,,,:::,::::::::;;;;;'';;''''''++##############@#';;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;'##+#+:;'##;'+++'';#####+::,................................,,,,,,,,::,,:::::::::::;;;;''''''''''+##############@##';;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;'''##'+#'''#+'+'++'+'#@@##';,,...............................,.,,,,,,,,:,,::::::::::;;;;;;'''''''''+####@#@#######@#@#+;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;''##''++;++'#++''+'######;;,,..............................,,,,,,,,,,,::::::::::::::;;;;;;''''''''+########@##########+;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;+##';'+'#''#+++;+'#####+';,............................,,..,,,,,,,,,,,,,::::::::;:::;;';;''''''''+########@########@##+';;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;+##+;;'+++'++++++++#@##+':,,.....,................,.,..,,,,,,,,,,,,,,,::::::::::;::;;;;;;''';''''+######@#@###########';;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;''+++;''+'++#+#'#++###@#+':,.,........,................,,,.,.,,,,,,,,,,:,::::::::;;:;;;;;;;''''''''+#####@@@##@########+;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;'#++'+++++##++'#+###@##+';,.,......,..,...........,...,.,,,,,,,,,,,,,::::::::::;;:;:;;''''''''''''+#####@@@##@#########;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;'+++''+'#+#+#++####@####+;,,,...,...,.,,.....,,..,,,...,,,,,,,,,,,,,:::,::::::::;;:;;;;;;;''''''''+#######@############;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;+++''+++++#+#+#########++;,...,.....,.................,,,,,,,,,,,,,,,,::::::;;::::::;;;;''''''''''+#######@############;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;+#+''+'+###+#######@####':,,.........,.,...............,,,,,,,,,,,,,,:::,::::::::::;;;;;'''''''''++#######@############;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;+##+;'+++#++#####@#@####+:,,.............................,,,,,,,,,,,,,::::::::::::;;;;;;;'''''''''++##@###@#########@##;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;'###';+#+#+#+####@######',,...........,,................,,,,,,,,,,,:,,:,::,:::::::;:;;;;;;'''''''++###@###@#########@##;;;;;;;;;;;;;;;;::
;;;;;;;;;;;;;;;;;;;;;'#@#+;+#+#+#########@###;,,,,,......................,,.,,,,,,,,,,,,,,,,,::,,:,::::;:;;;;;'''''''+++###@###@############;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;'###+;+++#+#+#######@###';,.,,,,,..,.....,..........,,,,,,,,,,,,,,,,,,,,,,,,:,::::;;;;;;;;'''''''++###@###@#########@##';;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;###+''++#+#############;:,,,,,,....,.,,,,,...........,,,,,,,:,,,,,:,,,,,,,,,,::::;;;;;;;''''''++++##@@###@##########@#'';;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;+####;#+#'+#@##########::,,,,,.,.,,..................,,,,,,,:,,:,,,,,,,,,:,,::::;:::;;;;''''''+++++##@##############@#';;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;'####;#'#'+############;,,,,,,,,,..................,.,.,,:,,,,,,::,,,,,,,:,,:::::;:;;;;'''''++++++#####################;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;+####''+#+++####+#####+:,,,,,,,,,.......,,..........,,,,,,:,,,,,,::,,,,,::::::::;;;''''++++++++++++#############@@####@';;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;#@###+++#''+####+#@###+:,,,,,,,,.....,,,.,,......,,,,,,,,:::::,,:::::,,:::::::;:;;'''++++++#+++++++###############@#####;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;+######+#++'##++#+#####+:,,,,,,,,,,...,,::;::,,,:,,,,,,,::::::::,::::,::::::::;;;'+'+++###++##++++++##################@@#';;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;+#@@###@++##'++#+#+#####',,,,,,,,,,,,,,,,:;;:::::;::::::::::::::::::::::::;:;:;;''+#+++##########++++##@###############@@#+;:;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;'############'+#@+######+;,,,,,,,,,,,,:;;:;'';;;';'''';;;;;;;;;::::::::::;;;;;'''++#++#############+++###################@##';;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;'+######@####++###+######::,,,,,,,,,,';;;;;;;;''''+'';''';';;;;::::::::;;;;';;''+++++##############+++######@##@#######@@###';;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;+###@########+++#+#####+:,,,,,,,,,:;:';;;;';;'+++'++'''+'''';;;:::::;;;;;''+#+++++#########+###+##+++#@####@@@@@#@#########';;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;'##@#####@###+########+':,,,,,,,:,:;;;';;';';'+++++++#++++''';;::::::;;'''++####@#################+++#######@@@@@@#####@###';;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;#######@#############;:,,,,,,,:;;'';';''+++#+##+#+##+++''';;;::::::;''++######@####;'###########+++#######@#@##@@@@@@@###';;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;#######@############+;:,,,,,,,:::;'';'#++############++''';;;::,,::;;++########+@+';,:+##++####++++#######@#@@#####@@####;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;'#@#####@##@#########+;::,,,,,::;;;''+#''+:#''+#+#,++#+'''';:::,,,::;;++####++#,'#+''.,++##+#+++++++###@@##@@@@####@@####+;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;'#####@@#######@#####;:,,,,,,::;;;;';;';`.'::+#'+,,++'+';;;::,,,,,:;;+#####:;++##'+;,''+#++++++++++####@##@#@@####@@##@@';;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;''##+################+':,,,,,,,:::;;:;;::,`''+#+''..++;:';:::,,,,,,:;'++++##:.+++'++,;;''++++''+++++######@@@@#####@###@#;'';;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;'';;'+##################';:,,,,,,,:::::::,::::.';;:':.,'':;;,::,,,..,,,:'++++##+','#++;';'++++++++'++++######@@@@########@@''';';;;;;;;;;;;;
;;;;;;;;;;;;;;;;;'''';'+#####@############+;:,,,,,,,,,,,,,,,,,::::''';,:;';';,:,:,,,...,:;;+++++''';';;''++''++''+'''+++####@##@@@@##@####@@#'''';;;;;;;;;;;;;
;;;;;;;;;;;;;;;;'''''''+##################+::,,,,,,,,,,,,,,,,:,:,:,::;;:;;:::,:,,,,,,.,,,:'+++++'';;;''''''''''''''''++++###@##@@@@##@####@#;;;'''';;;;;;;;;;;
;;;;;;;;;;;;;;;';;''''''##################+::,,,,,,,,,,,,.,.,,::::;;';;;:::::,,:,,,,..,,,:'+++''';';';'''''''''''''''++++###@##@@@@##@####@#;;;;''';;;;;;;;;;;
;;;;;;;;;;;;;;''';;'''''#####@#########@##+:,,,,,,,,,,,,,,,,,,,,,,:::::::::::,,,,,,,...,::'+++'''';;;;;;';;';;''''''''+++######@#########@#+;;;;'''';;;;';;;;;
;;;;;;;;;;;;;''''';;;'''+###@#########@@@#;:,,,,,,,,,,,,,,..,,,,,,,:,::::::,,,,,,,,,..,,,:''+'''';;;;;;;;;;;;;;;';''''+++######@#########@#;;;;''''''';;;;;;;;
;;;;;;;;;;;;''''';''''''+#############@###;:,,,,,,,,,,..,,.,,.,,,,,,::::,::,,,.,,,,,..,,:;'''+'';;;;;;;;:;;;;:;;';;'''++#######@########@@#';'''''''''';';;;;;
;;;;;;;;;;;''''';;'';''''+###@########@##';:,,,,,,,,,,,,,,,,,,,,,.,,,,,,,,,,..,,,,,,...,,;'''''';;;;;;;;;:;;;;;;;;;''''+#######@##########+;;'''';;;'';;;;;;;;
;;;;;;;;;;''''';'''''''''+###############'::,,,,,,,,..,..,,,,,,,,,,,,,,,,,,...,,,,,,..,,:;'''''';;;;;;;;;;;::;;;;;;''+++#+#####@########@#+;'''';;;;;'';;;;;;;
;;;;;;;;;''''';;''''''''''###@@@@#@######+::,,,,,,,.....,.,,,,,,,,,,,,,,,......,,,,,..,,:;'''''';;;;;;:;::::;;;:;;;;'+++#+#########@###@@#'''''';;;;;;;;;;;;;;
;;;;;;;;''''';;'''''''''''+#############+';:,,,,,,,.......,.,,.,,,,,,,,,,.......,,,,,..,:;''''';;;;;;;:::::::::;;;;''+++###########@##@@#+''''';;;;;;;;;;;;;;;
;;;;;;;''''''''''''''''''''##@'#########+'':,,,,,,,,..........,,,,,,,,........,,,,,,...,:;'''''';;;;;;;::::::::;;;;''+++############@@@#+''''';;;;;;;;;;;;;;;;
;;;;;;'''''''''''''''''''''@@@#:'#####@#+'':,,,,,,,.............,..,,..........,,,,,...,:;'+'''''';;;;;;:::::::;;;;''++#############@@#+'''''';;;;;;;;;;;;;;;;
;;;;;';''''''''''''''''''''#@##:,;'+######'::,,,,,,,...........................,,,,,...,:;;+''''';;;;;;;;;:;:;:;;;'''++++#####@@@##@@@#'''''''';;;;;;;;;;;;;;;
;;;;'''''''''''''''''''''''+##@::::++####+';,,,,,,,.......................,...,,,,......,:;'+''''';;;;:;;:;;::;;;''''++++############+'''''''''';;;;;;;;;;;;;;
;;;''''';'''''''''''''''''''@##':;:;+#@#+';;,:,,,,,.........................,,,,,,,.....,:;'+'+''';;;:::;;:::::;;;'++++#+####@####@#''''''''''''';;;;;;;;;;;;;
;;;;''''''''''''''''''''''''+##@:::;+#++++#:::,,,,.,.,.....................,,,,,,,......,:;'+++''';;;;;:;;:;::;;;''++++++####@##@##+'''''''''''''';;;;;;;;;;;;
;;;;;'''''''''''''''''''''''+#@#+,::+++##+;':,,,,,,,,,....................,.,,,,,,......,:;''++++';;;:::;;;::;;;;'++++++####@@##@@+''''''''''''';';;;;;;;;;;;;
;;;;'''''''''''''''''''''''''@#@#::;;;;++#';:,,,,,,,,,,.................,,,,,,,,,,......,:;;'+'++''';;;::;;:;;;;''++++++####@@####'''''''''''''''';;;;;;;;;;;;
;;;;;;'''''''''''''''''''''''###@#::::;::+'+::,,,,,,,,,,,...........,.,,,,,,,,,,,,......,::;''++++'';;:::;;;;;;;'+++++++####@@@#@'''''''''''''''';;;;;;;;;;;;;
';;'';'''''''''''''''''''''''###@#'::::,:;';::,,,,,,,,,,............,.,,,,,,,,,.........,::;''''++'';;;;;:::;;;;'+++++++########@''''''''''''''';;;';;;;;;;;;;
'''''''''''''''''''''''''''''+#####:,,,:,:;:,:,,,,,,,,,,,,...........,.,,,,,,...........,:::'''''+''';;;;;:;;;;''+++++++####@##@@''''''''''''''''''';;;;;;;;;;
''''''''''''''''''''''''''''''######::,:::::::,,,,,,,,,,,,,.........,.,,,,,,...........,,::;''''''+'';;;;;;;;;'''++#+++#####@##@@'''''''''''''''''';;;;;;;;;;;
''''''''''''''''''''''''''''''#######::;;;;::,,,,,,,,,,,,,,,.........,,,,,,.....,......,,::;++''''++'';;;;;;;;'''+++++++##@@@####''''''''''''''''''';;;;;;;;;;
''''''''''''''''''''''''''''''+@###@#+::'+:::,,,,,,,,,,,,,,,,,.....,,,,,,:,,,,,,,,,,,,,,::;'++++++#+'';;;;;;;''''+++++++###@@####''''''''''''''''''';;;;;;;;;;
''''''''''''''''''''''''''''''+##@@@@@###'::::,,,,,,,,,,,,,,,.,,...,,,:::,,,:::;';:,,,,:;;'+#####+#+''';;;;;;;''+++++++####@@###+''''''''''''''''''';;;;;;;;;;
';''''''''''''''''''''''''''''+####@@@###;:::,,,,,,,,,,,,,,,,,,...,,,:,::,,,:;+###+':::;''+########+'';;;;;;'''+++#++++###@#@###+''''''''''''''''''';;;;;;;;;;
'''''''''''''''''''''''''''''''+###@@@##@';:::,,,,,,,,,,,,,,,.,.,,,,::::,,,,:'+;:;;;;;''+########++''';;;;;;''''+++++++###@#@#@#'''''''''''''''''''';;;;;;;;;;
'''''''''''''''''''''''''''''''+#@@@@@@##'::::,,,,,,,,,,,,,,,,.,,,,,,::,,,,.,:;;:,::;;'+#######++++''';;;;;'''''+++++++#####@@#+''''''''''''''''''''''''''''''
'''''''''''''''''''''''''''''+''+#####@##'::::,:,,,,,,,,,,,,,,,..,,,,,,,...,.,,,,,,,:;';''++#+++++''''';;;''''+++++++++######@+'''''''''''''''''''''';';''''''
''''''''''''''''''''''''''''+++''+####@##':::::,,,,,,,,,,,,,,,,,.,,,,,,......,.,.,.,,;':;;+++++++'''''';;'''''++++++++#####@##+'''''''''''''''''''''';;'''''''
''''''''''''''''''''''''''''+++''++######':::,::,,,,,,,,,,,,,.,.,,,,,,.......,,,,,,,;'+;:;'+++''''''''';'''''+++++++++####@##''''''''''''''''''''''''';'''''''
''''''''''''''''''''''''''++++++''+######+::::::,,,,,,,,,,,,,,,.,,,,,........,,:::::;'+';;''+#++'''''''';;'''+++++++++###@#+'++''''''''''''''''''''''''''''';;
'''''''''''''''''''''''''++++++'''++#@###+,:::::::,,,,,,,,,,,.,.,,,,,...,,.,,,;:;:':''++++;+++++++'''''';'''++++++++++###+''''+'''''''''''''''''''''''''''''';
'''''''''''''''''''''''''++++''+++++#@###',,::,,,:,,,,,,,,,,,.,,,,,.,.,,,:,,;';'''''';#'+;''#+###+++''+''''''++++++++####+''''''''''''''''''''''''''''''''''';
''''''''''''''''''''''''++''''+++++'###@#+:,::::,::,,,,,,,,,,,.,,,,,.,,::,,;'''''''+#++@'++++#+##+#++++++'''+++++++++###+++''+''''''''''''''''''''''''''''''''
''''''''''''''''''''''+++++'''++++''+##@##:,:::::::,,,,,,,,,,,,,,,,,,,:;;;;'++++++''#+##+++'+#####+#+#+++'''+++++++++###+'++'++'''''''''''''''''''''''''''''''
'''''''''''''''''''''+++++'++++++'++++#@##,,:::::::,,,,,,,,,,,,,,:::,:';'+'+'+#++''+++#+##'#+#'+########+++'++++++++####'+''''+'''''''''''''''''''''''''''''''
''''''''''''''''''''+++++''++++++++++++###,,,::::,:,,,,,,,,,,,,,::;;;;+''+'++'++'+++'@#''++'+++#+######+#+++++++++++###++'+'''+'''''''''''''''''''''''''''''''
'''''''''''''''''''''++++++++++++++++++###,,,:::::::,,,,,,,,,,::::'''+++'+'++++;''#++##++'+'#'#++##########++++++#+####+''++''+'''''''''''''''''''''''''''''''
''''''''''''''''''++++++++++++++++++++++#@,,,::::::,,,,,,,,,,,,';'''''+#+++'+;'''''+++#'+'+++'++###########++++++#+###+++''++'+'''''''''''''''''''''''''''''''
'''''''''''''''''+++++'++++++++++++++++++#,,,,:::::::,,,,,,,,:;;'+++'#'+''+;'';;':;';'''''+++++##+#######@++#++++#+###+++''++++'''''''''''''''''''''''''''''''
''''''''''''''''++++++++++++++++++++++++++,,,,:::::::,,,,,,,,:';'+'+'+'';'';;;:''++';';'+#######+#++######+#+###+++##++++''++++'''''''''''''''''''''''''''''''
'''''''''''''''+++++''++'+++++++++++++++'+,,,,,::::::,::,,,,,:::++''+;+'+++++++'++++#+'+####@#######+#####+########+#++++''+++''''''''''''''''''''''''''''''''
'''''''''''''''+++++'+++'+++++++++++++++++,,,,,::::::,:::,,,,;:;'+''###+';:::::,,::;:;:;;';'++#####@#########+##+###+++++'++++''''''''''''''''''''''''''''''''
''''''''''''''+++++'+'++++++++++++++++++++::,,,,::::::::::,,,:::''++++;::,,,.,.,,.,,,,::::;;;''++++#########+####+##+++++++++'''''''''''''''''''''''''''''''''
''''''''''''++++++++'+++++++++++++++++++'+:,,,,,;::,::::,,::::,:;;'';::,,,,..........,,,,::::;'''++##++++########+#++'+++++++'++''''''''+''''+''''''''''''''''
'''''''''''+++++++++++++++++++++++++++++++;:,,,,,:::::::,:::,:::;;;::,,,,,,,,,...,,::,::;::;;;''+'+++++++++########++'+++++++'++'''''''++++'''''''''''''''''''
''''''''''++++++++++++++++++++++++++++++++;:,,,,,::::::::::::::::;:::,,,,,:,,,,,,:;'';'+';;'''++++++++'+++++######++''+++++++++++++''+++++''''''''''''''''''''
''''''''''+++++'++++++++++++++++++++++++++:,,,,,::;:::::::::::::::::::,,,:::::::;''+++#+';++++++++++'''+++++######++++++++++++++++++++++''''''''''''''''''''''
'''''''''''+++''++++++++++++++++++++++++++::,,,,,:;:::,:::::::::::::::::::::;;;;'++#++#+''++++++++++++++++++#####+++++++++++++++++++++++''''''''''''''''''''''
''''''''''''++'+++++++++++++++++++++++++++;,,,,,,:;:::::::::::::::::::::::::;;;'+++++++++'+++#+++++++++++++#####++++++++++++++++'+++++++'''''''''''+''''''''''
''''''''''''+''+++++++++++++++++++++++++++;:,,,,,::::::::::::::::::::::::::::;;'+++++'++++++++++#+++++++++######++++++++++++++++++++++++++''''''''''''''''''''
''''''+'''''+''+++++++++++++++++++++++++++;,,,,,,:::;:::::::::::,:,,,:::::::;;;;;;;;;''++'+++++++++++++++++#####++++++++++++++++++++++++++''''''''''''''''''''
''''++++''''+''+++++++++++++++++++++++++++',,,,,,,:::;;::::::::,,,,,,,,,,,::,,..,,,::::;'''++'''''''''++++######'+++++++++++++++++++++++++''''''''''''''''''''
'''+++++++++++'+++++++++++++++++++++++++++':,,,,,:::::;::::::::,,,,,,,,,,,,,.,....,,,,::;;''';;;'''''''+++#####;'#++++++++++++++++++++++++++''''''''''''''''''
''++++++++++++'++++++++++++++++++++++++++'',,,,,,,:::;;;;::::::,,,,,,,,,,,,,......,,,,,:;;;;;;;;;;''''+'+#####;;;@#+++++++++++++++++++'++++++'''''''''''''''''
+++++++++++++'++++++++++++++++++++++++++++'::,,,,:::::;;;;;:::::,,,,,,,,,,,......,,:,,::;;;';;;;'''';''++####';;'@##+++'++++++++++++++''++++++''''''''''''''''
+++++'+++++++++++++++++++++++++++++++++++++:,,,,,,:::::;;;;:;::,:,,,,,,,,,,,,,..,,::::::::;;;;;;;;;''+++####';;'##@#++++++++++++++++++''++++++''''''''''''''''
++++'++++++++++++++++++++++++++++++++++++++,,,,,,,:::::;;;;;;:::,,,,,,,,,,,,,..,,::;::::::;;;;;;;;;''+++###';;;+@@##++++++++++++++++++''++++++''''''''''''''''
+++'+++++++++++++++++++++++++++++++++++++++,,,,,,,,:::::;;;;;;::::,,,,,,,,,,.,,,::;;::::::;;;;;;;;;'+++###;::;'@#@###++++++++++++++++++'++++++''''''''''''''''
++''+++++++++++++++++++++++++++++++++++++++,,,,,,,:::::::;;;;;;;:::,,,,,,,,,,,,:::::::::::;;;';;;'''+#++#;;:;;###@@##++++++++++++++++++'+++'+'''''''''''''''''
+++++++++++++++++++++++++++++++++++++++++++:,,,,,,,:::::;;;;;;';:::,,,,,,,,,,:::::;:;:::::;;;''';'++++##:;::;###@@#@#++++++++++++++++++'+++++''''''++++++'''''
+++++++++++++++++++++++++++++++++++++++++++:,,,,,,::::::::;:;;;;';:::,,,,,,,,:::;;;;:::::;;;'''';''+##'::::;####@##@##++++++++++++++++++++++''''+++++++'++''''
+++++++++++++++++++++++++++++++++++++++++++,,,,,,,,:::::;;;;;;;;;';:::::::,::::;;;;;::::;;';'+'''+++#'::::;##@####@@@@+++++++++++++++++++++''+++++++++''''''''
++++++'++++++++++++++++++++++++++++++++++++:,,,,,,::::::::;;;;;;;;;;:::::::::::;;;;;;::;;;''''+'++##+::::;#########@###++'+++++++++++++++++''+++++++++''''''''
+++++++++++++++++++++++++++++++++++++++++'':,,,,,,:::::::::;;;;;;;;';:;;:::::::;;;;;;:;;''''++++++#+::::'##########@###++''++++++++++++++++'++++++++++''''''''
'++++++++++++++++++++++++++++++++++++++++'::,,,,,,,:::::;;;;;;;;;;;;;';;;;::;;;;;;;';;''''+++++++#+:;::'@@#@@@######@@##++++++++++++++++++++++++++++++++''''''
'+++++++++++++++++++++++++++++++++++++++++:,,,,:,,::::::;;;;;;;;;;;;;''';;;;:;;;';';'''+++++#####+:;::'#@@######@@@######+++++++++++++++++++++++++'++'+++'''''
++++++++++++++++++++++++++++++++++++++++++..,,,,,:::::::;;;;;'''''';;;''''''+''''+''''+++#+####+::;::+@@@@@#####@@@####@##++'++++++++++++++++++++++'+'''+'''''
++'++++++++++++++++++++++++++++++++++'+++'``::,,,:::::::::;;;';'''''';;'+'+++++++++++########'::;::;#@@###@############@@#+''+++++++++++'++++++++++'++''++''''
+++'+++++++++++++++++++++++++++++++++'+++:.`,:,:::::::::;:;;;'''''''''''+'+++#############+;;;:;:;;####@@@@################++++++++++++++++++++++++'++''''++''
++++++++++++++++++++++++++++++++++++++++'.``.:,,,:::::;;;;;;;;;;'''''''+'++++##########@+;;:::;:;'#@#@@#################@@##+++++++++++++++++++++++''+'''''++'
+++++++++++++++++++++++++++++++++++++++',.```,:,::::::;::;:;;;;;;;'''++++++#++########+';;:;::;;+@@@#@######################+'++++++++''++++++++++'''+''''''++
+++++++++++++++++++++++++++++++++++''+'+`````,,::::::::;:;;;;;;;;''''+++++++########+;;;:::::;;+#@#####@#####################++''+++++++++++++++++'''+'''''''+
++++++++++++++++++++++++'++++++++++++'';.````.:::::::;::;;:;:;''''''+++++++++#+###';:::::::::;'###@###########################+'++++++++++++++++++'''++'''''''
+++''''+++++++'++++'+++++++++'+++++++'+..`````::::::::;:;;:;;;;;;;'+++++''+''++';:::::::,::::+@@##############################+++'++++++++++''++++'''++'''''''
'''''''+++++++'++++++++++++'++++++##+++```````.:,:::::::::;;;;;'''''''''';''':,,,,,,,,,,,,::+###################################''++'''+++++''++++'''+++''''''
'++''''++++++''++++++'+++++++++####+'+'.```````:,,,::;;;;;;:;''';'''';';+',...,,,,,,,,,,,::+####################################+''''''+++++''++++'''++++++'''
'''''''''++++'++++++++'+++++######+'++,````````.;,,,::;;;;;;;'''''';;'':``........,,,,,,,,#######################################++++++++++++++++++'++++++''''
'''''''''++++'++++++++++########++'++#.`````````,::,,:::;;;;;;'';;;;;,````.............,:##########################################++++++++++++++++'+++++++''+
''''+'++++++++++'++++##+++#++++++''++#``````````.';,,::::;;;;''';;;,```````.``.......,.;#######################################@@####+++++++++++++++++++''''''
+++++'++''+++'++++######++#+++++''+++:````````````'::::::::;;;;:::````````````........+########################################@@########+++++++++++++++++++++
++++''++++++++#######+++++++++''''++#.```````````.;;:,::::::::::````````````````.....#####################################################++++++++++++++++++++
+'++++++++#########+++++++++++'+'++++``````````````;:,:::::::;. ```````````````````,######################################################++'+++++++++++++++++
++++++############+++++++++++''''++#;`````````````.,':,,,:,,, ``````````````````.,#########################################################++++++++++++++++++
+++##############+++++++++++''''++++.```````````````:;::,,.`````````````````````.:+###########################################################++++++++++++++++
-->
<title> WEBSITE of KASPAR.S</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- MAKING BOB ROSS PROUD -->
<link rel="stylesheet" href="./new_index/bootstrap.min.css">
<link rel="stylesheet" href="./new_index/icons.css">
<link rel="stylesheet" href="./new_index/style.css">
<style type="text/css">object,embed{ -webkit-animation-duration:.001s;-webkit-animation-name:playerInserted; -ms-animation-duration:.001s;-ms-animation-name:playerInserted; -o-animation-duration:.001s;-o-animation-name:playerInserted; animation-duration:.001s;animation-name:playerInserted;} @-webkit-keyframes playerInserted{from{opacity:0.99;}to{opacity:1;}} @-ms-keyframes playerInserted{from{opacity:0.99;}to{opacity:1;}} @-o-keyframes playerInserted{from{opacity:0.99;}to{opacity:1;}} @keyframes playerInserted{from{opacity:0.99;}to{opacity:1;}}</style>
</head>
<body class="show-background show-stars hide-those-particles">
<div class="form-overlay"></div>
<section id="topper" data-midnight="the-darkness" style="height: 938px;">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 contents">
<div class="brand clearfix">
<svg version="1.1" id="logo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 277.8 23.9" enable-background="new 0 0 277.8 23.9" xml:space="preserve">
<g class="word word-digital">
<g class="letter d">
<g>
<rect x="56" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="56" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="56" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="56" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="56" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="56" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="56" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="56" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="56" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="56" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="61" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="61" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="59.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="59.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="66" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="66" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="64.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="64.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="71" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="71" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="69.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="69.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="66" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="66" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="64.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="64.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="71" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="71" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="69.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="69.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
</g>
<g class="letter i i-1">
<g>
<rect x="79" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="79" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="79" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="79" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="79" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="79" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="79" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="79" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="84" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="84" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="82.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="82.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="89" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="89" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="87.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="87.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="84" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="84" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="82.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="82.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="89" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="89" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="87.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="87.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="94" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="94" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="94" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="94" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="94" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="94" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="94" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="94" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
</g>
<g class="letter g">
<g>
<rect x="102" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="102" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="100.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="100.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="107" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="107" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="112" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="112" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="117" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="117" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="115.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="115.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="112" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="112" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="107" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="107" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="102" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="102" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="100.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="100.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="107" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="107" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="112" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="112" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="117" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="117" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="115.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="115.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
</g>
<g class="letter i i-2">
<g>
<rect x="125" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="125" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="123.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="123.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="125" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="125" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="123.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="123.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="125" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="125" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="123.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="123.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="125" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="125" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="123.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="123.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="125" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="125" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="123.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="123.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="130" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="130" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="128.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="128.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="135" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="135" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="133.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="133.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="140" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="140" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="138.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="138.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="135" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="135" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="133.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="133.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="130" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="130" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="128.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="128.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
</g>
<g class="letter t">
<g>
<rect x="148" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="148" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="146.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="146.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="148" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="148" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="146.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="146.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="148" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="148" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="146.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="146.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="148" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="148" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="146.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="146.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="153" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="153" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="151.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="151.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="158" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="158" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="156.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="156.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="153" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="153" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="151.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="151.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="158" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="158" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="156.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="156.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="163" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="163" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="161.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="161.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="163" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="163" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="161.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="161.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="163" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="163" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="161.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="161.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="163" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="163" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="161.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="161.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
</g>
<g class="letter a">
<g>
<rect x="171" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="171" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="169.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="169.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="171" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="171" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="169.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="169.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="171" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="171" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="169.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="169.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="171" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="171" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="169.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="169.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="171" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="171" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="169.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="169.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="176" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="176" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="174.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="174.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="181" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="181" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="179.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="179.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="185" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="185" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="184.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="184.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="176" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="176" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="174.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="174.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="181" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="181" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="179.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="179.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="186" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="186" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="184.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="184.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="186" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="186" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="184.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="184.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
</g>
<g class="letter l">
<g>
<rect x="194" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="194" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="192.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="192.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="202" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="202" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="200.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="200.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="207" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="207" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="205.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="205.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="212" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="212" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="210.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="210.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="217" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="217" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="215.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="215.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="212" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="212" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="210.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="210.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="207" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="207" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="205.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="205.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="202" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="202" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="200.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="200.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="207" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="207" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="205.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="205.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="212" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="212" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="210.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="210.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="217" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="217" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="215.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="215.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
</g>
</g>
</svg>
<div class="hover-blocks clearfix">
<span class="hover-block d" data-color="#ff6f35" data-letter="d"></span>
<span class="hover-block i-1" data-color="#ffb22d" data-letter="i-1"></span>
<span class="hover-block g" data-color="#f7df00" data-letter="g"></span>
<span class="hover-block i-2" data-color="#ffe91e" data-letter="i-2"></span>
<span class="hover-block t" data-color="#26ff6c" data-letter="t"></span>
<span class="hover-block a" data-color="#268bff" data-letter="a"></span>
<span class="hover-block l" data-color="#8b3cff" data-letter="l"></span>
</div>
</div>
</div>
</div>
</div>
<canvas width="1903" height="938"></canvas></section>
<section id="blurb" data-midnight="the-darkness">
<div class="container">
<div class="row">
<div class="col-md-12 contents">
<h2>
<span class="line-1 item" style="opacity: 0; transform: matrix(1, 0, 0, 1, -50, 50);">WELCOME</span>
<span class="line-2 item" style="opacity: 0; transform: matrix(1, 0, 0, 1, -50, 50);">THIS IS KASPAR</span>
<span class="line-3 item" style="opacity: 0; transform: matrix(1, 0, 0, 1, -50, 50);">WWW.ERSAIJUN.CN</span>
</h2>
<hr class="item" style="opacity: 0; transform: matrix(1, 0, 0, 1, -50, 50);">
<p class="lead item" style="opacity: 0; transform: matrix(1, 0, 0, 1, -50, 50);">Hey ! Its my honor that you can visit my site. I am Kaspar from China who is a <strong>engineer</strong> majoring in Computer Vision and Robotics.</p>
</div>
</div>
</div>
</section>
<section id="our-process">
<h2 class="huge-town">
<span class="our" style="opacity: 0.5; transform: matrix(1, 0, 0, 1, 0, 150);">My</span>
<span class="process" style="opacity: 0.5; transform: matrix(1, 0, 0, 1, 0, 150);">Project</span>
</h2>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 contents">
<div class="wrap">
<div class="row">
<div class="col-md-3 col-xs-6 step" style="opacity: 0.4;">
<a href="https://blog.ersaijun.cn" target="_blank"><span class="icon think active" data-match="think"><i class="ti-book"></i></span></a>
<h3>BLOG</h3>
</div>
<div class="col-md-3 col-xs-6 step" style="opacity: 0.4;">
<a href="https://blog.csdn.net/kaspar1992" target="_blank"><span class="icon design" data-match="design"><i class="ti-brush"></i></span></a>
<h3>CSDN</h3>
</div>
<div class="col-md-3 col-xs-6 step" style="opacity: 0.4;">
<span class="icon engineer" data-match="engineer"><i class="ti-server"></i></span>
<h3>PROJECT</h3>
</div>
<div class="col-md-3 col-xs-6 step" style="opacity: 0.4;">
<a href="https://www.linkedin.com/in/ersaijun/" target="_blank"><span class="icon execute" data-match="execute"><i class="ti-list"></i></span></a>
<h3>RESUME</h3>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h4 class="think active">
<span>Study</span>
<i class="ti-star"></i>
<span>Plan</span>
<i class="ti-star"></i>
<span>Summary</span>
</h4>
<h4 class="design">
<span>Technology</span>
<i class="ti-star"></i>
<span>Tutorial</span>
<i class="ti-star"></i>
<span>Creation</span>
</h4>
<h4 class="engineer">
<span>History</span>
<i class="ti-star"></i>
<span>Experience</span>
<i class="ti-star"></i>
<span>Integrate</span>
</h4>
<h4 class="execute">
<span>Update</span>
<i class="ti-star"></i>
<span>Exhibition</span>
<i class="ti-star"></i>
<span>Progress</span>
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="latest">
<h2 class="title">KASPAR</h2>
<div class="contents">
</div>
</section>
<section id="our-services">
<span class="bg-img blurry" style="transform: matrix(1, 0, 0, 1, 0, -100);"></span>
<span class="bg-img normal" style="transform: matrix(1, 0, 0, 1, 0, -100); opacity: 1;"></span>
<div class="container">
<div class="row">
<div class="col-xs-3 contents list clearfix">
<ul style="transform: matrix(1, 0, 0, 1, 0, 0);">
<li>Web Design</li>
<li>C / C++ / Python</li>
<li>CAD</li>
<li>Front end</li>
<li>Photoshop / Premiere</li>
<li>Django</li>
<li>Numpy / Pandas</li>
<li>Pytorch</li>
<li>Microsoft Office</li>
<li>OpenCV</li>
<li>Qt / Visual Studio</li>
<li>Robotics</li>
</ul>
</div>
<div class="col-xs-7 contents title">
<h2 style="transform: matrix(1, 0, 0, 1, 0, 0);">
<span class="our" style="transform: matrix(1, 0, 0, 1, 0, -100);">MY</span>
<span class="services" style="transform: matrix(1, 0, 0, 1, 0, -100);"> ABILITIES</span>
</h2>
</div>
</div>
</div>
</section>
<section id="footer">
<div class="container">
<div class="row logo">
<div class="col-md-4">
<div class="brand clearfix">
<svg version="1.1" id="logo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 277.8 23.9" enable-background="new 0 0 277.8 23.9" xml:space="preserve">
<g class="word word-digital">
<g class="letter d">
<g>
<rect x="56" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="56" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="56" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="56" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="56" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="56" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="56" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="56" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="56" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="56" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="54.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="61" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="61" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="59.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="59.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="66" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="66" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="64.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="64.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="71" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="71" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="69.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="69.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="66" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="66" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="64.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="64.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="71" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="71" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="69.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="69.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
</g>
<g class="letter i i-1">
<g>
<rect x="79" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="79" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="79" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="79" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="79" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="79" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="79" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="79" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="77.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="84" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="84" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="82.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="82.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="89" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="89" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="87.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="87.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="84" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="84" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="82.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="82.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="89" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="89" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="87.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="87.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="94" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="94" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="94" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="94" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="94" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="94" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="94" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="94" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="92.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
</g>
<g class="letter g">
<g>
<rect x="102" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="102" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="100.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="100.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="107" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="107" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="112" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="112" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="21.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="20.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="117" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="117" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="115.3" y="16.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="115.3" y="15.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="112" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="112" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="107" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="107" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="11.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="10.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="102" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="102" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="100.3" y="6.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="100.3" y="5.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="107" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="107" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="105.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>
<rect x="112" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="112" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="1.9" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
<rect x="110.3" y="0.2" fill="#2B282D" width="1.8" height="1.8" style="fill: rgb(255, 255, 255); transform: translate3d(0px, 0px, 0px);"></rect>
</g>
<g>