-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunning Man 2021.html
More file actions
3411 lines (3411 loc) · 367 KB
/
Running Man 2021.html
File metadata and controls
3411 lines (3411 loc) · 367 KB
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 vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-sticky-header-enabled vector-toc-available" lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title>List of Running Man episodes (2021) - Wikipedia</title>
<script>(function(){var className="client-js vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-sticky-header-enabled vector-toc-available";var cookie=document.cookie.match(/(?:^|; )enwikimwclientpreferences=([^;]+)/);if(cookie){cookie[1].split('%2C').forEach(function(pref){className=className.replace(new RegExp('(^| )'+pref.replace(/-clientpref-\w+$|[^\w-]+/g,'')+'-clientpref-\\w+( |$)'),'$1'+pref+'$2');});}document.documentElement.className=className;}());RLCONF={"wgBreakFrames":false,"wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgRequestId":"8225b1c3-c0e8-496c-9980-0fb4f27a8bf3","wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"List_of_Running_Man_episodes_(2021)","wgTitle":"List of Running Man episodes (2021)","wgCurRevisionId":1323251542,"wgRevisionId":1323251542,"wgArticleId":66163922,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["CS1 uses Korean-language script (ko)","CS1 Korean-language sources (ko)","Articles with short description","Short description is different from Wikidata","Use mdy dates from December 2020","Short description matches Wikidata","Television articles with incorrect naming style","Articles containing Korean-language text","Articles with Korean-language sources (ko)","Lists of Running Man (TV series) episodes","2021 in South Korean television","2021-related lists"],"wgPageViewLanguage":"en","wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgRelevantPageName":"List_of_Running_Man_episodes_(2021)","wgRelevantArticleId":66163922,"wgTempUserName":null,"wgIsProbablyEditable":true,"wgRelevantPageIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgNoticeProject":"wikipedia","wgFlaggedRevsParams":{"tags":{"status":{"levels":1}}},"wgConfirmEditCaptchaNeededForGenericEdit":false,"wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgPopupsFlags":0,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","pageVariantFallbacks":"en"},"wgMFDisplayWikibaseDescriptions":{"search":true,"watchlist":true,"tagline":false,"nearby":true},"wgWMESchemaEditAttemptStepOversample":false,"wgWMEPageLength":100000,"wgMetricsPlatformUserExperiments":{"active_experiments":[],"overrides":[],"enrolled":[],"assigned":[],"subject_ids":[],"sampling_units":[],"coordinator":[]},"wgEditSubmitButtonLabelPublish":true,"wgULSPosition":"interlanguage","wgULSisCompactLinksEnabled":false,"wgVector2022LanguageInHeader":true,"wgULSisLanguageSelectorEmpty":false,"wgWikibaseItemId":"Q104662009","wgCheckUserClientHintsHeadersJsApi":["brands","architecture","bitness","fullVersionList","mobile","model","platform","platformVersion"],"GEHomepageSuggestedEditsEnableTopics":true,"wgGESuggestedEditsTaskTypes":{"taskTypes":["copyedit","link-recommendation"],"unavailableTaskTypes":[]},"wgGETopicsMatchModeEnabled":false,"wgGELevelingUpEnabledForUser":false,"wgGEUseMetricsPlatformExtension":true};
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","ext.wikimediamessages.styles":"ready","skins.vector.search.codex.styles":"ready","skins.vector.styles":"ready","skins.vector.icons":"ready","jquery.tablesorter.styles":"ready","jquery.makeCollapsible.styles":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","wikibase.client.init":"ready"};RLPAGEMODULES=["ext.xLab","ext.cite.ux-enhancements","site","mediawiki.page.ready","jquery.tablesorter","jquery.makeCollapsible","mediawiki.toc","skins.vector.js","ext.centralNotice.geoIP","ext.centralNotice.startUp","ext.gadget.ReferenceTooltips","ext.gadget.switcher","ext.urlShortener.toolbar","ext.centralauth.centralautologin","ext.popups","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.echo.centralauth","ext.eventLogging","ext.wikimediaEvents","ext.navigationTiming","ext.uls.interface","ext.cx.eventlogging.campaigns","ext.cx.uls.quick.actions","wikibase.client.vector-2022","ext.checkUser.clientHints","ext.growthExperiments.SuggestedEditSession"];</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.impl(function(){return["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.wikimediamessages.styles%7Cjquery.makeCollapsible.styles%7Cjquery.tablesorter.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&only=styles&skin=vector-2022">
<script async src="/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022"></script>
<meta name="ResourceLoaderDynamicStyles" content="">
<link rel="stylesheet" href="/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022">
<meta name="generator" content="MediaWiki 1.46.0-wmf.3">
<meta name="referrer" content="origin">
<meta name="referrer" content="origin-when-cross-origin">
<meta name="robots" content="max-image-preview:standard">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=1120">
<meta property="og:title" content="List of Running Man episodes (2021) - Wikipedia">
<meta property="og:type" content="website">
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=List_of_Running_Man_episodes_(2021)&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/rest.php/v1/search" title="Wikipedia (en)">
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd">
<link rel="canonical" href="https://en.wikipedia.org/wiki/List_of_Running_Man_episodes_(2021)">
<link rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom">
<link rel="dns-prefetch" href="//meta.wikimedia.org">
<link rel="dns-prefetch" href="auth.wikimedia.org">
</head>
<body class="skin--responsive skin-vector skin-vector-search-vue mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject mw-editable page-List_of_Running_Man_episodes_2021 rootpage-List_of_Running_Man_episodes_2021 skin-vector-2022 action-view">
<div id="mw-aria-live-region" class="mw-aria-live-region" aria-live="polite"></div>
<a class="mw-jump-link" href="#bodyContent">Jump to content</a>
<div class="vector-header-container">
<header class="vector-header mw-header no-font-mode-scale">
<div class="vector-header-start">
<nav class="vector-main-menu-landmark" aria-label="Site">
<div id="vector-main-menu-dropdown" class="vector-dropdown vector-main-menu-dropdown vector-button-flush-left vector-button-flush-right" title="Main menu">
<input type="checkbox" id="vector-main-menu-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-main-menu-dropdown" class="vector-dropdown-checkbox " aria-label="Main menu"> <label id="vector-main-menu-dropdown-label" for="vector-main-menu-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-menu mw-ui-icon-wikimedia-menu"></span> <span class="vector-dropdown-label-text">Main menu</span> </label>
<div class="vector-dropdown-content">
<div id="vector-main-menu-unpinned-container" class="vector-unpinned-container">
<div id="vector-main-menu" class="vector-main-menu vector-pinnable-element">
<div class="vector-pinnable-header vector-main-menu-pinnable-header vector-pinnable-header-unpinned" data-feature-name="main-menu-pinned" data-pinnable-element-id="vector-main-menu" data-pinned-container-id="vector-main-menu-pinned-container" data-unpinned-container-id="vector-main-menu-unpinned-container">
<div class="vector-pinnable-header-label">Main menu</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-main-menu.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-main-menu.unpin">hide</button>
</div>
<div id="p-navigation" class="vector-menu mw-portlet mw-portlet-navigation">
<div class="vector-menu-heading">Navigation</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="n-mainpage-description" class="mw-list-item"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z"><span>Main page</span></a></li>
<li id="n-contents" class="mw-list-item"><a href="/wiki/Wikipedia:Contents" title="Guides to browsing Wikipedia"><span>Contents</span></a></li>
<li id="n-currentevents" class="mw-list-item"><a href="/wiki/Portal:Current_events" title="Articles related to current events"><span>Current events</span></a></li>
<li id="n-randompage" class="mw-list-item"><a href="/wiki/Special:Random" title="Visit a randomly selected article [x]" accesskey="x"><span>Random article</span></a></li>
<li id="n-aboutsite" class="mw-list-item"><a href="/wiki/Wikipedia:About" title="Learn about Wikipedia and how it works"><span>About Wikipedia</span></a></li>
<li id="n-contactpage" class="mw-list-item"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia"><span>Contact us</span></a></li>
</ul>
</div>
</div>
<div id="p-interaction" class="vector-menu mw-portlet mw-portlet-interaction">
<div class="vector-menu-heading">Contribute</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="n-help" class="mw-list-item"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia"><span>Help</span></a></li>
<li id="n-introduction" class="mw-list-item"><a href="/wiki/Help:Introduction" title="Learn how to edit Wikipedia"><span>Learn to edit</span></a></li>
<li id="n-portal" class="mw-list-item"><a href="/wiki/Wikipedia:Community_portal" title="The hub for editors"><span>Community portal</span></a></li>
<li id="n-recentchanges" class="mw-list-item"><a href="/wiki/Special:RecentChanges" title="A list of recent changes to Wikipedia [r]" accesskey="r"><span>Recent changes</span></a></li>
<li id="n-upload" class="mw-list-item"><a href="/wiki/Wikipedia:File_upload_wizard" title="Add images or other media for use on Wikipedia"><span>Upload file</span></a></li>
<li id="n-specialpages" class="mw-list-item"><a href="/wiki/Special:SpecialPages"><span>Special pages</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<a href="/wiki/Main_Page" class="mw-logo"> <img class="mw-logo-icon" src="/static/images/icons/wikipedia.png" alt="" aria-hidden="true" height="50" width="50"> <span class="mw-logo-container skin-invert"> <img class="mw-logo-wordmark" alt="Wikipedia" src="/static/images/mobile/copyright/wikipedia-wordmark-en.svg" style="width: 7.5em; height: 1.125em;"> <img class="mw-logo-tagline" alt="The Free Encyclopedia" src="/static/images/mobile/copyright/wikipedia-tagline-en.svg" width="117" height="13" style="width: 7.3125em; height: 0.8125em;"> </span> </a>
</div>
<div class="vector-header-end">
<div id="p-search" role="search" class="vector-search-box-vue vector-search-box-collapses vector-search-box-show-thumbnail vector-search-box-auto-expand-width vector-search-box">
<a href="/wiki/Special:Search" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only search-toggle" title="Search Wikipedia [f]" accesskey="f"><span class="vector-icon mw-ui-icon-search mw-ui-icon-wikimedia-search"></span> <span>Search</span> </a>
<div class="vector-typeahead-search-container">
<div class="cdx-typeahead-search cdx-typeahead-search--show-thumbnail cdx-typeahead-search--auto-expand-width">
<form action="/w/index.php" id="searchform" class="cdx-search-input cdx-search-input--has-end-button">
<div id="simpleSearch" class="cdx-search-input__input-wrapper" data-search-loc="header-moved">
<div class="cdx-text-input cdx-text-input--has-start-icon">
<input class="cdx-text-input__input mw-searchInput" autocomplete="off" type="search" name="search" placeholder="Search Wikipedia" aria-label="Search Wikipedia" autocapitalize="sentences" spellcheck="false" title="Search Wikipedia [f]" accesskey="f" id="searchInput"> <span class="cdx-text-input__icon cdx-text-input__start-icon"></span>
</div>
<input type="hidden" name="title" value="Special:Search">
</div>
<button class="cdx-button cdx-search-input__end-button">Search</button>
</form>
</div>
</div>
</div>
<nav class="vector-user-links vector-user-links-wide" aria-label="Personal tools">
<div class="vector-user-links-main">
<div id="p-vector-user-menu-preferences" class="vector-menu mw-portlet emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
<div id="p-vector-user-menu-userpage" class="vector-menu mw-portlet emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
<nav class="vector-appearance-landmark" aria-label="Appearance">
<div id="vector-appearance-dropdown" class="vector-dropdown " title="Change the appearance of the page's font size, width, and color">
<input type="checkbox" id="vector-appearance-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-appearance-dropdown" class="vector-dropdown-checkbox " aria-label="Appearance"> <label id="vector-appearance-dropdown-label" for="vector-appearance-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-appearance mw-ui-icon-wikimedia-appearance"></span> <span class="vector-dropdown-label-text">Appearance</span> </label>
<div class="vector-dropdown-content">
<div id="vector-appearance-unpinned-container" class="vector-unpinned-container"></div>
</div>
</div>
</nav>
<div id="p-vector-user-menu-notifications" class="vector-menu mw-portlet emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
<div id="p-vector-user-menu-overflow" class="vector-menu mw-portlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="pt-sitesupport-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=en" class=""><span>Donate</span></a></li>
<li id="pt-createaccount-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="/w/index.php?title=Special:CreateAccount&returnto=List+of+Running+Man+episodes+%282021%29" title="You are encouraged to create an account and log in; however, it is not mandatory" class=""><span>Create account</span></a></li>
<li id="pt-login-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="/w/index.php?title=Special:UserLogin&returnto=List+of+Running+Man+episodes+%282021%29" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o" class=""><span>Log in</span></a></li>
</ul>
</div>
</div>
</div>
<div id="vector-user-links-dropdown" class="vector-dropdown vector-user-menu vector-button-flush-right vector-user-menu-logged-out user-links-collapsible-item" title="Log in and more options">
<input type="checkbox" id="vector-user-links-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-user-links-dropdown" class="vector-dropdown-checkbox " aria-label="Personal tools"> <label id="vector-user-links-dropdown-label" for="vector-user-links-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-ellipsis mw-ui-icon-wikimedia-ellipsis"></span> <span class="vector-dropdown-label-text">Personal tools</span> </label>
<div class="vector-dropdown-content">
<div id="p-personal" class="vector-menu mw-portlet mw-portlet-personal user-links-collapsible-item" title="User menu">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="pt-sitesupport" class="user-links-collapsible-item mw-list-item"><a href="https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=en"><span>Donate</span></a></li>
<li id="pt-createaccount" class="user-links-collapsible-item mw-list-item"><a href="/w/index.php?title=Special:CreateAccount&returnto=List+of+Running+Man+episodes+%282021%29" title="You are encouraged to create an account and log in; however, it is not mandatory"><span class="vector-icon mw-ui-icon-userAdd mw-ui-icon-wikimedia-userAdd"></span> <span>Create account</span></a></li>
<li id="pt-login" class="user-links-collapsible-item mw-list-item"><a href="/w/index.php?title=Special:UserLogin&returnto=List+of+Running+Man+episodes+%282021%29" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o"><span class="vector-icon mw-ui-icon-logIn mw-ui-icon-wikimedia-logIn"></span> <span>Log in</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
</div>
<div class="mw-page-container">
<div class="mw-page-container-inner">
<div class="vector-sitenotice-container">
<div id="siteNotice">
<!-- CentralNotice -->
</div>
</div>
<div class="vector-column-start">
<div class="vector-main-menu-container">
<div id="mw-navigation">
<nav id="mw-panel" class="vector-main-menu-landmark" aria-label="Site">
<div id="vector-main-menu-pinned-container" class="vector-pinned-container"></div>
</nav>
</div>
</div>
<div class="vector-sticky-pinned-container">
<nav id="mw-panel-toc" aria-label="Contents" data-event-name="ui.sidebar-toc" class="mw-table-of-contents-container vector-toc-landmark">
<div id="vector-toc-pinned-container" class="vector-pinned-container">
<div id="vector-toc" class="vector-toc vector-pinnable-element">
<div class="vector-pinnable-header vector-toc-pinnable-header vector-pinnable-header-pinned" data-feature-name="toc-pinned" data-pinnable-element-id="vector-toc">
<h2 class="vector-pinnable-header-label">Contents</h2>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-toc.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-toc.unpin">hide</button>
</div>
<ul class="vector-toc-contents" id="mw-panel-toc-list">
<li id="toc-mw-content-text" class="vector-toc-list-item vector-toc-level-1"><a href="#" class="vector-toc-link">
<div class="vector-toc-text">(Top)</div>
</a></li>
<li id="toc-Episodes" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#Episodes">
<div class="vector-toc-text">
<span class="vector-toc-numb">1</span> <span>Episodes</span>
</div>
</a>
<ul id="toc-Episodes-sublist" class="vector-toc-list"></ul></li>
<li id="toc-Viewership" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#Viewership">
<div class="vector-toc-text">
<span class="vector-toc-numb">2</span> <span>Viewership</span>
</div>
</a>
<ul id="toc-Viewership-sublist" class="vector-toc-list"></ul></li>
<li id="toc-Notes" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#Notes">
<div class="vector-toc-text">
<span class="vector-toc-numb">3</span> <span>Notes</span>
</div>
</a>
<ul id="toc-Notes-sublist" class="vector-toc-list"></ul></li>
<li id="toc-References" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#References">
<div class="vector-toc-text">
<span class="vector-toc-numb">4</span> <span>References</span>
</div>
</a>
<ul id="toc-References-sublist" class="vector-toc-list"></ul></li>
<li id="toc-External_links" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#External_links">
<div class="vector-toc-text">
<span class="vector-toc-numb">5</span> <span>External links</span>
</div>
</a>
<ul id="toc-External_links-sublist" class="vector-toc-list"></ul></li>
</ul>
</div>
</div>
</nav>
</div>
</div>
<div class="mw-content-container">
<main id="content" class="mw-body">
<header class="mw-body-header vector-page-titlebar no-font-mode-scale">
<nav aria-label="Contents" class="vector-toc-landmark">
<div id="vector-page-titlebar-toc" class="vector-dropdown vector-page-titlebar-toc vector-button-flush-left" title="Table of Contents">
<input type="checkbox" id="vector-page-titlebar-toc-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-titlebar-toc" class="vector-dropdown-checkbox " aria-label="Toggle the table of contents"> <label id="vector-page-titlebar-toc-label" for="vector-page-titlebar-toc-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-listBullet mw-ui-icon-wikimedia-listBullet"></span> <span class="vector-dropdown-label-text">Toggle the table of contents</span> </label>
<div class="vector-dropdown-content">
<div id="vector-page-titlebar-toc-unpinned-container" class="vector-unpinned-container"></div>
</div>
</div>
</nav>
<h1 id="firstHeading" class="firstHeading mw-first-heading">List of <i>Running Man</i> episodes (2021)</h1>
<div id="p-lang-btn" class="vector-dropdown mw-portlet mw-portlet-lang">
<input type="checkbox" id="p-lang-btn-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-p-lang-btn" class="vector-dropdown-checkbox mw-interlanguage-selector" aria-label="Go to an article in another language. Available in 4 languages"> <label id="p-lang-btn-label" for="p-lang-btn-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--action-progressive mw-portlet-lang-heading-4" aria-hidden="true"><span class="vector-icon mw-ui-icon-language-progressive mw-ui-icon-wikimedia-language-progressive"></span> <span class="vector-dropdown-label-text">4 languages</span> </label>
<div class="vector-dropdown-content">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="interlanguage-link interwiki-es mw-list-item"><a href="https://es.wikipedia.org/wiki/Anexo:Episodios_de_Running_Man_(2021)" title="Anexo:Episodios de Running Man (2021) – Spanish" lang="es" hreflang="es" data-title="Anexo:Episodios de Running Man (2021)" data-language-autonym="Español" data-language-local-name="Spanish" class="interlanguage-link-target"><span>Español</span></a></li>
<li class="interlanguage-link interwiki-id mw-list-item"><a href="https://id.wikipedia.org/wiki/Daftar_episode_Running_Man_(2021)" title="Daftar episode Running Man (2021) – Indonesian" lang="id" hreflang="id" data-title="Daftar episode Running Man (2021)" data-language-autonym="Bahasa Indonesia" data-language-local-name="Indonesian" class="interlanguage-link-target"><span>Bahasa Indonesia</span></a></li>
<li class="interlanguage-link interwiki-vi mw-list-item"><a href="https://vi.wikipedia.org/wiki/Danh_s%C3%A1ch_t%E1%BA%ADp_c%E1%BB%A7a_Running_Man_(2021)" title="Danh sách tập của Running Man (2021) – Vietnamese" lang="vi" hreflang="vi" data-title="Danh sách tập của Running Man (2021)" data-language-autonym="Tiếng Việt" data-language-local-name="Vietnamese" class="interlanguage-link-target"><span>Tiếng Việt</span></a></li>
<li class="interlanguage-link interwiki-zh mw-list-item"><a href="https://zh.wikipedia.org/wiki/2021%E5%B9%B4Running_Man%E7%AF%80%E7%9B%AE%E5%88%97%E8%A1%A8" title="2021年Running Man節目列表 – Chinese" lang="zh" hreflang="zh" data-title="2021年Running Man節目列表" data-language-autonym="中文" data-language-local-name="Chinese" class="interlanguage-link-target"><span>中文</span></a></li>
</ul>
<div class="after-portlet after-portlet-lang">
<span class="wb-langlinks-edit wb-langlinks-link"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q104662009#sitelinks-wikipedia" title="Edit interlanguage links" class="wbc-editpage">Edit links</a></span>
</div>
</div>
</div>
</div>
</header>
<div class="vector-page-toolbar vector-feature-custom-font-size-clientpref--excluded">
<div class="vector-page-toolbar-container">
<div id="left-navigation">
<nav aria-label="Namespaces">
<div id="p-associated-pages" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-associated-pages">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="ca-nstab-main" class="selected vector-tab-noicon mw-list-item"><a href="/wiki/List_of_Running_Man_episodes_(2021)" title="View the content page [c]" accesskey="c"><span>Article</span></a></li>
<li id="ca-talk" class="vector-tab-noicon mw-list-item"><a href="/wiki/Talk:List_of_Running_Man_episodes_(2021)" rel="discussion" title="Discuss improvements to the content page [t]" accesskey="t"><span>Talk</span></a></li>
</ul>
</div>
</div>
<div id="vector-variants-dropdown" class="vector-dropdown emptyPortlet">
<input type="checkbox" id="vector-variants-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-variants-dropdown" class="vector-dropdown-checkbox " aria-label="Change language variant"> <label id="vector-variants-dropdown-label" for="vector-variants-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"><span class="vector-dropdown-label-text">English</span> </label>
<div class="vector-dropdown-content">
<div id="p-variants" class="vector-menu mw-portlet mw-portlet-variants emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
</div>
</div>
</nav>
</div>
<div id="right-navigation" class="vector-collapsible">
<nav aria-label="Views">
<div id="p-views" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-views">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="ca-view" class="selected vector-tab-noicon mw-list-item"><a href="/wiki/List_of_Running_Man_episodes_(2021)"><span>Read</span></a></li>
<li id="ca-edit" class="vector-tab-noicon mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2021)&action=edit" title="Edit this page [e]" accesskey="e"><span>Edit</span></a></li>
<li id="ca-history" class="vector-tab-noicon mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2021)&action=history" title="Past revisions of this page [h]" accesskey="h"><span>View history</span></a></li>
</ul>
</div>
</div>
</nav>
<nav class="vector-page-tools-landmark" aria-label="Page tools">
<div id="vector-page-tools-dropdown" class="vector-dropdown vector-page-tools-dropdown">
<input type="checkbox" id="vector-page-tools-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-tools-dropdown" class="vector-dropdown-checkbox " aria-label="Tools"> <label id="vector-page-tools-dropdown-label" for="vector-page-tools-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"><span class="vector-dropdown-label-text">Tools</span> </label>
<div class="vector-dropdown-content">
<div id="vector-page-tools-unpinned-container" class="vector-unpinned-container">
<div id="vector-page-tools" class="vector-page-tools vector-pinnable-element">
<div class="vector-pinnable-header vector-page-tools-pinnable-header vector-pinnable-header-unpinned" data-feature-name="page-tools-pinned" data-pinnable-element-id="vector-page-tools" data-pinned-container-id="vector-page-tools-pinned-container" data-unpinned-container-id="vector-page-tools-unpinned-container">
<div class="vector-pinnable-header-label">Tools</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-page-tools.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-page-tools.unpin">hide</button>
</div>
<div id="p-cactions" class="vector-menu mw-portlet mw-portlet-cactions emptyPortlet vector-has-collapsible-items" title="More options">
<div class="vector-menu-heading">Actions</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="ca-more-view" class="selected vector-more-collapsible-item mw-list-item"><a href="/wiki/List_of_Running_Man_episodes_(2021)"><span>Read</span></a></li>
<li id="ca-more-edit" class="vector-more-collapsible-item mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2021)&action=edit" title="Edit this page [e]" accesskey="e"><span>Edit</span></a></li>
<li id="ca-more-history" class="vector-more-collapsible-item mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2021)&action=history"><span>View history</span></a></li>
</ul>
</div>
</div>
<div id="p-tb" class="vector-menu mw-portlet mw-portlet-tb">
<div class="vector-menu-heading">General</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="t-whatlinkshere" class="mw-list-item"><a href="/wiki/Special:WhatLinksHere/List_of_Running_Man_episodes_(2021)" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j"><span>What links here</span></a></li>
<li id="t-recentchangeslinked" class="mw-list-item"><a href="/wiki/Special:RecentChangesLinked/List_of_Running_Man_episodes_(2021)" rel="nofollow" title="Recent changes in pages linked from this page [k]" accesskey="k"><span>Related changes</span></a></li>
<li id="t-upload" class="mw-list-item"><a href="//en.wikipedia.org/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]" accesskey="u"><span>Upload file</span></a></li>
<li id="t-permalink" class="mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2021)&oldid=1323251542" title="Permanent link to this revision of this page"><span>Permanent link</span></a></li>
<li id="t-info" class="mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2021)&action=info" title="More information about this page"><span>Page information</span></a></li>
<li id="t-cite" class="mw-list-item"><a href="/w/index.php?title=Special:CiteThisPage&page=List_of_Running_Man_episodes_%282021%29&id=1323251542&wpFormIdentifier=titleform" title="Information on how to cite this page"><span>Cite this page</span></a></li>
<li id="t-urlshortener" class="mw-list-item"><a href="/w/index.php?title=Special:UrlShortener&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FList_of_Running_Man_episodes_%282021%29"><span>Get shortened URL</span></a></li>
<li id="t-urlshortener-qrcode" class="mw-list-item"><a href="/w/index.php?title=Special:QrCode&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FList_of_Running_Man_episodes_%282021%29"><span>Download QR code</span></a></li>
</ul>
</div>
</div>
<div id="p-coll-print_export" class="vector-menu mw-portlet mw-portlet-coll-print_export">
<div class="vector-menu-heading">Print/export</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="coll-download-as-rl" class="mw-list-item"><a href="/w/index.php?title=Special:DownloadAsPdf&page=List_of_Running_Man_episodes_%282021%29&action=show-download-screen" title="Download this page as a PDF file"><span>Download as PDF</span></a></li>
<li id="t-print" class="mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2021)&printable=yes" title="Printable version of this page [p]" accesskey="p"><span>Printable version</span></a></li>
</ul>
</div>
</div>
<div id="p-wikibase-otherprojects" class="vector-menu mw-portlet mw-portlet-wikibase-otherprojects">
<div class="vector-menu-heading">In other projects</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="t-wikibase" class="wb-otherproject-link wb-otherproject-wikibase-dataitem mw-list-item"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q104662009" title="Structured data on this page hosted by Wikidata [g]" accesskey="g"><span>Wikidata item</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
</div>
<div class="vector-column-end no-font-mode-scale">
<div class="vector-sticky-pinned-container">
<nav class="vector-page-tools-landmark" aria-label="Page tools">
<div id="vector-page-tools-pinned-container" class="vector-pinned-container"></div>
</nav>
<nav class="vector-appearance-landmark" aria-label="Appearance">
<div id="vector-appearance-pinned-container" class="vector-pinned-container">
<div id="vector-appearance" class="vector-appearance vector-pinnable-element">
<div class="vector-pinnable-header vector-appearance-pinnable-header vector-pinnable-header-pinned" data-feature-name="appearance-pinned" data-pinnable-element-id="vector-appearance" data-pinned-container-id="vector-appearance-pinned-container" data-unpinned-container-id="vector-appearance-unpinned-container">
<div class="vector-pinnable-header-label">Appearance</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-appearance.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-appearance.unpin">hide</button>
</div>
</div>
</div>
</nav>
</div>
</div>
<div id="bodyContent" class="vector-body" aria-labelledby="firstHeading" data-mw-ve-target-container>
<div class="vector-body-before-content">
<div class="mw-indicators"></div>
<div id="siteSub" class="noprint">From Wikipedia, the free encyclopedia</div>
</div>
<div id="contentSub">
<div id="mw-content-subtitle"></div>
</div>
<div id="mw-content-text" class="mw-body-content">
<div class="mw-content-ltr mw-parser-output" lang="en" dir="ltr">
<p class="mw-empty-elt"></p>
<div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">Season of television series</div>
<style data-mw-deduplicate="TemplateStyles:r1316064257">.mw-parser-output .infobox-subbox{padding:0;border:none;margin:-3px;width:auto;min-width:100%;font-size:100%;clear:none;float:none;background-color:transparent;color:inherit}.mw-parser-output .infobox-3cols-child{margin:-3px}.mw-parser-output .infobox .navbar{font-size:100%}@media screen{html.skin-theme-clientpref-night .mw-parser-output .infobox-full-data:not(.notheme)>div:not(.notheme)[style]{background:#1f1f23!important;color:#f8f9fa}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .infobox-full-data:not(.notheme)>div:not(.notheme)[style]{background:#1f1f23!important;color:#f8f9fa}}@media(min-width:640px){body.skin--responsive .mw-parser-output .infobox-table{display:table!important}body.skin--responsive .mw-parser-output .infobox-table>caption{display:table-caption!important}body.skin--responsive .mw-parser-output .infobox-table>tbody{display:table-row-group}body.skin--responsive .mw-parser-output .infobox-table th,body.skin--responsive .mw-parser-output .infobox-table td{padding-left:inherit;padding-right:inherit}}</style>
<table class="infobox vevent">
<tbody>
<tr>
<th colspan="2" class="infobox-above summary" style="background-color: #E4FFA4; color: black; padding: 0.25em 1em; font-size: 125%;"><i>List of Running Man episodes</i></th>
</tr>
<tr>
<th scope="row" class="infobox-label" style="white-space: nowrap;"><abbr title="Number">No.</abbr> of episodes</th>
<td class="infobox-data">50</td>
</tr>
<tr>
<th colspan="2" class="infobox-header summary" style="background-color: #E4FFA4; color: black; padding: 0.25em 1em; line-height: 1.5em;">Release</th>
</tr>
<tr>
<th scope="row" class="infobox-label" style="white-space: nowrap;">Original network</th>
<td class="infobox-data"><a href="/wiki/Seoul_Broadcasting_System" title="Seoul Broadcasting System">SBS</a></td>
</tr>
<tr>
<th scope="row" class="infobox-label" style="white-space: nowrap;">Original release</th>
<td class="infobox-data">January 3<span style="display: none;"> (<span class="bday dtstart published updated itvstart">2021-01-03</span>)</span> –
<br>
December 26, 2021<span style="display: none;"> (<span class="dtend itvend">2021-12-26</span>)</span></td>
</tr>
<tr>
<th colspan="2" class="infobox-header summary" style="background-color: #E4FFA4; color: black; padding: 0.25em 1em; line-height: 1.5em;">Season chronology</th>
</tr>
<tr class="noprint">
<td colspan="2" class="infobox-full-data">
<div style="float: left;">
← <b>Previous</b>
<br>
<a href="/wiki/List_of_Running_Man_episodes_(2020)" title="List of Running Man episodes (2020)">2020</a>
</div>
<div style="float: right;">
<b>Next</b> →
<br>
<a href="/wiki/List_of_Running_Man_episodes_(2022)" title="List of Running Man episodes (2022)">2022</a>
</div>
</td>
</tr>
<tr>
<td colspan="2" class="infobox-below noprint"><a href="/wiki/List_of_Running_Man_episodes" class="mw-redirect" title="List of Running Man episodes">List of episodes</a></td>
</tr>
</tbody>
</table>
<p>This is a list of episodes of the South Korean <a href="/wiki/Variety_show" title="Variety show">variety show</a> <i><a href="/wiki/Running_Man_(TV_program)" title="Running Man (TV program)">Running Man</a></i> in 2021. The show airs on <a href="/wiki/Seoul_Broadcasting_System" title="Seoul Broadcasting System">SBS</a> as part of their <i>Good Sunday</i> lineup.</p>
<meta property="mw:PageProp/toc">
<div style="clear:both;" class=""></div>
<div class="mw-heading mw-heading2">
<h2 id="Episodes">Episodes</h2>
<span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=List_of_Running_Man_episodes_(2021)&action=edit&section=1" title="Edit section: Episodes"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span>
</div>
<table class="wikitable sortable" style="text-align:center">
<caption>List of episodes (536–585)</caption>
<tbody>
<tr>
<th style="background-color: #E4FFA4"><abbr title="Episode">Ep.</abbr></th>
<th style="background-color: #E4FFA4">Airdate
<br>
<span style="font-size: 85%;">(Filming date)</span></th>
<th style="background-color: #E4FFA4">Title</th>
<th style="background-color: #E4FFA4; width:140px" class="unsortable"><a href="/wiki/Guest_appearance" title="Guest appearance">Guest(s)</a></th>
<th style="background-color: #E4FFA4">Landmark</th>
<th style="background-color: #E4FFA4" colspan="2" class="unsortable">Teams</th>
<th style="background-color: #E4FFA4; width:170px" class="unsortable">Mission</th>
<th style="background-color: #E4FFA4; width:150px" class="unsortable">Results</th>
</tr>
<tr>
<th>536</th>
<td>January 3, 2021
<br>
<span style="font-size: 85%;">(December 21, 2020)</span></td>
<td rowspan="2"><i>2021 Tazza Association New Year's Party: The Return of the Veterans</i>
<br>
<span title="Korean-language text"><span lang="ko">(2021 타짜협회 신년회-꾼들의 귀환)</span></span></td>
<td rowspan="4" style="background: #EEE; color:black; vertical-align: middle; text-align: center;" class="table-cast">No Guests</td>
<td rowspan="2">Yangpyeong Forest Pension
<br>
<span style="font-size: 85%;">(Danwol-myeon, <a href="/wiki/Yangpyeong_County" title="Yangpyeong County">Yangpyeong County</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</span></td>
<td colspan="2" rowspan="4" style="background: #EEE; color:black; vertical-align: middle; text-align: center;" class="table-cast">No Teams</td>
<td rowspan="2">Win with the most caramel to receive prizes and without being the Top 3 with the least caramel at the end of the race to avoid penalty</td>
<td rowspan="2">Haha, Kim Jong-kook, Song Ji-hyo, Jeon So-min and Yang Se-chan <b>Wins</b>
<br>
<span style="font-size: 85%;">Haha, Kim Jong-kook, Song Ji-hyo, Jeon So-min and Yang Se-chan each received an undisclosed amount of traditional market gift coupon. Ji Suk-jin was exempted from the penalty through a game of luck. Yoo Jae-suk and Lee Kwang-soo received water slap on their faces together as a penalty.</span></td>
</tr>
<tr>
<th rowspan="2">537</th>
<td rowspan="2">January 10, 2021
<br>
<span style="font-size: 85%;">(December 21 & 28, 2020)</span></td>
</tr>
<tr>
<td rowspan="2"><i>Planning Intention Race: The Rewriting Running Man</i>
<br>
<span title="Korean-language text"><span lang="ko">(기획 의도 레이스-다시 쓰는 런닝맨)</span></span></td>
<td rowspan="2">Danurigol Theme Park
<br>
<span style="font-size: 85%;">(<a href="/wiki/Cheoin_District" title="Cheoin District">Cheoin District</a>, <a href="/wiki/Yongin" title="Yongin">Yongin</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</span></td>
<td rowspan="2">Win as many missions to increase the chance of winning on the final roulette</td>
<td rowspan="2">Yoo Jae-suk <b>Wins</b>
<br>
<span style="font-size: 85%;">Yoo Jae-suk received <a href="/wiki/South_Korean_won" title="South Korean won">₩</a>400,000 worth of gift vouchers and earned the rights to change the production objective and cast comments on RM's official website.</span></td>
</tr>
<tr>
<th>538</th>
<td>January 17, 2021
<br>
<span style="font-size: 85%;">(December 28, 2020)</span></td>
</tr>
<tr>
<th>539
<br>
<sup id="cite_ref-1" class="reference"><a href="#cite_note-1"><span class="cite-bracket">[</span>a<span class="cite-bracket">]</span></a></sup></th>
<td>January 24, 2021
<br>
<span style="font-size: 85%;">(January 11, 2021)</span></td>
<td><i>Activity Cost Shooter Race: Burning 18 Again</i>
<br>
(활동비 사수 레이스-불타는 18 어게인)</td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Defconn" title="Defconn">Defconn</a>
<br>
<a href="/wiki/Kim_Bo-sung" title="Kim Bo-sung">Kim Bo-sung</a></td>
<td>Hanul Youth Centre
<br>
<span style="font-size: 85%;">(<a href="/w/index.php?title=Hwalcho-dong&action=edit&redlink=1" class="new" title="Hwalcho-dong (page does not exist)">Hwalcho-dong</a><span class="noprint" style="font-size:85%; font-style: normal;"> [<a href="https://ko.wikipedia.org/wiki/%ED%99%9C%EC%B4%88%EB%8F%99" class="extiw" title="ko:활초동">ko</a>]</span>, <a href="/wiki/Hwaseong,_Gyeonggi" title="Hwaseong, Gyeonggi">Hwaseong, Gyeonggi</a>)</span></td>
<td colspan="2">Student Guidance Department
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Lee Kwang-soo, Kim Bo-sung)</span>
<br>
Band Department
<br>
<span style="font-size: 85%;">(Haha, Song Ji-hyo, Yang Se-chan)</span>
<br>
Dance Department
<br>
<span style="font-size: 85%;">(Ji Suk-jin, Kim Jong-kook, Jeon So-min, Defconn)</span></td>
<td><b>Team Mission</b>
<br>
Have the highest amount of team funds at the end of the race to receive a prize
<br>
<b>Individual Mission</b>
<br>
Without being the bottom 3 with the highest penalty points to avoid penalty</td>
<td>Yoo Jae-suk, Haha, Song Ji-hyo, Jeon So-min, Yang Se-chan, Defconn and Kim Bo-sung <b>Wins</b>
<br>
<span style="font-size: 85%;">Dance Department received <a href="/wiki/South_Korean_won" title="South Korean won">₩</a>4,000,000 worth of gift vouchers. Ji Suk-jin, Kim Jong-kook and Lee Kwang-soo, who were the bottom 3 had to write a 400-word apology letter, which will be posted on RM's official <a href="/wiki/Instagram" title="Instagram">Instagram</a> account as a penalty.</span></td>
</tr>
<tr>
<th>540</th>
<td>January 31, 2021
<br>
<span style="font-size: 85%;">(January 18, 2021)</span></td>
<td><i>Uneasy Sisters: My Little Old Brother</i>
<br>
(쉽지 않은 누나들-미운 우리 형제)</td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Cha_Chung-hwa" title="Cha Chung-hwa">Cha Chung-hwa</a>
<br>
<a href="/wiki/Kim_Jae-hwa" title="Kim Jae-hwa">Kim Jae-hwa</a>
<br>
<a href="/wiki/Shin_Dong-mi" title="Shin Dong-mi">Shin Dong-mi</a></td>
<td>Woodpecker Youth Training Center
<br>
<span style="font-size: 85%;">(<a href="/w/index.php?title=Gwangjeok-myeon&action=edit&redlink=1" class="new" title="Gwangjeok-myeon (page does not exist)">Gwangjeok-myeon</a><span class="noprint" style="font-size:85%; font-style: normal;"> [<a href="https://ko.wikipedia.org/wiki/%EA%B4%91%EC%A0%81%EB%A9%B4" class="extiw" title="ko:광적면">ko</a>]</span>, <a href="/wiki/Yangju" title="Yangju">Yangju</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</span></td>
<td colspan="2">Cha's Family
<br>
<span style="font-size: 85%;">(Cha Chang-hwa, Yoo Jae-suk, Ji Suk-jin, Jeon So-min)</span>
<br>
Kim's Family
<br>
<span style="font-size: 85%;">(Kim Jae-hwa, Haha, Lee Kwang-soo)</span>
<br>
Shin's Family
<br>
<span style="font-size: 85%;">(Shin Dong-mi, Kim Jong-kook, Song Ji-hyo, Yang Se-chan)</span></td>
<td>Being the Top 3 with the most money to receive a prize and without having the least money at the end of the race to avoid penalty <sup id="cite_ref-2" class="reference"><a href="#cite_note-2"><span class="cite-bracket">[</span>b<span class="cite-bracket">]</span></a></sup></td>
<td>Yoo Jae-suk, Lee Kwang-soo and Shin Dong-mi <b>Wins</b>
<br>
<span style="font-size: 85%;">Yoo Jae-suk, Lee Kwang-soo and Shin Dong-mi each received a strawberry gift set, which Yoo Jae-suk and Lee Kwang-soo gave theirs to Cha Chang-hwa and Kim Jae-hwa. Haha, Ji Suk-jin and Kim Jae-hwa, who were the bottom 3 had to cook meals for themselves after filming as a penalty.</span></td>
</tr>
<tr>
<th>541
<br>
<sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span class="cite-bracket">[</span>1<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span class="cite-bracket">[</span>2<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup></th>
<td>February 7, 2021
<br>
<span style="font-size: 85%;">(January 25, 2021)</span></td>
<td><i>2021 New Year Trick Race: Take my Bad Luck</i>
<br>
(2021 신년 액땜 레이스-내 불운 가져가)</td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Ahn_Eun-jin" title="Ahn Eun-jin">Ahn Eun-jin</a>
<br>
<a href="/wiki/Bae_Yoon-kyung" title="Bae Yoon-kyung">Bae Yoon-kyung</a>
<br>
<a href="/wiki/Lee_Sang-yi_(actor)" title="Lee Sang-yi (actor)">Lee Sang-yi</a></td>
<td><a href="/wiki/Seoul_Broadcasting_System" title="Seoul Broadcasting System">SBS Tanhyeon-dong Production Center</a>
<br>
<span style="font-size: 85%;">(<a href="/wiki/Ilsan" title="Ilsan">Ilsanseo District</a>, <a href="/wiki/Goyang" title="Goyang">Goyang</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</span></td>
<td><i><b>Need Communication</b></i>
<br>
Yoon-kyung Team
<br>
<span style="font-size: 85%;">(Bae Yoon-kyung, Yoo Jae-suk, Haha, Yang Se-chan)</span>
<br>
Eun-jin Team
<br>
<span style="font-size: 85%;">(Ahn Eun-jin, Ji Suk-jin, Kim Jong-kook, Song Ji-hyo)</span>
<br>
Penalty Men Team
<br>
<span style="font-size: 85%;">(Lee Sang-yi, Lee Kwang-soo, Jeon So-min)</span>
<br>
<i><b>What About Apples</b></i>
<br>
Penalty Men Team
<br>
<span style="font-size: 85%;">(Lee Sang-yi, Yoo Jae-suk, Lee Kwang-soo, Jeon So-min)</span>
<br>
Yoon-kyung Team
<br>
<span style="font-size: 85%;">(Bae Yoon-kyung, Haha, Yang Se-chan)</span>
<br>
Eun-jin Team
<br>
<span style="font-size: 85%;">(Ahn Eun-jin, Ji Suk-jin, Kim Jong-kook, Song Ji-hyo)</span></td>
<td><i><b>Final Mission</b></i>
<br>
Red Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk<sup>P</sup>, Lee Kwang-soo<sup>P</sup>, Jeon So-min<sup>P</sup>, Ahn Eun-jin<sup>P</sup>, Lee Sang-yi<sup>P</sup>)</span>
<br>
Blue Team
<br>
<span style="font-size: 85%;">(Haha, Ji Suk-jin, Kim Jong-kook, Song Ji-hyo, Yang Se-chan, Bae Yoon-kyung)</span></td>
<td>Collect as many mission funds to discard penalty tickets so as to reduce the chances of the ticket number getting chosen through lottery to avoid penalty<sup id="cite_ref-6" class="reference"><a href="#cite_note-6"><span class="cite-bracket">[</span>c<span class="cite-bracket">]</span></a></sup></td>
<td>Kim Jong-kook, Song Ji-hyo, Jeon So-min and Bae Yoon-kyung <b>Wins</b>
<br>
<span style="font-size: 85%;">Yang Se-chan was exempted from the penalty through a game of luck. Haha, Ji Suk-jin and Lee Kwang-soo received water cannon penalty alongside penalty men Yoo Jae-suk, Ahn Eun-jin and Lee Sang-yi, who were grouped in the losing team.</span></td>
</tr>
<tr>
<th>542
<br>
<sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span class="cite-bracket">[</span>4<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span class="cite-bracket">[</span>5<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span class="cite-bracket">[</span>6<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-10" class="reference"><a href="#cite_note-10"><span class="cite-bracket">[</span>7<span class="cite-bracket">]</span></a></sup></th>
<td>February 14, 2021
<br>
<span style="font-size: 85%;">(February 1, 2021)</span></td>
<td><i>2021 Running Man Community Games with Penthouse</i>
<br>
(2021 런닝맨 동네 체전 with 펜트하우스)</td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Ha_Do-kwon" title="Ha Do-kwon">Ha Do-kwon</a>
<br>
<a href="/wiki/Park_Eun-seok" title="Park Eun-seok">Park Eun-seok</a>
<br>
<a href="/wiki/Yoon_Jong-hoon" title="Yoon Jong-hoon">Yoon Jong-hoon</a></td>
<td>Yongin Dream Park Academy
<br>
<span style="font-size: 85%;">(<a href="/wiki/Giheung_District" title="Giheung District">Giheung District</a>, <a href="/wiki/Yongin" title="Yongin">Yongin</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</span></td>
<td colspan="2">Yellow Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Ji Suk-jin, Kim Jong-kook, Yoon Jong-hoon)</span>
<br>
Blue Team
<br>
<span style="font-size: 85%;">(Haha, Jeon So-min, Ha Do-kwon, Park Eun-seok)</span>
<br>
Red Team
<br>
<span style="font-size: 85%;">(Lee Kwang-soo, Song Ji-hyo, Yang Se-chan)</span></td>
<td>Being the Top 3 with the most trophy stamps to receive a prize and without being the bottom place to avoid penalty</td>
<td>Haha, Kim Jong-kook and Song Ji-hyo <b>Wins</b>
<br>
<span style="font-size: 85%;">Haha, who had the most trophy stamps received a Korean beef set, Kim Jong-kook received a rice cake set and Song Ji-hyo received a Korean pork set. Ji Suk-jin, who had the least trophy stamps, chooses Lee Kwang-soo to receive kite flying penalty together.</span></td>
</tr>
<tr>
<th>543</th>
<td>February 21, 2021
<br>
<span style="font-size: 85%;">(February 8, 2021)</span></td>
<td rowspan="2"><i>Running Investment Conference: Masters of Investment</i>
<br>
(런닝투자대회-투자의 귀재들)</td>
<td rowspan="4" style="background: #EEE; color:black; vertical-align: middle; text-align: center;" class="table-cast">No Guests</td>
<td rowspan="2">YBM Academy
<br>
<span style="font-size: 85%;">(<a href="/w/index.php?title=Jeongnam-myeon&action=edit&redlink=1" class="new" title="Jeongnam-myeon (page does not exist)">Jeongnam-myeon</a><span class="noprint" style="font-size:85%; font-style: normal;"> [<a href="https://ko.wikipedia.org/wiki/%EC%A0%95%EB%82%A8%EB%A9%B4" class="extiw" title="ko:정남면">ko</a>]</span>, <a href="/wiki/Hwaseong,_Gyeonggi" title="Hwaseong, Gyeonggi">Hwaseong, Gyeonggi</a>)</span></td>
<td rowspan="2" colspan="2" style="background: #EEE; color:black; vertical-align: middle; text-align: center;" class="table-cast">No Teams</td>
<td rowspan="2">Being the Top 2 with the most <i>R</i> money to receive a prize and without being the bottom place to avoid penalty</td>
<td rowspan="2">Yoo Jae-suk and Yang Se-chan <b>Wins</b>
<br>
<span style="font-size: 85%;">First-placed Yang Se-chan received a 40kg rice bag and second-placed Yoo Jae-suk received a 20kg rice bag. Ji Suk-jin, who had the least <i>R</i> money, had to carry Yoo Jae-suk and Yang Se-chan's rice bags to their van by himself as a penalty.</span>
<table class="wikitable" style="text-align:center">
<caption>Final Standings</caption>
<tbody>
<tr>
<td><b>Rank</b></td>
<td><b>Player</b></td>
</tr>
<tr>
<td bgcolor="98FB98">1</td>
<td>Yang Se-chan</td>
</tr>
<tr>
<td bgcolor="98FB98">2</td>
<td>Yoo Jae-suk</td>
</tr>
<tr>
<td>3</td>
<td>Song Ji-hyo</td>
</tr>
<tr>
<td>4</td>
<td>Kim Jong-kook</td>
</tr>
<tr>
<td>5</td>
<td>Jeon So-min</td>
</tr>
<tr>
<td>6</td>
<td>Haha</td>
</tr>
<tr>
<td>7</td>
<td>Lee Kwang-soo</td>
</tr>
<tr>
<td bgcolor="FFCCCC">8</td>
<td>Ji Suk-jin</td>
</tr>
</tbody>
</table></td>
</tr>
<tr>
<th rowspan="2">544
<br>
<sup id="cite_ref-Ji_Suk-jin's_birthday_11-0" class="reference"><a href="#cite_note-Ji_Suk-jin's_birthday-11"><span class="cite-bracket">[</span>d<span class="cite-bracket">]</span></a></sup></th>
<td rowspan="2">February 28, 2021
<br>
<span style="font-size: 85%;">(February 8 & 9, 2021)</span></td>
</tr>
<tr>
<td><i>Suk-jin's Day: See The Gold Now</i>
<br>
(석진's Day-지금(金) 만나러 갑니다)</td>
<td rowspan="2">Salimchae Korean House
<br>
<span style="font-size: 85%;">(Songchon-dong, <a href="/wiki/Paju" title="Paju">Paju</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</span></td>
<td rowspan="2">Mission Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Haha, Song Ji-hyo, Jeon So-min, Yang Se-chan)</span></td>
<td rowspan="2">Suk-jin Team
<br>
<span style="font-size: 85%;">(Ji Suk-jin, Kim Jong-kook, Lee Kwang-soo)</span></td>
<td rowspan="2">Being the first member to find the hidden gold and avoid penalty</td>
<td rowspan="2">Suk-jin Team <b>Wins</b>
<br>
<span style="font-size: 85%;">Ji Suk-jin, Kim Jong-kook and Lee Kwang-soo each received a golden <i>R</i> ring. Haha and Song Ji-hyo were chosen by Ji Suk-jin to record Ji Suk-jin's birthday celebration video after filming as a penalty, which will be posted on RM's official <a href="/wiki/Instagram" title="Instagram">Instagram</a> account and <a href="/wiki/YouTube" title="YouTube">YouTube</a> channel.</span></td>
</tr>
<tr>
<th>545
<br>
<sup id="cite_ref-Ji_Suk-jin's_birthday_11-1" class="reference"><a href="#cite_note-Ji_Suk-jin's_birthday-11"><span class="cite-bracket">[</span>d<span class="cite-bracket">]</span></a></sup></th>
<td>March 7, 2021
<br>
<span style="font-size: 85%;">(February 9, 2021)</span></td>
<td><i>Room Inside The Village: Find The Gold Now</i>
<br>
(마을 속 집으로-지금(金) 찾으러 갑니다)</td>
</tr>
<tr>
<th>546
<br>
<sup id="cite_ref-12" class="reference"><a href="#cite_note-12"><span class="cite-bracket">[</span>8<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-13" class="reference"><a href="#cite_note-13"><span class="cite-bracket">[</span>9<span class="cite-bracket">]</span></a></sup></th>
<td>March 14, 2021
<br>
<span style="font-size: 85%;">(February 22, 2021)</span></td>
<td><i>Running Dynasty Records: The Appearance of The Evil Spirit</i>
<br>
(런닝 왕조 실록-악령의 등장)</td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Jang_Dong-yoon" title="Jang Dong-yoon">Jang Dong-yoon</a>
<br>
<a href="/wiki/Keum_Sae-rok" title="Keum Sae-rok">Keum Sae-rok</a>
<br>
<a href="/wiki/Kim_Dong-jun" title="Kim Dong-jun">Kim Dong-jun</a> (<a href="/wiki/ZE:A" title="ZE:A">ZE:A</a>)
<br>
<a href="/wiki/Park_Sung-hoon_(actor)" class="mw-redirect" title="Park Sung-hoon (actor)">Park Sung-hoon</a></td>
<td>YBM Academy
<br>
<span style="font-size: 85%;">(<a href="/w/index.php?title=Jeongnam-myeon&action=edit&redlink=1" class="new" title="Jeongnam-myeon (page does not exist)">Jeongnam-myeon</a><span class="noprint" style="font-size:85%; font-style: normal;"> [<a href="https://ko.wikipedia.org/wiki/%EC%A0%95%EB%82%A8%EB%A9%B4" class="extiw" title="ko:정남면">ko</a>]</span>, <a href="/wiki/Hwaseong,_Gyeonggi" title="Hwaseong, Gyeonggi">Hwaseong, Gyeonggi</a>)</span></td>
<td>Human Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Haha, Ji Suk-jin, Kim Jong-kook, Lee Kwang-soo, Song Ji-hyo, Jeon So-min, Yang Se-chan, Kim Dong-jun, Park Sung-hoon)</span></td>
<td>Evil Spirits
<br>
<span style="font-size: 85%;">(Jang Dong-yoon, Keum Sae-rok)</span></td>
<td><b>Human Team's Mission</b>
<br>
Identify and apprehend both of the Evil Spirits through 3 rounds of trial and without having the least rice
<br>
<b>Evil Spirits' Mission</b>
<br>
Finish all of the hidden missions without being apprehend by the Human Team</td>
<td>Evil Spirits <b>Wins</b>
<br>
<span style="font-size: 85%;">Jang Dong-yoon and Keum Sae-rok each received a western fruit and macaron gift set. Lee Kwang-soo, who had the least rice among members in the losing team, received the flogging penalty by Yang Se-chan.</span></td>
</tr>
<tr>
<th>547</th>
<td>March 21, 2021
<br>
<span style="font-size: 85%;">(February 23, 2021)</span></td>
<td><i>Yoo Daesang VS Kim Daesang: The Dignity of Daesang</i>
<br>
(유대상 VS 김대상-대상의 품격)</td>
<td style="background: #EEE; color:black; vertical-align: middle; text-align: center;" class="table-cast">No guests</td>
<td>Sea Garden Pension
<br>
<span style="font-size: 85%;">(<a href="/w/index.php?title=Naega-myeon&action=edit&redlink=1" class="new" title="Naega-myeon (page does not exist)">Naega-myeon</a><span class="noprint" style="font-size:85%; font-style: normal;"> [<a href="https://ko.wikipedia.org/wiki/%EB%82%B4%EA%B0%80%EB%A9%B4" class="extiw" title="ko:내가면">ko</a>]</span>, <a href="/wiki/Ganghwa_County" title="Ganghwa County">Ganghwa County</a>, <a href="/wiki/Incheon" title="Incheon">Incheon</a>)</span></td>
<td colspan="2"><i><b>Two-Body Hide-and-Seek</b></i>
<br>
Yoo Daesang Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Haha, Lee Kwang-soo)</span>
<br>
Kim Daesang Team
<br>
<span style="font-size: 85%;">(Kim Jong-kook, Ji Suk-jin, Song Ji-hyo, Jeon So-min, Yang Se-chan)</span>
<br>
<i><b>Do As I Say</b></i>
<br>
Yoo Daesang Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Haha, Jeon So-min)</span>
<br>
Kim Daesang Team
<br>
<span style="font-size: 85%;">(Kim Jong-kook, Ji Suk-jin, Lee Kwang-soo, Song Ji-hyo, Yang Se-chan)</span>
<br>
<i><b>The Uncanny Quiz</b></i>
<br>
Yoo Daesang Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Haha, Ji Suk-jin, Lee Kwang-soo, Jeon So-min, Yang Se-chan)</span>
<br>
Kim Daesang Team
<br>
<span style="font-size: 85%;">(Kim Jong-kook, Song Ji-hyo)</span></td>
<td>Being the first place with the highest score to receive a prize and without being the bottom two with the lowest score at the end of the race to avoid penalty</td>
<td>Lee Kwang-soo <b>Wins</b>
<br>
<span style="font-size: 85%;">Lee Kwang-soo received a thumbs up trophy and was exempted from the penalty. Kim Jong-kook and Song Ji-hyo, who were the bottom two, chooses Jeon So-min to pick up 3 "R" flags around the mudflat together as a penalty.</span>
<table class="wikitable" style="text-align:center">
<caption>Final Standings</caption>
<tbody>
<tr>
<td><b>Rank</b></td>
<td><b>Player</b></td>
<td><b>Pts</b></td>
</tr>
<tr>
<td bgcolor="98FB98">1</td>
<td>Lee Kwang-soo</td>
<td>28</td>
</tr>
<tr>
<td>2</td>
<td>Yang Se-chan</td>
<td>20</td>
</tr>
<tr>
<td>3</td>
<td>Ji Suk-jin</td>
<td>17</td>
</tr>
<tr>
<td rowspan="2">4</td>
<td>Yoo Jae-suk</td>
<td rowspan="2">15</td>
</tr>
<tr>
<td>Haha</td>
</tr>
<tr>
<td>6</td>
<td>Jeon So-min</td>
<td>4</td>
</tr>
<tr>
<td bgcolor="FFCCCC" rowspan="2">7</td>
<td>Kim Jong-kook</td>
<td rowspan="2">3</td>
</tr>
<tr>
<td>Song Ji-hyo</td>
</tr>
</tbody>
</table></td>
</tr>
<tr>
<th>548
<br>
<sup id="cite_ref-14" class="reference"><a href="#cite_note-14"><span class="cite-bracket">[</span>10<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-15" class="reference"><a href="#cite_note-15"><span class="cite-bracket">[</span>11<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-16" class="reference"><a href="#cite_note-16"><span class="cite-bracket">[</span>12<span class="cite-bracket">]</span></a></sup></th>
<td>March 28, 2021
<br>
<span style="font-size: 85%;">(March 1, 2021)</span></td>
<td><i>Catch The Star of FA: Stars' Contract War</i>
<br>
(FA의 별을 잡아라-별들의 계약전쟁)</td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Jessi_(musician)" title="Jessi (musician)">Jessi</a>
<br>
<a href="/wiki/Jang_Wooyoung" title="Jang Wooyoung">Wooyoung</a> (<a href="/wiki/2PM" title="2PM">2PM</a>)</td>
<td>TBC</td>
<td>Artists
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Kim Jong-kook, Song Ji-hyo, Yang Se-chan, Jessi, Wooyoung)</span>
<br>
CEO-turned-Artist
<br>
<span style="font-size: 85%;">(Ji Suk-jin)</span></td>
<td>CEOs
<br>
<span style="font-size: 85%;">(Haha, Lee Kwang-soo, Jeon So-min)</span></td>
<td><b>Artists' Mission</b>
<br>
Being the Top 4 with the most funds to receive a prize and without being the bottom 3 with the least funds to avoid penalty
<br>
<b>CEOs' Mission</b>
<br>
Being the Top 2 with the most funds to receive a prize and without being the bottom with the least funds to avoid penalty</td>
<td>Yoo Jae-suk, Kim Jong-kook, Lee Kwang-soo, Song Ji-hyo, Jeon So-min and Yang Se-chan <b>Wins</b>
<br>
<span style="font-size: 85%;">Yoo Jae-suk, Kim Jong-kook, Lee Kwang-soo, Song Ji-hyo, Jeon So-min and Yang Se-chan each received a <a href="/wiki/Dekopon" title="Dekopon">Jeju hallabong</a> gift set. Ji Suk-jin, Jessi and Wooyoung, who were the bottom 3 artists each received a penalty of signing 100 autographs alongside Haha, who was the loser among other CEOs.</span></td>
</tr>
<tr>
<th>549
<br>
<sup id="cite_ref-17" class="reference"><a href="#cite_note-17"><span class="cite-bracket">[</span>13<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-18" class="reference"><a href="#cite_note-18"><span class="cite-bracket">[</span>14<span class="cite-bracket">]</span></a></sup></th>
<td>April 4, 2021
<br>
<span style="font-size: 85%;">(March 22, 2021)</span></td>
<td><i>Being an Idol Project: Brave Idol's Day</i>
<br>
(아이들 되기 Project-용감한 아이들의 하루)</td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast">Eunji
<br>
Minyoung
<br>
Yujeong
<br>
Yuna (<a href="/wiki/Brave_Girls" class="mw-redirect" title="Brave Girls">Brave Girls</a>)</td>
<td>SBS Open Hall
<br>
<span style="font-size: 85%;">(<a href="/wiki/Deungchon-dong" title="Deungchon-dong">Deungchon-dong</a>, <a href="/wiki/Gangseo-gu" class="mw-redirect" title="Gangseo-gu">Gangseo-gu</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</span></td>
<td colspan="2">Turtle Team
<br>
<span style="font-size: 85%;">(Yujeong, Yoo Jae-suk, Lee Kwang-soo, Song Ji-hyo)</span>
<br>
Main Vocal Team
<br>
<span style="font-size: 85%;">(Minyoung, Haha, Kim Jong-kook, Jeon So-min)</span>
<br>
Big Eyes Short Hair Team
<br>
<span style="font-size: 85%;">(Eunji, Yuna, Ji Suk-jin, Yang Se-chan)</span></td>
<td>Being the Top 3 with the most trophy medals to receive a prize and without being the bottom 3 with the least trophy medals to avoid penalty</td>
<td>Minyoung, Yujeong and Yuna <b>Wins</b>
<br>
<span style="font-size: 85%;">Minyoung, Yujeong and Yuna each received an idol fatigue-eliminating gift set. Yoo Jae-suk, who had the same number of trophy medals as Haha and Kim Jong-kook, was exempted from the penalty through a game of rock paper scissors. Haha, Kim Jong-kook and Lee Kwang-soo received the shredded paper, water and ink water shower penalty respectively.</span></td>
</tr>
<tr>
<th>550</th>
<td>April 11, 2021
<br>
<span style="font-size: 85%;">(March 15, 2021)</span></td>
<td><i>10 Minutes VS 1 Hour: Sweet Savage's Off Work Road</i>
<br>
(10분 VS 1시간-달콤살벌한 퇴근길)</td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Park_Cho-a" title="Park Cho-a">Choa</a>
<br>
<a href="/wiki/Jo_Se-ho" class="mw-redirect" title="Jo Se-ho">Jo Se-ho</a></td>
<td><a href="/wiki/Dosan_Park" title="Dosan Park">Dosan Park</a>
<br>
<span style="font-size: 85%;">(<a href="/wiki/Sinsa-dong,_Gangnam" title="Sinsa-dong, Gangnam">Sinsa-dong, Gangnam</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</span></td>
<td>Gangnam Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Ji Suk-jin, Kim Jong-kook, Lee Kwang-soo, Choa)</span></td>
<td>Mapo Team
<br>
<span style="font-size: 85%;">(Haha, Song Ji-hyo, Jeon So-min, Yang Se-chan, Jo Se-ho)</span></td>
<td>Win as many missions to increase the chance of winning on the final roulette</td>
<td>Gangnam Team <b>Wins</b>
<br>
<span style="font-size: 85%;">Gangnam Team received rice cake sets. Mapo Team suffered the evening rush hour.</span></td>
</tr>
<tr>
<th>551</th>
<td>April 18, 2021
<br>
<span style="font-size: 85%;">(March 29, 2021)</span></td>
<td rowspan="2"><i>I Also Want to Find an Entertainment Partner</i>
<br>
(<span title="Korean-language text"><span lang="ko-Hang">나도 예능 짝을 찾고 싶다</span></span>)</td>
<td rowspan="2" style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Jung_Hye-in" title="Jung Hye-in">Jung Hye-in</a>
<br>
<a href="/wiki/Lee_Cho-hee" title="Lee Cho-hee">Lee Cho-hee</a>
<br>
<a href="/wiki/Seol_In-ah" title="Seol In-ah">Seol In-ah</a></td>
<td rowspan="2">Adela Korean House
<br>
<span style="font-size: 85%;">(Gaegun-myeon, <a href="/wiki/Yangpyeong_County" title="Yangpyeong County">Yangpyeong County</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</span></td>
<td rowspan="2"><i><b>Crazy Speed Quiz</b></i>
<br>
Seol In-ah Team
<br>
<span style="font-size: 85%;">(Seol In-ah, Yoo Jae-suk, Kim Jong-kook, Jeon So-min)</span>
<br>
Lee Cho-hee Team
<br>
<span style="font-size: 85%;">(Lee Cho-hee, Haha, Song Ji-hyo, Yang Se-chan)</span>
<br>
Jung Hye-in Team
<br>
<span style="font-size: 85%;">(Jung Hye-in, Ji Suk-jin, Lee Kwang-soo)</span></td>
<td rowspan="2" style="background: #EEE; color:black; vertical-align: middle; text-align: center;" class="table-cast"><i><b>Roll Around in Rhythm</b></i>
<br>
No Teams</td>
<td rowspan="2">Match with the opposite gender to avoid penalty
<br>
Additional mission: