-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.html
1912 lines (1843 loc) · 192 KB
/
player.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><!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ --><!--[if IE 7]>
<html class="ie7 oldie" lang="en"> <![endif]--><!--[if IE 8]>
<html class="no-js lt-ie9" lang="en"> <![endif]--><!--[if gt IE 8]><!--><html class="" lang="en" style="display: block;"><!--<![endif]--><head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge"><script type="text/javascript" src="https://bam.nr-data.net/1/ffbc20d834?a=4489554&v=1099.d27c17c&to=ZVVSbREEDUMEUEYPX1wfcVoXDAxeSmBCD1VeVUJ6DAsXQgpfXgNCHVxVUBARFl4CQFYHRFdeVFwXBApcFg%3D%3D&rst=3697&ref=https://www.transfermarkt.co.uk/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1&ap=560&be=1086&fe=3607&dc=2211&perf=%7B%22timing%22:%7B%22of%22:1541703514491,%22n%22:0,%22f%22:0,%22dn%22:0,%22dne%22:0,%22c%22:0,%22ce%22:0,%22rq%22:0,%22rp%22:0,%22rpe%22:1108,%22dl%22:1083,%22di%22:2211,%22ds%22:2211,%22de%22:2288,%22dc%22:3607,%22l%22:3607,%22le%22:3612%7D,%22navigation%22:%7B%7D%7D&at=SRJRG1keHk0%3D&jsonp=NREUM.setToken"></script><script src="https://pagead2.googlesyndication.com/pagead/osd.js"></script><script src="https://js-agent.newrelic.com/nr-1099.min.js"></script><script src="https://securepubads.g.doubleclick.net/gpt/pubads_impl_rendering_271.js?21062742"></script><script type="text/javascript" async="" src="https://www.google-analytics.com/plugins/ua/ec.js"></script><script src="//tags.tiqcdn.com/utag/axelspringer/transfermarkt-transfermarkt.de/prod/utag.js" type="text/javascript" async=""></script><script async="" src="https://www.google-analytics.com/analytics.js"></script><script async="" src="/js/autotrack.js"></script><script type="text/javascript" src="https://www.googletagservices.com/tag/js/gpt.js" async=""></script><script type="text/javascript">window.NREUM||(NREUM={}),__nr_require=function(e,n,t){function r(t){if(!n[t]){var o=n[t]={exports:{}};e[t][0].call(o.exports,function(n){var o=e[t][1][n];return r(o||n)},o,o.exports)}return n[t].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<t.length;o++)r(t[o]);return r}({1:[function(e,n,t){function r(){}function o(e,n,t){return function(){return i(e,[c.now()].concat(u(arguments)),n?null:this,t),n?void 0:this}}var i=e("handle"),a=e(3),u=e(4),f=e("ee").get("tracer"),c=e("loader"),s=NREUM;"undefined"==typeof window.newrelic&&(newrelic=s);var p=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],d="api-",l=d+"ixn-";a(p,function(e,n){s[n]=o(d+n,!0,"api")}),s.addPageAction=o(d+"addPageAction",!0),s.setCurrentRouteName=o(d+"routeName",!0),n.exports=newrelic,s.interaction=function(){return(new r).get()};var m=r.prototype={createTracer:function(e,n){var t={},r=this,o="function"==typeof n;return i(l+"tracer",[c.now(),e,t],r),function(){if(f.emit((o?"":"no-")+"fn-start",[c.now(),r,o],t),o)try{return n.apply(this,arguments)}catch(e){throw f.emit("fn-err",[arguments,this,e],t),e}finally{f.emit("fn-end",[c.now()],t)}}}};a("actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(e,n){m[n]=o(l+n)}),newrelic.noticeError=function(e){"string"==typeof e&&(e=new Error(e)),i("err",[e,c.now()])}},{}],2:[function(e,n,t){function r(e,n){if(!o)return!1;if(e!==o)return!1;if(!n)return!0;if(!i)return!1;for(var t=i.split("."),r=n.split("."),a=0;a<r.length;a++)if(r[a]!==t[a])return!1;return!0}var o=null,i=null,a=/Version\/(\S+)\s+Safari/;if(navigator.userAgent){var u=navigator.userAgent,f=u.match(a);f&&u.indexOf("Chrome")===-1&&u.indexOf("Chromium")===-1&&(o="Safari",i=f[1])}n.exports={agent:o,version:i,match:r}},{}],3:[function(e,n,t){function r(e,n){var t=[],r="",i=0;for(r in e)o.call(e,r)&&(t[i]=n(r,e[r]),i+=1);return t}var o=Object.prototype.hasOwnProperty;n.exports=r},{}],4:[function(e,n,t){function r(e,n,t){n||(n=0),"undefined"==typeof t&&(t=e?e.length:0);for(var r=-1,o=t-n||0,i=Array(o<0?0:o);++r<o;)i[r]=e[n+r];return i}n.exports=r},{}],5:[function(e,n,t){n.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(e,n,t){function r(){}function o(e){function n(e){return e&&e instanceof r?e:e?f(e,u,i):i()}function t(t,r,o,i){if(!d.aborted||i){e&&e(t,r,o);for(var a=n(o),u=v(t),f=u.length,c=0;c<f;c++)u[c].apply(a,r);var p=s[y[t]];return p&&p.push([b,t,r,a]),a}}function l(e,n){h[e]=v(e).concat(n)}function m(e,n){var t=h[e];if(t)for(var r=0;r<t.length;r++)t[r]===n&&t.splice(r,1)}function v(e){return h[e]||[]}function g(e){return p[e]=p[e]||o(t)}function w(e,n){c(e,function(e,t){n=n||"feature",y[t]=n,n in s||(s[n]=[])})}var h={},y={},b={on:l,addEventListener:l,removeEventListener:m,emit:t,get:g,listeners:v,context:n,buffer:w,abort:a,aborted:!1};return b}function i(){return new r}function a(){(s.api||s.feature)&&(d.aborted=!0,s=d.backlog={})}var u="nr@context",f=e("gos"),c=e(3),s={},p={},d=n.exports=o();d.backlog=s},{}],gos:[function(e,n,t){function r(e,n,t){if(o.call(e,n))return e[n];var r=t();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(e,n,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return e[n]=r,r}var o=Object.prototype.hasOwnProperty;n.exports=r},{}],handle:[function(e,n,t){function r(e,n,t,r){o.buffer([e],r),o.emit(e,n,t)}var o=e("ee").get("handle");n.exports=r,r.ee=o},{}],id:[function(e,n,t){function r(e){var n=typeof e;return!e||"object"!==n&&"function"!==n?-1:e===window?0:a(e,i,function(){return o++})}var o=1,i="nr@id",a=e("gos");n.exports=r},{}],loader:[function(e,n,t){function r(){if(!E++){var e=x.info=NREUM.info,n=l.getElementsByTagName("script")[0];if(setTimeout(s.abort,3e4),!(e&&e.licenseKey&&e.applicationID&&n))return s.abort();c(y,function(n,t){e[n]||(e[n]=t)}),f("mark",["onload",a()+x.offset],null,"api");var t=l.createElement("script");t.src="https://"+e.agent,n.parentNode.insertBefore(t,n)}}function o(){"complete"===l.readyState&&i()}function i(){f("mark",["domContent",a()+x.offset],null,"api")}function a(){return O.exists&&performance.now?Math.round(performance.now()):(u=Math.max((new Date).getTime(),u))-x.offset}var u=(new Date).getTime(),f=e("handle"),c=e(3),s=e("ee"),p=e(2),d=window,l=d.document,m="addEventListener",v="attachEvent",g=d.XMLHttpRequest,w=g&&g.prototype;NREUM.o={ST:setTimeout,SI:d.setImmediate,CT:clearTimeout,XHR:g,REQ:d.Request,EV:d.Event,PR:d.Promise,MO:d.MutationObserver};var h=""+location,y={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-1099.min.js"},b=g&&w&&w[m]&&!/CriOS/.test(navigator.userAgent),x=n.exports={offset:u,now:a,origin:h,features:{},xhrWrappable:b,userAgent:p};e(1),l[m]?(l[m]("DOMContentLoaded",i,!1),d[m]("load",r,!1)):(l[v]("onreadystatechange",o),d[v]("onload",r)),f("mark",["firstbyte",u],null,"api");var E=0,O=e(5)},{}]},{},["loader"]);</script>
<meta name="format-detection" content="telephone=no">
<meta name="theme-color" content="#1a3151">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" sizes="16x16" href="/favicon-16x16.png">
<link rel="shortcut icon" sizes="192x192" href="/android-chrome-192x192.png">
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-152x152.png">
<link rel="alternate" hreflang="x-default" href="http://www.transfermarkt.de/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<link rel="alternate" hreflang="de" href="http://www.transfermarkt.de/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<link rel="alternate" hreflang="de-AT" href="http://www.transfermarkt.at/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<link rel="alternate" hreflang="de-CH" href="http://www.transfermarkt.ch/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<link rel="alternate" hreflang="tr" href="http://www.transfermarkt.com.tr/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<link rel="alternate" hreflang="it" href="http://www.transfermarkt.it/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<link rel="alternate" hreflang="pl" href="http://www.transfermarkt.pl/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<link rel="alternate" hreflang="en" href="http://www.transfermarkt.co.uk/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<link rel="alternate" hreflang="es" href="http://www.transfermarkt.es/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<link rel="alternate" hreflang="nl" href="http://www.transfermarkt.nl/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<link rel="alternate" hreflang="pt" href="http://www.transfermarkt.pt/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=no">
<meta name="description" content="">
<meta property="og:type" content="article">
<meta property="og:image" content="https://tmssl.akamaized.net/images/portrait/originals/58864-1538129120.jpg">
<meta property="og:url" content="http://www.transfermarkt.co.uk/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1">
<meta property="og:description" content="">
<meta property="og:title" content="Pierre-Emerick Aubameyang - Detailed stats (Detailed view)">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/stylesheets/menue.css?lm=1541671094">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/stylesheets/tm-grid.css?lm=1541671094">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/stylesheets/main.css?lm=1541671094">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/foundation-icons.css?lm=1519726625">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//assets/d60a8c81/jui/css/base/jquery-ui.css?lm=1507094754">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/stylesheets/main_desktop.css?lm=1541671094">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/sprite-main.css?lm=1519726625">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/chosen.css?lm=1519726625">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/jquery-ui-1.10.4.custom.css?lm=1541671094">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/jquery-ui-1.10.4.tm-theme.css?lm=1541671094">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/stylesheets/main_werbung.css?lm=1541671094">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/shortclasses.css?lm=1541671094">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/print.css?_sn=1?lm=1541671094" media="print">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/spielerprofil.css?lm=1519726625">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/stylesheets/spielerprofil.css?lm=1541671094">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/desktop.css?lm=1519726625">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/domainspezifisch/desktop-uk.css?lm=1524211092">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/meintm.css?lm=1524211092">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/stylesheets/gridview.css?lm=1541671094">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//css/laenderPopup.css?lm=1519726625">
<link rel="stylesheet" type="text/css" href="https://tmssl.akamaized.net//assets/93b3a294/css/tooltipster.css?lm=1519741022">
<script type="text/javascript" src="https://tmssl.akamaized.net//js/vendor/jquery.min.js?lm=1519726637"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//assets/d60a8c81/jquery.ba-bbq.min.js?lm=1507094754"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/localStorage.js?lm=1519726637"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/foundation.js?lm=1519726637"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/main.js?lm=1541671095"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/jquery-ui-1.10.4.custom.min.js?lm=1541671095"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/jquery.lazyload.js?lm=1519726637"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/clipboard.min.js?lm=1519726637"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/chosen.ajaxaddition.jquery.js?lm=1519726637"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/jquery.icheck.min.js?lm=1519726637"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/functions.js?lm=1519726637"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/tmevent.js?lm=1519726637"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/comunio.js?lm=1524211094"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/main_desktop.js?lm=1519726637"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//js/chosen.jquery.js?lm=1519726637"></script>
<script type="text/javascript" src="https://tmssl.akamaized.net//assets/93b3a294/js/jquery.tooltipster.js?lm=1519741022"></script>
<script type="text/javascript">
/*<![CDATA[*/
<!-- DFPV2 --->
var gptscript = document.createElement("script");
gptscript.type = "text/javascript";
gptscript.src = 'https://www.googletagservices.com/tag/js/gpt.js';
//gptscript.charset = "utf-8";
gptscript.async = true;
var gptfirstScript = document.getElementsByTagName("script")[0];
gptfirstScript.parentNode.insertBefore(gptscript, gptfirstScript);
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
googletag.cmd.push(function() {
var skyscraper_mapping = googletag.sizeMapping().
addSize([0, 0], [[160, 600], [120, 600]]).
addSize([640, 480], [[160, 600], [120, 600]]).
addSize([980, 690], [[160, 600], [120, 600]]).
addSize([1024, 768], [[160, 600], [300, 600], [120, 600]]).build();
googletag.defineSlot('/58778164/TM_Desktop_Skyscraper_300x600', [[160, 600], [120, 600], [300, 600]], 'Skyscraper').defineSizeMapping(skyscraper_mapping).addService(googletag.pubads());
var billboard_mapping = googletag.sizeMapping().
addSize([0, 0], [[468, 60], 'fluid']).
addSize([640, 480], [[468, 60], 'fluid']).
addSize([980, 690], [[970, 250], [970, 90], [970, 66], [728, 90]]).
addSize([1024, 768], [[970, 250], [970, 90], [970, 66], [728, 90]]).build();
googletag.defineSlot('/58778164/TM_Desktop_CenterLeaderboard_970x250', [[468, 60], [970, 90], [970, 250], [728, 90], 'fluid', [970, 66]], 'Billboard').defineSizeMapping(billboard_mapping).addService(googletag.pubads());
var fullsize_contentad_mapping = googletag.sizeMapping().
addSize([0, 0], [468, 60]).
addSize([640, 480], [[728, 90], [468, 60]]).
addSize([980, 690], [[728, 90], [970, 90], [970, 250]]).
addSize([1024, 768], [[970, 250], [970, 90], [728, 90]]).build();
googletag.defineSlot('/58778164/TM_Desktop_BottomLeaderboard_970x250', [[468, 60], [728, 90], [970, 90], [970, 250]], 'BillboardFooter').defineSizeMapping(fullsize_contentad_mapping).addService(googletag.pubads());
googletag.defineOutOfPageSlot('/58778164/TM_Desktop_RichMedia_1x1', 'Richmedia').addService(googletag.pubads());
googletag.pubads().setCentering(true);
googletag.pubads().collapseEmptyDivs();
googletag.pubads().enableSingleRequest();
googletag.pubads().setTargeting("URL","www.transfermarkt.co.uk")
googletag.pubads().setTargeting("cg1", ["statistik"]);
googletag.pubads().setTargeting("cg2", ["spieler"]);
googletag.pubads().setTargeting("cg3", ["leistungsdatendetails"]);
googletag.pubads().setTargeting("cg4", ["58864"]);
googletag.enableServices();
})
<!-- DFPV2-ENDE -->
/*]]>*/
</script>
<title>Pierre-Emerick Aubameyang - Detailed stats (Detailed view) | Transfermarkt</title>
<script type="text/javascript">
tmData = {
loggedIn : "0",
tmTraffic: "0",
};
</script>
<!-- components GoogleAnalyticsUniversal start -->
<script>
// Set to the same value as the web property used on the site
var gaProperty = 'UA-3816204-13';
// Disable tracking if the opt-out cookie exists.
var disableStr = 'ga-disable-' + gaProperty;
if (document.cookie.indexOf(disableStr + '=true') > -1) {
window[disableStr] = true;
}
// Opt-out function
function gaOptout() {
document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStr] = true;
}
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','/js/autotrack.js','ga');
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3816204-13', 'auto', {allowLinker: true, sampleRate: 100});
ga('require', 'ec');
ga('ec:addImpression', {"id":58864,"name":"Pierre-Emerick Aubameyang","list":"Spieler","brand":"Arsenal FC","category":"EFL Cup","variant":"Sturm","price":"75000000"});
ga('ec:addImpression', {"id":58864,"name":"Pierre-Emerick Aubameyang","list":"Spieler","brand":"Arsenal FC","category":"Europa League","variant":"Sturm","price":"75000000"});
ga('ec:addImpression', {"id":58864,"name":"Pierre-Emerick Aubameyang","list":"Spieler","brand":"Arsenal FC","category":"Premier League","variant":"Sturm","price":"75000000"});
ga('set', 'anonymizeIp', true);
ga('set', 'contentGroup1', 'statistik');
ga('set', 'contentGroup2', 'spieler');
ga('set', 'contentGroup3', 'leistungsdatendetails');
ga('set', 'contentGroup4', '58864');
ga('set', 'dimension1', tmData.loggedIn);
ga('set', 'dimension2', tmData.tmTraffic);
ga('require','linker');
ga('require', 'maxScrollTracker', {maxScrollMetricIndex: 1});
ga('linker:autoLink', [/^transfermarkt\.(com|de|nl|it|at|ch|es|fr|com\.tr|pt|tv|pl|co\.uk)$/]);
ga('send', 'pageview');
</script>
<!-- components GoogleAnalyticsUniversal end --><!-- SZM 2.0 (IVW/AGOF) -->
<script type="text/javascript" src="https://script.ioam.de/iam.js"></script> <script type="text/javascript" src="https://tmssl.akamaized.net//ads/ads.js"></script>
<script type="text/javascript">
if (self == top) {
document.documentElement.style.display = 'block';
} else {
top.location = self.location;
}
</script>
<noscript>
<style>html body *:not(.noscript) {
display: none;
}</style>
<div class="noscript">
For using this site, please activate JavaScript. </div>
</noscript>
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="/css/ie.css"/><![endif]-->
<link rel="canonical" href="https://www.transfermarkt.co.uk/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864">
<!-- tisoomi check --><!--Tisoomi-->
<script type="text/javascript">
!function(e,t,n){ function h(n){ "use strict";n.pID="OrJs9s8",n.pList=["skyscraper","superbanner","rectangle1","rectangle2"],n.regexp=/OrJs9s8\(["']([\w\s\.-]+)["']\)/i,n.arr=[],n.done=[],n.srch=function(){ var t,i=e.scripts;for(t=0;t<i.length;t+=1)n.doesContentMatch(i[t])&&n.matchInPList(i[t])&&n.matchNotDone(i[t])&&(n.collectAdTagContents(i[t]),n.createAdTag(n.regexp.exec(i[t].innerHTML)[1],i[t]),n.done.push(n.regexp.exec(i[t].innerHTML)[1]));n.done=[] },n.doesContentMatch=function(e){ return e&&n.regexp.test(e.innerHTML) },n.mFn=n.doesContentMatch,n.matchInPList=function(e){ return e&&n.pList.indexOf(n.regexp.exec(e.innerHTML)[1])>=0 },n.mEn=n.matchInPList,n.matchNotDone=function(e){ return e&&n.done.indexOf(n.regexp.exec(e.innerHTML)[1])<0 },n.mNd=n.matchNotDone,n.collectAdTagContents=function(e){ if(e){ var s,t=e.parentNode.childNodes,i=null,r=null,a=null,o=n.regexp.exec(e.innerHTML)[1];for(s=0;s<t.length;s+=1)if(i=t[s],"SCRIPT"===i.nodeName&&n.regexp.test(i.innerHTML)&&n.regexp.exec(i.innerHTML)[1]===o){ r=s;break }if(null!==r)for(s=r+1;s<t.length;s+=1)if(i=t[s],"SPAN"===i.nodeName&&i.className.indexOf(n.pID+"_end")+1){ a=s;break }if(null!==r&&null!==a)for(s=r+1;s<a;s+=1)i=t[s],Node.ELEMENT_NODE!==i.nodeType&&Node.CDATA_SECTION_NODE!==i.nodeType&&Node.COMMENT_NODE!==i.nodeType||n.arr.push(i) } },n.col=n.collectAdTagContents,n.crS=function(t){ var i,r=e.scripts;for(i=0;i<r.length;i+=1)if(n.doesContentMatch(r[i])&&n.regexp.exec(r[i].innerHTML)[1]===t){ n.collectAdTagContents(r[i]),n.createAdTag(n.regexp.exec(r[i].innerHTML)[1],r[i]);break } },n.postProcessUnitArray=[],n.addPostProcessUnit=function(e,t){ n.postProcessUnitArray.push({ priority:e,f:t }) },n.postProcessUnit=function(e,t){ n.postProcessUnitArray=n.postProcessUnitArray.sort(function(e,t){ return e.priority>t.priority?1:e.priority===t.priority?0:-1 });var i;for(i=0;i<n.postProcessUnitArray.length;i+=1)e=n.postProcessUnitArray[i].f.call(t||n,e);return e },n.createAdTag=function(s,f){ if(f){ var p,l=e.createElement("div"),u=e.createElement("div"),d=e.createElement("div");n.arr&&(p=n.arr,setTimeout(function(){ for(var e=0;e<p.length;e+=1)void 0!==p[e].style?p[e].style.setProperty("display","none"):u.appendChild(p[e]) },100)),n.arr=[];var h,m=function(){ f.parentNode.insertBefore(l,f.nextSibling),l.appendChild(d) };switch(s){ case"skyscraper":var h={ st:"YHwsF4d0xnIJ",ss:"cursor:pointer; max-width:300px; max-height:800px;",sd:"",sm:"",im:i+"image/U/"+o+"/"+a+"FunHJXF2L8lo5bsvJTLZ6.gif",cl:function(e,t,n){ return i+"image/"+o+"/"+e+"f"+t+"/"+a+"FunHJXF2L8JTlGe.gif" },extra:"",ins:function(){ d.style.setProperty("position","fixed"),d.style.setProperty("margin-left","10px"),m() },ifr:!1,fb:!1,ifrBlock:!1,mkStyleDyn:function(){ } };break;case"superbanner":var h={ st:"W4bzjV46iX8e",ss:"cursor:pointer; max-width:970px; max-height:300px;",sd:"",sm:"",im:i+"image/U/"+o+"/"+a+"FunHJFN2DnYT40wCJTLr1.gif",cl:function(e,t,n){ return i+"image/"+o+"/"+e+"f"+t+"/"+a+"FunHJFN2DnJTYGl.gif" },extra:"",ins:"",ifr:!1,fb:!1,ifrBlock:!1,mkStyleDyn:function(){ } };break;case"rectangle1":var h={ st:"N5EAc6aUy0ep",ss:"cursor:pointer; max-width:300px; max-height:250px;",sd:"",sm:"",im:i+"image/U/"+o+"/"+a+"FunHIXV2B1I4q7GPJTLo4.gif",cl:function(e,t,n){ return i+"image/"+o+"/"+e+"f"+t+"/"+a+"FunHIXV2B1JTIGq.gif" },extra:"",ins:"",ifr:!1,fb:!1,ifrBlock:!1,mkStyleDyn:function(){ } };break;case"rectangle2":var h={ st:"tyPfeCziO7mN",ss:"cursor:pointer; max-width:300px; max-height:250px;",sd:"",sm:"",im:i+"image/U/"+o+"/"+a+"FunHJWJ2hBvR2Y1XJTLz5.gif",cl:function(e,t,n){ return i+"image/"+o+"/"+e+"f"+t+"/"+a+"FunHJWJ2hBJTvGi.gif" },extra:"",ins:"",ifr:!1,fb:!1,ifrBlock:!1,mkStyleDyn:function(){ } } }if(void 0!==h)if(h.mkStyleDyn&&h.mkStyleDyn(n.profile||{ }),h=n.postProcessUnit(h),h.wp)if(h.wr,1)h.wp();else{ var g={ };g.imgUrl=h.im[2],g.referrer=location.href,g.uniqID=n.pID,g.userAgent=navigator.userAgent,g.state="json",n.requestWebRTC(g).then(function(e){ return n.arrayBuffer2Json(e) }).then(function(e){ e&&e.wp&&(e.cl&&(h.thd=e.cl),h.im=e.wp,e.b64?h.wp():h.wp(!0)) }).catch(function(e){ }) }else{ var v=e.createElement("style");v.type="text/css","M"===r&&h.m?h.ss+=h.sm:h.ss+=h.sd,v.innerHTML="#"+h.st+"{ "+h.ss+" }",e.getElementsByTagName("head")[0].appendChild(v),d.id=h.st;var x=e.createElement("img");x.onload=function(){ if(h.bs&&(x.style.cssText+="width:"+this.width+"px;height:"+this.height+"px;max-width:"+this.width+"px;max-height:"+this.height+"px;"),1===h.elementFormat&&n.divElementFormat){ var e={ };e.img=x,e.unit=h,e.skylight=d,n.divElementFormat(e).catch(function(e){ }) }else if(2===h.elementFormat&&n.iframeElementFormat){ x.onload=null,B(h.ins)||(h.ins=function(){ f.parentNode.insertBefore(l,f.nextSibling),l.appendChild(d) });var e={ };e.img=x,e.unit=h,e.skylight=d,n.iframeElementFormat(e).catch(function(e){ }),h.ins=function(){ } }else if(3===h.elementFormat&&n.canvasElementFormat){ var t=h.ins;h.ins=function(){ };var e={ };e.img=x,e.unit=h,e.skylight=d,n.canvasElementFormat(e).then(function(){ t() }).catch(function(e){ }) }else d.appendChild(x);B(h.ins)?h.ins():m(),B(h.extra)&&h.extra(),B(h.onLoaded)&&h.onLoaded(x) },x.onerror=function(e){ "function"==typeof wpTester&&wpTester(s) };x.src=h.im,x.onclick=function(e){ e.preventDefault(),e.stopPropagation();var n=N(e),i=h.cl(n.x,n.y,e);i&&(t.location.href=i) } } } },n.crt=n.createAdTag,n.join=function(){ var e=arguments,t="",n="",i=e[0];if(!i)return t;var s,f,r=e[e.length-1],a="/"===r.charAt(r.length-1),o=0===i.indexOf("//");for(s=0;s<e.length;s+=1)f=e[s],t+=f+"/";var c=t.split("://");2===c.length&&(n=c[0]+":",t=c[1]);var l=t.split("/"),u=[];for(s=0;s<l.length;s+=1)(f=l[s])&&u.push(f);return u=u.join("/"),(n.length>1||o)&&(u=n+"//"+u),a&&(u+="/"),u } }function g(){ if(!t.trckd||m&&t.trckd!=m){ var n=e.getElementsByTagName("body")[0],r=e.createElement("img");k()&&n.appendChild(r),r.src=i+"image/getmdhlayer.Hg-OPEOq1.gif",r.onerror=function(){ x(),b(this) },r.onload=function(){ this.width<3&&(x(),b(this)) } } }function v(){ s=!0,setTimeout(function(){ s=!1 },2e3) }function x(){ if(!s&&t.trckd!==m){ v(),t.trckd=m,a=D(8,8,c+l+u);var n=e.createElement("script"),i=e.getElementsByTagName("body")[0];/* @preserve Opt-out cookie link */
n.src="https://www.tisoomi-services.com/cookie",n.onload=y,n.onerror=y,i.appendChild(n) } }function y(){ var e=C("_TStfc");(""===e||e.length>32)&&(e=e.substr(32)||Date.now()%1e10+n.floor(35*n.random()).toString(36)+"5",M("_TStfc",e,2592e3,"/")),o=!t.userOptOut&&t.ti_id?t.ti_id+e:e,L(),b(this),p.srch() }function b(e){ e&&e.parentNode&&e.parentNode.removeChild(e) }function T(n){ function r(){ i||(i=!0,n()) }function a(){ if(!i&&e.body)try{ e.documentElement.doScroll("left"),r() }catch(e){ setTimeout(a,0) } }var i=!1;"complete"===e.readyState?setTimeout(r,0):e.addEventListener?e.addEventListener("DOMContentLoaded",r,!1):e.attachEvent&&(e.documentElement.doScroll&&t==t.top&&a(),e.attachEvent("onreadystatechange",function(){ "complete"===e.readyState&&r() })),t.addEventListener?t.addEventListener("load",r,!1):t.attachEvent&&t.attachEvent("onload",r) }function k(){ return/^((?!chrome).)*safari/i.test(navigator.userAgent) }function C(t){ for(var n=e.cookie.split(";"),i="",r=0;r<n.length;r+=1){ var a=n[r].trim();0===a.indexOf(t+"=")&&(i=a.replace(t+"=","")) }return i }function M(t,n,i,r){ void 0===i&&(i=2592e3);for(var a=Date.now(),o=e.domain,s=o.split("."),f="_gd"+a,c=2;c<=s.length&&-1===e.cookie.indexOf(f+"="+f);c+=1)o=s.slice(-c).join("."),e.cookie=f+"="+f+";domain="+o+";";var l=new Date(0);e.cookie=f+"=;expires="+l.toUTCString()+";domain="+o+";",l.setTime(a+1e3*i),e.cookie=t+"="+n+"; expires="+l.toUTCString()+";"+(o?"domain="+o+";":"")+"path="+(r||"/") }function L(){ var e=["Phone","Pod","Pad","Android","BlackBerry","PlayBook","Kindle","Mobi","Mini"];r="D";for(var t=0;t<e.length;t+=1)if(navigator.userAgent.indexOf(e[t])>-1)return void(r="M") }function N(e){ var t=e.target,i=t.getBoundingClientRect(),r=e.clientX-i.left,a=e.clientY-i.top;return r*=t.naturalWidth/i.width,a*=t.naturalHeight/i.height,{ x:n.floor(r),y:n.floor(a) } }function D(e,t,i){ for(var r="",a=e+n.floor(n.random()*(t-e));a;)r+=i[n.floor(n.random()*i.length)],a-=1;return r }function B(e){ return"function"==typeof e }var i=t.xOrJs9s8x||"/",r="U",a="",o="",s=!1,c="0123456789",l="BCDEFGHIJKLMNOPQRSTUVWXYZ",u="bcdefghijklmnoqrstuvxyz",p={ },m="kGBViBh";h(p),T(g),p.t="20181108185341" }(document,window,Math);</script>
<style>
@font-face {
font-family: 'OSL';
font-style: normal;
font-weight: normal;
src: local('Open Sans Cond Light'), local('OpenSans-CondensedLight'),
url(https://tmsi.akamaized.net/fonts/OpenSans-CondensedLight.woff) format('woff');
}
@font-face {
font-family: 'OSB';
font-style: normal;
font-weight: normal;
src: local('Open Sans Cond Light'), local('OpenSans-CondensedLight'),
url(https://tmsi.akamaized.net/fonts/OpenSans-CondensedLight.woff) format('woff');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: normal;
src: local('Source Sans Pro'), local('SourceSansPro-Regular'),
url(https://tmsi.akamaized.net/fonts/SourceSansPro-Regular.woff) format('woff');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: bold;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'),
url(https://tmsi.akamaized.net/fonts/SourceSansPro-Bold.woff) format('woff');
}
@font-face {
font-family: 'Oswald';
font-style: normal;
font-weight: lighter;
src: url(https://tmsi.akamaized.net/fonts/oswald_light.woff) format('woff');
}
@font-face {
font-family: 'Oswald';
font-style: normal;
font-weight: normal;
src: url(https://tmsi.akamaized.net/fonts/oswald_regular.woff) format('woff');
}
@font-face {
font-family: 'Oswald';
font-style: normal;
font-weight: bold;
src: url(https://tmsi.akamaized.net/fonts/oswald_bold.woff) format('woff');
}
@font-face {
font-family: "socicon";
src: url("https://tmsi.akamaized.net/fonts/socicon.eot");
src: url("https://tmsi.akamaized.net/fonts/socicon.eot?#iefix") format("embedded-opentype"),
url("https://tmsi.akamaized.net/fonts/socicon.woff") format("woff"),
url("https://tmsi.akamaized.net/fonts/socicon.ttf") format("truetype"),
url("https://tmsi.akamaized.net/fonts/socicon.svg#socicon") format("svg");
font-weight: normal;
font-style: normal;
}
</style>
<script type="text/javascript" src="https://de.ioam.de/tx.io?st=transfer&cp=ausland_co.uk_r&oc=co-uk_other&mg=yes&sv=i2&co=&pt=CP&ps=lin&er=N22&rf=&r2=&ur=www.transfermarkt.co.uk&xy=1024x768x32&lo=BE%2FBrussels%20Hoofdstedelijk%20Gewest&cb=0015&i2=001537bac7f58c37e5be4875b&ep=1572858271&vr=411&id=311e5f&dntt=0&lt=1541703516697&ev=&cs=rt0ts8&mo=1"></script><meta class="foundation-mq"><link rel="preload" href="https://adservice.google.be/adsid/integrator.js?domain=www.transfermarkt.co.uk"><script type="text/javascript" src="https://adservice.google.be/adsid/integrator.js?domain=www.transfermarkt.co.uk"></script><link rel="preload" href="https://adservice.google.com/adsid/integrator.js?domain=www.transfermarkt.co.uk"><script type="text/javascript" src="https://adservice.google.com/adsid/integrator.js?domain=www.transfermarkt.co.uk"></script><script src="https://securepubads.g.doubleclick.net/gpt/pubads_impl_271.js?21062742" async=""></script><script type="text/javascript" async="" charset="utf-8" id="utag_axelspringer.transfermarkt-transfermarkt.de_4" src="//tags.tiqcdn.com/utag/axelspringer/transfermarkt-transfermarkt.de/prod/utag.4.js?utv=ut4.42.201801111155"></script><script type="text/javascript" async="" charset="utf-8" id="utag_axelspringer.transfermarkt-transfermarkt.de_7" src="//tags.tiqcdn.com/utag/axelspringer/transfermarkt-transfermarkt.de/prod/utag.7.js?utv=ut4.42.201611171255"></script><script type="text/javascript" async="" charset="utf-8" id="tiqapp" src="//tags.tiqcdn.com/utag/tiqapp/utag.v.js?a=axelspringer/transfermarkt-transfermarkt.de/201801111155&cb=1541703517240"></script><script type="text/javascript" async="" charset="utf-8" src="//collect-eu-central-1.tealiumiq.com/axelspringer/main/16/i.js?jsonp=teal3rdPartyCookieDataCallback"></script></head>
<body x-ms-format-detection="none" style="overflow-y: scroll;" class="" itemscope="" itemtype="http://schema.org/WebPage">
<script type="text/javascript">utag_data = {
guest : "1",
controller : "spieler",
action : "leistungsdatendetails",
cg1 : "statistik",
cg2 : "spieler",
cg3 : "leistungsdatendetails",
cg4 : "58864",
};</script>
<script>utag_data.tmAdblock=(typeof(adet) == "boolean")?"0":"1";</script>
<!-- Loading script asynchronously -->
<script type="text/javascript">
(function(a,b,c,d){
a='//tags.tiqcdn.com/utag/axelspringer/transfermarkt-transfermarkt.de/prod/utag.js';
b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true;
a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a);
})();
</script><!-- Tealium activated --><!-- GTM Base -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-N688MF8"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<div id="andereSprache" style="display:none;">
<div class="row">
<div class="large-12 columns">
<a href="#" id="linkNewSite"></a>
</div>
</div>
<a href="#" id="hierbleiben" title=""></a>
</div>
<script type="text/javascript">
var lp = parseInt(getCookie("_tmlpu")) || 0;
if (lp < 5) {
$.getJSON('/site/ajaxlaenderpopup', null, function (data) {
if (! $.isEmptyObject(data)) {
$('a#linkNewSite').attr('href', data.linkNewSite).append(data.text);
$('a#hierbleiben').attr('title', data.hierbleiben);
$('div#andereSprache').show();
}
});
}
</script><div style="height: 0;overflow:hidden;"><svg xmlns="http://www.w3.org/2000/svg"><defs><radialGradient id="instagram-SVGID_1_" cx="20.0428" cy="483.0563" r="598.3858" gradientTransform="matrix(1.0037 0 0 1.0037 -0.7255 0)" gradientUnits="userSpaceOnUse"> <stop offset="0" style="stop-color:#FCCC63"></stop> <stop offset="8.107393e-02" style="stop-color:#FBB655"></stop> <stop offset="0.1346" style="stop-color:#FBAD50"></stop> <stop offset="0.3169" style="stop-color:#E95950"></stop> <stop offset="0.418" style="stop-color:#DC515D"></stop> <stop offset="0.5045" style="stop-color:#CD486B"></stop> <stop offset="0.6606" style="stop-color:#BC2A8D"></stop> <stop offset="0.7451" style="stop-color:#A631A0"></stop> <stop offset="0.8706" style="stop-color:#8A3AB9"></stop> <stop offset="1" style="stop-color:#4C68D7"></stop> </radialGradient></defs><symbol viewBox="0 0 97.3 91.9" id="icon-Elfmeter"><title>Elfmeter</title> <path fill="#FFFFFF" d="M70.3,62.4c0,11.5-9.3,20.8-20.8,20.8c-11.5,0-20.8-9.3-20.8-20.8c0-11.5,9.3-20.8,20.8-20.8
C61,41.6,70.3,50.9,70.3,62.4"></path> <path fill="#0E3654" d="M44,60.7l2.1,6.5h6.8l2.1-6.5l-5.5-4L44,60.7z M49.5,45.2c-9.5,0-17.3,7.7-17.3,17.3
c0,9.5,7.7,17.3,17.3,17.3c9.5,0,17.3-7.7,17.3-17.3C66.8,52.9,59,45.2,49.5,45.2 M55.5,70.7l-2,6.1c-1.3,0.4-2.6,0.6-4,0.6
c-1.4,0-2.8-0.2-4-0.6l-2-6.1l-6.5,0c-1.5-2.2-2.4-4.8-2.5-7.7l5.2-3.8l-2-6.1c1.7-2.1,3.9-3.8,6.5-4.7l5.2,3.8l5.2-3.8
c2.6,1,4.8,2.6,6.5,4.7l-2,6.1l5.2,3.8c-0.1,2.8-1,5.5-2.5,7.7H55.5z"></path> <polygon fill="#1B3251" points="12.5,8.9 12.5,57.5 21.2,57.5 21.2,17.3 77.6,17.3 77.6,57.5 86.5,57.5 86.5,8.9 "></polygon> </symbol><symbol viewBox="0 0 128 128" id="icon-Facebook-Blau"><title>Facebook-Blau</title> <g> <rect id="Facebook-Blau-facebook-back" fill="#3A5A99" width="128" height="128"></rect> <path id="Facebook-Blau-facebook-facebook" fill="#FFFFFF" d="M95.9,28.2H32.1c-2.2,0-4,1.8-4,4v63.8c0,2.2,1.8,4,4,4h34.3V72.1h-9.3V61.3h9.3v-8
C66.4,44,72.1,39,80.4,39c4,0,7.4,0.3,8.3,0.4v9.7l-5.7,0c-4.5,0-5.4,2.1-5.4,5.3v6.9h10.7l-1.4,10.8h-9.3v27.8h18.3
c2.2,0,4-1.8,4-4V32.1C99.8,29.9,98.1,28.2,95.9,28.2z"></path> </g> </symbol><symbol viewBox="0 0 128 128" id="icon-Facebook-Messenger-Blau"><title>Facebook-Messenger-Blau</title> <rect id="Facebook-Messenger-Blau-facebook-back" y="0" fill="#0084FF" width="128" height="128"></rect> <path fill="#FFFFFF" d="M63.7,13.2c-27.9,0-50.5,21.1-50.5,47c0,14.8,7.3,28,18.8,36.6v17.9l17.2-9.5c4.6,1.3,9.5,2,14.5,2
c27.9,0,50.5-21.1,50.5-47S91.6,13.2,63.7,13.2z M68.7,76.5L55.8,62.7L30.7,76.5L58.3,47l13.2,13.8L96.3,47L68.7,76.5z"></path> </symbol><symbol viewBox="0 0 128 128" id="icon-Facebook-Messenger-Weiss"><title>Facebook-Messenger-Weiss</title> <style type="text/css"> .st0{fill:#FFFFFF;} .st1{fill:#0084FF;} </style> <rect id="Facebook-Messenger-Weiss-facebook-back" y="0" class="st0" width="128" height="128"></rect> <path class="st1" d="M63.7,13.2c-27.9,0-50.5,21.1-50.5,47c0,14.8,7.3,28,18.8,36.6v17.9l17.2-9.5c4.6,1.3,9.5,2,14.5,2
c27.9,0,50.5-21.1,50.5-47S91.6,13.2,63.7,13.2z M68.7,76.5L55.8,62.7L30.7,76.5L58.3,47l13.2,13.8L96.3,47L68.7,76.5z"></path> </symbol><symbol viewBox="0 0 185 126" id="icon-Groundhopping"><title>Groundhopping</title> <g> <g> <path fill="#1B3251" d="M171,23.6c-3.8-3.1-8.1-5.7-12.3-7.8c-10.7-5.3-22.3-8.6-34.1-10.5L123,4.9c-2.9-0.5-5.8-0.8-8.6-1.2
C98.3,2,81.9,2.1,65.9,4.3c-1.5,0.2-3,0.4-4.4,0.7l-1.6,0.3c-13.3,2.3-26.6,6.1-38.3,12.9c-2.7,1.6-5.5,3.5-8.1,5.6l-1.6,1.4
c-5.6,5.1-10,11.7-9.7,19.4c0.4,8.9,5.6,15.9,12.3,21.2v12.7c-2.5-2.1-4.4-4.3-5.7-6.4c-0.7-1.1-1.2-2.2-1.6-3.2
c-0.4-1-0.6-1.8-0.8-2.6c-0.2-0.7-0.3-1.3-0.3-1.7c-0.1-0.4-0.1-0.6-0.1-0.6s0,0.2,0,0.6c0,0.4-0.1,1,0,1.7
c0.1,1.5,0.3,3.8,1.5,6.4C8,74.1,8.8,75.6,9.7,77c1,1.5,2.1,2.9,3.5,4.4c0.4,0.4,0.9,0.9,1.3,1.3v11.6c-2.5-2.1-4.4-4.3-5.7-6.4
c-0.7-1.1-1.2-2.2-1.6-3.2c-0.4-1-0.6-1.8-0.8-2.6c-0.2-0.7-0.3-1.3-0.3-1.7C6.1,80.2,6.1,80,6.1,80s0,0.2,0,0.6
c0,0.4-0.1,1,0,1.7c0.1,1.5,0.3,3.8,1.5,6.4C8,90,8.8,91.4,9.7,92.9c1,1.5,2.1,2.9,3.5,4.4c0.4,0.4,0.9,0.9,1.3,1.3l0.3,0.3
c2.5,2.3,5.4,4.6,8.8,6.7c2.1,1.3,4.3,2.5,6.7,3.7c2.4,1.2,4.9,2.2,7.5,3.3c5.2,2,10.8,3.8,16.7,5.1c3,0.7,6,1.3,9.1,1.8
c0.2,0,0.3,0,0.5,0.1l0.9,2.9l1.9-0.6l1.9-0.6l-6.6-21.9c20.3-5.1,40-5.1,60.3,0l-6.6,21.9l1.9,0.6l1.9,0.6l0.9-2.9
c0.2,0,0.3,0,0.5-0.1c3.1-0.5,6.1-1.1,9.1-1.8c5.9-1.4,11.5-3.1,16.7-5.1c2.6-1,5.1-2.1,7.5-3.3c2.4-1.2,4.6-2.4,6.7-3.7
c3.4-2.1,6.3-4.4,8.8-6.7l0.3-0.3c0.5-0.4,0.9-0.9,1.3-1.3c2.8-2.9,4.7-5.9,5.8-8.6c1.1-2.7,1.4-4.9,1.5-6.4c0-0.8,0-1.3,0-1.7
c0-0.4,0-0.6,0-0.6s0,0.2-0.1,0.6c0,0.4-0.1,0.9-0.3,1.7c-0.2,0.7-0.4,1.6-0.8,2.6c-0.4,1-0.9,2.1-1.6,3.2
c-0.7,1.1-1.6,2.3-2.7,3.5c-0.9,1-1.9,1.9-3,2.9V82.7c0.5-0.4,0.9-0.9,1.3-1.3c2.8-2.9,4.7-5.9,5.8-8.6c1.1-2.7,1.4-4.9,1.5-6.4
c0-0.8,0-1.3,0-1.7c0-0.4,0-0.6,0-0.6s0,0.2-0.1,0.6c0,0.4-0.1,0.9-0.3,1.7c-0.2,0.7-0.4,1.6-0.8,2.6c-0.4,1-0.9,2.1-1.6,3.2
c-0.7,1.1-1.6,2.3-2.7,3.5c-0.9,1-1.9,1.9-3,2.9V65.9c6.8-5.3,12-12.4,12.5-21.4c0-7.9-4.2-14.4-9.8-19.6L171,23.6z M125.4,13.1
c7.6,1.4,15.1,3.5,22.3,6.3c6.4,2.5,14.3,6.1,19.9,11.4l-30.5,19c-6-4.7-15.8-8.3-27.4-10.1L125.4,13.1z M102.4,10.4
c6.1,0.3,12.1,0.9,18.2,1.9L104.7,39c-4-0.4-8.2-0.7-12.4-0.7c-4.3,0-8.5,0.2-12.4,0.7L63.9,12.3C76.6,10.3,89.6,9.7,102.4,10.4
L102.4,10.4z M22.6,26.5c10.9-7.2,23.9-11,36.6-13.4l15.8,26.5c-11.6,1.8-21.3,5.5-27.4,10.1L17,30.8
C18.7,29.2,20.6,27.8,22.6,26.5L22.6,26.5z M36.1,105.7c-3.6-1.2-7-2.6-10.1-4.1c-2.1-1-4-2.1-5.8-3.1c-0.4-0.2-0.7-0.5-1.1-0.7
V86.6c1.4,1.1,3,2.1,4.6,3.2c2.1,1.3,4.3,2.5,6.7,3.7c1.8,0.9,3.7,1.7,5.7,2.6V105.7z M36.1,89.8c-3.6-1.2-7-2.6-10.1-4.1
c-2.1-1-4-2.1-5.8-3.1c-0.4-0.2-0.7-0.5-1.1-0.7V69c1.6,1,3.2,2,4.8,2.8c3.9,2.1,8,3.9,12.2,5.4V89.8z M32.1,67.2
c-6.3-2.9-12.7-6.5-17.4-11.8c-2.2-2.6-5.5-7.3-4.8-11.1c0.3-1.8,0.8-4.9,2-7.2c0.6-1,1.2-2,1.9-2.9L44.1,53
c-2.1,2.5-3.3,5.2-3.3,8c0,4.4,2.9,8.6,7.9,12.1C43,71.5,37.4,69.6,32.1,67.2L32.1,67.2z M56.1,110.8c-5.4-1-10.6-2.2-15.4-3.7
v-9.4c4.4,1.6,9.1,3,14,4.1c1.5,0.4,3,0.7,4.5,1l2.7,8.9C59.8,111.4,57.9,111.1,56.1,110.8L56.1,110.8z M143.9,107.1
c-4.9,1.4-10,2.7-15.4,3.7c-1.9,0.3-3.8,0.6-5.7,0.9l2.7-8.9c1.5-0.3,3-0.6,4.5-1c4.9-1.1,9.6-2.5,14-4.1V107.1z M143.9,91.3
c-4.9,1.4-10,2.7-15.4,3.7c-1.7,0.3-3.3,0.6-5,0.8c-20.9-5.3-41.4-5.3-62.3,0c-1.7-0.3-3.4-0.5-5-0.8c-5.4-1-10.6-2.2-15.4-3.7
V78.8c9.2,3,18.8,4.8,28.3,5.9c15.7,1.9,31.7,1.9,47.4,0c9.3-1.2,18.6-3,27.6-5.8V91.3z M165.4,97.7c-0.4,0.2-0.7,0.5-1.1,0.7
c-1.8,1.1-3.7,2.2-5.8,3.1c-3.1,1.5-6.5,2.9-10.1,4.1V96c2-0.8,3.9-1.7,5.7-2.6c2.4-1.2,4.6-2.4,6.7-3.7c1.6-1,3.2-2.1,4.6-3.2
V97.7z M165.4,81.9c-0.4,0.2-0.7,0.5-1.1,0.7c-1.8,1.1-3.7,2.2-5.8,3.1c-3.1,1.5-6.5,2.9-10.1,4.1V77.3c3.8-1.4,7.6-3,11.2-4.9
c2-1,3.9-2.1,5.8-3.3V81.9z M174.4,44.3c-0.1,6.9-6.2,13.4-12.3,17.5c-7.9,5.3-16.9,8.8-26.2,11.2c4.9-3.5,7.7-7.6,7.7-11.9
c0-2.8-1.2-5.5-3.3-8l30.2-18.7C172.7,37.1,174.2,40.5,174.4,44.3L174.4,44.3z M174.4,44.3"></path> </g> </g> </symbol><symbol viewBox="0 0 339.3 332.1" id="icon-Laender"><title>Laender</title> <g> <path fill="#1B3251" d="M294.4,82.2l-4.5,1.5l-24.2,2.1L259,96.7l-5-1.6l-19.2-17.3l-2.8-9l-3.7-9.6l-12.1-10.8l-14.3-2.8l-0.3,6.5
l14,13.6l6.8,8.1l-7.7,4l-6.3-1.8l-9.4-3.9l0.3-7.5l-12.3-5L183,77.2L170.6,80l1.2,9.9L188,93l2.8-15.8l13.3,1.9l6.2,3.6h10
l6.8,13.6l18,18.3l-1.3,7.1l-14.5-1.9l-25.2,12.7L186,154.3l-2.4,9.6h-6.5l-12.1-5.6l-11.8,5.6l2.9,12.4l5.1-5.9l9-0.3l-0.7,11.2
l7.4,2.2l7.5,8.3l12.1-3.4l13.9,2.2l16.1,4.3l8.1,0.9l13.6,15.5l26.3,15.5l-17,32.5l-18,8.4l-6.8,18.6l-26,17.4l-2.8,10
c66.5-16,116-75.8,116-147.2C320.1,135.4,310.6,106.3,294.4,82.2L294.4,82.2z M294.4,82.2"></path> <path fill="#1B3251" d="M186,245.8l-11-20.4l10.1-21.1l-10.1-3.1l-11.4-11.4l-25.2-5.6l-8.4-17.5V177h-3.7l-21.7-29.5v-24.2
L88.7,97.4L63.4,102h-17l-8.6-5.7l10.9-8.6l-10.9,2.5C24.7,112.6,17,138.7,17,166.6c0,83.7,67.8,151.6,151.5,151.6
c6.5,0,12.8-0.6,19-1.3l-1.6-18.4c0,0,7-27.3,7-28.2C192.9,269.3,186,245.8,186,245.8L186,245.8z M186,245.8"></path> <path fill="#1B3251" d="M73.3,63.9l26.9-3.7l12.4-6.8l14,4.1l22.3-1.3l7.6-12l11.2,1.8l27-2.5l7.4-8.2l10.6-7l14.8,2.2l5.5-0.8
C213.5,20.3,191.7,15,168.5,15c-47,0-89.1,21.4-116.8,55.1h0L73.3,63.9z M175,30.1l15.5-8.5l9.9,5.8L186,38.2l-13.7,1.4l-6.2-4.1
L175,30.1z M129.1,31.3l6.8,2.9l9-2.9l4.8,8.5l-20.6,5.4l-9.9-5.8C119.2,39.4,128.9,33.1,129.1,31.3L129.1,31.3z M129.1,31.3"></path> </g> </symbol><symbol viewBox="0 0 97.3 91.9" id="icon-Platzverweis"><title>Platzverweis</title> <rect x="25.5" y="13.5" fill="#8F1A29" width="46.7" height="64.3"></rect> </symbol><symbol viewBox="0 0 48.5 60" id="icon-Spiele"><title>Spiele</title> <rect x="-3.2" y="8.4" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 54.25 5.75)" fill="#1B3251" width="54.8" height="43.2"></rect> <path fill="#FFFFFF" d="M43.2,5h-38v50h38V5z M30.4,30.9c-0.5,2.8-2.9,5-5.8,5c-2.9,0-5.4-2.2-5.8-5H30.4z M31.3,7v6.1H17.2V7H31.3z
M18.8,29c0.5-2.8,2.9-5,5.8-5c2.9,0,5.4,2.2,5.8,5H18.8z M32.1,29c-0.5-3.8-3.6-6.7-7.5-6.7s-7.1,2.9-7.5,6.7H7.3V7h8v6.1V15h1.9
h14.1h1.9v-1.9V7h8.1v22H32.1z M7.3,30.9h9.8c0.5,3.8,3.6,6.7,7.5,6.7s7.1-2.9,7.5-6.7h9.2v22h-8.1v-6v-1.9h-1.9H17.2h-1.9v1.9v6h-8
V30.9z M31.3,53H17.2v-6h14.1V53z"></path> </symbol><symbol viewBox="0 0 426 432" id="icon-Spieler"><title>Spieler</title> <path fill="#1A3151" d="M384.6,354.1c-32.1-16.5-65.5-30.2-99.2-43.1c-2.5-0.9-5.5-2.8-6.5-5.1c-2.8-6.1-4.6-12.6-6.7-18.9
c-1.2-4-2.3-7.9-6.8-9.9c-1.1-0.5-2.3-2.9-2.2-4.3c0.2-14.8-3.3-30.4,7.7-43.3c0.4-0.4,0.5-0.9,0.7-1.5c5.9-12.9,7-27.7,15.2-39.8
c0.2-0.3,0.3-0.6,0.3-1c0.9-9.2,1.9-18.3,2.7-27.6c0.1-1.1-0.9-3.2-1.9-3.5c-4.5-1.7-4.3-5.3-4.3-9c0.1-18,0-36,0-53.9
c0-10.4-3.1-19.7-11-26.8c-9-8.1-18.2-16-27.5-23.8c-4.5-3.8-4.8-6.6-0.6-10.8c1.8-1.8,4.2-3.1,6.4-4.7c-0.5-0.6-0.9-1.4-1.4-2.1
c-2.8,0-5.6-0.4-8.4,0.1c-10.2,1.7-20.4,3.1-30.5,5.4C191.7,35.2,173,41.2,157.5,54c-10.7,8.7-19.1,18.9-20.2,33.4
c-0.6,7.5-0.5,15.2-0.5,22.7c-0.1,12.3,0.1,24.6-0.2,37c0,2-1.2,5.3-2.5,5.8c-5.1,1.6-5.1,4.8-4.5,8.9c0.4,2.8,0.1,5.9,0.7,8.7
c1.7,7.7,3.5,15.4,5.8,23c1.7,5.6,4.9,11,5.8,16.7c1.8,11.5,6.1,21.5,13.8,30.2c1.3,1.4,2.2,3.8,2.2,5.7c-0.6,8.9-1.5,17.7-2.7,26.5
c-0.2,1.7-2,4.3-3.5,4.5c-5.8,1.2-6.8,5.8-8.2,10.3c-1.9,6.1-3.8,12.1-6.2,18c-0.7,1.8-2.5,3.7-4.3,4.5
c-10.5,4.5-21.1,8.7-31.6,13.1c-11.2,4.7-22.4,9.2-33.4,14.4c-11.3,5.4-22.2,11.5-33.2,17.4c-6.5,3.5-12.6,7.3-17.7,12.1v19.4h384.5
v-20.2C396.6,361.5,391,357.4,384.6,354.1L384.6,354.1z M384.6,354.1"></path> </symbol><symbol viewBox="0 0 97.3 91.9" id="icon-Tore"><title>Tore</title> <path fill="#FFFFFF" d="M86.9,47.2c0,21.7-17.6,39.2-39.2,39.2C26,86.4,8.5,68.9,8.5,47.2C8.5,25.6,26,8,47.7,8
C69.3,8,86.9,25.6,86.9,47.2"></path> <path fill="#0E3654" d="M37.3,44l4,12.2h12.8L58,44l-10.3-7.5L37.3,44z M47.7,14.7c-17.9,0-32.5,14.6-32.5,32.5
c0,17.9,14.6,32.5,32.5,32.5c17.9,0,32.5-14.5,32.5-32.5C80.2,29.3,65.6,14.7,47.7,14.7 M59,62.8l-3.8,11.6c-2.4,0.7-5,1.1-7.6,1.1
c-2.6,0-5.2-0.4-7.6-1.1l-3.8-11.6l-12.2,0c-2.8-4.2-4.4-9.1-4.7-14.5l9.8-7.1l-3.8-11.6c3.2-4,7.4-7.1,12.3-8.9l9.8,7.1l9.8-7.1
c4.9,1.8,9.1,4.9,12.3,8.9l-3.8,11.6l9.8,7.1c-0.2,5.3-1.9,10.3-4.7,14.5H59z"></path> </symbol><symbol viewBox="0 0 196 208" id="icon-Torschuetzen"><title>Torschuetzen</title> <path fill="#0E3654" d="M24.7,98.7c-1-1-2.1-1.5-2.5-1.2l-5.8,5.9c-0.4,0.4,0.1,1.5,1.1,2.5l4.3,4.3l-1.2,6.4l6.4-1.2l3.1,3.1
l-1.2,6.4l6.4-1.2l34.5,34.5l-1.2,6.4l6.3-1.2l4.2,4.2L78,174l6.4-1.2l2.7,2.7l-1.2,6.4l6.4-1.2l2.2,2.2c1,1,2.1,1.5,2.5,1.1
l5.9-5.9c0.4-0.4-0.1-1.5-1.1-2.5L24.7,98.7z M24.7,98.7"></path> <path fill="#0E3654" d="M82.7,150.2L82.7,150.2l24.1,24.1c0,0,14.3-1.3,7-13.3c0,0-27.4-34.1-23.2-66.1c0,0,0.5-8.4-5-1.2L115.6,11
H83L61.8,67.1c-0.4-0.6-0.9-1.1-1.6-1.5c-1.8-0.9-4.9-0.9-10.1,4l-24,24l32.6,32.6 M73.5,141"></path> <path fill="#0E3654" d="M166.7,171.8c-5.5,3.8-11,7.9-17.6,10.6c-6.6,2.7-13.6,4.6-20.7,5.8c-7.1,1.4-14.5,2-21.9,2.2l-0.1,0.9
c7.4,1.3,14.9,1.5,22.4,1.4c7.5-0.4,15.1-1.4,22.6-3.5c7.4-2.1,15.2-4.7,21.1-10.5c5.8-5.6,10-13.3,10.2-21.1l-0.8-0.3
C176.9,163.2,172.2,167.9,166.7,171.8L166.7,171.8z M166.7,171.8"></path> <path fill="#FFFFFF" d="M181.6,124.3c0,21.7-17.6,39.2-39.2,39.2c-21.7,0-39.2-17.6-39.2-39.2c0-21.7,17.6-39.2,39.2-39.2
C164,85.1,181.6,102.7,181.6,124.3"></path> <path fill="#0E3654" d="M132,121.1l4,12.2h12.8l3.9-12.2l-10.3-7.5L132,121.1z M142.4,91.8c-17.9,0-32.5,14.6-32.5,32.5
c0,17.9,14.6,32.5,32.5,32.5c17.9,0,32.5-14.5,32.5-32.5C174.9,106.4,160.3,91.8,142.4,91.8 M153.7,140l-3.8,11.6
c-2.4,0.7-5,1.1-7.6,1.1c-2.6,0-5.2-0.4-7.6-1.1L131,140l-12.2,0c-2.8-4.2-4.4-9.1-4.7-14.5l9.8-7.1l-3.8-11.6
c3.2-4,7.4-7.1,12.3-8.9l9.8,7.1l9.8-7.1c4.9,1.8,9.1,4.9,12.3,8.9l-3.8,11.6l9.8,7.1c-0.2,5.3-1.9,10.3-4.7,14.5H153.7z"></path> </symbol><symbol viewBox="0 0 50.2 50.3" id="icon-Trainer"><title>Trainer</title> <style type="text/css"> .st0{fill:#1A3151;} .st1{fill:#00ADED;} .st2{fill:#FFFFFF;} </style> <circle class="st0" cx="25.1" cy="25.2" r="24.7"></circle> <path id="Trainer-Pfad_1303" class="st1" d="M46.6-1.5"></path> <path id="Trainer-Pfad_1310" class="st2" d="M24,42.4c-3.6-5,0.3-5.2,0.9-5.2l0,0c0.7,0,4.5,0.2,0.9,5.2l1.4,4.1c4.7-0.5,9.1-2.5,12.5-5.7
c-2.2-0.9-4.3-1.8-6.6-2.7c-0.3-0.1-0.6-0.3-0.7-0.6c-0.3-0.7-0.5-1.4-0.8-2.1c-0.1-0.5-0.4-0.9-0.8-1.1c-0.2-0.1-0.2-0.3-0.2-0.5
c0-1.7-0.4-3.4,0.9-4.9c0-0.1,0.1-0.1,0.1-0.2c0.4-1.5,1-3,1.7-4.5v-0.1c0.1-1,0.2-2.1,0.3-3.1c0-0.1-0.1-0.4-0.2-0.4
c-0.5-0.2-0.5-0.6-0.5-1v-6.1c0.1-1.1-0.4-2.3-1.3-3c-1-0.9-2-1.8-3.1-2.7C28,7.4,28,7,28.4,6.6c0.2-0.2,0.5-0.4,0.7-0.5
C29,6,29,5.9,28.9,5.9c-0.3,0-0.6,0-0.9,0c-1.2,0.2-2.3,0.3-3.4,0.6c-2.2,0.4-4.2,1.3-6,2.6c-1.3,0.9-2.1,2.3-2.3,3.8
c-0.1,0.9-0.1,1.7-0.1,2.6c0,1.4,0,2.8,0,4.2c0,0.2-0.1,0.6-0.3,0.6c-0.6,0.2-0.6,0.5-0.5,1c0.1,0.3,0,0.7,0.1,1
c0.2,0.9,0.4,1.7,0.6,2.6c0.3,0.6,0.5,1.2,0.6,1.9c0.2,1.3,0.7,2.5,1.6,3.4c0.2,0.2,0.2,0.4,0.2,0.6c-0.1,1-0.2,2-0.3,3
c-0.1,0.2-0.2,0.4-0.4,0.5c-0.7,0.2-0.8,0.6-0.9,1.2c-0.2,0.7-0.4,1.4-0.7,2c-0.1,0.2-0.3,0.4-0.5,0.5c-1.2,0.5-2.4,1-3.6,1.5
c-0.8,0.3-1.6,0.7-2.5,1c3.4,3.3,7.8,5.4,12.5,6L24,42.4z"></path> </symbol><symbol viewBox="0 0 128 128" id="icon-Twitter-Blau"><title>Twitter-Blau</title> <g> <rect id="Twitter-Blau-twitter-back" fill="#55ACEE" width="128" height="128"></rect> <path id="Twitter-Blau-twitter-twitter" fill="#FFFFFF" d="M99.8,41.8c-2.6,1.2-5.5,2-8.4,2.3c3-1.8,5.4-4.7,6.5-8.1c-2.8,1.7-6,2.9-9.3,3.6
c-2.7-2.9-6.5-4.6-10.7-4.6c-8.1,0-14.7,6.6-14.7,14.7c0,1.2,0.1,2.3,0.4,3.4c-12.2-0.6-23.1-6.5-30.3-15.4c-1.3,2.2-2,4.7-2,7.4
c0,5.1,2.6,9.6,6.5,12.2c-2.4-0.1-4.7-0.7-6.7-1.8c0,0.1,0,0.1,0,0.2c0,7.1,5.1,13.1,11.8,14.4c-1.2,0.3-2.5,0.5-3.9,0.5
c-0.9,0-1.9-0.1-2.8-0.3c1.9,5.8,7.3,10.1,13.7,10.2c-5,3.9-11.4,6.3-18.3,6.3c-1.2,0-2.4-0.1-3.5-0.2c6.5,4.2,14.2,6.6,22.5,6.6
c27,0,41.8-22.4,41.8-41.8c0-0.6,0-1.3,0-1.9C95.4,47.3,97.9,44.7,99.8,41.8z"></path> </g> </symbol><symbol viewBox="0 0 434 479" id="icon-Vereine"><title>Vereine</title> <path fill="#1A3151" d="M380.2,59.8C357.4,46.1,300.8,17,217,17C133.2,17,76.6,46.1,53.8,59.8c-10,6-18.1,15.6-18.1,29v167.1
c0,95.7,110.4,165.3,161.4,188.7c13.6,6.2,16.6,6.2,19.8,6.2c3.2,0,6.3,0.1,19.8-6.2c51.1-23.4,161.4-93,161.4-188.7V88.8
C398.3,75.5,390.2,65.8,380.2,59.8z"></path> <path fill="#1A3151" d="M324.7,206.7c0,59.5-48.2,107.7-107.7,107.7c-59.5,0-107.7-48.2-107.7-107.7C109.3,147.2,157.6,99,217,99
C276.5,99,324.7,147.2,324.7,206.7z"></path> <path fill="#FFFFFF" d="M182.4,196l13.2,40.7h42.8l13.2-40.7L217,170.9L182.4,196z M217,97.9c-60.1,0-108.8,48.7-108.8,108.8
c0,60.1,48.7,108.8,108.8,108.8c60.1,0,108.8-48.7,108.8-108.8C325.8,146.6,277.1,97.9,217,97.9z M255.1,259l-12.6,38.8
c-8.1,2.3-16.6,3.5-25.4,3.5c-8.8,0-17.3-1.3-25.5-3.5L179,259l-40.8,0c-9.3-14-14.9-30.6-15.6-48.4l32.9-23.9l-12.6-38.8
c10.6-13.4,24.8-23.8,41.2-29.9L217,142L250,118c16.3,6.1,30.5,16.5,41.2,29.9l-12.6,38.8l32.9,23.9c-0.7,17.9-6.3,34.5-15.6,48.4
H255.1z"></path> <path fill="#FFFFFF" d="M712.6,69.7c4.9,0,5.3,0,9.6,0V61c0-37.2-33.6-35.1-45.3-29.8l0.3-2.1c-7.5,0-59.2,0-66.4,0
c1.4,10.6,12.1,88.7,13.4,98.4c13.8,0,25.7,0,39.6,0c1.4-10.4,0.8-6.1,1.7-12.6c4.8,9,14.1,13.5,27.7,13.5c11,0,29.5-4.3,29.5-33.2
C722.8,83.1,718.7,75.9,712.6,69.7z"></path> <path fill="#1A3151" d="M692.4,64.1c-8.4-6.7-4.7-11.4-1-11.4c1,0,2,0.3,2.7,1c1.6,1.6,1.2,3,1.3,7.3h18.2c0-15.8-5.9-24-22.2-24
c-13.7,0-21.2,7-21.2,21.3c0,20,26.2,23.4,26.2,39.7c0,2.9-1.3,5.5-4.3,5.5c-5.2,0-4.3-8.3-4.3-15.1h-17.7c0,17.1,0,31.2,23.1,31.2
c15.4,0,20.9-9.1,20.9-24.6C714.1,79.6,706.2,75.3,692.4,64.1z"></path> <polygon fill="#1A3151" points="620.8,37.7 631.8,118.7 656.3,118.7 667.3,37.7 649.2,37.7 643.9,91.4 638.9,37.7 "></polygon> </symbol><symbol viewBox="0 0 225 225" id="icon-Wettbewerbe"><title>Wettbewerbe</title> <g> <path fill="#1B3251" d="M187.8,25.1h-28.4v-7.8c0-2.3-1.9-4.1-4.1-4.1H69.3c-2.3,0-4.1,1.9-4.1,4.1v7.8H36.8
c-2.3,0-4.1,1.8-4.1,4.1v2.3c0,35.2,17.8,63.7,40.5,65.1c6,8.9,14.9,15.6,25.2,18.7v47.1H82.7c-2.3,0-4.1,1.9-4.1,4.1v6.7h-9.7
c-2.3,0-4.1,1.9-4.1,4.1V209c0,2.3,1.8,4.1,4.1,4.1h86.7c2.3,0,4.1-1.8,4.1-4.1v-31.5c0-2.3-1.9-4.1-4.1-4.1H146v-6.7
c0-2.3-1.8-4.1-4.1-4.1h-15.6v-47.1c10.2-3.2,19.1-9.8,25.2-18.7c22.8-1.4,40.5-29.9,40.5-65.1v-2.3
C191.9,26.9,190.1,25.1,187.8,25.1L187.8,25.1z M65.2,38v32.4c0,3.7,0.4,7.4,1.3,11C55.6,75.3,47.3,58,45.8,38H65.2z M158,81.4
c0.9-3.7,1.3-7.4,1.3-11V38h19.3C177.2,58,168.9,75.3,158,81.4L158,81.4z M158,81.4"></path> </g> </symbol><symbol viewBox="0 0 128 128" id="icon-WhatsApp-gruen"><title>WhatsApp-gruen</title> <g> <rect id="WhatsApp-gruen-whatsapp-back" fill="#25D366" width="128" height="128"></rect> <g id="WhatsApp-gruen-whatsapp-whatsapp"> <path fill="#FFFFFF" d="M28.2,100l5.1-18.5c-3.1-5.4-4.8-11.6-4.8-17.8C28.5,44,44.5,28,64.1,28c9.5,0,18.5,3.7,25.2,10.5
c6.7,6.7,10.4,15.7,10.4,25.2c0,19.7-16,35.7-35.7,35.7c0,0,0,0,0,0h0c-6,0-11.8-1.5-17.1-4.3L28.2,100z M48,88.6l1.1,0.6
c4.6,2.7,9.8,4.1,15.1,4.1h0c16.3,0,29.7-13.3,29.7-29.7c0-7.9-3.1-15.4-8.7-21c-5.6-5.6-13-8.7-21-8.7
c-16.4,0-29.7,13.3-29.7,29.7c0,5.6,1.6,11.1,4.5,15.8l0.7,1.1l-3,10.9L48,88.6z"></path> <path fill="#FFFFFF" d="M82.1,72.2c-0.2-0.4-0.8-0.6-1.7-1c-0.9-0.4-5.3-2.6-6.1-2.9c-0.8-0.3-1.4-0.4-2,0.4
c-0.6,0.9-2.3,2.9-2.8,3.5c-0.5,0.6-1,0.7-1.9,0.2S63.8,71,60.4,68c-2.7-2.4-4.4-5.3-5-6.2c-0.5-0.9-0.1-1.4,0.4-1.8
c0.4-0.4,0.9-1,1.3-1.6c0.4-0.5,0.6-0.9,0.9-1.5c0.3-0.6,0.1-1.1-0.1-1.6c-0.2-0.4-2-4.8-2.8-6.6c-0.7-1.7-1.5-1.5-2-1.5
c-0.5,0-1.1,0-1.7,0c-0.6,0-1.6,0.2-2.4,1.1c-0.8,0.9-3.1,3-3.1,7.4c0,4.4,3.2,8.6,3.6,9.2c0.4,0.6,6.3,9.6,15.2,13.5
c2.1,0.9,3.8,1.5,5.1,1.9c2.1,0.7,4.1,0.6,5.6,0.4c1.7-0.3,5.3-2.2,6-4.2C82.4,74.3,82.4,72.6,82.1,72.2z"></path> </g> </g> </symbol><symbol viewBox="0 0 376 290" id="icon-alles_gelesen"><title>alles_gelesen</title> <g> <g> <path fill="#FFFFFF" d="M14.7,158.6c-2.7-2.7-4-6.9-4-9.6c0-2.7,1.3-6.8,4-9.5l19.1-19.1c5.5-5.5,13.6-5.5,19.1,0l1.3,1.4
l74.8,80.2c2.7,2.7,6.8,2.7,9.5,0L320.7,13h1.4c5.5-5.4,13.6-5.4,19.1,0l19,19.1c5.4,5.5,5.4,13.6,0,19.1L142.6,276.9
c-2.7,2.7-5.5,4-9.6,4c-4,0-6.8-1.3-9.5-4L17.4,162.7L14.7,158.6z M14.7,158.6"></path> </g> </g> </symbol><symbol viewBox="0 0 40 40" id="icon-bc-land"><title>bc-land</title> <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M25.8,12.3c-0.2-0.1-0.5,0-0.7,0.1c-0.5,0.4-1,0.8-2.1,1
c-1.2,0.2-1.8,0-2.5-0.2c-0.8-0.2-1.7-0.5-3.2-0.2c-1.1,0.2-1.7,0.6-2.3,0.9c-0.2-0.2-0.5-0.4-0.8-0.3c-0.4,0.1-0.7,0.5-0.6,0.9
l2.7,13.9c0.1,0.4,0.5,0.7,0.9,0.6c0.4-0.1,0.7-0.5,0.6-0.9l-1.2-5.9c0.5-0.4,1.1-0.8,2.2-1c1.2-0.2,1.8,0,2.5,0.2
c0.8,0.2,1.7,0.5,3.2,0.2c1.4-0.3,2.1-0.8,2.7-1.3c0.2-0.2,0.3-0.4,0.3-0.7l-1.3-6.7C26.3,12.6,26.1,12.4,25.8,12.3z"></path> </symbol><symbol viewBox="0 0 40 40" id="icon-bc-spieler"><title>bc-spieler</title> <path fill="#FFFFFF" d="M28.2,27.8c-1.5-0.8-3.1-1.4-4.6-2c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.3-0.2-0.6-0.3-0.9
c-0.1-0.2-0.1-0.4-0.3-0.5c-0.1,0-0.1-0.1-0.1-0.2c0-0.7-0.2-1.4,0.4-2c0,0,0,0,0-0.1c0.3-0.6,0.3-1.3,0.7-1.9c0,0,0,0,0,0
c0-0.4,0.1-0.9,0.1-1.3c0-0.1,0-0.1-0.1-0.2c-0.2-0.1-0.2-0.2-0.2-0.4c0-0.8,0-1.7,0-2.5c0-0.5-0.1-0.9-0.5-1.3
c-0.4-0.4-0.9-0.7-1.3-1.1c-0.2-0.2-0.2-0.3,0-0.5c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0-0.1-0.1-0.1c-0.1,0-0.3,0-0.4,0
c-0.5,0.1-1,0.1-1.4,0.3c-0.9,0.2-1.8,0.5-2.5,1.1c-0.5,0.4-0.9,0.9-0.9,1.6c0,0.4,0,0.7,0,1.1c0,0.6,0,1.2,0,1.7
c0,0.1-0.1,0.3-0.1,0.3c-0.2,0.1-0.2,0.2-0.2,0.4c0,0.1,0,0.3,0,0.4c0.1,0.4,0.2,0.7,0.3,1.1c0.1,0.3,0.2,0.5,0.3,0.8
c0.1,0.5,0.3,1,0.6,1.4c0.1,0.1,0.1,0.2,0.1,0.3c0,0.4-0.1,0.8-0.1,1.2c0,0.1-0.1,0.2-0.2,0.2c-0.3,0.1-0.3,0.3-0.4,0.5
c-0.1,0.3-0.2,0.6-0.3,0.8c0,0.1-0.1,0.2-0.2,0.2c-0.5,0.2-1,0.4-1.5,0.6c-0.5,0.2-1.1,0.4-1.6,0.7c-0.5,0.3-1,0.5-1.6,0.8
c-0.3,0.2-0.6,0.3-0.8,0.6v0.9h18v-0.9C28.8,28.1,28.5,27.9,28.2,27.8L28.2,27.8z M28.2,27.8"></path> </symbol><symbol viewBox="0 0 40 40" id="icon-bc-verein"><title>bc-verein</title> <g> <path fill="#FFFFFF" d="M29.3,13.8L24,12.4c-0.3-0.1-0.6-0.1-0.9-0.1c0,0,0,0,0,0h0c-0.2,1-2.2,2.5-3.3,2.5c-1.1,0-3-1.5-3.3-2.5h0
c0,0,0,0,0,0c-0.3,0-0.6,0-0.9,0.1l-5.3,1.3c-0.4,0.1-0.6,0.5-0.5,0.8l0.6,2.3c0.1,0.4,0.5,0.6,0.8,0.5l1.7-0.4
c0.4-0.1,0.7,0.1,0.7,0.5V28c0,0.4,0.3,0.7,0.7,0.7h11.2c0.4,0,0.7-0.3,0.7-0.7V17.4c0-0.4,0.3-0.6,0.7-0.5l1.7,0.4
c0.4,0.1,0.7-0.1,0.8-0.5l0.6-2.3C29.9,14.2,29.7,13.8,29.3,13.8L29.3,13.8z M21.5,22.3"></path> </g> </symbol><symbol viewBox="0 0 40 40" id="icon-bc-wettbewerb"><title>bc-wettbewerb</title> <g> <path fill="#FFFFFF" d="M26.3,12.7h-2.5V12c0-0.2-0.2-0.4-0.4-0.4h-7.6c-0.2,0-0.4,0.2-0.4,0.4v0.7h-2.5c-0.2,0-0.4,0.2-0.4,0.4
v0.2c0,3.1,1.6,5.6,3.6,5.7c0.5,0.8,1.3,1.4,2.2,1.6v4.1h-1.4c-0.2,0-0.4,0.2-0.4,0.4v0.6h-0.8c-0.2,0-0.4,0.2-0.4,0.4v2.8
c0,0.2,0.2,0.4,0.4,0.4h7.6c0.2,0,0.4-0.2,0.4-0.4v-2.8c0-0.2-0.2-0.4-0.4-0.4h-0.8v-0.6c0-0.2-0.2-0.4-0.4-0.4h-1.4v-4.1
c0.9-0.3,1.7-0.9,2.2-1.6c2-0.1,3.6-2.6,3.6-5.7v-0.2C26.7,12.9,26.5,12.7,26.3,12.7L26.3,12.7z M15.6,13.9v2.8c0,0.3,0,0.6,0.1,1
c-1-0.5-1.7-2.1-1.8-3.8H15.6z M23.7,17.7c0.1-0.3,0.1-0.6,0.1-1v-2.8h1.7C25.4,15.6,24.7,17.1,23.7,17.7L23.7,17.7z M23.7,17.7"></path> </g> </symbol><symbol viewBox="0 0 455.73 455.73" id="icon-facebook"><title>facebook</title> <path style="fill:#3A559F;" d="M0,0v455.73h242.704V279.691h-59.33v-71.864h59.33v-60.353c0-43.893,35.582-79.475,79.475-79.475
h62.025v64.622h-44.382c-13.947,0-25.254,11.307-25.254,25.254v49.953h68.521l-9.47,71.864h-59.051V455.73H455.73V0H0z"></path> </symbol><symbol viewBox="0 0 214.3 151.5" id="icon-fanticker"><title>fanticker</title> <path fill-rule="evenodd" clip-rule="evenodd" fill="#1B3251" d="M105.3,48.8c12,0,21.7,9.7,21.7,21.7c0,12-9.7,21.7-21.7,21.7
c-12,0-21.7-9.7-21.7-21.7C83.6,58.5,93.3,48.8,105.3,48.8"></path> <path fill-rule="evenodd" clip-rule="evenodd" fill="#1B3251" d="M141.8,40.2l-14.1,16.1c2.6,4.1,4.1,8.9,4.1,14.1
c0,14.6-11.9,26.5-26.5,26.5c-14.6,0-26.5-11.9-26.5-26.5c0-4.9,1.3-9.4,3.6-13.3L68.8,39.8c-7.9-10-24.1-15.2-15,10.6l19.9,56.8
l-1.5,20.7h62.6l-2.7-21.6l25.2-58.4C165.5,29.1,154.6,25.7,141.8,40.2"></path> <path fill-rule="evenodd" clip-rule="evenodd" fill="#24ABE3" d="M163.5,32.6l6.3,29.6l-0.6,1.2l-1.2,2.4l-0.7,1.3l-1.2,2.4
l-0.9,1.7l-1.2,2.4l-1.1,2.2l-1.2,2.4l-0.8,1.6l-10.5-36.7H62.6L52.1,79.9l-0.9-1.7l-1.2-2.4L49,73.5l-1.2-2.4l-0.9-1.7L45.7,67
L45,65.6l-1.2-2.4l-0.5-1l6.1-29.7c0.8-3.9,4.6-7,8.7-7h95.5C160.4,25.5,162.1,26,163.5,32.6"></path> </symbol><symbol viewBox="0 0 214.3 151.5" id="icon-fanticker_white"><title>fanticker_white</title> <path fill="#FFFFFF" d="M105.3,48.8c12,0,21.7,9.7,21.7,21.7s-9.7,21.7-21.7,21.7s-21.7-9.7-21.7-21.7
C83.6,58.5,93.3,48.8,105.3,48.8"></path> <path fill="#FFFFFF" d="M141.8,40.2l-14.1,16.1c2.6,4.1,4.1,8.9,4.1,14.1c0,14.6-11.9,26.5-26.5,26.5S78.8,85,78.8,70.4
c0-4.9,1.3-9.4,3.6-13.3L68.8,39.8c-7.9-10-24.1-15.2-15,10.6l19.9,56.8l-1.5,20.7h62.6l-2.7-21.6l25.2-58.4
C165.5,29.1,154.6,25.7,141.8,40.2"></path> <path fill="#FFFFFF" d="M163.5,32.6l6.3,29.6l-0.6,1.2l-1.2,2.4l-0.7,1.3l-1.2,2.4l-0.9,1.7l-1.2,2.4l-1.1,2.2l-1.2,2.4l-0.8,1.6
l-10.5-36.7H62.6L52.1,79.9l-0.9-1.7L50,75.8l-1-2.3l-1.2-2.4l-0.9-1.7L45.7,67L45,65.6l-1.2-2.4l-0.5-1l6.1-29.7
c0.8-3.9,4.6-7,8.7-7h95.5C160.4,25.5,162.1,26,163.5,32.6"></path> </symbol><symbol viewBox="0 0 841.9 595.3" id="icon-favoriten"><title>favoriten</title> <g> <g> <path fill="#1B3251" d="M399.1,29c3.9-7.8,11.7-12.7,20.4-12.7c8.7,0,16.7,4.9,20.5,12.7l73.4,148.9c3.4,6.7,9.8,11.4,17.2,12.5
l164.3,23.9c8.6,1.2,15.7,7.3,18.4,15.5c2.7,8.3,0.4,17.3-5.8,23.4L588.8,369.1c-5.4,5.2-7.8,12.8-6.6,20.2l28,163.7
c1.5,8.6-2.1,17.2-9.1,22.4c-7,5.1-16.3,5.8-24.1,1.7l-146.9-77.3c-6.7-3.5-14.6-3.5-21.3,0l-147,77.2c-7.7,4.1-17,3.4-24.1-1.7
c-7-5.2-10.5-13.8-9.1-22.4l28-163.7c1.3-7.4-1.2-15-6.5-20.2L131.4,253.2c-6.2-6.1-8.5-15.2-5.8-23.4c2.7-8.3,9.8-14.3,18.5-15.5
l164.3-23.9c7.4-1.1,13.9-5.8,17.2-12.5L399.1,29z M399.1,29"></path> </g> </g> </symbol><symbol viewBox="0 0 455.73 455.73" id="icon-google+"><title>google+</title> <path style="fill:#DD4B39;" d="M0,0v455.73h455.73V0H0z M265.67,247.037c-7.793,51.194-45.961,80.543-95.376,80.543
c-55.531,0-100.552-45.021-100.552-100.552c0-55.517,45.021-100.538,100.552-100.538c26.862,0,50.399,9.586,67.531,26.226
l-28.857,28.857c-9.773-9.846-23.147-15.094-38.674-15.094c-32.688,0-59.189,27.874-59.189,60.548
c0,32.703,26.501,59.768,59.189,59.768c27.397,0,48.144-13.243,54.129-39.758h-54.129v-40.38h95.131
c1.142,6.506,1.72,13.315,1.72,20.37C267.144,234.025,266.638,240.69,265.67,247.037z M386.419,234.517h-35.233v35.218H326.16
v-35.218h-35.233v-25.041h35.233v-35.233h25.026v35.233h35.233V234.517z"></path> </symbol><symbol viewBox="0 0 40 40" id="icon-home"><title>home</title> <g> <path fill="#1B3251" d="M31,22.1l-11-8.6l-11,8.6v-3.5l11-8.6l11,8.6V22.1z M28.2,21.8v8.3h-5.5v-5.5h-5.5v5.5h-5.5v-8.3l8.3-6.2
L28.2,21.8z M28.2,21.8"></path> </g> </symbol><symbol viewBox="0 0 455.7 455.7" id="icon-instagram"><title>instagram</title> <rect x="0" y="0" fill="url(#instagram-SVGID_1_)" width="455.7" height="455.7"></rect> <g> <g> <path fill="#FFFFFF" d="M302.3,400.7H153.4c-54.3,0-98.4-44.1-98.4-98.4V153.4C55,99.1,99.1,55,153.4,55h148.9
c54.3,0,98.4,44.1,98.4,98.4v148.9C400.7,356.6,356.6,400.7,302.3,400.7z M153.4,84.6c-37.9,0-68.8,30.8-68.8,68.8v148.9
c0,37.9,30.8,68.8,68.8,68.8h148.9c37.9,0,68.8-30.8,68.8-68.8V153.4c0-37.9-30.8-68.8-68.8-68.8H153.4z"></path> </g> <g> <path fill="#FFFFFF" d="M227.9,316.4c-48.8,0-88.5-39.7-88.5-88.5c0-48.8,39.7-88.5,88.5-88.5c48.8,0,88.5,39.7,88.5,88.5
C316.4,276.7,276.7,316.4,227.9,316.4z M227.9,169c-32.5,0-58.9,26.4-58.9,58.9s26.4,58.9,58.9,58.9c32.5,0,58.9-26.4,58.9-58.9
S260.3,169,227.9,169z"></path> </g> <g> <circle fill="#FFFFFF" cx="320.2" cy="134.3" r="21.3"></circle> </g> </g> </symbol><symbol viewBox="0 0 129.2 124.1" id="icon-kalender_blue"><title>kalender_blue</title> <style type="text/css"> .st0{fill:#1A3151;} </style> <path class="st0" d="M20.3,20.7v-15c0-2.1,1.7-3.8,3.8-3.8s3.8,1.7,3.8,3.8v15c0,2.1-1.7,3.8-3.8,3.8C22,24.4,20.3,22.8,20.3,20.7
L20.3,20.7z"></path> <path class="st0" d="M84.1,24.4c2.1,0,3.8-1.7,3.8-3.8v-15c0-2.1-1.7-3.8-3.8-3.8c-2.1,0-3.8,1.7-3.8,3.8v15
C80.3,22.8,82,24.4,84.1,24.4L84.1,24.4z"></path> <path class="st0" d="M95.3,61.9c-16.6,0-30,13.4-30,30s13.4,30,30,30s30-13.4,30-30C125.3,75.4,111.9,61.9,95.3,61.9z M95.3,117.7
c-14.2,0-25.8-11.6-25.8-25.8s11.6-25.8,25.8-25.8s25.8,11.6,25.8,25.8C121.1,106.2,109.5,117.7,95.3,117.7z"></path> <rect x="20.3" y="46.9" class="st0" width="15" height="15"></rect> <rect x="20.3" y="69.4" class="st0" width="15" height="15"></rect> <rect x="42.8" y="46.9" class="st0" width="15" height="15"></rect> <rect x="42.8" y="69.4" class="st0" width="15" height="15"></rect> <path class="st0" d="M12.8,91.2V39.4h82.5v15h7.5V25.2c0-4.6-3.6-8.2-8.1-8.2h-3.1v3.8c0,4.1-3.4,7.5-7.5,7.5s-7.5-3.4-7.5-7.5V17
h-45v3.8c0,4.1-3.4,7.5-7.5,7.5s-7.5-3.4-7.5-7.5V17h-3.1c-4.5,0-8.1,3.7-8.1,8.2v66c0,4.5,3.6,8.2,8.1,8.2h44.4v-7.5H13.4
C13.1,91.9,12.8,91.6,12.8,91.2L12.8,91.2z"></path> <rect x="65.3" y="46.9" class="st0" width="15" height="15"></rect> <path class="st0" d="M106.6,91.9"></path> <path class="st0" d="M88.5,89.9l2.6,8h8.4l2.6-8L95.3,85L88.5,89.9z M95.3,70.6C83.5,70.6,74,80.2,74,91.9
c0,11.8,9.5,21.3,21.3,21.3s21.3-9.5,21.3-21.3C116.6,80.2,107.1,70.6,95.3,70.6z M102.7,102.2l-2.5,7.6c-1.6,0.4-3.2,0.7-5,0.7
c-1.7,0-3.4-0.3-5-0.7l-2.5-7.6h-8c-1.8-2.7-2.9-6-3.1-9.5L83,88l-2.5-7.6c2.1-2.6,4.9-4.7,8.1-5.8l6.4,4.7l6.4-4.7
c3.2,1.2,6,3.2,8.1,5.8L107,88l6.4,4.7c-0.1,3.5-1.2,6.7-3.1,9.5H102.7z"></path> </symbol><symbol viewBox="0 0 55 50" id="icon-kommentare_beitraege_sprechblase"><title>kommentare_beitraege_sprechblase</title> <path fill="#1B3251" d="M5.8,3.4C3.8,3.4,2.1,5,2.1,7v27.1c0,2,1.6,3.6,3.7,3.6h6v6.4c0,2.2,1.5,3.2,2.8,3.2c0.7,0,1.5-0.3,2.2-0.8
l8.6-8.8h23.1c2,0,3.7-1.6,3.7-3.6V7c0-1-0.4-1.9-1.1-2.6c-0.7-0.7-1.6-1.1-2.6-1.1H5.8L5.8,3.4z"></path> <path fill="#1F76A4" d="M45.7,9.5"></path> </symbol><symbol viewBox="0 0 455.731 455.731" id="icon-linkedin"><title>linkedin</title> <g> <rect x="0" y="0" style="fill:#0084B1;" width="455.731" height="455.731"></rect> <g> <path style="fill:#FFFFFF;" d="M107.255,69.215c20.873,0.017,38.088,17.257,38.043,38.234c-0.05,21.965-18.278,38.52-38.3,38.043
c-20.308,0.411-38.155-16.551-38.151-38.188C68.847,86.319,86.129,69.199,107.255,69.215z"></path> <path style="fill:#FFFFFF;" d="M129.431,386.471H84.71c-5.804,0-10.509-4.705-10.509-10.509V185.18
c0-5.804,4.705-10.509,10.509-10.509h44.721c5.804,0,10.509,4.705,10.509,10.509v190.783
C139.939,381.766,135.235,386.471,129.431,386.471z"></path> <path style="fill:#FFFFFF;" d="M386.884,241.682c0-39.996-32.423-72.42-72.42-72.42h-11.47c-21.882,0-41.214,10.918-52.842,27.606
c-1.268,1.819-2.442,3.708-3.52,5.658c-0.373-0.056-0.594-0.085-0.599-0.075v-23.418c0-2.409-1.953-4.363-4.363-4.363h-55.795
c-2.409,0-4.363,1.953-4.363,4.363V382.11c0,2.409,1.952,4.362,4.361,4.363l57.011,0.014c2.41,0.001,4.364-1.953,4.364-4.363
V264.801c0-20.28,16.175-37.119,36.454-37.348c10.352-0.117,19.737,4.031,26.501,10.799c6.675,6.671,10.802,15.895,10.802,26.079
v117.808c0,2.409,1.953,4.362,4.361,4.363l57.152,0.014c2.41,0.001,4.364-1.953,4.364-4.363V241.682z"></path> </g> </g> </symbol><symbol viewBox="0 0 129.2 124.1" id="icon-liveticker_white"><title>liveticker_white</title> <path fill="#FFFFFF" d="M20.3,20.7v-15c0-2.1,1.7-3.8,3.8-3.8c2.1,0,3.8,1.7,3.8,3.8v15c0,2.1-1.7,3.8-3.8,3.8
C22,24.4,20.3,22.8,20.3,20.7L20.3,20.7z"></path> <path fill="#FFFFFF" d="M84.1,24.4c2.1,0,3.8-1.7,3.8-3.8v-15c0-2.1-1.7-3.8-3.8-3.8c-2.1,0-3.8,1.7-3.8,3.8v15
C80.3,22.8,82,24.4,84.1,24.4L84.1,24.4z"></path> <path fill="#FFFFFF" d="M95.3,61.9c-16.6,0-30,13.4-30,30c0,16.6,13.4,30,30,30c16.6,0,30-13.4,30-30
C125.3,75.4,111.9,61.9,95.3,61.9z M95.3,117.7c-14.2,0-25.8-11.6-25.8-25.8c0-14.2,11.6-25.8,25.8-25.8c14.2,0,25.8,11.6,25.8,25.8
C121.1,106.2,109.5,117.7,95.3,117.7z"></path> <rect x="20.3" y="46.9" fill="#FFFFFF" width="15" height="15"></rect> <rect x="20.3" y="69.4" fill="#FFFFFF" width="15" height="15"></rect> <rect x="42.8" y="46.9" fill="#FFFFFF" width="15" height="15"></rect> <rect x="42.8" y="69.4" fill="#FFFFFF" width="15" height="15"></rect> <path fill="#FFFFFF" d="M12.8,91.2V39.4h82.5v15h7.5V25.2c0-4.6-3.6-8.2-8.1-8.2h-3.1v3.8c0,4.1-3.4,7.5-7.5,7.5
c-4.1,0-7.5-3.4-7.5-7.5v-3.8h-45v3.8c0,4.1-3.4,7.5-7.5,7.5s-7.5-3.4-7.5-7.5v-3.8h-3.1c-4.5,0-8.1,3.7-8.1,8.2v66
c0,4.5,3.6,8.2,8.1,8.2h44.4v-7.5H13.4C13.1,91.9,12.8,91.6,12.8,91.2L12.8,91.2z"></path> <rect x="65.3" y="46.9" fill="#FFFFFF" width="15" height="15"></rect> <path fill="#1B3251" d="M106.6,91.9"></path> <path fill="#FFFFFF" d="M88.5,89.9l2.6,8h8.4l2.6-8l-6.8-4.9L88.5,89.9z M95.3,70.6C83.5,70.6,74,80.2,74,91.9
c0,11.8,9.5,21.3,21.3,21.3c11.8,0,21.3-9.5,21.3-21.3C116.6,80.2,107.1,70.6,95.3,70.6z M102.7,102.2l-2.5,7.6
c-1.6,0.4-3.2,0.7-5,0.7c-1.7,0-3.4-0.3-5-0.7l-2.5-7.6l-8,0c-1.8-2.7-2.9-6-3.1-9.5l6.4-4.7l-2.5-7.6c2.1-2.6,4.9-4.7,8.1-5.8
l6.4,4.7l6.4-4.7c3.2,1.2,6,3.2,8.1,5.8l-2.5,7.6l6.4,4.7c-0.1,3.5-1.2,6.7-3.1,9.5H102.7z"></path> </symbol><symbol viewBox="0 0 128 128" id="icon-mail-schwarz"><title>mail-schwarz</title> <g id="mail-schwarz-Twitter" display="none"> <g display="inline"> <rect id="mail-schwarz-twitter-back" fill="#55ACEE" width="128" height="128"></rect> <path id="mail-schwarz-twitter-twitter" fill="#FFFFFF" d="M99.8,41.8c-2.6,1.2-5.5,2-8.4,2.3c3-1.8,5.4-4.7,6.5-8.1c-2.8,1.7-6,2.9-9.3,3.6
c-2.7-2.9-6.5-4.6-10.7-4.6c-8.1,0-14.7,6.6-14.7,14.7c0,1.2,0.1,2.3,0.4,3.4c-12.2-0.6-23.1-6.5-30.3-15.4c-1.3,2.2-2,4.7-2,7.4
c0,5.1,2.6,9.6,6.5,12.2c-2.4-0.1-4.7-0.7-6.7-1.8c0,0.1,0,0.1,0,0.2c0,7.1,5.1,13.1,11.8,14.4c-1.2,0.3-2.5,0.5-3.9,0.5
c-0.9,0-1.9-0.1-2.8-0.3c1.9,5.8,7.3,10.1,13.7,10.2c-5,3.9-11.4,6.3-18.3,6.3c-1.2,0-2.4-0.1-3.5-0.2c6.5,4.2,14.2,6.6,22.5,6.6
c27,0,41.8-22.4,41.8-41.8c0-0.6,0-1.3,0-1.9C95.4,47.3,97.9,44.7,99.8,41.8z"></path> </g> </g> <g id="mail-schwarz-Ebene_2"> <rect x="-1.3" width="131.5" height="129.8"></rect> <g> <path fill="#FFFFFF" d="M102.8,83.4c0,1.9-0.5,3.4-1.5,4.9L76.6,60.6l24.3-21.4c1,1.5,1.5,3.4,1.5,5.3v38.8H102.8z M64,65.9
l34-29.6c-1.5-1-2.9-1.5-4.9-1.5H34.9c-1.5,0-3.4,0.5-4.9,1.5L64,65.9z M73.2,64l-7.8,6.8c-0.5,0.5-1,0.5-1.5,0.5
c-0.5,0-1,0-1.5-0.5L54.8,64L30,91.7c1.5,1,3.4,1.5,5.3,1.5h58.3c1.9,0,3.4-0.5,5.3-1.5L73.2,64z M26.6,39.7
c-1,1.5-1.5,3.4-1.5,5.3v38.8c0,1.9,0.5,3.4,1.5,4.9l24.8-27.7L26.6,39.7z"></path> </g> </g> </symbol><symbol viewBox="0 0 841.9 595.3" id="icon-notification"><title>notification</title> <g> <path fill="#1B3251" d="M575.8,262.5c0-74.1-50.2-133.9-119.5-150.5V95.1c0-19.1-16.8-35.8-36-35.8c-19,0-35.8,16.7-35.8,35.8v16.8
C315.2,128.6,265,188.3,265,262.5v131.4l-47.7,47.9v23.9h406.2v-23.9l-47.7-47.9V262.5z M420.3,537.3h9.6
c16.8-2.3,28.7-14.3,33.5-28.7c2.4-4.8,4.8-11.9,4.8-19.2h-95.6C372.6,515.8,394.1,537.3,420.3,537.3L420.3,537.3z M420.3,537.3"></path> </g> </symbol><symbol viewBox="0 0 455.7 455.7" id="icon-offizielle-homepage"><title>offizielle-homepage</title> <rect x="0" y="0" fill="#1D75A3" width="455.7" height="455.7"></rect> <path fill="#1E76A4" d="M113.1,241.8l1.8,10l0.2,0.1l2.2-10.1l14.6-46.2h10l14.6,46.2l2.3,11h0.2l2.3-11l11.7-46.2h12.3l-21,72.3
h-10L140,223.3l-3.1-12.9h-0.2l-3,12.9l-14,44.6h-10.1l-21-72.3h12.4L113.1,241.8z M113.1,241.8"></path> <path fill="#1E76A4" d="M216.7,241.8l1.8,10l0.2,0.1l2.2-10.1l14.6-46.2h10l14.6,46.2l2.3,11h0.2l2.3-11l11.7-46.2h12.3l-21,72.3
h-10l-14.3-44.6l-3.1-12.9h-0.2l-3,12.9l-14,44.6h-10.1l-21-72.3h12.4L216.7,241.8z M216.7,241.8"></path> <path fill="#1E76A4" d="M320.3,241.8l1.8,10l0.2,0.1l2.2-10.1l14.6-46.2h10l14.6,46.2l2.3,11h0.2l2.3-11l11.7-46.2h12.3l-21,72.3
h-10l-14.3-44.6l-3.1-12.9h-0.2l-3,12.9l-14,44.6h-10.1l-21-72.3h12.4L320.3,241.8z M320.3,241.8"></path> <g> <path fill="#FFFFFF" d="M395.8,286.4c6.4-18.3,9.9-38,9.9-58.5c0-20.5-3.5-40.2-9.9-58.5c-0.2-0.5-0.3-1.1-0.6-1.6
C370.5,99.2,304.8,50,227.8,50S85.2,99.2,60.5,167.7c-0.2,0.5-0.4,1.1-0.6,1.6c-6.4,18.3-9.9,38-9.9,58.5c0,20.5,3.5,40.2,9.9,58.5
c0.2,0.5,0.3,1.1,0.6,1.6c24.7,68.6,90.4,117.7,167.4,117.7S370.5,356.5,395.2,288C395.5,287.4,395.6,286.9,395.8,286.4
L395.8,286.4z M227.8,380.2c-6.8,0-17.7-12.3-26.8-39.6c-4.4-13.2-7.9-28.4-10.5-44.9h74.6c-2.6,16.5-6.1,31.7-10.5,44.9
C245.5,367.9,234.6,380.2,227.8,380.2L227.8,380.2z M187.4,270.1c-1.2-13.6-1.9-27.8-1.9-42.3c0-14.5,0.6-28.7,1.9-42.3h80.8
c1.2,13.6,1.9,27.8,1.9,42.3c0,14.5-0.6,28.7-1.9,42.3H187.4z M75.5,227.8c0-14.7,2.1-28.9,6-42.3h80.4
c-1.2,13.9-1.8,28.1-1.8,42.3c0,14.2,0.6,28.4,1.8,42.3H81.5C77.6,256.7,75.5,242.5,75.5,227.8L75.5,227.8z M227.8,75.5
c6.8,0,17.7,12.3,26.8,39.6c4.4,13.2,7.9,28.4,10.5,44.9h-74.6c2.6-16.5,6.1-31.7,10.5-44.9C210.2,87.8,221.1,75.5,227.8,75.5
L227.8,75.5z M293.8,185.6h80.4c3.9,13.4,6,27.6,6,42.3c0,14.7-2.1,28.9-6,42.3h-80.4c1.2-13.9,1.8-28.1,1.8-42.3
C295.6,213.7,295,199.4,293.8,185.6L293.8,185.6z M364.3,160.1h-73.4c-4.5-31.3-12.3-59.3-23.2-79.3
C310,92.3,345,121.5,364.3,160.1L364.3,160.1z M188,80.8c-10.9,20-18.7,48-23.2,79.3H91.4C110.7,121.5,145.7,92.3,188,80.8
L188,80.8z M91.4,295.6h73.4c4.5,31.3,12.3,59.3,23.2,79.3C145.7,363.4,110.7,334.2,91.4,295.6L91.4,295.6z M267.7,374.9
c10.9-20,18.7-48,23.2-79.3h73.4C345,334.2,310,363.4,267.7,374.9L267.7,374.9z M267.7,374.9"></path> </g> </symbol><symbol viewBox="0 0 841.9 595.3" id="icon-passwort"><title>passwort</title> <g> <path fill="#1B3251" d="M494,212.1c16.5,7,31.7,16.1,45.5,27.3v-78.9c0-65.6-53.4-118.9-118.9-118.9h-1.8
c-65.5,0-118.9,53.4-118.9,118.9v78.9c13.8-11.2,29-20.3,45.5-27.3c4.4-1.9,9-3.6,13.5-5.1v-46.5c0-33.1,26.9-59.9,59.9-59.9h1.8
c33.1,0,59.9,26.9,59.9,59.9V207C485.1,208.5,489.6,210.2,494,212.1L494,212.1z M494,212.1"></path> <path fill="#1B3251" d="M252.4,388c0,92.4,74.9,167.3,167.3,167.3c92.4,0,167.3-74.8,167.3-167.3c0-45.4-18.1-86.6-47.5-116.8
c-16.5-16.9-36.6-30.4-59-39.2c-18.8-7.4-39.4-11.4-60.8-11.4c-21.4,0-42,4-60.8,11.4c-22.4,8.7-42.5,22.2-59,39.2
C270.5,301.4,252.4,342.6,252.4,388L252.4,388z M376.6,354.2c0.6-22.8,19.2-41.4,42-42c24.3-0.6,44.2,18.9,44.2,43.1
c0,2.5-0.2,5-0.7,7.4c-2.1,12.2-9.4,22.7-19.5,29.1c-4.2,2.7-6.3,7.6-5.3,12.4l12.8,60.7c0.8,3.7-2,7.1-5.8,7.1H395
c-3.8,0-6.6-3.4-5.8-7.1l12.8-60.7c1-4.8-1.1-9.8-5.3-12.5c-10.2-6.4-17.4-16.8-19.5-29.1C376.8,359.9,376.6,357.1,376.6,354.2
L376.6,354.2z M376.6,354.2"></path> </g> </symbol><symbol viewBox="0 0 455.731 455.731" id="icon-pinterest"><title>pinterest</title> <g> <rect x="0" y="0" style="fill:#C9353D;" width="455.731" height="455.731"></rect> <path style="fill:#FFFFFF;" d="M160.601,382C86.223,350.919,37.807,262.343,68.598,172.382
C99.057,83.391,197.589,36.788,286.309,69.734c88.972,33.04,132.978,131.213,98.486,219.22
c-35.709,91.112-131.442,123.348-203.22,100.617c5.366-13.253,11.472-26.33,15.945-39.943c4.492-13.672,7.356-27.878,10.725-41.037
c2.9,2.44,5.814,5.027,8.866,7.439c15.861,12.535,33.805,13.752,52.605,9.232c19.977-4.803,35.764-16.13,47.455-32.78
c19.773-28.16,26.751-60.019,21.972-93.546c-4.942-34.668-25.469-59.756-57.65-72.389c-48.487-19.034-94.453-12.626-134.269,22.259
c-30.622,26.83-40.916,72.314-26.187,107.724c5.105,12.274,13.173,21.907,25.379,27.695c6.186,2.933,8.812,1.737,10.602-4.724
c0.133-0.481,0.295-0.955,0.471-1.422c3.428-9.04,2.628-16.472-3.473-25.199c-11.118-15.906-9.135-34.319-3.771-51.961
c10.172-33.455,40.062-55.777,75.116-56.101c9.39-0.087,19.056,0.718,28.15,2.937c27.049,6.599,44.514,27.518,46.264,55.253
c1.404,22.242-2.072,43.849-11.742,64.159c-4.788,10.055-11.107,18.996-20.512,25.325c-8.835,5.945-18.496,8.341-28.979,5.602
c-14.443-3.774-22.642-16.95-18.989-31.407c3.786-14.985,8.685-29.69,12.399-44.69c1.57-6.344,2.395-13.234,1.751-19.696
c-1.757-17.601-18.387-25.809-33.933-17.216c-10.889,6.019-16.132,16.079-18.564,27.719c-2.505,11.992-1.292,23.811,2.61,35.439
c0.784,2.337,0.9,5.224,0.347,7.634c-7.063,30.799-14.617,61.49-21.306,92.369c-1.952,9.011-1.59,18.527-2.239,27.815
C160.495,377.839,160.601,379.635,160.601,382z"></path> </g> </symbol><symbol viewBox="0 0 384 382" id="icon-rss"><title>rss</title> <rect x="9" y="9" fill="#F78422" width="364.6" height="364.6"></rect> <path fill="#FFFFFF" d="M246,136.3C196.6,86.9,130.8,59.7,60.8,59.7v51.5c56.2,0,109,21.9,148.7,61.5
c39.7,39.7,61.5,92.5,61.5,148.7h51.5C322.6,251.5,295.4,185.7,246,136.3L246,136.3z M246,136.3"></path> <path fill="#FFFFFF" d="M60.3,146.8v51.5c67.9,0,123.2,55.2,123.2,123.2h51.5C234.9,225.2,156.6,146.8,60.3,146.8L60.3,146.8z
M60.3,146.8"></path> <path fill="#FFFFFF" d="M133.7,286c0,20.4-16.5,36.9-36.9,36.9S60,306.4,60,286s16.5-36.9,36.9-36.9S133.7,265.6,133.7,286
L133.7,286z M133.7,286"></path> </symbol><symbol viewBox="0 0 270 276" id="icon-schliessen"><title>schliessen</title> <g> <path fill="#FFFFFF" d="M168.1,141.4c-2.1-2.1-2.1-5.3,0-7.4l79.3-79.3c2.1-2.1,3.2-5.3,3.2-7.4c0-2.1-1-5.3-3.2-7.4l-14.8-14.8
c-2.1-2.1-5.3-3.1-7.4-3.1c-3.2,0-5.3,1-7.4,3.1l-79.3,79.3c-2.1,2.1-5.3,2.1-7.4,0L51.8,25.1C49.7,23,46.5,22,44.4,22
c-2.1,0-5.3,1-7.4,3.1L22.1,40C20,42.1,19,45.3,19,47.4c0,2.1,1,5.3,3.1,7.4l79.3,79.3c2.1,2.1,2.1,5.3,0,7.4l-79.3,79.3
c-2.1,2.1-3.1,5.3-3.1,7.4c0,2.1,1,5.3,3.1,7.4L37,250.4c2.1,2.1,5.3,3.2,7.4,3.2c2.1,0,5.3-1,7.4-3.2l79.3-79.3
c2.1-2.1,5.3-2.1,7.4,0l79.3,79.3c2.1,2.1,5.3,3.2,7.4,3.2c2.1,0,5.3-1,7.4-3.2l14.8-14.8c2.1-2.1,3.2-5.3,3.2-7.4
c0-2.1-1-5.3-3.2-7.4L168.1,141.4z M168.1,141.4"></path> </g> </symbol><symbol viewBox="0 0 128 128" id="icon-share-blauaufweiss"><title>share-blauaufweiss</title> <g id="share-blauaufweiss-Twitter" display="none"> <g display="inline"> <rect id="share-blauaufweiss-twitter-back" fill="#55ACEE" width="128" height="128"></rect> <path id="share-blauaufweiss-twitter-twitter" fill="#FFFFFF" d="M99.8,41.8c-2.6,1.2-5.5,2-8.4,2.3c3-1.8,5.4-4.7,6.5-8.1c-2.8,1.7-6,2.9-9.3,3.6
c-2.7-2.9-6.5-4.6-10.7-4.6c-8.1,0-14.7,6.6-14.7,14.7c0,1.2,0.1,2.3,0.4,3.4c-12.2-0.6-23.1-6.5-30.3-15.4c-1.3,2.2-2,4.7-2,7.4
c0,5.1,2.6,9.6,6.5,12.2c-2.4-0.1-4.7-0.7-6.7-1.8c0,0.1,0,0.1,0,0.2c0,7.1,5.1,13.1,11.8,14.4c-1.2,0.3-2.5,0.5-3.9,0.5
c-0.9,0-1.9-0.1-2.8-0.3c1.9,5.8,7.3,10.1,13.7,10.2c-5,3.9-11.4,6.3-18.3,6.3c-1.2,0-2.4-0.1-3.5-0.2c6.5,4.2,14.2,6.6,22.5,6.6
c27,0,41.8-22.4,41.8-41.8c0-0.6,0-1.3,0-1.9C95.4,47.3,97.9,44.7,99.8,41.8z"></path> </g> </g> <g id="share-blauaufweiss-Ebene_2"> <rect x="-1.3" display="none" width="131.5" height="129.8"></rect> <g display="none"> <path display="inline" fill="#FFFFFF" d="M102.8,83.4c0,1.9-0.5,3.4-1.5,4.9L76.6,60.6l24.3-21.4c1,1.5,1.5,3.4,1.5,5.3v38.8
H102.8z M64,65.9l34-29.6c-1.5-1-2.9-1.5-4.9-1.5H34.9c-1.5,0-3.4,0.5-4.9,1.5L64,65.9z M73.2,64l-7.8,6.8c-0.5,0.5-1,0.5-1.5,0.5
c-0.5,0-1,0-1.5-0.5L54.8,64L30,91.7c1.5,1,3.4,1.5,5.3,1.5h58.3c1.9,0,3.4-0.5,5.3-1.5L73.2,64z M26.6,39.7
c-1,1.5-1.5,3.4-1.5,5.3v38.8c0,1.9,0.5,3.4,1.5,4.9l24.8-27.7L26.6,39.7z"></path> </g> <g> <g> <path fill="#1A3151" d="M81.6,76.9c-1.9,0-3.8,0.6-5.2,1.7L56.1,66.3c0.1-0.5,0.1-0.9,0.1-1.4s-0.1-0.9-0.1-1.4l20.2-12.4
c1.5,1.1,3.3,1.7,5.2,1.7c4.9,0,8.9-4,8.9-8.9s-4-8.9-8.9-8.9s-8.9,4-8.9,8.9c0,0.5,0.1,0.9,0.1,1.4L52.6,57.8
c-1.5-1.1-3.3-1.7-5.2-1.7c-4.9,0-8.8,3.9-8.8,8.9c0,4.9,4,8.9,8.9,8.9c2,0,3.8-0.6,5.2-1.7l20.2,12.4c-0.1,0.5-0.1,0.9-0.1,1.4
c0,4.9,4,8.9,8.9,8.9c4.9,0,8.9-4,8.9-8.9C90.4,80.9,86.5,76.9,81.6,76.9L81.6,76.9z"></path> </g> </g> </g> </symbol><symbol viewBox="0 0 128 128" id="icon-share-weissaufblau"><title>share-weissaufblau</title> <g id="share-weissaufblau-Twitter" display="none"> <g display="inline"> <rect id="share-weissaufblau-twitter-back" fill="#55ACEE" width="128" height="128"></rect> <path id="share-weissaufblau-twitter-twitter" fill="#FFFFFF" d="M99.8,41.8c-2.6,1.2-5.5,2-8.4,2.3c3-1.8,5.4-4.7,6.5-8.1c-2.8,1.7-6,2.9-9.3,3.6
c-2.7-2.9-6.5-4.6-10.7-4.6c-8.1,0-14.7,6.6-14.7,14.7c0,1.2,0.1,2.3,0.4,3.4c-12.2-0.6-23.1-6.5-30.3-15.4c-1.3,2.2-2,4.7-2,7.4
c0,5.1,2.6,9.6,6.5,12.2c-2.4-0.1-4.7-0.7-6.7-1.8c0,0.1,0,0.1,0,0.2c0,7.1,5.1,13.1,11.8,14.4c-1.2,0.3-2.5,0.5-3.9,0.5
c-0.9,0-1.9-0.1-2.8-0.3c1.9,5.8,7.3,10.1,13.7,10.2c-5,3.9-11.4,6.3-18.3,6.3c-1.2,0-2.4-0.1-3.5-0.2c6.5,4.2,14.2,6.6,22.5,6.6
c27,0,41.8-22.4,41.8-41.8c0-0.6,0-1.3,0-1.9C95.4,47.3,97.9,44.7,99.8,41.8z"></path> </g> </g> <g id="share-weissaufblau-Ebene_2"> <rect x="-1.3" fill="#1A3151" width="131.5" height="129.8"></rect> <g display="none"> <path display="inline" fill="#FFFFFF" d="M102.8,83.4c0,1.9-0.5,3.4-1.5,4.9L76.6,60.6l24.3-21.4c1,1.5,1.5,3.4,1.5,5.3v38.8
H102.8z M64,65.9l34-29.6c-1.5-1-2.9-1.5-4.9-1.5H34.9c-1.5,0-3.4,0.5-4.9,1.5L64,65.9z M73.2,64l-7.8,6.8c-0.5,0.5-1,0.5-1.5,0.5
c-0.5,0-1,0-1.5-0.5L54.8,64L30,91.7c1.5,1,3.4,1.5,5.3,1.5h58.3c1.9,0,3.4-0.5,5.3-1.5L73.2,64z M26.6,39.7
c-1,1.5-1.5,3.4-1.5,5.3v38.8c0,1.9,0.5,3.4,1.5,4.9l24.8-27.7L26.6,39.7z"></path> </g> <g> <g> <path fill="#FFFFFF" d="M81.6,76.9c-1.9,0-3.8,0.6-5.2,1.7L56.1,66.3c0.1-0.5,0.1-0.9,0.1-1.4s-0.1-0.9-0.1-1.4l20.2-12.4
c1.5,1.1,3.3,1.7,5.2,1.7c4.9,0,8.9-4,8.9-8.9s-4-8.9-8.9-8.9s-8.9,4-8.9,8.9c0,0.5,0.1,0.9,0.1,1.4L52.6,57.8
c-1.5-1.1-3.3-1.7-5.2-1.7c-4.9,0-8.8,3.9-8.8,8.9c0,4.9,4,8.9,8.9,8.9c2,0,3.8-0.6,5.2-1.7l20.2,12.4c-0.1,0.5-0.1,0.9-0.1,1.4
c0,4.9,4,8.9,8.9,8.9c4.9,0,8.9-4,8.9-8.9C90.4,80.9,86.5,76.9,81.6,76.9L81.6,76.9z"></path> </g> </g> </g> </symbol><symbol viewBox="0 0 455.7 455.7" id="icon-snapchat"><title>snapchat</title> <rect fill="#FFEA00" width="455.7" height="455.7"></rect> <g id="snapchat-snapchat-snapchat"> <path fill="#FFFFFF" stroke="#333333" stroke-width="2" stroke-miterlimit="10" d="M230,386.2c-0.9,0-1.7,0-2.6-0.1l0,0
c-0.5,0-1.1,0.1-1.7,0.1c-20,0-32.8-9.1-45.2-17.8c-8.6-6.1-16.7-11.8-26.2-13.4c-4.6-0.8-9.3-1.2-13.7-1.2
c-8.1,0-14.4,1.2-19.1,2.2c-2.8,0.6-5.2,1-7.1,1c-1.9,0-4-0.4-4.9-3.5c-0.8-2.7-1.4-5.3-1.9-7.8c-1.4-6.5-2.4-10.5-5.1-10.9
c-31.7-4.9-40.8-11.6-42.8-16.3c-0.3-0.7-0.5-1.4-0.5-2c-0.1-1.8,1.2-3.4,3-3.7c48.7-8,70.6-57.8,71.5-60c0-0.1,0.1-0.1,0.1-0.2
c3-6,3.6-11.3,1.7-15.6c-3.3-7.9-14.3-11.3-21.5-13.6c-1.8-0.6-3.4-1.1-4.8-1.6c-14.4-5.7-15.6-11.5-15-14.5
c1-5.1,7.8-8.6,13.2-8.6c1.5,0,2.8,0.3,3.9,0.8c6.5,3,12.3,4.6,17.4,4.6c7,0,10-2.9,10.4-3.3c-0.2-3.3-0.4-6.7-0.6-10.3
c-1.5-23-3.3-51.7,4-68c21.8-49,68.2-52.8,81.9-52.8c0.4,0,6-0.1,6-0.1l0.8,0c13.7,0,60.1,3.8,82,52.8c7.3,16.4,5.5,45,4,68l-0.1,1
c-0.2,3.2-0.4,6.3-0.6,9.3c0.3,0.4,3.1,3,9.5,3.3h0c4.8-0.2,10.3-1.7,16.4-4.5c1.8-0.8,3.7-1,5.1-1c2,0,4.1,0.4,5.8,1.1l0.1,0
c4.9,1.7,8.1,5.2,8.2,8.8c0.1,3.4-2.5,8.5-15.2,13.4c-1.3,0.5-3,1-4.8,1.6c-7.2,2.3-18.1,5.8-21.5,13.6c-1.8,4.3-1.2,9.5,1.7,15.6
c0,0.1,0.1,0.1,0.1,0.2c0.9,2.1,22.7,51.9,71.5,59.9c1.8,0.3,3.1,1.9,3,3.7c0,0.7-0.2,1.4-0.5,2c-2,4.7-11.1,11.4-42.8,16.3
c-2.6,0.4-3.6,3.8-5.1,10.9c-0.6,2.6-1.1,5.1-1.9,7.8c-0.7,2.3-2.1,3.4-4.5,3.4h-0.4c-1.7,0-4.1-0.3-7.1-0.9c-5.4-1.1-11.4-2-19-2
c-4.5,0-9.1,0.4-13.8,1.2c-9.5,1.6-17.6,7.3-26.1,13.3C262.8,377.2,250,386.2,230,386.2z"></path> </g> </symbol><symbol viewBox="0 0 218 226" id="icon-suche-grau"><title>suche-grau</title> <g> <g> <path fill-rule="evenodd" clip-rule="evenodd" fill="#C9C9C9" d="M203.3,184.7l-43.5-43.5c-0.2-0.2-0.5-0.4-0.7-0.6
c8.6-13,13.6-28.5,13.6-45.2c0-45.5-36.9-82.3-82.3-82.3S8,49.9,8,95.3c0,45.5,36.9,82.3,82.3,82.3c16.7,0,32.3-5,45.2-13.6
c0.2,0.2,0.4,0.5,0.6,0.7l43.5,43.5c6.5,6.5,17.1,6.5,23.7,0C209.9,201.8,209.9,191.2,203.3,184.7L203.3,184.7z M90.3,149.1
c-29.7,0-53.8-24.1-53.8-53.8c0-29.7,24.1-53.8,53.8-53.8s53.8,24.1,53.8,53.8C144.1,125,120,149.1,90.3,149.1L90.3,149.1z
M90.3,149.1"></path> </g> </g> </symbol><symbol viewBox="0 0 218 226" id="icon-suche"><title>suche</title> <g> <g> <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M203.3,184.7l-43.5-43.5c-0.2-0.2-0.5-0.4-0.7-0.6
c8.6-13,13.6-28.5,13.6-45.2c0-45.5-36.9-82.3-82.3-82.3S8,49.9,8,95.3c0,45.5,36.9,82.3,82.3,82.3c16.7,0,32.3-5,45.2-13.6
c0.2,0.2,0.4,0.5,0.6,0.7l43.5,43.5c6.5,6.5,17.1,6.5,23.7,0C209.9,201.8,209.9,191.2,203.3,184.7L203.3,184.7z M90.3,149.1
c-29.7,0-53.8-24.1-53.8-53.8c0-29.7,24.1-53.8,53.8-53.8s53.8,24.1,53.8,53.8C144.1,125,120,149.1,90.3,149.1L90.3,149.1z
M90.3,149.1"></path> </g> </g> </symbol><symbol viewBox="0 0 160 139" id="icon-thread_erstellen"><title>thread_erstellen</title> <g> <path fill="#FFFFFF" d="M23.9,21.9h93.4v39.2h11.9V10H12v102.2h58.6v-11.9H23.9V21.9z M23.9,21.9"></path> <path fill="#FFFFFF" d="M151.4,97.3h-22.1V75.2h-11.9v22.1H95.2v11.9h22.1v22.1h11.9v-22.1h22.1V97.3z M151.4,97.3"></path> <rect x="40.5" y="40.1" fill="#FFFFFF" width="50.8" height="11.9"></rect> <rect x="40.5" y="64.2" fill="#FFFFFF" width="38.8" height="11.9"></rect> </g> </symbol><symbol viewBox="0 0 455.731 455.731" id="icon-twitter"><title>twitter</title> <g> <rect x="0" y="0" style="fill:#50ABF1;" width="455.731" height="455.731"></rect> <path style="fill:#FFFFFF;" d="M60.377,337.822c30.33,19.236,66.308,30.368,104.875,30.368c108.349,0,196.18-87.841,196.18-196.18
c0-2.705-0.057-5.39-0.161-8.067c3.919-3.084,28.157-22.511,34.098-35c0,0-19.683,8.18-38.947,10.107
c-0.038,0-0.085,0.009-0.123,0.009c0,0,0.038-0.019,0.104-0.066c1.775-1.186,26.591-18.079,29.951-38.207
c0,0-13.922,7.431-33.415,13.932c-3.227,1.072-6.605,2.126-10.088,3.103c-12.565-13.41-30.425-21.78-50.25-21.78
c-38.027,0-68.841,30.805-68.841,68.803c0,5.362,0.617,10.581,1.784,15.592c-5.314-0.218-86.237-4.755-141.289-71.423
c0,0-32.902,44.917,19.607,91.105c0,0-15.962-0.636-29.733-8.864c0,0-5.058,54.416,54.407,68.329c0,0-11.701,4.432-30.368,1.272
c0,0,10.439,43.968,63.271,48.077c0,0-41.777,37.74-101.081,28.885L60.377,337.822z"></path> </g> </symbol><symbol viewBox="0 0 455.731 455.731" id="icon-vimeo"><title>vimeo</title> <g> <rect x="0" y="0" style="fill:#1AB7EA;" width="455.731" height="455.731"></rect> <path style="fill:#FFFFFF;" d="M49.642,157.084l17.626,22.474c0,0,22.033-17.186,29.965-17.186c4.927,0,15.423,5.729,22.033,25.558
c6.61,19.83,34.441,122.62,36.134,127.351c7.607,21.26,17.626,60.811,48.473,66.54s70.065-25.558,91.657-48.473
c21.592-22.914,106.64-120.741,110.165-179.349c3.26-54.191-14.517-66.765-22.474-71.828c-14.542-9.254-38.778-12.338-61.692-4.407
s-57.726,33.931-66.98,80.2c0,0,31.287-11.457,42.744-0.441s8.373,35.253-1.322,53.32s-37.015,59.93-47.151,61.252
c-10.135,1.322-18.067-18.508-19.389-23.796c-1.322-5.288-18.067-77.997-24.236-120.3s-33.049-49.354-45.829-49.354
C146.587,78.646,124.554,88.341,49.642,157.084z"></path> </g> </symbol><symbol viewBox="0 0 455.731 455.731" id="icon-whatsapp"><title>whatsapp</title> <g> <rect x="0" y="0" style="fill:#1BD741;" width="455.731" height="455.731"></rect> <g> <path style="fill:#FFFFFF;" d="M68.494,387.41l22.323-79.284c-14.355-24.387-21.913-52.134-21.913-80.638
c0-87.765,71.402-159.167,159.167-159.167s159.166,71.402,159.166,159.167c0,87.765-71.401,159.167-159.166,159.167
c-27.347,0-54.125-7-77.814-20.292L68.494,387.41z M154.437,337.406l4.872,2.975c20.654,12.609,44.432,19.274,68.762,19.274
c72.877,0,132.166-59.29,132.166-132.167S300.948,95.321,228.071,95.321S95.904,154.611,95.904,227.488
c0,25.393,7.217,50.052,20.869,71.311l3.281,5.109l-12.855,45.658L154.437,337.406z"></path> <path style="fill:#FFFFFF;" d="M183.359,153.407l-10.328-0.563c-3.244-0.177-6.426,0.907-8.878,3.037
c-5.007,4.348-13.013,12.754-15.472,23.708c-3.667,16.333,2,36.333,16.667,56.333c14.667,20,42,52,90.333,65.667
c15.575,4.404,27.827,1.435,37.28-4.612c7.487-4.789,12.648-12.476,14.508-21.166l1.649-7.702c0.524-2.448-0.719-4.932-2.993-5.98
l-34.905-16.089c-2.266-1.044-4.953-0.384-6.477,1.591l-13.703,17.764c-1.035,1.342-2.807,1.874-4.407,1.312
c-9.384-3.298-40.818-16.463-58.066-49.687c-0.748-1.441-0.562-3.19,0.499-4.419l13.096-15.15
c1.338-1.547,1.676-3.722,0.872-5.602l-15.046-35.201C187.187,154.774,185.392,153.518,183.359,153.407z"></path> </g> </g> </symbol><symbol viewBox="0 0 455.731 455.731" id="icon-xing"><title>xing</title> <g> <rect x="0" y="0" style="fill:#00605E;" width="455.731" height="455.731"></rect> <g> <polygon style="fill:#FFFFFF;" points="161.915,124.199 89.249,124.199 129.915,200.199 74.582,291.532 147.249,291.532
202.582,200.199 "></polygon> <polygon style="fill:#FFFFFF;" points="304.582,66.199 381.149,66.199 268.482,264.199 342.382,389.532 265.916,389.532
191.916,264.199 "></polygon> </g> </g> </symbol><symbol viewBox="0 0 455.7 455.7" id="icon-youtube"><title>youtube</title> <rect fill="#E52D27" width="455.7" height="455.7"></rect> <path id="youtube-youtube-youtube" fill="#FFFFFF" d="M404.1,298.4c0,27.7-22.7,50.3-50.3,50.3H102c-27.7,0-50.3-22.7-50.3-50.3v-141
c0-27.7,22.7-50.3,50.3-50.3h251.7c27.7,0,50.3,22.7,50.3,50.3V298.4z M191.5,271.1l95.2-49.3l-95.2-49.7V271.1z"></path> </symbol></svg></div><div id="werbung_superbanner" style="min-height:90px; margin-bottom: 10px;" class="hide-for-smal">
</div>
<div id="navibalken" class="navibalken hide-for-small"></div>
<div id="main">
<div class="row" id="logobereich">
<div id="header" class="large-12 columns">
<div class="naviback hide-for-small hide-for-print"></div>
<div class="werbung-skyscraper-container hide-for-small">
<!-- tisoomi check --><script type="text/javascript">//OrJs9s8("skyscraper")</script>
<div class="werbung werbung-skyscraper">
<!-- DFPV2 -->
<div id="Skyscraper" data-google-query-id="CK_uoZS9xd4CFRoI4AodQCkHvA" style="display: none;">
<script>
googletag.cmd.push(function() { googletag.display('Skyscraper'); });
</script>
<div id="google_ads_iframe_/58778164/TM_Desktop_Skyscraper_300x600_0__container__" style="border: 0pt none; margin: auto; text-align: center;"><iframe id="google_ads_iframe_/58778164/TM_Desktop_Skyscraper_300x600_0" title="3rd party ad content" name="google_ads_iframe_/58778164/TM_Desktop_Skyscraper_300x600_0" width="160" height="600" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" srcdoc="" style="border: 0px; vertical-align: bottom;"></iframe></div></div>
</div>
<span class="OrJs9s8_end"></span>
</div>
<div class="row" style="margin: 0;">
<div class="large-3 columns">
<a name="Logo" href="/" id="logo-home" class="hide-for-small"><span class="hide-for-small icon-logo" title="Transfermarkt"></span></a>
<div id="domain">
<img src="https://tmssl.akamaized.net//images/flagge/verysmall/189.png?lm=1520611569" title="transfermarkt.co.uk" alt="transfermarkt.co.uk" class="flaggenrahmen"> </div>
</div>
<div class="large-3 columns header-social-icons hide-for-small">
<a name="SocMedia" href="https://www.facebook.com/transfermarkt.co.uk" target="_blank"><span class="header-sprite icon-facebook"> </span></a>|
<a name="SocMedia" href="http://twitter.com/TMuk_news" target="_blank"><span class="header-sprite icon-twitter"> </span></a>|
<a name="SocMedia" href="http://instagram.com/transfermarkt_official" target="_blank"><span class="header-sprite icon-instagram_grau"> </span></a>|
<a name="SocMedia" href="/intern/rssguide" target="_blank"><span class="header-sprite icon-rss_feed_grau"> </span></a>
</div>
<div class="large-6 columns " id="schnellsuche-platz">
<form name="schnellsuche" id="schnellsuche" class="noclose" action="/schnellsuche/ergebnis/schnellsuche">
<input type="text" name="query" class="header-suche" onclick="" placeholder="Search" autocorrect="off" spellcheck="false">
<input type="image" class="header-suche-abschicken" src="/images/suche-grau.svg" alt="Search">
</form>
<a href="/detailsuche/spielerdetail/suche" title="Advanced player search" id="detailsuche-head" class="header-suche-detailsuche">
<span class="icon-detailsuche"></span>
<!-- <svg class="svg-icon"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-suche-grau"></use></svg>-->
</a>
</div>
<div id="domains" class="noclose">
<div class="flex-box domains-wrapper">
<a name="Land" href="http://www.transfermarkt.de/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1" onclick="ga('send','event','domains','click','');
" class=" flex-box">
<span class="icon-40"></span>
<span>DE</span>
</a>
<a name="Land" href="http://www.transfermarkt.at/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1" onclick="ga('send','event','domains','click','');
" class=" flex-box">
<span class="icon-127"></span>
<span>AT</span>
</a>
<a name="Land" href="http://www.transfermarkt.ch/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1" onclick="ga('send','event','domains','click','');
" class=" flex-box">
<span class="icon-148"></span>
<span>CH</span>
</a>
<a name="Land" href="http://www.transfermarkt.com.tr/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1" onclick="ga('send','event','domains','click','');
" class=" flex-box">
<span class="icon-174"></span>
<span>COM.TR</span>
</a>
<a name="Land" href="http://www.transfermarkt.it/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1" onclick="ga('send','event','domains','click','');
" class=" flex-box">
<span class="icon-75"></span>
<span>IT</span>
</a>
<a name="Land" href="http://www.transfermarkt.pl/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1" onclick="ga('send','event','domains','click','');
" class=" flex-box">
<span class="icon-135"></span>
<span>PL</span>
</a>
<a name="Land" href="http://www.transfermarkt.co.uk/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1" onclick="ga('send','event','domains','click','');
" class="aktiv flex-box">
<span class="icon-189"></span>
<span>CO.UK</span>
</a>
<a name="Land" href="http://www.transfermarkt.es/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1" onclick="ga('send','event','domains','click','');
" class=" flex-box">
<span class="icon-157"></span>
<span>ES</span>
</a>
<a name="Land" href="http://www.transfermarkt.nl/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1" onclick="ga('send','event','domains','click','');
" class=" flex-box">
<span class="icon-122"></span>
<span>NL</span>
</a>
<a name="Land" href="http://www.transfermarkt.pt/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1" onclick="ga('send','event','domains','click','');
" class=" flex-box">
<span class="icon-136"></span>
<span>PT</span>
</a>
<a name="Land" href="http://www.transfermarkt.com/pierre-emerick-aubameyang/leistungsdatendetails/spieler/58864/saison/2018/verein/11/liga/0/wettbewerb/GB1/pos/0/trainer_id/0/plus/1" onclick="ga('send','event','domains','click','');
" class=" flex-box">
<span class="icon-com_flagge"></span>
<span>COM</span>
</a>
<a name="Land" href="http://www.transfermarkt.tv" onclick="ga('send','event','domains','click','');
" class="flex-box">
<span class="icon-tv_flagge"></span>
<span>TV</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="row hide-on-print navihalter ">
<div class="page_wrapper">
<div class="large-12 columns megamenu_container megamenu_dark_bar megamenu_dark">
<a name="Logo-Menu" href="/" class="sticky-logo hide-for-small">
<span title="Transfermarkt" class="tm_svg"></span>
</a>
<!-- Begin Menu Container -->
<ul class="megamenu " id="mainmenue" itemscope="itemscope" itemtype="http://www.schema.org/SiteNavigationElement"><!-- Begin Mega Menu -->
<li id="mobile_hauptmenu_button">
<div class="schaltflaeche">
<span></span>
<span></span>
<span></span>
</div>
<ul id="hauptmenuepunkte">
<li id="naviid_news" class=" megamenu_drop_list">
<a name="TopNavi" class="megamenu_drop" onclick="ga('send','event','News','click','menu');
">
News </a>
<div class="dropdown_fullwidth">
<div class="col_12 menue_main_col">
<img src="/images/bx_loader.gif">
</div>
<div class="col_3 menue_right_col hide-for-small">
</div>
</div>
</li>
<li id="naviid_transfers" class=" megamenu_drop_list">
<a name="TopNavi" class="megamenu_drop" onclick="ga('send','event','Transfers & Rumours','click','menu');
">
Transfers & Rumours </a>
<div class="dropdown_fullwidth">
<div class="col_12 menue_main_col">
<img src="/images/bx_loader.gif">
</div>
<div class="col_3 menue_right_col hide-for-small">
</div>
</div>
</li>
<li id="naviid_marktwerte" class=" megamenu_drop_list">
<a name="TopNavi" class="megamenu_drop" onclick="ga('send','event','Market Values','click','menu');
">
Market Values </a>
<div class="dropdown_fullwidth">
<div class="col_12 menue_main_col">
<img src="/images/bx_loader.gif">
</div>
<div class="col_3 menue_right_col hide-for-small">
</div>
</div>
</li>
<li id="naviid_wettbewerbe" class="aktiv megamenu_drop_list">
<a name="TopNavi" class="megamenu_drop" onclick="ga('send','event','Competitions','click','menu');
">
Competitions </a>
<div class="dropdown_fullwidth">
<div class="col_12 menue_main_col">
<img src="/images/bx_loader.gif">
</div>
<div class="col_3 menue_right_col hide-for-small">
</div>
</div>
</li>
<li id="naviid_foren" class=" megamenu_drop_list">
<a name="TopNavi" class="megamenu_drop" onclick="ga('send','event','Forums','click','menu');
">
Forums </a>
<div class="dropdown_fullwidth">
<div class="col_12 menue_main_col">
<img src="/images/bx_loader.gif">
</div>
<div class="col_3 menue_right_col hide-for-small">
</div>
</div>
</li>
<li id="naviid_meintm" class=" megamenu_drop_list">
<a name="TopNavi" class="megamenu_drop" onclick="ga('send','event','My TM','click','menu');
">
My TM </a>
<div class="dropdown_fullwidth">
<div class="col_12 menue_main_col">
<img src="/images/bx_loader.gif">
</div>
<div class="col_3 menue_right_col hide-for-small">
</div>
</div>
</li>
<li id="naviid_live" class="">
<a name="TopNavi" href="/ticker/index/live" class="live-navilink" onclick="ga('send','event','Live','click','menu');
" style="position: relative;">Live <span id="live-counter" class="opacity-fade" title="11 Live matches">11</span></a>
</li>
</ul>
</li>
</ul>
<a name="Logo-Menu-Klein" href="/" id="logo_klein" class="show-for-small icon-logo">
</a>
<form name="schnellsuche" id="schnellsuche-sticky" class="noclose sticky-suche" action="/schnellsuche/ergebnis/schnellsuche">
<input type="text" name="query" class="header-suche" onclick="" placeholder="Search">
<input type="image" class="header-suche-abschicken" src="https://tmssl.akamaized.net//images/suchicon.png" alt="Search">
</form>
<a href="/detailsuche/spielerdetail/suche" title="Advanced player search" id="detailsuche-head" class="header-suche-detailsuche">
<span class="icon-detailsuche"></span>
<!-- <svg class="svg-icon"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-suche-grau"></use></svg>-->
</a>
<a name="ToTop-Menu" id="arrow-up-xy" href="#" onclick="">
<i class="fi-arrow-up"></i>
</a>
<div id="userprofil-box">
<div class="userbox ub-abgemeldet" id="login">
<a>
<span onclick="ga('send','event','anmeldebox','click','');
"><i class="fi-torso"></i></span>
<span class="anmelden">Log In</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="row popuphalter">
<div id="loginbox" class="small-12"></div>
<div id="registerbox"></div>
<div id="passwortVergessenBox"></div>
<div id="notificationsbox" class="noclose toggle-div"></div>
<div id="pnbox" class="noclose toggle-div"></div>
<div id="profilbox" class="noclose toggle-div">
<a href="/profil/index" style="line-height: 30px; display: inline-block; padding-left: 27px; background: url(/images/bc-spieler.png) left center no-repeat;">
Profile </a><br>
<a id="einstellungen" href="/profil/einstellungen" style="line-height: 30px; display: inline-block; padding-left: 27px; background: url(/images/options.png) 3px center no-repeat;">
Settings </a><br>
<a href="/profil/logout" style="line-height: 30px; display: inline-block; padding-left: 27px; background: url(/images/logout.png) 3px center no-repeat;">
Log Out </a>
</div>
<div id="vereinbox" class="noclose toggle-div"><img src="/images/bx_loader.gif" alt=""></div>
</div>
<script>
function googleEvent(string) {
//_gaq.push(['_trackEvent', string, 'click', 'menu']);
ga('send', 'event', string, 'click', 'menu');
}
</script>
<div class="row hide-for-small">
<div id="breadcrumb" class="large-12 columns" itemscope="" itemtype="https://schema.org/BreadcrumbList">
<div class="breadcrumb-box">
<div class="breadcrumb">
<a href="/" class="breadcrumb_home_button hide-for-small" onclick="ga('send','event','breadcrumb_home_button','click','');
">
<svg>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-home"></use>
</svg>
</a>
<form class="breadcrumb-form breadcrumb-land" action="/en/jumplist/breadcrumb/site" method="post"><div class="breadcrumb-select alternative-select chzn-land" itemprop="itemListElement">
<svg>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-bc-land"></use>
</svg>
<select class="chzn-select chzn-done" data-placeholder="Country" tabindex="-1" name="land_select_breadcrumb" id="land_select_breadcrumb" style="display: none;">
<option value="189" selected="selected">England</option>
</select><div id="land_select_breadcrumb_chzn" class="chzn-container chzn-container-single" style="width: 100%;" title=""><a href="javascript:void(0)" class="chzn-single" tabindex="-1"><span>England</span><div><b></b></div></a><div class="chzn-drop"><div class="chzn-search"><input type="search" autocomplete="off" tabindex="0"></div><ul class="chzn-results"><li id="land_select_breadcrumb_chzn_o_0" class="active-result result-selected" style="">England</li></ul></div></div></div>
<div class="breadcrumb-text">
<input type="submit" class="breadcrumb-button " value="">
</div>
</form>
<form class="breadcrumb-form breadcrumb-wettbewerb" action="/en/jumplist/breadcrumb/site" method="post"><div class="breadcrumb-select alternative-select chzn-wettbewerb" itemprop="itemListElement">
<svg>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-bc-wettbewerb"></use>
</svg>
<select class="chzn-select chzn-done" data-placeholder="Competition" tabindex="-1" name="wettbewerb_select_breadcrumb" id="wettbewerb_select_breadcrumb" style="display: none;">
<option value=""></option>
<option value="GB1" selected="selected">Premier League</option>
<option value="GB2">Championship</option>
<option value="GB3">League One</option>
<option value="GB4">League Two</option>
<option value="CNAT">National League</option>
<option value="GB21">Premier League 2</option>
<option value="GB18">U18 Premier League</option>
<option value="GBFL">EFL Trophy</option>
<option value="FAC">FA Cup</option>
<option value="CGB">EFL Cup</option>
<option value="GBCS">Community Shield</option>
</select><div id="wettbewerb_select_breadcrumb_chzn" class="chzn-container chzn-container-single" style="width: 100%;" title=""><a href="javascript:void(0)" class="chzn-single" tabindex="-1"><span>Premier League</span><div><b></b></div></a><div class="chzn-drop"><div class="chzn-search"><input type="search" autocomplete="off" tabindex="0"></div><ul class="chzn-results"><li id="wettbewerb_select_breadcrumb_chzn_o_1" class="active-result result-selected" style="">Premier League</li><li id="wettbewerb_select_breadcrumb_chzn_o_2" class="active-result" style="">Championship</li><li id="wettbewerb_select_breadcrumb_chzn_o_3" class="active-result" style="">League One</li><li id="wettbewerb_select_breadcrumb_chzn_o_4" class="active-result" style="">League Two</li><li id="wettbewerb_select_breadcrumb_chzn_o_5" class="active-result" style="">National League</li><li id="wettbewerb_select_breadcrumb_chzn_o_6" class="active-result" style="">Premier League 2</li><li id="wettbewerb_select_breadcrumb_chzn_o_7" class="active-result" style="">U18 Premier League</li><li id="wettbewerb_select_breadcrumb_chzn_o_8" class="active-result" style="">EFL Trophy</li><li id="wettbewerb_select_breadcrumb_chzn_o_9" class="active-result" style="">FA Cup</li><li id="wettbewerb_select_breadcrumb_chzn_o_10" class="active-result" style="">EFL Cup</li><li id="wettbewerb_select_breadcrumb_chzn_o_11" class="active-result" style="">Community Shield</li></ul></div></div></div>
<div class="breadcrumb-text">
<input type="hidden" name="wettbewerb_site" value="">
<input type="submit" class="breadcrumb-button " value="">
</div>
</form>
<form class="breadcrumb-form breadcrumb-verein" action="/en/jumplist/breadcrumb/site" method="post"><div class="breadcrumb-select alternative-select chzn-verein" itemprop="itemListElement">
<svg>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-bc-verein"></use>
</svg>
<select class="chzn-select chzn-done" data-placeholder="Club" tabindex="-1" name="verein_select_breadcrumb" id="verein_select_breadcrumb" style="display: none;">
<option value="">Club</option>
<option value="281">Manchester City</option>
<option value="985">Manchester United</option>
<option value="148">Tottenham Hotspur</option>
<option value="31">Liverpool FC</option>
<option value="631">Chelsea FC</option>
<option value="11" selected="selected">Arsenal FC</option>
<option value="1132">Burnley FC</option>
<option value="29">Everton FC</option>
<option value="1003">Leicester City</option>
<option value="762">Newcastle United</option>
<option value="873">Crystal Palace</option>
<option value="989">AFC Bournemouth</option>
<option value="379">West Ham United</option>
<option value="1010">Watford FC</option>
<option value="1237">Brighton & Hove Albion</option>
<option value="1110">Huddersfield Town</option>
<option value="180">Southampton FC</option>
<option value="543">Wolverhampton Wanderers</option>
<option value="603">Cardiff City</option>
<option value="931">Fulham FC</option>
</select><div id="verein_select_breadcrumb_chzn" class="chzn-container chzn-container-single" style="width: 100%;" title=""><a href="javascript:void(0)" class="chzn-single" tabindex="-1"><span>Arsenal FC</span><div><b></b></div></a><div class="chzn-drop"><div class="chzn-search"><input type="search" autocomplete="off" tabindex="0"></div><ul class="chzn-results"><li id="verein_select_breadcrumb_chzn_o_0" class="active-result" style="">Club</li><li id="verein_select_breadcrumb_chzn_o_1" class="active-result" style="">Manchester City</li><li id="verein_select_breadcrumb_chzn_o_2" class="active-result" style="">Manchester United</li><li id="verein_select_breadcrumb_chzn_o_3" class="active-result" style="">Tottenham Hotspur</li><li id="verein_select_breadcrumb_chzn_o_4" class="active-result" style="">Liverpool FC</li><li id="verein_select_breadcrumb_chzn_o_5" class="active-result" style="">Chelsea FC</li><li id="verein_select_breadcrumb_chzn_o_6" class="active-result result-selected" style="">Arsenal FC</li><li id="verein_select_breadcrumb_chzn_o_7" class="active-result" style="">Burnley FC</li><li id="verein_select_breadcrumb_chzn_o_8" class="active-result" style="">Everton FC</li><li id="verein_select_breadcrumb_chzn_o_9" class="active-result" style="">Leicester City</li><li id="verein_select_breadcrumb_chzn_o_10" class="active-result" style="">Newcastle United</li><li id="verein_select_breadcrumb_chzn_o_11" class="active-result" style="">Crystal Palace</li><li id="verein_select_breadcrumb_chzn_o_12" class="active-result" style="">AFC Bournemouth</li><li id="verein_select_breadcrumb_chzn_o_13" class="active-result" style="">West Ham United</li><li id="verein_select_breadcrumb_chzn_o_14" class="active-result" style="">Watford FC</li><li id="verein_select_breadcrumb_chzn_o_15" class="active-result" style="">Brighton & Hove Albion</li><li id="verein_select_breadcrumb_chzn_o_16" class="active-result" style="">Huddersfield Town</li><li id="verein_select_breadcrumb_chzn_o_17" class="active-result" style="">Southampton FC</li><li id="verein_select_breadcrumb_chzn_o_18" class="active-result" style="">Wolverhampton Wanderers</li><li id="verein_select_breadcrumb_chzn_o_19" class="active-result" style="">Cardiff City</li><li id="verein_select_breadcrumb_chzn_o_20" class="active-result" style="">Fulham FC</li></ul></div></div></div>
<div class="breadcrumb-text">
<input type="hidden" name="verein_site" value="">
<input type="submit" class="breadcrumb-button " value="">
</div>
</form>
<form class="breadcrumb-form breadcrumb-spieler" action="/en/jumplist/breadcrumb/site" method="post"><div class="breadcrumb-select alternative-select chzn-spieler" itemprop="itemListElement">
<svg>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-bc-spieler"></use>
</svg>
<select class="chzn-select chzn-done" data-placeholder="Player" tabindex="-1" name="spieler_select_breadcrumb" id="spieler_select_breadcrumb" style="display: none;">
<option value="">Player</option>
<optgroup label="Goalkeeper">
<option value="72476">(19) Bernd Leno</option>
<option value="5658">(1) Petr Cech</option>
<option value="111873">(26) Emiliano Martínez</option>
</optgroup>
<optgroup label="Defender">
<option value="191217">(2) Héctor Bellerín</option>
<option value="88590">(20) Shkodran Mustafi</option>
<option value="34322">(5) Sokratis</option>
<option value="94005">(31) Sead Kolasinac</option>
<option value="43003">(18) Nacho Monreal</option>
<option value="76277">(6) Laurent Koscielny</option>
<option value="253341">(16) Rob Holding</option>
<option value="126321">(25) Carl Jenkinson</option>
<option value="415912">(27) Konstantinos Mavropanos</option>
<option value="2865">(12) Stephan Lichtsteiner</option>
</optgroup>
<optgroup label="Midfielder">
<option value="35664">(10) Mesut Özil</option>
<option value="50057">(8) Aaron Ramsey</option>
<option value="111455">(34) Granit Xhaka</option>
<option value="318077">(11) Lucas Torreira</option>
<option value="55735">(7) Henrikh Mkhitaryan</option>
<option value="465830">(29) Mattéo Guendouzi</option>
<option value="160438">(4) Mohamed Elneny</option>
<option value="285845">(15) Ainsley Maitland-Niles</option>
</optgroup>
<optgroup label="Forward">
<option value="58864" selected="selected">(14) Pierre-Emerick Aubameyang</option>
<option value="93720">(9) Alexandre Lacazette</option>
<option value="242631">(17) Alex Iwobi</option>
<option value="67063">(23) Danny Welbeck</option>
</optgroup>
</select><div id="spieler_select_breadcrumb_chzn" class="chzn-container chzn-container-single" style="width: 100%;" title=""><a href="javascript:void(0)" class="chzn-single" tabindex="-1"><span>(14) Pierre-Emerick Aubameyang</span><div><b></b></div></a><div class="chzn-drop"><div class="chzn-search"><input type="search" autocomplete="off" tabindex="0"></div><ul class="chzn-results"><li id="spieler_select_breadcrumb_chzn_o_0" class="active-result" style="">Player</li><li id="spieler_select_breadcrumb_chzn_g_1" class="group-result">Goalkeeper</li><li id="spieler_select_breadcrumb_chzn_o_2" class="active-result group-option" style="">(19) Bernd Leno</li><li id="spieler_select_breadcrumb_chzn_o_3" class="active-result group-option" style="">(1) Petr Cech</li><li id="spieler_select_breadcrumb_chzn_o_4" class="active-result group-option" style="">(26) Emiliano Martínez</li><li id="spieler_select_breadcrumb_chzn_g_5" class="group-result">Defender</li><li id="spieler_select_breadcrumb_chzn_o_6" class="active-result group-option" style="">(2) Héctor Bellerín</li><li id="spieler_select_breadcrumb_chzn_o_7" class="active-result group-option" style="">(20) Shkodran Mustafi</li><li id="spieler_select_breadcrumb_chzn_o_8" class="active-result group-option" style="">(5) Sokratis</li><li id="spieler_select_breadcrumb_chzn_o_9" class="active-result group-option" style="">(31) Sead Kolasinac</li><li id="spieler_select_breadcrumb_chzn_o_10" class="active-result group-option" style="">(18) Nacho Monreal</li><li id="spieler_select_breadcrumb_chzn_o_11" class="active-result group-option" style="">(6) Laurent Koscielny</li><li id="spieler_select_breadcrumb_chzn_o_12" class="active-result group-option" style="">(16) Rob Holding</li><li id="spieler_select_breadcrumb_chzn_o_13" class="active-result group-option" style="">(25) Carl Jenkinson</li><li id="spieler_select_breadcrumb_chzn_o_14" class="active-result group-option" style="">(27) Konstantinos Mavropanos</li><li id="spieler_select_breadcrumb_chzn_o_15" class="active-result group-option" style="">(12) Stephan Lichtsteiner</li><li id="spieler_select_breadcrumb_chzn_g_16" class="group-result">Midfielder</li><li id="spieler_select_breadcrumb_chzn_o_17" class="active-result group-option" style="">(10) Mesut Özil</li><li id="spieler_select_breadcrumb_chzn_o_18" class="active-result group-option" style="">(8) Aaron Ramsey</li><li id="spieler_select_breadcrumb_chzn_o_19" class="active-result group-option" style="">(34) Granit Xhaka</li><li id="spieler_select_breadcrumb_chzn_o_20" class="active-result group-option" style="">(11) Lucas Torreira</li><li id="spieler_select_breadcrumb_chzn_o_21" class="active-result group-option" style="">(7) Henrikh Mkhitaryan</li><li id="spieler_select_breadcrumb_chzn_o_22" class="active-result group-option" style="">(29) Mattéo Guendouzi</li><li id="spieler_select_breadcrumb_chzn_o_23" class="active-result group-option" style="">(4) Mohamed Elneny</li><li id="spieler_select_breadcrumb_chzn_o_24" class="active-result group-option" style="">(15) Ainsley Maitland-Niles</li><li id="spieler_select_breadcrumb_chzn_g_25" class="group-result">Forward</li><li id="spieler_select_breadcrumb_chzn_o_26" class="active-result result-selected group-option" style="">(14) Pierre-Emerick Aubameyang</li><li id="spieler_select_breadcrumb_chzn_o_27" class="active-result group-option" style="">(9) Alexandre Lacazette</li><li id="spieler_select_breadcrumb_chzn_o_28" class="active-result group-option" style="">(17) Alex Iwobi</li><li id="spieler_select_breadcrumb_chzn_o_29" class="active-result group-option" style="">(23) Danny Welbeck</li></ul></div></div></div>
<div class="breadcrumb-text">
<input type="hidden" name="spieler_site" value="leistungsdatendetails">
<input type="submit" class="breadcrumb-button aktiv " value="">
</div>
</form>
<script type="text/javascript">
$(document).ready(function () {
var laenderGeladen=false;
$("#land_select_breadcrumb_chzn").on('click', function (event) {
if (laenderGeladen===false) {
$.getJSON("/site/dropDownLaender", function (data) {
jQuery("#land_select_breadcrumb").html(data);
jQuery("#land_select_breadcrumb").trigger("liszt:updated");
laenderGeladen=true;
});
}
});
});
</script>
</div>
</div>
</div>
</div>
<div style="text-align:right"></div>
<div class="werbung werbung-billboard">
<!-- DFPV2 -->
<div id="Billboard" data-google-query-id="CPCro5S9xd4CFQWWdwod1SEKdw">
<script>
googletag.cmd.push(function() { googletag.display('Billboard'); });
</script>
<div id="google_ads_iframe_/58778164/TM_Desktop_CenterLeaderboard_970x250_0__container__" style="border: 0pt none; margin: auto; text-align: center; width: 100%; height: auto;"><iframe frameborder="0" src="https://tpc.googlesyndication.com/safeframe/1-0-30/html/container.html" id="google_ads_iframe_/58778164/TM_Desktop_CenterLeaderboard_970x250_0" title="3rd party ad content" name="" scrolling="no" marginwidth="0" marginheight="0" width="0" height="221" data-is-safeframe="true" data-google-container-id="2" style="border: 0px; vertical-align: bottom; min-width: 100%;" data-load-complete="true"></iframe></div></div>
</div>
<div id="modalHolder"></div>
<style type="text/css">
.dataName {
font-size: 38px;
}
@media only screen and (max-width: 767px) {
.dataName {
font-size: 27px;
white-space: nowrap;
padding: 5px;
}
}
</style>
<div class="row">
<div class="large-12 columns">
<div class="dataHeader dataExtended" itemscope="" itemtype="https://schema.org/Person">