-
Notifications
You must be signed in to change notification settings - Fork 82
/
2022-group-G.html
2662 lines (2579 loc) · 323 KB
/
2022-group-G.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="client-nojs" lang="en" dir="ltr">
<head>
<meta charset="UTF-8"/>
<title>2022 FIFA World Cup Group G - Wikipedia</title>
<script>document.documentElement.className="client-js";RLCONF={"wgBreakFrames":false,"wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgRequestId":"16ad4cbc-88fe-46cb-97ed-60f5a45d44b9","wgCSPNonce":false,"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"2022_FIFA_World_Cup_Group_G","wgTitle":"2022 FIFA World Cup Group G","wgCurRevisionId":1132343916,"wgRevisionId":1132343916,"wgArticleId":70432104,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Articles with short description","Short description is different from Wikidata","Use dmy dates from March 2022","Pages using sports table with possibly ignored parameters","Commons category link is on Wikidata","Official website not in Wikidata","2022 FIFA World Cup"
,"Brazil at the 2022 FIFA World Cup","Serbia at the 2022 FIFA World Cup","Switzerland at the 2022 FIFA World Cup","Cameroon at the 2022 FIFA World Cup"],"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgRelevantPageName":"2022_FIFA_World_Cup_Group_G","wgRelevantArticleId":70432104,"wgIsProbablyEditable":true,"wgRelevantPageIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgFlaggedRevsParams":{"tags":{"status":{"levels":1}}},"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","pageVariantFallbacks":"en"},"wgMFDisplayWikibaseDescriptions":{"search":true,"watchlist":true,"tagline":false,"nearby":true},"wgWMESchemaEditAttemptStepOversample":false,"wgWMEPageLength":40000,"wgNoticeProject":"wikipedia","wgVector2022PreviewPages":[],"wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgPopupsFlags":10,"wgULSCurrentAutonym":"English","wgEditSubmitButtonLabelPublish":true,"wgCentralAuthMobileDomain":false,"wgULSPosition":
"interlanguage","wgULSisCompactLinksEnabled":true,"wgWikibaseItemId":"Q111435481","GEHomepageSuggestedEditsEnableTopics":true,"wgGETopicsMatchModeEnabled":false,"wgGEStructuredTaskRejectionReasonTextInputEnabled":false};RLSTATE={"ext.globalCssJs.user.styles":"ready","site.styles":"ready","user.styles":"ready","ext.globalCssJs.user":"ready","user":"ready","user.options":"loading","ext.cite.styles":"ready","skins.vector.styles.legacy":"ready","jquery.tablesorter.styles":"ready","jquery.makeCollapsible.styles":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.wikimediaBadges":"ready","ext.uls.interlanguage":"ready","wikibase.client.init":"ready"};RLPAGEMODULES=["ext.cite.ux-enhancements","site","mediawiki.page.ready","jquery.tablesorter","jquery.makeCollapsible","mediawiki.toc","skins.vector.legacy.js","mmv.head","mmv.bootstrap.autostart","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.eventLogging","ext.wikimediaEvents",
"ext.navigationTiming","ext.cx.eventlogging.campaigns","ext.quicksurveys.init","ext.centralNotice.geoIP","ext.centralNotice.startUp","ext.gadget.ReferenceTooltips","ext.gadget.charinsert","ext.gadget.extra-toolbar-buttons","ext.gadget.switcher","ext.centralauth.centralautologin","ext.popups","ext.echo.centralauth","ext.uls.compactlinks","ext.uls.interface","ext.growthExperiments.SuggestedEditSession"];</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.implement("user.options@12s5i",function($,jQuery,require,module){mw.user.tokens.set({"patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});});});</script>
<link rel="stylesheet" href="/w/load.php?lang=en&modules=ext.cite.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cjquery.makeCollapsible.styles%7Cjquery.tablesorter.styles%7Cskins.vector.styles.legacy%7Cwikibase.client.init&only=styles&skin=vector"/>
<script async="" src="/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector"></script>
<meta name="ResourceLoaderDynamicStyles" content=""/>
<link rel="stylesheet" href="/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector"/>
<meta name="generator" content="MediaWiki 1.40.0-wmf.18"/>
<meta name="referrer" content="origin"/>
<meta name="referrer" content="origin-when-crossorigin"/>
<meta name="referrer" content="origin-when-cross-origin"/>
<meta name="robots" content="max-image-preview:standard"/>
<meta name="format-detection" content="telephone=no"/>
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Brazil_vs_Serbia.jpg/1200px-Brazil_vs_Serbia.jpg"/>
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="540"/>
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Brazil_vs_Serbia.jpg/800px-Brazil_vs_Serbia.jpg"/>
<meta property="og:image:width" content="800"/>
<meta property="og:image:height" content="360"/>
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Brazil_vs_Serbia.jpg/640px-Brazil_vs_Serbia.jpg"/>
<meta property="og:image:width" content="640"/>
<meta property="og:image:height" content="288"/>
<meta name="viewport" content="width=1000"/>
<meta property="og:title" content="2022 FIFA World Cup Group G - Wikipedia"/>
<meta property="og:type" content="website"/>
<link rel="preconnect" href="//upload.wikimedia.org"/>
<link rel="alternate" media="only screen and (max-width: 720px)" href="//en.m.wikipedia.org/wiki/2022_FIFA_World_Cup_Group_G"/>
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=2022_FIFA_World_Cup_Group_G&action=edit"/>
<link rel="apple-touch-icon" href="/static/apple-touch/wikipedia.png"/>
<link rel="icon" href="/static/favicon/wikipedia.ico"/>
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)"/>
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd"/>
<link rel="license" href="https://creativecommons.org/licenses/by-sa/3.0/"/>
<link rel="canonical" href="https://en.wikipedia.org/wiki/2022_FIFA_World_Cup_Group_G"/>
<link rel="dns-prefetch" href="//meta.wikimedia.org" />
<link rel="dns-prefetch" href="//login.wikimedia.org"/>
</head>
<body class="skin-vector-legacy mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject mw-editable page-2022_FIFA_World_Cup_Group_G rootpage-2022_FIFA_World_Cup_Group_G skin-vector action-view vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-language-alert-in-sidebar-enabled vector-feature-sticky-header-disabled vector-feature-sticky-header-edit-disabled vector-feature-page-tools-disabled vector-feature-page-tools-pinned-disabled vector-feature-main-menu-pinned-disabled vector-feature-limited-width-enabled vector-feature-limited-width-content-enabled"><div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body" role="main">
<a id="top"></a>
<div id="siteNotice"><!-- CentralNotice --></div>
<div class="mw-indicators">
</div>
<h1 id="firstHeading" class="firstHeading mw-first-heading"><span class="mw-page-title-main">2022 FIFA World Cup Group G</span></h1>
<div id="bodyContent" class="vector-body">
<div id="siteSub" class="noprint">From Wikipedia, the free encyclopedia</div>
<div id="contentSub"><div id="mw-content-subtitle"></div></div>
<div id="contentSub2"></div>
<div id="jump-to-nav"></div>
<a class="mw-jump-link" href="#mw-head">Jump to navigation</a>
<a class="mw-jump-link" href="#searchInput">Jump to search</a>
<div id="mw-content-text" class="mw-body-content mw-content-ltr" lang="en" dir="ltr"><div class="mw-parser-output"><p class="mw-empty-elt">
</p>
<div class="thumb tright"><div class="thumbinner" style="width:222px;"><a href="/wiki/File:Brazil_vs_Serbia.jpg" class="image"><img alt="Brazil vs Serbia.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/28/Brazil_vs_Serbia.jpg/220px-Brazil_vs_Serbia.jpg" decoding="async" width="220" height="99" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/28/Brazil_vs_Serbia.jpg/330px-Brazil_vs_Serbia.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/28/Brazil_vs_Serbia.jpg/440px-Brazil_vs_Serbia.jpg 2x" data-file-width="2048" data-file-height="922" /></a> <div class="thumbcaption"><div class="magnify"><a href="/wiki/File:Brazil_vs_Serbia.jpg" class="internal" title="Enlarge"></a></div></div></div></div>
<p>
Group G of the <a href="/wiki/2022_FIFA_World_Cup" title="2022 FIFA World Cup">2022 FIFA World Cup</a> took place from 24 November to 2 December 2022.<sup id="cite_ref-match_schedule_1-0" class="reference"><a href="#cite_note-match_schedule-1">[1]</a></sup> The group consisted of <a href="/wiki/Brazil_national_football_team" title="Brazil national football team">Brazil</a>, <a href="/wiki/Serbia_national_football_team" title="Serbia national football team">Serbia</a>, <a href="/wiki/Switzerland_national_football_team" title="Switzerland national football team">Switzerland</a> and <a href="/wiki/Cameroon_national_football_team" title="Cameroon national football team">Cameroon</a>. The top two teams, Brazil and Switzerland, advanced to the <a href="/wiki/2022_FIFA_World_Cup_knockout_stage#Round_of_16" title="2022 FIFA World Cup knockout stage">round of 16</a>.<sup id="cite_ref-regulations_2-0" class="reference"><a href="#cite_note-regulations-2">[2]</a></sup> Brazil won the group despite scoring fewer goals than each of their opponents. This was unprecedented in World Cup history. Brazil, Serbia and Switzerland also played in <a href="/wiki/2018_FIFA_World_Cup_Group_E" title="2018 FIFA World Cup Group E">Group E</a> at the <a href="/wiki/2018_FIFA_World_Cup" title="2018 FIFA World Cup">previous FIFA World Cup</a>.
</p>
<div id="toc" class="toc" role="navigation" aria-labelledby="mw-toc-heading"><input type="checkbox" role="button" id="toctogglecheckbox" class="toctogglecheckbox" style="display:none" /><div class="toctitle" lang="en" dir="ltr"><h2 id="mw-toc-heading">Contents</h2><span class="toctogglespan"><label class="toctogglelabel" for="toctogglecheckbox"></label></span></div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="#Teams"><span class="tocnumber">1</span> <span class="toctext">Teams</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#Standings"><span class="tocnumber">2</span> <span class="toctext">Standings</span></a></li>
<li class="toclevel-1 tocsection-3"><a href="#Matches"><span class="tocnumber">3</span> <span class="toctext">Matches</span></a>
<ul>
<li class="toclevel-2 tocsection-4"><a href="#Switzerland_vs_Cameroon"><span class="tocnumber">3.1</span> <span class="toctext">Switzerland vs Cameroon</span></a></li>
<li class="toclevel-2 tocsection-5"><a href="#Brazil_vs_Serbia"><span class="tocnumber">3.2</span> <span class="toctext">Brazil vs Serbia</span></a></li>
<li class="toclevel-2 tocsection-6"><a href="#Cameroon_vs_Serbia"><span class="tocnumber">3.3</span> <span class="toctext">Cameroon vs Serbia</span></a></li>
<li class="toclevel-2 tocsection-7"><a href="#Brazil_vs_Switzerland"><span class="tocnumber">3.4</span> <span class="toctext">Brazil vs Switzerland</span></a></li>
<li class="toclevel-2 tocsection-8"><a href="#Serbia_vs_Switzerland"><span class="tocnumber">3.5</span> <span class="toctext">Serbia vs Switzerland</span></a></li>
<li class="toclevel-2 tocsection-9"><a href="#Cameroon_vs_Brazil"><span class="tocnumber">3.6</span> <span class="toctext">Cameroon vs Brazil</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-10"><a href="#Discipline"><span class="tocnumber">4</span> <span class="toctext">Discipline</span></a></li>
<li class="toclevel-1 tocsection-11"><a href="#Notes"><span class="tocnumber">5</span> <span class="toctext">Notes</span></a></li>
<li class="toclevel-1 tocsection-12"><a href="#References"><span class="tocnumber">6</span> <span class="toctext">References</span></a></li>
<li class="toclevel-1 tocsection-13"><a href="#External_links"><span class="tocnumber">7</span> <span class="toctext">External links</span></a></li>
</ul>
</div>
<h2><span class="mw-headline" id="Teams">Teams</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=2022_FIFA_World_Cup_Group_G&action=edit&section=1" title="Edit section: Teams">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<table class="wikitable sortable">
<tbody><tr>
<th rowspan="2">Draw position
</th>
<th rowspan="2">Team
</th>
<th rowspan="2">Pot
</th>
<th rowspan="2">Confederation
</th>
<th rowspan="2">Method of<br />qualification
</th>
<th rowspan="2">Date of<br />qualification
</th>
<th rowspan="2" data-sort-type="number">Finals<br />appearance
</th>
<th rowspan="2">Last<br />appearance
</th>
<th rowspan="2">Previous best<br />performance
</th>
<th colspan="2"><a href="/wiki/FIFA_Men%27s_World_Ranking" title="FIFA Men's World Ranking">FIFA Rankings</a><sup id="cite_ref-3" class="reference"><a href="#cite_note-3">[3]</a></sup>
</th></tr>
<tr>
<th>March 2022<sup id="cite_ref-4" class="reference"><a href="#cite_note-4">[nb 1]</a></sup>
</th>
<th>October 2022
</th></tr>
<tr>
<td>G1</td>
<td style="white-space:nowrap"><span style="white-space:nowrap"><span class="flagicon"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/0/05/Flag_of_Brazil.svg/22px-Flag_of_Brazil.svg.png" decoding="async" width="22" height="15" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/en/thumb/0/05/Flag_of_Brazil.svg/33px-Flag_of_Brazil.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/0/05/Flag_of_Brazil.svg/43px-Flag_of_Brazil.svg.png 2x" data-file-width="720" data-file-height="504" /> </span><a href="/wiki/Brazil_national_football_team" title="Brazil national football team">Brazil</a></span></td>
<td>1</td>
<td><a href="/wiki/CONMEBOL" title="CONMEBOL">CONMEBOL</a></td>
<td><a href="/wiki/2022_FIFA_World_Cup_qualification_(CONMEBOL)" title="2022 FIFA World Cup qualification (CONMEBOL)">CONMEBOL Round Robin</a> winners</td>
<td>11 November 2021</td>
<td>22nd</td>
<td><a href="/wiki/2018_FIFA_World_Cup" title="2018 FIFA World Cup">2018</a></td>
<td data-sort-value="8.5"><b>Winners</b> (<a href="/wiki/1958_FIFA_World_Cup" title="1958 FIFA World Cup">1958</a>, <a href="/wiki/1962_FIFA_World_Cup" title="1962 FIFA World Cup">1962</a>, <a href="/wiki/1970_FIFA_World_Cup" title="1970 FIFA World Cup">1970</a>, <a href="/wiki/1994_FIFA_World_Cup" title="1994 FIFA World Cup">1994</a>, <a href="/wiki/2002_FIFA_World_Cup" title="2002 FIFA World Cup">2002</a>)</td>
<td>1</td>
<td>1
</td></tr>
<tr>
<td>G2</td>
<td style="white-space:nowrap"><span style="white-space:nowrap"><span class="flagicon"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/23px-Flag_of_Serbia.svg.png" decoding="async" width="23" height="15" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/35px-Flag_of_Serbia.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/45px-Flag_of_Serbia.svg.png 2x" data-file-width="945" data-file-height="630" /> </span><a href="/wiki/Serbia_national_football_team" title="Serbia national football team">Serbia</a></span></td>
<td>3</td>
<td><a href="/wiki/UEFA" title="UEFA">UEFA</a></td>
<td><a href="/wiki/2022_FIFA_World_Cup_qualification_%E2%80%93_UEFA_Group_A" title="2022 FIFA World Cup qualification – UEFA Group A">UEFA Group A</a> winners</td>
<td>14 November 2021</td>
<td>13th<sup id="cite_ref-5" class="reference"><a href="#cite_note-5">[nb 2]</a></sup></td>
<td><a href="/wiki/2018_FIFA_World_Cup" title="2018 FIFA World Cup">2018</a></td>
<td data-sort-value="5.2">Fourth place (<a href="/wiki/1930_FIFA_World_Cup" title="1930 FIFA World Cup">1930</a>, <a href="/wiki/1962_FIFA_World_Cup" title="1962 FIFA World Cup">1962</a>)<sup id="cite_ref-6" class="reference"><a href="#cite_note-6">[nb 3]</a></sup></td>
<td>25</td>
<td>21
</td></tr>
<tr>
<td>G3</td>
<td style="white-space:nowrap"><span style="white-space:nowrap"><span class="flagicon"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/08/Flag_of_Switzerland_%28Pantone%29.svg/16px-Flag_of_Switzerland_%28Pantone%29.svg.png" decoding="async" width="16" height="16" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/08/Flag_of_Switzerland_%28Pantone%29.svg/24px-Flag_of_Switzerland_%28Pantone%29.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/08/Flag_of_Switzerland_%28Pantone%29.svg/32px-Flag_of_Switzerland_%28Pantone%29.svg.png 2x" data-file-width="512" data-file-height="512" /> </span><a href="/wiki/Switzerland_national_football_team" title="Switzerland national football team">Switzerland</a></span></td>
<td>2</td>
<td><a href="/wiki/UEFA" title="UEFA">UEFA</a></td>
<td><a href="/wiki/2022_FIFA_World_Cup_qualification_%E2%80%93_UEFA_Group_C" title="2022 FIFA World Cup qualification – UEFA Group C">UEFA Group C</a> winners</td>
<td>15 November 2021</td>
<td>12th</td>
<td><a href="/wiki/2018_FIFA_World_Cup" title="2018 FIFA World Cup">2018</a></td>
<td data-sort-value="4.3">Quarter-finals (<a href="/wiki/1934_FIFA_World_Cup" title="1934 FIFA World Cup">1934</a>, <a href="/wiki/1938_FIFA_World_Cup" title="1938 FIFA World Cup">1938</a>, <a href="/wiki/1954_FIFA_World_Cup" title="1954 FIFA World Cup">1954</a>)</td>
<td>14</td>
<td>15
</td></tr>
<tr>
<td>G4</td>
<td style="white-space:nowrap"><span style="white-space:nowrap"><span class="flagicon"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/23px-Flag_of_Cameroon.svg.png" decoding="async" width="23" height="15" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/35px-Flag_of_Cameroon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/45px-Flag_of_Cameroon.svg.png 2x" data-file-width="900" data-file-height="600" /> </span><a href="/wiki/Cameroon_national_football_team" title="Cameroon national football team">Cameroon</a></span></td>
<td>4</td>
<td><a href="/wiki/Confederation_of_African_Football" title="Confederation of African Football">CAF</a></td>
<td><a href="/wiki/2022_FIFA_World_Cup_qualification_%E2%80%93_CAF_Third_Round" title="2022 FIFA World Cup qualification – CAF Third Round">CAF Third Round</a> winners</td>
<td>29 March 2022</td>
<td>8th</td>
<td><a href="/wiki/2014_FIFA_World_Cup" title="2014 FIFA World Cup">2014</a></td>
<td data-sort-value="4.1">Quarter-finals (<a href="/wiki/1990_FIFA_World_Cup" title="1990 FIFA World Cup">1990</a>)</td>
<td>37</td>
<td>43
</td></tr></tbody></table>
<p><b>Notes</b>
</p>
<style data-mw-deduplicate="TemplateStyles:r1011085734">.mw-parser-output .reflist{font-size:90%;margin-bottom:0.5em;list-style-type:decimal}.mw-parser-output .reflist .references{font-size:100%;margin-bottom:0;list-style-type:inherit}.mw-parser-output .reflist-columns-2{column-width:30em}.mw-parser-output .reflist-columns-3{column-width:25em}.mw-parser-output .reflist-columns{margin-top:0.3em}.mw-parser-output .reflist-columns ol{margin-top:0}.mw-parser-output .reflist-columns li{page-break-inside:avoid;break-inside:avoid-column}.mw-parser-output .reflist-upper-alpha{list-style-type:upper-alpha}.mw-parser-output .reflist-upper-roman{list-style-type:upper-roman}.mw-parser-output .reflist-lower-alpha{list-style-type:lower-alpha}.mw-parser-output .reflist-lower-greek{list-style-type:lower-greek}.mw-parser-output .reflist-lower-roman{list-style-type:lower-roman}</style><div class="reflist">
<div class="mw-references-wrap"><ol class="references">
<li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text">The rankings of March 2022 were used for <a href="/wiki/2022_FIFA_World_Cup_seeding" title="2022 FIFA World Cup seeding">seeding for the final draw</a>.</span>
</li>
<li id="cite_note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text">This is the third appearance of Serbia at the FIFA World Cup. However, FIFA considers Serbia as the successor team of <a href="/wiki/Yugoslavia_national_football_team" title="Yugoslavia national football team">Yugoslavia</a>, who qualified on eight occasions, and <a href="/wiki/Serbia_and_Montenegro_national_football_team" title="Serbia and Montenegro national football team">Serbia and Montenegro</a>, who qualified on two occasions.</span>
</li>
<li id="cite_note-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-6">^</a></b></span> <span class="reference-text">Serbia's best result is the group stage in <a href="/wiki/2010_FIFA_World_Cup" title="2010 FIFA World Cup">2010</a> and <a href="/wiki/2018_FIFA_World_Cup" title="2018 FIFA World Cup">2018</a>. However, FIFA considers Serbia as the successor team of <a href="/wiki/Yugoslavia_national_football_team" title="Yugoslavia national football team">Yugoslavia</a>.</span>
</li>
</ol></div></div>
<h2><span class="mw-headline" id="Standings">Standings</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=2022_FIFA_World_Cup_Group_G&action=edit&section=2" title="Edit section: Standings">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<style data-mw-deduplicate="TemplateStyles:r1011077906">.mw-parser-output .sports-table-notes{font-size:90%;margin-bottom:0.5em}</style>
<table class="wikitable" style="text-align:center;">
<tbody><tr>
<th scope="col" width="28"><abbr title="Position">Pos</abbr>
</th>
<th scope="col" width="190">Team<style data-mw-deduplicate="TemplateStyles:r1129693374">.mw-parser-output .hlist dl,.mw-parser-output .hlist ol,.mw-parser-output .hlist ul{margin:0;padding:0}.mw-parser-output .hlist dd,.mw-parser-output .hlist dt,.mw-parser-output .hlist li{margin:0;display:inline}.mw-parser-output .hlist.inline,.mw-parser-output .hlist.inline dl,.mw-parser-output .hlist.inline ol,.mw-parser-output .hlist.inline ul,.mw-parser-output .hlist dl dl,.mw-parser-output .hlist dl ol,.mw-parser-output .hlist dl ul,.mw-parser-output .hlist ol dl,.mw-parser-output .hlist ol ol,.mw-parser-output .hlist ol ul,.mw-parser-output .hlist ul dl,.mw-parser-output .hlist ul ol,.mw-parser-output .hlist ul ul{display:inline}.mw-parser-output .hlist .mw-empty-li{display:none}.mw-parser-output .hlist dt::after{content:": "}.mw-parser-output .hlist dd::after,.mw-parser-output .hlist li::after{content:" · ";font-weight:bold}.mw-parser-output .hlist dd:last-child::after,.mw-parser-output .hlist dt:last-child::after,.mw-parser-output .hlist li:last-child::after{content:none}.mw-parser-output .hlist dd dd:first-child::before,.mw-parser-output .hlist dd dt:first-child::before,.mw-parser-output .hlist dd li:first-child::before,.mw-parser-output .hlist dt dd:first-child::before,.mw-parser-output .hlist dt dt:first-child::before,.mw-parser-output .hlist dt li:first-child::before,.mw-parser-output .hlist li dd:first-child::before,.mw-parser-output .hlist li dt:first-child::before,.mw-parser-output .hlist li li:first-child::before{content:" (";font-weight:normal}.mw-parser-output .hlist dd dd:last-child::after,.mw-parser-output .hlist dd dt:last-child::after,.mw-parser-output .hlist dd li:last-child::after,.mw-parser-output .hlist dt dd:last-child::after,.mw-parser-output .hlist dt dt:last-child::after,.mw-parser-output .hlist dt li:last-child::after,.mw-parser-output .hlist li dd:last-child::after,.mw-parser-output .hlist li dt:last-child::after,.mw-parser-output .hlist li li:last-child::after{content:")";font-weight:normal}.mw-parser-output .hlist ol{counter-reset:listitem}.mw-parser-output .hlist ol>li{counter-increment:listitem}.mw-parser-output .hlist ol>li::before{content:" "counter(listitem)"\a0 "}.mw-parser-output .hlist dd ol>li:first-child::before,.mw-parser-output .hlist dt ol>li:first-child::before,.mw-parser-output .hlist li ol>li:first-child::before{content:" ("counter(listitem)"\a0 "}</style><style data-mw-deduplicate="TemplateStyles:r1063604349">.mw-parser-output .navbar{display:inline;font-size:88%;font-weight:normal}.mw-parser-output .navbar-collapse{float:left;text-align:left}.mw-parser-output .navbar-boxtext{word-spacing:0}.mw-parser-output .navbar ul{display:inline-block;white-space:nowrap;line-height:inherit}.mw-parser-output .navbar-brackets::before{margin-right:-0.125em;content:"[ "}.mw-parser-output .navbar-brackets::after{margin-left:-0.125em;content:" ]"}.mw-parser-output .navbar li{word-spacing:-0.125em}.mw-parser-output .navbar a>span,.mw-parser-output .navbar a>abbr{text-decoration:inherit}.mw-parser-output .navbar-mini abbr{font-variant:small-caps;border-bottom:none;text-decoration:none;cursor:inherit}.mw-parser-output .navbar-ct-full{font-size:114%;margin:0 7em}.mw-parser-output .navbar-ct-mini{font-size:114%;margin:0 4em}</style><div class="navbar plainlinks hlist navbar-mini" style="float:right"><ul class="navbar-brackets"><li class="nv-view"><a href="/wiki/Template:2022_FIFA_World_Cup_group_tables" title="Template:2022 FIFA World Cup group tables"><abbr title="View this template">v</abbr></a></li><li class="nv-talk"><a href="/wiki/Template_talk:2022_FIFA_World_Cup_group_tables" title="Template talk:2022 FIFA World Cup group tables"><abbr title="Discuss this template">t</abbr></a></li><li class="nv-edit"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Template:2022_FIFA_World_Cup_group_tables&action=edit"><abbr title="Edit this template">e</abbr></a></li></ul></div>
</th>
<th scope="col" width="28"><abbr title="Played">Pld</abbr>
</th>
<th scope="col" width="28"><abbr title="Won">W</abbr>
</th>
<th scope="col" width="28"><abbr title="Drawn">D</abbr>
</th>
<th scope="col" width="28"><abbr title="Lost">L</abbr>
</th>
<th scope="col" width="28"><abbr title="Goals for">GF</abbr>
</th>
<th scope="col" width="28"><abbr title="Goals against">GA</abbr>
</th>
<th scope="col" width="28"><abbr title="Goal difference">GD</abbr>
</th>
<th scope="col" width="28"><abbr title="Points">Pts</abbr>
</th>
<th scope="col">Qualification
</th></tr>
<tr>
<td style="text-align: center;font-weight: normal;background-color:#BBF3BB;">1
</td>
<th scope="row" style="text-align: left; white-space:nowrap;font-weight: normal;background-color:#BBF3BB;"><span style="white-space:nowrap"><span class="flagicon"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/0/05/Flag_of_Brazil.svg/22px-Flag_of_Brazil.svg.png" decoding="async" width="22" height="15" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/en/thumb/0/05/Flag_of_Brazil.svg/33px-Flag_of_Brazil.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/0/05/Flag_of_Brazil.svg/43px-Flag_of_Brazil.svg.png 2x" data-file-width="720" data-file-height="504" /> </span><a href="/wiki/Brazil_national_football_team" title="Brazil national football team">Brazil</a></span>
</th>
<td style="font-weight: normal;background-color:#BBF3BB;">3
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">2
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">0
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">1
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">3
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">1
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">+2
</td>
<td style="font-weight: bold;background-color:#BBF3BB;">6
</td>
<td style="font-weight: normal;background-color:#BBF3BB;" rowspan="2">Advanced to <a href="/wiki/2022_FIFA_World_Cup_knockout_stage" title="2022 FIFA World Cup knockout stage">knockout stage</a>
</td></tr>
<tr>
<td style="text-align: center;font-weight: normal;background-color:#BBF3BB;">2
</td>
<th scope="row" style="text-align: left; white-space:nowrap;font-weight: normal;background-color:#BBF3BB;"><span style="white-space:nowrap"><span class="flagicon"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/08/Flag_of_Switzerland_%28Pantone%29.svg/16px-Flag_of_Switzerland_%28Pantone%29.svg.png" decoding="async" width="16" height="16" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/08/Flag_of_Switzerland_%28Pantone%29.svg/24px-Flag_of_Switzerland_%28Pantone%29.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/08/Flag_of_Switzerland_%28Pantone%29.svg/32px-Flag_of_Switzerland_%28Pantone%29.svg.png 2x" data-file-width="512" data-file-height="512" /> </span><a href="/wiki/Switzerland_national_football_team" title="Switzerland national football team">Switzerland</a></span>
</th>
<td style="font-weight: normal;background-color:#BBF3BB;">3
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">2
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">0
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">1
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">4
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">3
</td>
<td style="font-weight: normal;background-color:#BBF3BB;">+1
</td>
<td style="font-weight: bold;background-color:#BBF3BB;">6
</td></tr>
<tr>
<td style="text-align: center;font-weight: normal;background-color:transparent;">3
</td>
<th scope="row" style="text-align: left; white-space:nowrap;font-weight: normal;background-color:transparent;"><span style="white-space:nowrap"><span class="flagicon"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/23px-Flag_of_Cameroon.svg.png" decoding="async" width="23" height="15" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/35px-Flag_of_Cameroon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/45px-Flag_of_Cameroon.svg.png 2x" data-file-width="900" data-file-height="600" /> </span><a href="/wiki/Cameroon_national_football_team" title="Cameroon national football team">Cameroon</a></span>
</th>
<td style="font-weight: normal;background-color:transparent;">3
</td>
<td style="font-weight: normal;background-color:transparent;">1
</td>
<td style="font-weight: normal;background-color:transparent;">1
</td>
<td style="font-weight: normal;background-color:transparent;">1
</td>
<td style="font-weight: normal;background-color:transparent;">4
</td>
<td style="font-weight: normal;background-color:transparent;">4
</td>
<td style="font-weight: normal;background-color:transparent;">0
</td>
<td style="font-weight: bold;background-color:transparent;">4
</td>
<td style="font-weight: normal;background-color:transparent;" rowspan="2">
</td></tr>
<tr>
<td style="text-align: center;font-weight: normal;background-color:transparent;">4
</td>
<th scope="row" style="text-align: left; white-space:nowrap;font-weight: normal;background-color:transparent;"><span style="white-space:nowrap"><span class="flagicon"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/23px-Flag_of_Serbia.svg.png" decoding="async" width="23" height="15" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/35px-Flag_of_Serbia.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/45px-Flag_of_Serbia.svg.png 2x" data-file-width="945" data-file-height="630" /> </span><a href="/wiki/Serbia_national_football_team" title="Serbia national football team">Serbia</a></span>
</th>
<td style="font-weight: normal;background-color:transparent;">3
</td>
<td style="font-weight: normal;background-color:transparent;">0
</td>
<td style="font-weight: normal;background-color:transparent;">1
</td>
<td style="font-weight: normal;background-color:transparent;">2
</td>
<td style="font-weight: normal;background-color:transparent;">5
</td>
<td style="font-weight: normal;background-color:transparent;">8
</td>
<td style="font-weight: normal;background-color:transparent;">−3
</td>
<td style="font-weight: bold;background-color:transparent;">1
</td></tr></tbody></table><div class="sports-table-notes">Source: <a rel="" class="external text" href="https://www.fifa.com/fifaplus/en/match-centre/competition/17?date=2022-11-21&tab=competitionStandings">FIFA</a><br />Rules for classification: <a href="/wiki/2022_FIFA_World_Cup#Tiebreakers" title="2022 FIFA World Cup">Group stage tiebreakers</a></div>
<p>In the <a href="/wiki/2022_FIFA_World_Cup_knockout_stage#Round_of_16" title="2022 FIFA World Cup knockout stage">round of 16</a>:
</p>
<ul><li>The winners of Group G, Brazil, advanced to play the runners-up of <a href="/wiki/2022_FIFA_World_Cup_Group_H" title="2022 FIFA World Cup Group H">Group H</a>, South Korea.</li>
<li>The runners-up of Group G, Switzerland, advanced to play the winners of <a href="/wiki/2022_FIFA_World_Cup_Group_H" title="2022 FIFA World Cup Group H">Group H</a>, Portugal.</li></ul>
<h2><span class="mw-headline" id="Matches">Matches</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=2022_FIFA_World_Cup_Group_G&action=edit&section=3" title="Edit section: Matches">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>All times listed are local, <a href="/wiki/Arabia_Standard_Time" class="mw-redirect" title="Arabia Standard Time">AST</a> (<a href="/wiki/UTC%2B03:00" title="UTC+03:00">UTC+3</a>).<sup id="cite_ref-match_schedule_1-1" class="reference"><a href="#cite_note-match_schedule-1">[1]</a></sup>
</p>
<h3><span class="mw-headline" id="Switzerland_vs_Cameroon">Switzerland vs Cameroon</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=2022_FIFA_World_Cup_Group_G&action=edit&section=4" title="Edit section: Switzerland vs Cameroon">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p>The two teams had never met before.
</p><p>After a goalless first half, <a href="/wiki/Breel_Embolo" title="Breel Embolo">Breel Embolo</a> scored three minutes into the second half with a finish from six yards out after a cross from <a href="/wiki/Xherdan_Shaqiri" title="Xherdan Shaqiri">Xherdan Shaqiri</a> on the right.<sup id="cite_ref-7" class="reference"><a href="#cite_note-7">[4]</a></sup> Embolo did not celebrate the goal in respect to being born in Cameroon; he moved to Switzerland when he was six years old.<sup id="cite_ref-8" class="reference"><a href="#cite_note-8">[5]</a></sup>
</p>
<style data-mw-deduplicate="TemplateStyles:r997937747">.mw-parser-output .footballbox{clear:both;overflow:auto}.mw-parser-output .footballbox tr{vertical-align:top}.mw-parser-output .footballbox time{display:block;overflow:auto}.mw-parser-output .footballbox .ftitle{text-align:center;font-weight:bold}.mw-parser-output .footballbox .fevent{width:100%;table-layout:fixed;text-align:center}.mw-parser-output .footballbox .fevent,.mw-parser-output .footballbox .fright{margin-bottom:10px}.mw-parser-output .footballbox .fdate,.mw-parser-output .footballbox .ftime{display:block}.mw-parser-output .footballbox .fhome,.mw-parser-output .footballbox .faway{width:39%}.mw-parser-output .footballbox .fscore{width:22%}.mw-parser-output .footballbox .fgoals{font-size:85%}.mw-parser-output .footballbox .fhome,.mw-parser-output .footballbox .fhgoal{text-align:right}.mw-parser-output .footballbox .faway,.mw-parser-output .footballbox .fagoal{text-align:left}@media all and (min-width:720px){.mw-parser-output .footballbox .fdate,.mw-parser-output .footballbox .ftime,.mw-parser-output .footballbox .frnd{text-align:right}.mw-parser-output .footballbox .fleft,.mw-parser-output .footballbox .fright{float:left;padding:2px 0}.mw-parser-output .footballbox .fleft{width:15%;overflow:auto}.mw-parser-output .footballbox .fevent{float:left;width:61%}.mw-parser-output .footballbox .fevent,.mw-parser-output .footballbox .fright{margin-bottom:0}.mw-parser-output .footballbox .fright{font-size:85%;width:24%}}</style><div itemscope="" itemtype="http://schema.org/SportsEvent" class="footballbox">
<div class="fleft"><time><div class="fdate">24 November 2022<span style="display:none"> (<span class="bday dtstart published updated">2022-11-24</span>)</span></div><div class="ftime">13:00</div></time></div><table class="fevent"><tbody><tr itemprop="name">
<th class="fhome" itemprop="homeTeam" itemscope="" itemtype="http://schema.org/SportsTeam"><span itemprop="name"><a href="/wiki/Switzerland_national_football_team" title="Switzerland national football team">Switzerland</a><span class="flagicon"> <img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/08/Flag_of_Switzerland_%28Pantone%29.svg/16px-Flag_of_Switzerland_%28Pantone%29.svg.png" decoding="async" width="16" height="16" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/08/Flag_of_Switzerland_%28Pantone%29.svg/24px-Flag_of_Switzerland_%28Pantone%29.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/08/Flag_of_Switzerland_%28Pantone%29.svg/32px-Flag_of_Switzerland_%28Pantone%29.svg.png 2x" data-file-width="512" data-file-height="512" /></span></span></th><th class="fscore">1–0</th><th class="faway" itemprop="awayTeam" itemscope="" itemtype="http://schema.org/SportsTeam"><span itemprop="name"><span style="white-space:nowrap"><span class="flagicon"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/23px-Flag_of_Cameroon.svg.png" decoding="async" width="23" height="15" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/35px-Flag_of_Cameroon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/45px-Flag_of_Cameroon.svg.png 2x" data-file-width="900" data-file-height="600" /> </span><a href="/wiki/Cameroon_national_football_team" title="Cameroon national football team">Cameroon</a></span></span></th></tr><tr class="fgoals">
<td class="fhgoal"><style data-mw-deduplicate="TemplateStyles:r1126788409">.mw-parser-output .plainlist ol,.mw-parser-output .plainlist ul{line-height:inherit;list-style:none;margin:0;padding:0}.mw-parser-output .plainlist ol li,.mw-parser-output .plainlist ul li{margin-bottom:0}</style><div class="plainlist">
<ul><li><a href="/wiki/Breel_Embolo" title="Breel Embolo">Embolo</a> <style data-mw-deduplicate="TemplateStyles:r1061411585">.mw-parser-output .fb-goal>span{font-size:85%;vertical-align:middle}</style><span class="fb-goal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/13px-Soccerball_shade.svg.png" decoding="async" title="Goal" width="13" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/26px-Soccerball_shade.svg.png 2x" data-file-width="313" data-file-height="313" /> <span>48<span class="nowrap">'</span></span></span></li></ul></div></td>
<td><a rel="" class="external text" href="https://www.fifa.com/fifaplus/en/match-centre/match/17/255711/285063/400235488">Report</a></td>
<td class="fagoal"></td>
</tr></tbody></table><div class="fright"><div itemprop="location" itemscope="" itemtype="http://schema.org/Place"><span itemprop="name address"><a href="/wiki/Al_Janoub_Stadium" title="Al Janoub Stadium">Al Janoub Stadium</a>, <a href="/wiki/Al_Wakrah" title="Al Wakrah">Al Wakrah</a></span></div><div>Attendance: 39,089</div><div>Referee: <a href="/wiki/Facundo_Tello" title="Facundo Tello">Facundo Tello</a> (<a href="/wiki/Argentine_Football_Association" title="Argentine Football Association">Argentina</a>)</div></div></div>
<table width="92%">
<tbody><tr>
<td><div style="width: 100px; margin: 0 auto; padding: 0;">
<div style="position: relative; left: 0px; top: 0px; width: 100px; height: 135px; margin: 0 auto; padding: 0;">
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px; background-color: #FF0000;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/7/7e/Kit_left_arm_sui22H.png" decoding="async" title="Team colours" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/31px-Kit_left_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/47px-Kit_left_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/62px-Kit_left_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px; background-color: #FF0000;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/6/69/Kit_body_sui22H.png" decoding="async" width="38" height="59" style="vertical-align: top" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/38px-Kit_body.svg.png" decoding="async" width="38" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/57px-Kit_body.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/76px-Kit_body.svg.png 2x" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px; background-color: #FF0000;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/a/ac/Kit_right_arm_sui22H.png" decoding="async" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/31px-Kit_right_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/47px-Kit_right_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/62px-Kit_right_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px; background-color: #FF0000"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/8/80/Kit_shorts_sui22h.png" decoding="async" width="100" height="36" style="vertical-align: top" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/100px-Kit_shorts.svg.png" decoding="async" width="100" height="36" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/150px-Kit_shorts.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/200px-Kit_shorts.svg.png 2x" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px; background-color: #FF0000"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/a/a4/Kit_socks_sui22hl.png" decoding="async" width="100" height="40" style="vertical-align: top" data-file-width="100" data-file-height="40" /></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/100px-Kit_socks_long.svg.png" decoding="async" width="100" height="40" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/150px-Kit_socks_long.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/200px-Kit_socks_long.svg.png 2x" data-file-width="100" data-file-height="40" /></div>
</div>
<div style="padding-top: 0.6em; text-align: center;"><b>Switzerland</b></div>
</div>
</td>
<td><div style="width: 100px; margin: 0 auto; padding: 0;">
<div style="position: relative; left: 0px; top: 0px; width: 100px; height: 135px; margin: 0 auto; padding: 0;">
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px; background-color: #008020;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/1/13/Kit_left_arm_cmr2223h.png" decoding="async" title="Team colours" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/31px-Kit_left_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/47px-Kit_left_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/62px-Kit_left_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px; background-color: #008020;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/4/40/Kit_body_cmr2223H.png" decoding="async" width="38" height="59" style="vertical-align: top" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/38px-Kit_body.svg.png" decoding="async" width="38" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/57px-Kit_body.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/76px-Kit_body.svg.png 2x" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px; background-color: #008020;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/4/4b/Kit_right_arm_cmr2223h.png" decoding="async" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/31px-Kit_right_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/47px-Kit_right_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/62px-Kit_right_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px; background-color: #008020"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/d/d2/Kit_shorts_cmr2223a.png" decoding="async" width="100" height="36" style="vertical-align: top" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/100px-Kit_shorts.svg.png" decoding="async" width="100" height="36" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/150px-Kit_shorts.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/200px-Kit_shorts.svg.png 2x" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px; background-color: #FFDF00"></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/100px-Kit_socks_long.svg.png" decoding="async" width="100" height="40" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/150px-Kit_socks_long.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/200px-Kit_socks_long.svg.png 2x" data-file-width="100" data-file-height="40" /></div>
</div>
<div style="padding-top: 0.6em; text-align: center;"><b>Cameroon</b></div>
</div>
</td></tr></tbody></table>
<table width="100%">
<tbody><tr>
<td valign="top" width="40%">
<table style="font-size:90%" cellspacing="0" cellpadding="0">
<tbody><tr>
<th width="25"></th>
<th width="25">
</th></tr>
<tr>
<td>GK</td>
<td><b>1</b></td>
<td><a href="/wiki/Yann_Sommer" title="Yann Sommer">Yann Sommer</a>
</td></tr>
<tr>
<td>RB</td>
<td><b>3</b></td>
<td><a href="/wiki/Silvan_Widmer" title="Silvan Widmer">Silvan Widmer</a>
</td></tr>
<tr>
<td>CB</td>
<td><b>5</b></td>
<td><a href="/wiki/Manuel_Akanji" title="Manuel Akanji">Manuel Akanji</a></td>
<td><img alt="Yellow card" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/10px-Yellow_card.svg.png" decoding="async" title="Booked" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/15px-Yellow_card.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/20px-Yellow_card.svg.png 2x" data-file-width="512" data-file-height="666" /><small style="vertical-align: middle;"> 83<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>CB</td>
<td><b>4</b></td>
<td><a href="/wiki/Nico_Elvedi" title="Nico Elvedi">Nico Elvedi</a></td>
<td><img alt="Yellow card" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/10px-Yellow_card.svg.png" decoding="async" title="Booked" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/15px-Yellow_card.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/20px-Yellow_card.svg.png 2x" data-file-width="512" data-file-height="666" /><small style="vertical-align: middle;"> 64<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>LB</td>
<td><b>13</b></td>
<td><a href="/wiki/Ricardo_Rodriguez_(footballer)" title="Ricardo Rodriguez (footballer)">Ricardo Rodriguez</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">90<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>CM</td>
<td><b>8</b></td>
<td><a href="/wiki/Remo_Freuler" title="Remo Freuler">Remo Freuler</a>
</td></tr>
<tr>
<td>CM</td>
<td><b>10</b></td>
<td><a href="/wiki/Granit_Xhaka" title="Granit Xhaka">Granit Xhaka</a> (<a href="/wiki/Captain_(association_football)" title="Captain (association football)">c</a>)
</td></tr>
<tr>
<td>RW</td>
<td><b>23</b></td>
<td><a href="/wiki/Xherdan_Shaqiri" title="Xherdan Shaqiri">Xherdan Shaqiri</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">72<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>AM</td>
<td><b>15</b></td>
<td><a href="/wiki/Djibril_Sow" title="Djibril Sow">Djibril Sow</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">72<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>LW</td>
<td><b>17</b></td>
<td><a href="/wiki/Ruben_Vargas" title="Ruben Vargas">Ruben Vargas</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">81<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>CF</td>
<td><b>7</b></td>
<td><a href="/wiki/Breel_Embolo" title="Breel Embolo">Breel Embolo</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">72<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td colspan="3"><b>Substitutions:</b>
</td></tr>
<tr>
<td>MF</td>
<td><b>20</b></td>
<td><a href="/wiki/Fabian_Frei" title="Fabian Frei">Fabian Frei</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">72<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>FW</td>
<td><b>19</b></td>
<td><a href="/wiki/Noah_Okafor" title="Noah Okafor">Noah Okafor</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">72<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>FW</td>
<td><b>9</b></td>
<td><a href="/wiki/Haris_Seferovic" title="Haris Seferovic">Haris Seferovic</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">72<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>MF</td>
<td><b>25</b></td>
<td><a href="/wiki/Fabian_Rieder" title="Fabian Rieder">Fabian Rieder</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">81<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>DF</td>
<td><b>18</b></td>
<td><a href="/wiki/Eray_C%C3%B6mert" title="Eray Cömert">Eray Cömert</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">90<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td colspan="3"><b>Manager:</b>
</td></tr>
<tr>
<td colspan="3"><a href="/wiki/Murat_Yakin" title="Murat Yakin">Murat Yakin</a>
</td></tr></tbody></table>
</td>
<td valign="top"><a href="/wiki/File:SUI-CMR_2022-11-24.svg" class="image"><img alt="SUI-CMR 2022-11-24.svg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/73/SUI-CMR_2022-11-24.svg/300px-SUI-CMR_2022-11-24.svg.png" decoding="async" width="300" height="415" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/73/SUI-CMR_2022-11-24.svg/450px-SUI-CMR_2022-11-24.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/73/SUI-CMR_2022-11-24.svg/600px-SUI-CMR_2022-11-24.svg.png 2x" data-file-width="534" data-file-height="738" /></a>
</td>
<td valign="top" width="50%">
<table style="font-size:90%; margin:auto" cellspacing="0" cellpadding="0">
<tbody><tr>
<th width="25"></th>
<th width="25">
</th></tr>
<tr>
<td>GK</td>
<td><b>23</b></td>
<td><a href="/wiki/Andr%C3%A9_Onana" title="André Onana">André Onana</a>
</td></tr>
<tr>
<td>RB</td>
<td><b>19</b></td>
<td><a href="/wiki/Collins_Fai" title="Collins Fai">Collins Fai</a></td>
<td><img alt="Yellow card" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/10px-Yellow_card.svg.png" decoding="async" title="Booked" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/15px-Yellow_card.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/20px-Yellow_card.svg.png 2x" data-file-width="512" data-file-height="666" /><small style="vertical-align: middle;"> 36<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>CB</td>
<td><b>21</b></td>
<td><a href="/wiki/Jean-Charles_Castelletto" title="Jean-Charles Castelletto">Jean-Charles Castelletto</a>
</td></tr>
<tr>
<td>CB</td>
<td><b>3</b></td>
<td><a href="/wiki/Nicolas_Nkoulou" title="Nicolas Nkoulou">Nicolas Nkoulou</a>
</td></tr>
<tr>
<td>LB</td>
<td><b>25</b></td>
<td><a href="/wiki/Nouhou_Tolo" title="Nouhou Tolo">Nouhou Tolo</a>
</td></tr>
<tr>
<td>DM</td>
<td><b>14</b></td>
<td><a href="/wiki/Samuel_Gouet" title="Samuel Gouet">Samuel Gouet</a>
</td></tr>
<tr>
<td>CM</td>
<td><b>8</b></td>
<td><a href="/wiki/Andr%C3%A9-Frank_Zambo_Anguissa" title="André-Frank Zambo Anguissa">André-Frank Zambo Anguissa</a>
</td></tr>
<tr>
<td>CM</td>
<td><b>18</b></td>
<td><a href="/wiki/Martin_Hongla" title="Martin Hongla">Martin Hongla</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">68<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>RF</td>
<td><b>20</b></td>
<td><a href="/wiki/Bryan_Mbeumo" title="Bryan Mbeumo">Bryan Mbeumo</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">81<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>CF</td>
<td><b>13</b></td>
<td><a href="/wiki/Eric_Maxim_Choupo-Moting" title="Eric Maxim Choupo-Moting">Eric Maxim Choupo-Moting</a> (<a href="/wiki/Captain_(association_football)" title="Captain (association football)">c</a>)</td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">74<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>LF</td>
<td><b>12</b></td>
<td><a href="/wiki/Karl_Toko_Ekambi" title="Karl Toko Ekambi">Karl Toko Ekambi</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">74<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td colspan="3"><b>Substitutions:</b>
</td></tr>
<tr>
<td>MF</td>
<td><b>5</b></td>
<td><a href="/wiki/Ga%C3%ABl_Ondoua" title="Gaël Ondoua">Gaël Ondoua</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">68<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>FW</td>
<td><b>10</b></td>
<td><a href="/wiki/Vincent_Aboubakar" title="Vincent Aboubakar">Vincent Aboubakar</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">74<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>MF</td>
<td><b>7</b></td>
<td><a href="/wiki/Georges-K%C3%A9vin_Nkoudou" title="Georges-Kévin Nkoudou">Georges-Kévin Nkoudou</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">74<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>FW</td>
<td><b>6</b></td>
<td><a href="/wiki/Moumi_Ngamaleu" title="Moumi Ngamaleu">Moumi Ngamaleu</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">81<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td colspan="3"><b>Manager:</b>
</td></tr>
<tr>
<td colspan="3"><a href="/wiki/Rigobert_Song" title="Rigobert Song">Rigobert Song</a>
</td></tr></tbody></table>
</td></tr></tbody></table>
<table style="width:100%; font-size:90%;">
<tbody><tr>
<td>
<p><b>Man of the Match:</b>
<br /><a href="/wiki/Yann_Sommer" title="Yann Sommer">Yann Sommer</a> (Switzerland)<sup id="cite_ref-9" class="reference"><a href="#cite_note-9">[6]</a></sup>
</p><p><b><a href="/wiki/Assistant_referee_(association_football)" title="Assistant referee (association football)">Assistant referees</a>:</b>
<br />Ezequiel Brailovsky (<a href="/wiki/Argentine_Football_Association" title="Argentine Football Association">Argentina</a>)
<br />Gabriel Chade (<a href="/wiki/Argentine_Football_Association" title="Argentine Football Association">Argentina</a>)
<br /><b><a href="/wiki/Assistant_referee_(association_football)#Fourth_official" title="Assistant referee (association football)">Fourth official</a>:</b>
<br /><a href="/wiki/Sa%C3%ADd_Mart%C3%ADnez" title="Saíd Martínez">Saíd Martínez</a> (<a href="/wiki/National_Autonomous_Federation_of_Football_of_Honduras" title="National Autonomous Federation of Football of Honduras">Honduras</a>)
<br /><b><a href="/wiki/Assistant_referee_(association_football)#Reserve_assistant_referee" title="Assistant referee (association football)">Reserve assistant referee</a>:</b>
<br />Walter López (<a href="/wiki/National_Autonomous_Federation_of_Football_of_Honduras" title="National Autonomous Federation of Football of Honduras">Honduras</a>)
<br /><b><a href="/wiki/Video_assistant_referee" title="Video assistant referee">Video assistant referee</a>:</b>
<br /><a href="/wiki/Mauro_Vigliano" title="Mauro Vigliano">Mauro Vigliano</a> (<a href="/wiki/Argentine_Football_Association" title="Argentine Football Association">Argentina</a>)
<br /><b><a href="/wiki/Video_assistant_referee#Assistant_video_assistant_referee" title="Video assistant referee">Assistant video assistant referees</a>:</b>
<br /><a href="/w/index.php?title=Fernando_Guerrero_(referee)&action=edit&redlink=1" class="new" title="Fernando Guerrero (referee) (page does not exist)">Fernando Guerrero</a> (<a href="/wiki/Mexican_Football_Federation" title="Mexican Football Federation">Mexico</a>)
<br />Pau Cebrián Devís (<a href="/wiki/Royal_Spanish_Football_Federation" title="Royal Spanish Football Federation">Spain</a>)
<br /><a href="/wiki/Ricardo_de_Burgos_Bengoetxea" title="Ricardo de Burgos Bengoetxea">Ricardo de Burgos Bengoetxea</a> (<a href="/wiki/Royal_Spanish_Football_Federation" title="Royal Spanish Football Federation">Spain</a>)
<br /><b><a href="/wiki/Video_assistant_referee#Assistant_video_assistant_referee" title="Video assistant referee">Stand-by assistant video assistant referee</a>:</b>
<br />Nicolás Taran (<a href="/wiki/Uruguayan_Football_Association" title="Uruguayan Football Association">Uruguay</a>)
</p>
</td></tr></tbody></table>
<h3><span class="mw-headline" id="Brazil_vs_Serbia">Brazil vs Serbia</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=2022_FIFA_World_Cup_Group_G&action=edit&section=5" title="Edit section: Brazil vs Serbia">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p>The teams had met once in the World Cup, in Brazil's <a href="/wiki/2018_FIFA_World_Cup_Group_E#Serbia_vs_Brazil" title="2018 FIFA World Cup Group E">2–0 group stage victory</a> in <a href="/wiki/2018_FIFA_World_Cup" title="2018 FIFA World Cup">2018</a>. With Serbia playing as <a href="/wiki/Yugoslavia_national_football_team" title="Yugoslavia national football team">Yugoslavia</a>, the two teams had met 18 times, including four times at the FIFA World Cup group stages, in <a href="/wiki/1930_FIFA_World_Cup_Group_2#Yugoslavia_vs_Brazil" title="1930 FIFA World Cup Group 2">1930</a>, <a href="/wiki/1950_FIFA_World_Cup_Group_1#Brazil_vs_Yugoslavia" title="1950 FIFA World Cup Group 1">1950</a>, <a href="/wiki/1954_FIFA_World_Cup_Group_1#Brazil_vs_Yugoslavia" title="1954 FIFA World Cup Group 1">1954</a> and <a href="/wiki/1974_FIFA_World_Cup_Group_2#Brazil_vs_Yugoslavia" title="1974 FIFA World Cup Group 2">1974</a>, with one victory for each and two draws.
</p><p>After a goalless first half, <a href="/wiki/Richarlison" title="Richarlison">Richarlison</a> opened the scoring for Brazil in the 62nd minute, when he followed up to finish after Serbian goalkeeper <a href="/wiki/Vanja_Milinkovi%C4%87-Savi%C4%87" title="Vanja Milinković-Savić">Vanja Milinković-Savić</a> saved <a href="/wiki/Vin%C3%ADcius_J%C3%BAnior" title="Vinícius Júnior">Vinícius Júnior</a>'s low shot from the left, with <a href="/wiki/Neymar" title="Neymar">Neymar</a> initially creating the chance.<sup id="cite_ref-10" class="reference"><a href="#cite_note-10">[7]</a></sup> Richarlison made it 2–0 eleven minutes later when he controlled the ball from Vinícius Júnior before finishing to the left of the net with an over the shoulder acrobatic right-foot kick. <a href="/wiki/Casemiro" title="Casemiro">Casemiro</a> hit the woodwork and <a href="/wiki/Fred_(footballer,_born_1993)" title="Fred (footballer, born 1993)">Fred</a> also had a shot saved with Brazil running out comfortable 2–0 winners.<sup id="cite_ref-11" class="reference"><a href="#cite_note-11">[8]</a></sup>
</p>
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r997937747"/><div itemscope="" itemtype="http://schema.org/SportsEvent" class="footballbox">
<div class="fleft"><time><div class="fdate">24 November 2022<span style="display:none"> (<span class="bday dtstart published updated">2022-11-24</span>)</span></div><div class="ftime">22:00</div></time></div><table class="fevent"><tbody><tr itemprop="name">
<th class="fhome" itemprop="homeTeam" itemscope="" itemtype="http://schema.org/SportsTeam"><span itemprop="name"><a href="/wiki/Brazil_national_football_team" title="Brazil national football team">Brazil</a><span class="flagicon"> <img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/0/05/Flag_of_Brazil.svg/22px-Flag_of_Brazil.svg.png" decoding="async" width="22" height="15" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/en/thumb/0/05/Flag_of_Brazil.svg/33px-Flag_of_Brazil.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/0/05/Flag_of_Brazil.svg/43px-Flag_of_Brazil.svg.png 2x" data-file-width="720" data-file-height="504" /></span></span></th><th class="fscore">2–0</th><th class="faway" itemprop="awayTeam" itemscope="" itemtype="http://schema.org/SportsTeam"><span itemprop="name"><span style="white-space:nowrap"><span class="flagicon"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/23px-Flag_of_Serbia.svg.png" decoding="async" width="23" height="15" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/35px-Flag_of_Serbia.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/45px-Flag_of_Serbia.svg.png 2x" data-file-width="945" data-file-height="630" /> </span><a href="/wiki/Serbia_national_football_team" title="Serbia national football team">Serbia</a></span></span></th></tr><tr class="fgoals">
<td class="fhgoal"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1126788409"/><div class="plainlist">
<ul><li><a href="/wiki/Richarlison" title="Richarlison">Richarlison</a> <link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1061411585"/><span class="fb-goal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/13px-Soccerball_shade.svg.png" decoding="async" title="Goal" width="13" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/26px-Soccerball_shade.svg.png 2x" data-file-width="313" data-file-height="313" /> <span>62<span class="nowrap">'</span></span>, <span>73<span class="nowrap">'</span></span></span></li></ul></div></td>
<td><a rel="" class="external text" href="https://www.fifa.com/fifaplus/en/match-centre/match/17/255711/285063/400235484">Report</a></td>
<td class="fagoal"></td>
</tr></tbody></table><div class="fright"><div itemprop="location" itemscope="" itemtype="http://schema.org/Place"><span itemprop="name address"><a href="/wiki/Lusail_Stadium" title="Lusail Stadium">Lusail Stadium</a>, <a href="/wiki/Lusail" title="Lusail">Lusail</a></span></div><div>Attendance: 88,103</div><div>Referee: <a href="/wiki/Alireza_Faghani" title="Alireza Faghani">Alireza Faghani</a> (<a href="/wiki/Football_Federation_Islamic_Republic_of_Iran" title="Football Federation Islamic Republic of Iran">Iran</a>)</div></div></div>
<table width="92%">
<tbody><tr>
<td><div style="width: 100px; margin: 0 auto; padding: 0;">
<div style="position: relative; left: 0px; top: 0px; width: 100px; height: 135px; margin: 0 auto; padding: 0;">
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px; background-color: #FFFF00;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/3/33/Kit_left_arm_bra22h.png" decoding="async" title="Team colours" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/31px-Kit_left_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/47px-Kit_left_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/62px-Kit_left_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px; background-color: #FFFF00;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/b/bf/Kit_body_bra22H.png" decoding="async" width="38" height="59" style="vertical-align: top" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/38px-Kit_body.svg.png" decoding="async" width="38" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/57px-Kit_body.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/76px-Kit_body.svg.png 2x" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px; background-color: #FFFF00;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/8/81/Kit_right_arm_bra22h.png" decoding="async" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/31px-Kit_right_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/47px-Kit_right_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/62px-Kit_right_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px; background-color: #1018E7"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/b/bf/Kit_shorts_bra22H.png" decoding="async" width="100" height="36" style="vertical-align: top" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/100px-Kit_shorts.svg.png" decoding="async" width="100" height="36" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/150px-Kit_shorts.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/200px-Kit_shorts.svg.png 2x" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px; background-color: #FFFFFF"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/8/8f/Kit_socks_bra22hl.png" decoding="async" width="100" height="40" style="vertical-align: top" data-file-width="100" data-file-height="40" /></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/100px-Kit_socks_long.svg.png" decoding="async" width="100" height="40" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/150px-Kit_socks_long.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/200px-Kit_socks_long.svg.png 2x" data-file-width="100" data-file-height="40" /></div>
</div>
<div style="padding-top: 0.6em; text-align: center;"><b>Brazil</b></div>
</div>
</td>
<td><div style="width: 100px; margin: 0 auto; padding: 0;">
<div style="position: relative; left: 0px; top: 0px; width: 100px; height: 135px; margin: 0 auto; padding: 0;">
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px; background-color: #DF001C;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/9/97/Kit_left_arm_srb22h.png" decoding="async" title="Team colours" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/31px-Kit_left_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/47px-Kit_left_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/62px-Kit_left_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px; background-color: #DF001C;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/1/19/Kit_body_srb22H.png" decoding="async" width="38" height="59" style="vertical-align: top" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/38px-Kit_body.svg.png" decoding="async" width="38" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/57px-Kit_body.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/76px-Kit_body.svg.png 2x" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px; background-color: #DF001C;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/2/26/Kit_right_arm_srb22h.png" decoding="async" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/31px-Kit_right_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/47px-Kit_right_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/62px-Kit_right_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px; background-color: #DF001C"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/5/57/Kit_shorts_srb22h.png" decoding="async" width="100" height="36" style="vertical-align: top" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/100px-Kit_shorts.svg.png" decoding="async" width="100" height="36" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/150px-Kit_shorts.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/200px-Kit_shorts.svg.png 2x" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px; background-color: #DF001C"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/0/01/Kit_socks_srb22hl.png" decoding="async" width="100" height="40" style="vertical-align: top" data-file-width="100" data-file-height="40" /></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/100px-Kit_socks_long.svg.png" decoding="async" width="100" height="40" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/150px-Kit_socks_long.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/200px-Kit_socks_long.svg.png 2x" data-file-width="100" data-file-height="40" /></div>
</div>
<div style="padding-top: 0.6em; text-align: center;"><b>Serbia</b></div>
</div>
</td></tr></tbody></table>
<table width="100%">
<tbody><tr>
<td valign="top" width="40%">
<table style="font-size:90%" cellspacing="0" cellpadding="0">
<tbody><tr>
<th width="25"></th>
<th width="25">
</th></tr>
<tr>
<td>GK</td>
<td><b>1</b></td>
<td><a href="/wiki/Alisson" class="mw-redirect" title="Alisson">Alisson</a>
</td></tr>
<tr>
<td>RB</td>
<td><b>2</b></td>
<td><a href="/wiki/Danilo_(footballer,_born_July_1991)" title="Danilo (footballer, born July 1991)">Danilo</a>
</td></tr>
<tr>
<td>CB</td>
<td><b>4</b></td>
<td><a href="/wiki/Marquinhos" title="Marquinhos">Marquinhos</a>
</td></tr>
<tr>
<td>CB</td>
<td><b>3</b></td>
<td><a href="/wiki/Thiago_Silva" title="Thiago Silva">Thiago Silva</a> (<a href="/wiki/Captain_(association_football)" title="Captain (association football)">c</a>)
</td></tr>
<tr>
<td>LB</td>
<td><b>6</b></td>
<td><a href="/wiki/Alex_Sandro" title="Alex Sandro">Alex Sandro</a>
</td></tr>
<tr>
<td>CM</td>
<td><b>5</b></td>
<td><a href="/wiki/Casemiro" title="Casemiro">Casemiro</a>
</td></tr>
<tr>
<td>CM</td>
<td><b>7</b></td>
<td><a href="/wiki/Lucas_Paquet%C3%A1" title="Lucas Paquetá">Lucas Paquetá</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">75<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>RW</td>
<td><b>11</b></td>
<td><a href="/wiki/Raphinha" title="Raphinha">Raphinha</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">87<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>AM</td>
<td><b>10</b></td>
<td><a href="/wiki/Neymar" title="Neymar">Neymar</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">79<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>LW</td>
<td><b>20</b></td>
<td><a href="/wiki/Vin%C3%ADcius_J%C3%BAnior" title="Vinícius Júnior">Vinícius Júnior</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">75<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>CF</td>
<td><b>9</b></td>
<td><a href="/wiki/Richarlison" title="Richarlison">Richarlison</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">79<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td colspan="3"><b>Substitutions</b>
</td></tr>
<tr>
<td>MF</td>
<td><b>8</b></td>
<td><a href="/wiki/Fred_(footballer,_born_1993)" title="Fred (footballer, born 1993)">Fred</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">75<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>FW</td>
<td><b>21</b></td>
<td><a href="/wiki/Rodrygo" title="Rodrygo">Rodrygo</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">75<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>FW</td>
<td><b>18</b></td>
<td><a href="/wiki/Gabriel_Jesus" title="Gabriel Jesus">Gabriel Jesus</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">79<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>FW</td>
<td><b>19</b></td>
<td><a href="/wiki/Antony_(footballer,_born_2000)" title="Antony (footballer, born 2000)">Antony</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">79<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>FW</td>
<td><b>26</b></td>
<td><a href="/wiki/Gabriel_Martinelli" title="Gabriel Martinelli">Gabriel Martinelli</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">87<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td colspan="3"><b>Manager:</b>
</td></tr>
<tr>
<td colspan="3"><a href="/wiki/Tite_(football_manager)" title="Tite (football manager)">Tite</a>
</td></tr></tbody></table>
</td>
<td valign="top"><a href="/wiki/File:BRA-SRB_2022-11-24.svg" class="image"><img alt="BRA-SRB 2022-11-24.svg" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/BRA-SRB_2022-11-24.svg/300px-BRA-SRB_2022-11-24.svg.png" decoding="async" width="300" height="415" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/BRA-SRB_2022-11-24.svg/450px-BRA-SRB_2022-11-24.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9b/BRA-SRB_2022-11-24.svg/600px-BRA-SRB_2022-11-24.svg.png 2x" data-file-width="534" data-file-height="738" /></a>
</td>
<td valign="top" width="50%">
<table style="font-size:90%; margin:auto" cellspacing="0" cellpadding="0">
<tbody><tr>
<th width="25"></th>
<th width="25">
</th></tr>
<tr>
<td>GK</td>
<td><b>23</b></td>
<td><a href="/wiki/Vanja_Milinkovi%C4%87-Savi%C4%87" title="Vanja Milinković-Savić">Vanja Milinković-Savić</a>
</td></tr>
<tr>
<td>CB</td>
<td><b>5</b></td>
<td><a href="/wiki/Milo%C5%A1_Veljkovi%C4%87" title="Miloš Veljković">Miloš Veljković</a>
</td></tr>
<tr>
<td>CB</td>
<td><b>4</b></td>
<td><a href="/wiki/Nikola_Milenkovi%C4%87" title="Nikola Milenković">Nikola Milenković</a>
</td></tr>
<tr>
<td>CB</td>
<td><b>2</b></td>
<td><a href="/wiki/Strahinja_Pavlovi%C4%87" title="Strahinja Pavlović">Strahinja Pavlović</a></td>
<td><img alt="Yellow card" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/10px-Yellow_card.svg.png" decoding="async" title="Booked" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/15px-Yellow_card.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/20px-Yellow_card.svg.png 2x" data-file-width="512" data-file-height="666" /><small style="vertical-align: middle;"> 7<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>DM</td>
<td><b>8</b></td>
<td><a href="/wiki/Nemanja_Gudelj" title="Nemanja Gudelj">Nemanja Gudelj</a></td>
<td><img alt="Yellow card" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/10px-Yellow_card.svg.png" decoding="async" title="Booked" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/15px-Yellow_card.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/20px-Yellow_card.svg.png 2x" data-file-width="512" data-file-height="666" /><small style="vertical-align: middle;"> 49<span class="nowrap">'</span></small></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">57<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>CM</td>
<td><b>16</b></td>
<td><a href="/wiki/Sa%C5%A1a_Luki%C4%87" title="Saša Lukić">Saša Lukić</a></td>
<td><img alt="Yellow card" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/10px-Yellow_card.svg.png" decoding="async" title="Booked" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/15px-Yellow_card.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/20px-Yellow_card.svg.png 2x" data-file-width="512" data-file-height="666" /><small style="vertical-align: middle;"> 64<span class="nowrap">'</span></small></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">66<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>CM</td>
<td><b>20</b></td>
<td><a href="/wiki/Sergej_Milinkovi%C4%87-Savi%C4%87" title="Sergej Milinković-Savić">Sergej Milinković-Savić</a>
</td></tr>
<tr>
<td>RW</td>
<td><b>14</b></td>
<td><a href="/wiki/Andrija_%C5%BDivkovi%C4%87" title="Andrija Živković">Andrija Živković</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">57<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>AM</td>
<td><b>10</b></td>
<td><a href="/wiki/Du%C5%A1an_Tadi%C4%87" title="Dušan Tadić">Dušan Tadić</a> (<a href="/wiki/Captain_(association_football)" title="Captain (association football)">c</a>)
</td></tr>
<tr>
<td>LW</td>
<td><b>25</b></td>
<td><a href="/wiki/Filip_Mladenovi%C4%87" title="Filip Mladenović">Filip Mladenović</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">66<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>CF</td>
<td><b>9</b></td>
<td><a href="/wiki/Aleksandar_Mitrovi%C4%87" title="Aleksandar Mitrović">Aleksandar Mitrović</a></td>
<td></td>
<td><img alt="downward-facing red arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/10px-Sub_off.svg.png" decoding="async" title="Substituted off" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/15px-Sub_off.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sub_off.svg/20px-Sub_off.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">83<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td colspan="3"><b>Substitutions</b>
</td></tr>
<tr>
<td>MF</td>
<td><b>24</b></td>
<td><a href="/wiki/Ivan_Ili%C4%87_(footballer,_born_2001)" title="Ivan Ilić (footballer, born 2001)">Ivan Ilić</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">57<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>MF</td>
<td><b>7</b></td>
<td><a href="/wiki/Nemanja_Radonji%C4%87" title="Nemanja Radonjić">Nemanja Radonjić</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">57<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>MF</td>
<td><b>22</b></td>
<td><a href="/wiki/Darko_Lazovi%C4%87" title="Darko Lazović">Darko Lazović</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">66<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>FW</td>
<td><b>18</b></td>
<td><a href="/wiki/Du%C5%A1an_Vlahovi%C4%87" title="Dušan Vlahović">Dušan Vlahović</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">66<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>MF</td>
<td><b>6</b></td>
<td><a href="/wiki/Nemanja_Maksimovi%C4%87" title="Nemanja Maksimović">Nemanja Maksimović</a></td>
<td></td>
<td><img alt="upward-facing green arrow" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/10px-Sub_on.svg.png" decoding="async" title="Substituted in" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/15px-Sub_on.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Sub_on.svg/20px-Sub_on.svg.png 2x" data-file-width="550" data-file-height="700" /> <small style="vertical-align: middle;">83<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td colspan="3"><b>Manager:</b>
</td></tr>
<tr>
<td colspan="3"><a href="/wiki/Dragan_Stojkovi%C4%87" title="Dragan Stojković">Dragan Stojković</a>
</td></tr></tbody></table>
</td></tr></tbody></table>
<table style="width:100%; font-size:90%;">
<tbody><tr>
<td>
<p><b>Man of the Match:</b>
<br /><a href="/wiki/Richarlison" title="Richarlison">Richarlison</a> (Brazil)<sup id="cite_ref-12" class="reference"><a href="#cite_note-12">[9]</a></sup>
</p><p><b><a href="/wiki/Assistant_referee_(association_football)" title="Assistant referee (association football)">Assistant referees</a>:</b>
<br /><a href="/wiki/Mohammadreza_Mansouri" title="Mohammadreza Mansouri">Mohammadreza Mansouri</a> (<a href="/wiki/Football_Federation_Islamic_Republic_of_Iran" title="Football Federation Islamic Republic of Iran">Iran</a>)
<br />Mohammadreza Abolfazli (<a href="/wiki/Football_Federation_Islamic_Republic_of_Iran" title="Football Federation Islamic Republic of Iran">Iran</a>)
<br /><b><a href="/wiki/Assistant_referee_(association_football)#Fourth_official" title="Assistant referee (association football)">Fourth official</a>:</b>
<br /><a href="/wiki/Maguette_Ndiaye" title="Maguette Ndiaye">Maguette Ndiaye</a> (<a href="/wiki/Senegalese_Football_Federation" title="Senegalese Football Federation">Senegal</a>)
<br /><b><a href="/wiki/Assistant_referee_(association_football)#Reserve_assistant_referee" title="Assistant referee (association football)">Reserve assistant referee</a>:</b>
<br />El Hadj Malick Samba (<a href="/wiki/Senegalese_Football_Federation" title="Senegalese Football Federation">Senegal</a>)
<br /><b><a href="/wiki/Video_assistant_referee" title="Video assistant referee">Video assistant referee</a>:</b>
<br />Taleb Al-Marri (<a href="/wiki/Qatar_Football_Association" title="Qatar Football Association">Qatar</a>)
<br /><b><a href="/wiki/Video_assistant_referee#Assistant_video_assistant_referee" title="Video assistant referee">Assistant video assistant referees</a>:</b>
<br /><a href="/wiki/Muhammad_Taqi_(referee)" title="Muhammad Taqi (referee)">Muhammad Taqi</a> (<a href="/wiki/Football_Association_of_Singapore" title="Football Association of Singapore">Singapore</a>)
<br />Anton Shchetinin (<a href="/wiki/Football_Australia" title="Football Australia">Australia</a>)
<br /><a href="/wiki/Pol_van_Boekel" title="Pol van Boekel">Pol van Boekel</a> (<a href="/wiki/Royal_Dutch_Football_Association" title="Royal Dutch Football Association">Netherlands</a>)
<br /><b><a href="/wiki/Video_assistant_referee#Assistant_video_assistant_referee" title="Video assistant referee">Stand-by assistant video assistant referee</a>:</b>
<br />Ashley Beecham (<a href="/wiki/Football_Australia" title="Football Australia">Australia</a>)
</p>
</td></tr></tbody></table>
<h3><span class="mw-headline" id="Cameroon_vs_Serbia">Cameroon vs Serbia</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=2022_FIFA_World_Cup_Group_G&action=edit&section=6" title="Edit section: Cameroon vs Serbia">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p>The two teams had faced each other once in a 2010 friendly game, in which Serbia won 4–3.
</p><p><a href="/wiki/Jean-Charles_Castelletto" title="Jean-Charles Castelletto">Jean-Charles Castelletto</a> put Cameroon into the lead in the 29th minute, when he finished from close range after a corner. In first-half stoppage time <a href="/wiki/Strahinja_Pavlovi%C4%87" title="Strahinja Pavlović">Strahinja Pavlović</a> made it 1–1 with a header before <a href="/wiki/Sergej_Milinkovi%C4%87-Savi%C4%87" title="Sergej Milinković-Savić">Sergej Milinković-Savić</a> put Serbia ahead before half-time with a low finish to the corner.<sup id="cite_ref-13" class="reference"><a href="#cite_note-13">[10]</a></sup> Eight minutes into the second half, <a href="/wiki/Aleksandar_Mitrovi%C4%87" title="Aleksandar Mitrović">Aleksandar Mitrović</a> put Serbia 3–1 up with a low finish after a passing move. <a href="/wiki/Vincent_Aboubakar" title="Vincent Aboubakar">Vincent Aboubakar</a> scooped the ball over <a href="/wiki/Vanja_Milinkovi%C4%87-Savi%C4%87" title="Vanja Milinković-Savić">Vanja Milinković-Savić</a> to score Cameroon's second goal in the 63rd minute, and <a href="/wiki/Eric_Maxim_Choupo-Moting" title="Eric Maxim Choupo-Moting">Eric Maxim Choupo-Moting</a> equalized three minutes later with a low shot after a pass from the right by Aboubakar. The match finished in an entertaining 3–3 draw.<sup id="cite_ref-14" class="reference"><a href="#cite_note-14">[11]</a></sup>
</p>
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r997937747"/><div itemscope="" itemtype="http://schema.org/SportsEvent" class="footballbox">
<div class="fleft"><time><div class="fdate">28 November 2022<span style="display:none"> (<span class="bday dtstart published updated">2022-11-28</span>)</span></div><div class="ftime">13:00</div></time></div><table class="fevent"><tbody><tr itemprop="name">
<th class="fhome" itemprop="homeTeam" itemscope="" itemtype="http://schema.org/SportsTeam"><span itemprop="name"><a href="/wiki/Cameroon_national_football_team" title="Cameroon national football team">Cameroon</a><span class="flagicon"> <img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/23px-Flag_of_Cameroon.svg.png" decoding="async" width="23" height="15" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/35px-Flag_of_Cameroon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Flag_of_Cameroon.svg/45px-Flag_of_Cameroon.svg.png 2x" data-file-width="900" data-file-height="600" /></span></span></th><th class="fscore">3–3</th><th class="faway" itemprop="awayTeam" itemscope="" itemtype="http://schema.org/SportsTeam"><span itemprop="name"><span style="white-space:nowrap"><span class="flagicon"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/23px-Flag_of_Serbia.svg.png" decoding="async" width="23" height="15" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/35px-Flag_of_Serbia.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Serbia.svg/45px-Flag_of_Serbia.svg.png 2x" data-file-width="945" data-file-height="630" /> </span><a href="/wiki/Serbia_national_football_team" title="Serbia national football team">Serbia</a></span></span></th></tr><tr class="fgoals">
<td class="fhgoal"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1126788409"/><div class="plainlist">
<ul><li><a href="/wiki/Jean-Charles_Castelletto" title="Jean-Charles Castelletto">Castelletto</a> <link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1061411585"/><span class="fb-goal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/13px-Soccerball_shade.svg.png" decoding="async" title="Goal" width="13" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/26px-Soccerball_shade.svg.png 2x" data-file-width="313" data-file-height="313" /> <span>29<span class="nowrap">'</span></span></span></li>
<li><a href="/wiki/Vincent_Aboubakar" title="Vincent Aboubakar">Aboubakar</a> <link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1061411585"/><span class="fb-goal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/13px-Soccerball_shade.svg.png" decoding="async" title="Goal" width="13" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/26px-Soccerball_shade.svg.png 2x" data-file-width="313" data-file-height="313" /> <span>63<span class="nowrap">'</span></span></span></li>
<li><a href="/wiki/Eric_Maxim_Choupo-Moting" title="Eric Maxim Choupo-Moting">Choupo-Moting</a> <link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1061411585"/><span class="fb-goal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/13px-Soccerball_shade.svg.png" decoding="async" title="Goal" width="13" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/26px-Soccerball_shade.svg.png 2x" data-file-width="313" data-file-height="313" /> <span>66<span class="nowrap">'</span></span></span></li></ul></div></td>
<td><a rel="" class="external text" href="https://www.fifa.com/fifaplus/en/match-centre/match/17/255711/285063/400235487">Report</a></td>
<td class="fagoal"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1126788409"/><div class="plainlist">
<ul><li><a href="/wiki/Strahinja_Pavlovi%C4%87" title="Strahinja Pavlović">Pavlović</a> <link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1061411585"/><span class="fb-goal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/13px-Soccerball_shade.svg.png" decoding="async" title="Goal" width="13" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/26px-Soccerball_shade.svg.png 2x" data-file-width="313" data-file-height="313" /> <span>45+1<span class="nowrap">'</span></span></span></li>
<li><a href="/wiki/Sergej_Milinkovi%C4%87-Savi%C4%87" title="Sergej Milinković-Savić">S. Milinković-Savić</a> <link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1061411585"/><span class="fb-goal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/13px-Soccerball_shade.svg.png" decoding="async" title="Goal" width="13" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/26px-Soccerball_shade.svg.png 2x" data-file-width="313" data-file-height="313" /> <span>45+3<span class="nowrap">'</span></span></span></li>
<li><a href="/wiki/Aleksandar_Mitrovi%C4%87" title="Aleksandar Mitrović">A. Mitrović</a> <link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1061411585"/><span class="fb-goal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/13px-Soccerball_shade.svg.png" decoding="async" title="Goal" width="13" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/26px-Soccerball_shade.svg.png 2x" data-file-width="313" data-file-height="313" /> <span>53<span class="nowrap">'</span></span></span></li></ul></div></td>
</tr></tbody></table><div class="fright"><div itemprop="location" itemscope="" itemtype="http://schema.org/Place"><span itemprop="name address"><a href="/wiki/Al_Janoub_Stadium" title="Al Janoub Stadium">Al Janoub Stadium</a>, <a href="/wiki/Al_Wakrah" title="Al Wakrah">Al Wakrah</a></span></div><div>Attendance: 39,789</div><div>Referee: <a href="/wiki/Mohammed_Abdulla_Hassan_Mohamed" title="Mohammed Abdulla Hassan Mohamed">Mohammed Abdulla Hassan Mohamed</a> (<a href="/wiki/United_Arab_Emirates_Football_Association" title="United Arab Emirates Football Association">United Arab Emirates</a>)</div></div></div>
<table width="92%">
<tbody><tr>
<td><div style="width: 100px; margin: 0 auto; padding: 0;">
<div style="position: relative; left: 0px; top: 0px; width: 100px; height: 135px; margin: 0 auto; padding: 0;">
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px; background-color: #008020;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/1/13/Kit_left_arm_cmr2223h.png" decoding="async" title="Team colours" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/31px-Kit_left_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/47px-Kit_left_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/62px-Kit_left_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px; background-color: #008020;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/4/40/Kit_body_cmr2223H.png" decoding="async" width="38" height="59" style="vertical-align: top" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/38px-Kit_body.svg.png" decoding="async" width="38" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/57px-Kit_body.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/76px-Kit_body.svg.png 2x" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px; background-color: #008020;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/4/4b/Kit_right_arm_cmr2223h.png" decoding="async" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/31px-Kit_right_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/47px-Kit_right_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/62px-Kit_right_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px; background-color: #FF0000"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/1/14/Kit_shorts_cmr2223h.png" decoding="async" width="100" height="36" style="vertical-align: top" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/100px-Kit_shorts.svg.png" decoding="async" width="100" height="36" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/150px-Kit_shorts.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/200px-Kit_shorts.svg.png 2x" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px; background-color: #FFDF00"></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/100px-Kit_socks_long.svg.png" decoding="async" width="100" height="40" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/150px-Kit_socks_long.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/200px-Kit_socks_long.svg.png 2x" data-file-width="100" data-file-height="40" /></div>
</div>
<div style="padding-top: 0.6em; text-align: center;"><b>Cameroon</b></div>
</div>
</td>
<td><div style="width: 100px; margin: 0 auto; padding: 0;">
<div style="position: relative; left: 0px; top: 0px; width: 100px; height: 135px; margin: 0 auto; padding: 0;">
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px; background-color: #FFFFFF;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/0/0a/Kit_left_arm_srb22a.png" decoding="async" title="Team colours" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/31px-Kit_left_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/47px-Kit_left_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Kit_left_arm.svg/62px-Kit_left_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px; background-color: #FFFFFF;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/2/2d/Kit_body_srb22A.png" decoding="async" width="38" height="59" style="vertical-align: top" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/38px-Kit_body.svg.png" decoding="async" width="38" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/57px-Kit_body.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/83/Kit_body.svg/76px-Kit_body.svg.png 2x" data-file-width="38" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px; background-color: #FFFFFF;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/3/38/Kit_right_arm_srb22a.png" decoding="async" width="31" height="59" style="vertical-align: top" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/31px-Kit_right_arm.svg.png" decoding="async" width="31" height="59" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/47px-Kit_right_arm.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Kit_right_arm.svg/62px-Kit_right_arm.svg.png 2x" data-file-width="31" data-file-height="59" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px; background-color: #FFFFFF"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/1/16/Kit_shorts_srb22a.png" decoding="async" width="100" height="36" style="vertical-align: top" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/100px-Kit_shorts.svg.png" decoding="async" width="100" height="36" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/150px-Kit_shorts.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/af/Kit_shorts.svg/200px-Kit_shorts.svg.png 2x" data-file-width="100" data-file-height="36" /></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px; background-color: #FFFFFF"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/c/cf/Kit_socks_srb22al.png" decoding="async" width="100" height="40" style="vertical-align: top" data-file-width="100" data-file-height="40" /></div>
<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px;"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/100px-Kit_socks_long.svg.png" decoding="async" width="100" height="40" style="vertical-align: top" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/150px-Kit_socks_long.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Kit_socks_long.svg/200px-Kit_socks_long.svg.png 2x" data-file-width="100" data-file-height="40" /></div>
</div>
<div style="padding-top: 0.6em; text-align: center;"><b>Serbia</b></div>
</div>
</td></tr></tbody></table>
<table width="100%">
<tbody><tr>
<td valign="top" width="40%">
<table style="font-size:90%" cellspacing="0" cellpadding="0">
<tbody><tr>
<th width="25"></th>
<th width="25">
</th></tr>
<tr>
<td>GK</td>
<td><b>16</b></td>
<td><a href="/wiki/Devis_Epassy" title="Devis Epassy">Devis Epassy</a>
</td></tr>
<tr>
<td>RB</td>
<td><b>19</b></td>
<td><a href="/wiki/Collins_Fai" title="Collins Fai">Collins Fai</a>
</td></tr>
<tr>
<td>CB</td>
<td><b>21</b></td>
<td><a href="/wiki/Jean-Charles_Castelletto" title="Jean-Charles Castelletto">Jean-Charles Castelletto</a>
</td></tr>
<tr>
<td>CB</td>
<td><b>3</b></td>
<td><a href="/wiki/Nicolas_Nkoulou" title="Nicolas Nkoulou">Nicolas Nkoulou</a></td>
<td><img alt="Yellow card" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/10px-Yellow_card.svg.png" decoding="async" title="Booked" width="10" height="13" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/15px-Yellow_card.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/20px-Yellow_card.svg.png 2x" data-file-width="512" data-file-height="666" /><small style="vertical-align: middle;"> 24<span class="nowrap">'</span></small>
</td></tr>
<tr>
<td>LB</td>
<td><b>25</b></td>
<td><a href="/wiki/Nouhou_Tolo" title="Nouhou Tolo">Nouhou Tolo</a>
</td></tr>
<tr>
<td>DM</td>
<td><b>18</b></td>
<td><a href="/wiki/Martin_Hongla" title="Martin Hongla">Martin Hongla</a></td>