-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfobox_template_with_fields.txt
1260 lines (1260 loc) · 344 KB
/
infobox_template_with_fields.txt
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
Infobox3cols child bodyclass bodystyle title titleclass titlestyle above abovestyle aboveclass aboverowclass subheader subheaderstyle subheaderclass subheaderrowclass1 subheader2 subheaderrowclass2 image image1 caption caption1 captionstyle imagestyle imageclass imagerowclass1 image2 caption2 imagerowclass2 headerstyle labelstyle datastyle datastylea datastyleb datastylec extracellstyles header1 label1 data1 data1a data1b data1c class1 rowclass1 header2 rowclass2 label2 data2 class2 data2a data2b class2a class2b class2c data2c below belowstyle belowclass belowrowclass name
Infobox_requested date=October
Infobox_4-polytope Name Image_File Image_Caption Type Schl�fli CD Cell_List Face_List Edge_Count Vertex_Count Vertex_Figure Petrie_Polygon Coxeter_Group Symmetry_Group Dual Property_List Index
Infobox_A1_Grand_Prix_team team_name flag_name country founded seat_holder chairman drivers car_name first_race events championships sprint_wins main_wins poles fastest_laps total_points current_season current_position current_points
Infobox_A1GP_race_summary season race race date circuit city country weather pole_team pole_flag pole_driver pole_time pole_time1 pole_time2 sprint_1st_team sprint_1st_flag sprint_1st_driver sprint_2nd_flag sprint_2nd_team sprint_2nd_driver sprint_3rd_flag sprint_3rd_team sprint_3rd_driver main_1st_team main_1st_flag main_1st_driver main_2nd_flag main_2nd_team main_2nd_driver main_3rd_flag main_3rd_team main_3rd_driver FL_flag FL_team FL_driver FL_time FL_lap FL_mainOrsprint Class_Prac1 Class_Prac1a Class_Prac1b Class_Prac2 Class_Prac3 Class_Qual Class_SRace Class_MRace
Infobox_A1GP_race_summary_v2 country_flag season race race_circuit image_size alt caption race date circuit city country weather sprint_1st_team pole_team pole_flag pole_driver pole_time sprint_1st_flag sprint_1st_driver sprint_2nd_flag sprint_2nd_team sprint_2nd_driver sprint_3rd_flag sprint_3rd_team sprint_3rd_driver FL_flag FL_team FL_driver FL_time FL_lap main_1st_team pole2_flag pole2_team pole2_driver pole2_time main_1st_flag main_1st_driver main_2nd_flag main_2nd_team main_2nd_driver main_3rd_flag main_3rd_team main_3rd_driver FL2_flag FL2_team FL2_driver FL2_time FL2_lap Class_pdf
Infobox_academic_conference title logo caption abbreviation discipline publisher history frequency openaccess website
Infobox_acquisition logo logo_size logo_upright logo_alt logo_caption logo2 logo2_size logo2_upright logo2_alt logo2_caption logo3 logo3_size logo3_upright logo3_alt logo3_caption name initiator target type cost price initiated completed cancelled canceled resulting_entity resulting entity status footnotes
Infobox_administrative_divisions_of_China name type capital subprovincial_cities prefectural_cities autonomous_prefectures county_cities counties autonomous_counties districts special_districts towns townships ethnic_townships subdistricts communities villages footnotes
Infobox_administrative_divisions_of_Russian_federal_subject flag name admin_center_type admin_center_name admin_structure_date district-type_div num_adm_district-type_divs cities_towns num_cities_towns urban-type_settlement num_urban-type_settlements selsoviet-type_div num_selsoviet-type_divs rural_locality_div num_rural_locality_divs num_ZATO municipal_structure_date num_mun_districts num_district-type_divs num_urban_okrugs num_urban_settlements num_rural_settlements
Infobox_advertising name image image_size thumbtime upright caption agency client market language media runtime product released slogan writer director music starring production producer country budget preceded_by followed_by website
Infobox_aerial_lift_line line_color name native_name native_name_lang image image_size alt caption image_map image_map_size image_map_alt image_map_caption pushpin_map pushpin_relief pushpin_map_size pushpin_label pushpin_map_alt pushpin_map_caption mapframe alt_name status character system line_no location country coordinates
Infobox_AFL_biography name image alt caption fullname nickname birth_date yyyy mm dd df
Infobox_AFL_biography/doc name image alt caption fullname nickname birth_date yyyy mm dd df
Infobox_AFL_biography/sandbox name image alt caption fullname nickname birth_date yyyy mm dd df
Infobox_AFL_championship name type image imagesize caption year teams winners count runner matches attendance days michael prevseason nextseason
Infobox_AFL_club_season club season image imagesize caption president coach captain home preseason preseason regularseason regularseason finals finals club best leading highest lowest average club prevseason nextseason
Infobox_AFL_National_Cup name type image imagesize caption year teams winners count runner matches attendance michael
Infobox_ages_of_subjects type subject image imagesize caption date1 date2 parentage prevage nextage subage subage# see see#
Infobox_agricultural_production year animal plant animal plant country1 amount1 country2 amount2 country3 amount3 country4 amount4 country5 amount5 country6 amount6 country7 amount7 country8 amount8 country9 amount9 country10 amount10 world source
Infobox_AIAW_basketball_rankings year gender image image_caption preseason_number_1 aiaw_champions
Infobox_aircraft_occurrence name image image_upright alt caption occurrence_type date 1993 02 24 df=y
Infobox_airline_alliance alliance image logo size image_size image_alt launch_date disbanded full_members connect_partners sponsored_members future_members airports countries annual_passengers annual_RPK fleet key_people alliance_slogan headquarters website
Infobox_airport name ensign ensign_size ensign_alt nativename nativename-a nativename-r image image_size image_alt caption image2 image2_size image2_alt caption2 IATA ICAO FAA TC LID GPS WMO type owner-oper owner operator city-served location opened YYYY MM DD
Infobox_Algerian_names title box_color img_name img_size img_alt img_caption littar_name littar_romanization littar_ipa littar_audio littar_meaning arq_abjad arq_latin arq_ipa arq_audio arq_meaning ber_tifinagh ber_latin ber_acronym ber_abjad ber_ipa ber_audio ber_meaning fr_name fr_ipa fr_audio fr_acronym fr_meaning below
Infobox_algorithm name class image caption data time best-time average-time space
Infobox_All-Ireland_Hurling type year image dates teams connacht munster leinster ulster matches team titles captain manager team2 captain2 manager2 totalgoals totalpoints topscorer previous next
Infobox_alternative_diagnosis name image image_size alt caption pronunciation NCCIH school risks legality MeshID
Infobox_alternative_intervention synonyms image caption pronunciation claims classification school risks legality MeshID other
Infobox_alternative_medicine name image image_size alt caption pronounce classification modality claims topics origyear origprop laterprop seealso MeshID
Infobox_amateur_wrestler name image image_size alt caption full_name weight birth_date birth_place death_date death_place high state college Prep ncaa olympic olympic status medals medals-expand
Infobox_ambulance_company name logo map motto established headquarters jurisdiction total dept. employees volunteers BLS stations ambulances helicopters flycars rescues captain chief asst. captain commissioner CEO president manager director medical revenue yearly website
Infobox_American_championship_car_race_report Country Race Image Caption Date Year Series Official Race_No Season_No Round_No Location Course Course_mi Course_km Distance_laps Distance_mi Distance_km Weather Pole_Driver Pole_Team Pole_Time Pole_Country Fast_Driver Fast_Team Fast_Time Fast_Lap Fast_Country First_Driver First_Team First_Country Second_Driver Second_Team Second_Country Third_Driver Third_Team Third_Country
Infobox_American_championship_car_season year series series_logo series_name races start_date YYYY MM DD
Infobox_American_football_team name logo logosize helmet helmetsize established YYYY MM DD
Infobox_American_football_tournament_season title year yearr other_titles other image imagesize image_size caption date dates season num_teams num matches games title_game_name title stadium location defending_champions defending champions runner-up third fourth semifinal1 semifinal2 conf-runner-up1 conf-runner-up2 attendance player_label player player prevseason nextseason seasonslistnames updated extra_information extra
Infobox_Americas_Cup_competition competition= image= image image caption= defender defender defender defender challenger challenger challenger challenger location= coordinates= dates= rule= winning score=
Infobox_amusement_park name previous_names logo logo_size logo_alt logo_caption image alt image_size caption slogan resort location location2 location3 coordinates LAT LON type:landmark display=inline,title
Infobox_ancient_site name native_name native_name_lang alternate_name image image_size alt caption map map_type map_alt map_caption map_size mapframe altitude_m altitude_ref relief coordinates gbgridref map_dot_label location region type part_of length width area volume diameter circumference height builder material built abandoned epochs cultures dependency_of occupants event discovered excavations archaeologists condition ownership management public_access other_designation website example.com
Infobox_Anglican_province name image caption church bishop cathedral dioceses
Infobox_animal name image image_upright landscape alt caption othername species breed gender birth_name birth_date birth_place death_date death_place death_cause resting_place resting_place_coordinates nationality occupation employer role years_active known_for tricks awards title term predecessor successor owner residence parents mate children weight height appearance namedafter module module2 module3 module4 module5 website footnotes
Infobox_animal_breed name image image_size alt caption status alt_name nickname country distribution standard use male_weight female_weight male_height female_height skin_color egg_color comb crest feather coat type wool_color face_color horn color litter_size life_span fur_type features trait_label trait_data trait1_label trait1_data classification_label classification_data classification1_label classification1_data notes vernacular_name binominal_name trinominal_name
Infobox_anthem title transcription english_title image image_size alt caption prefix type country alt_title en_alt_title alt_title_2 en_alt_title_2 author lyrics_date composer music_date published adopted readopted until successor predecessor sound sound_title
Infobox_antibody Antigen OneIsoformSpecialName OneSource OneGene OneOrgan OneTissue OneCell OneAlso OneDisease OneIgClass OneIgSubclass OneHLA1 OneHLA3 OneHLA2 OneAssociatedGene OneAssociatedProtein OneTcellRestr OneTCellRestr SharedInfo SI_Source SI_Gene SI_Organ SI_Tissue SI_Cell SI_Also SI_Disease SI_Class SI_IgGSubclass SI_HLA1 SI_HLA3 SI_HLA2 SI_TCellRestr SI_Trigger Isoform1 I1_Source I1_Gene I1_Organ I1_Tissue I1_Cell I1_Also I1_Disease I1_Class I1_IgGSubclass I1_HLA1 I1_HLA3 I1_HLA2 I1_TcellRestr I1_TCellRestr I1_Trigger Isoform2 I2_Source I2_Gene I2_Organ I2_Tissue I2_Cell I2_Also I2_Disease I2_Class I2_IgGSubclass I2_HLA1 I2_HLA3 I2_HLA2 I2_TcellRestr I2_TCellRestr Isoform3 I3_Source I3_Gene I3_Organ I3_Tissue I3_Cell I3_Also I3_Disease I3_Class I3_IgGSubclass I3_HLA1 I3_HLA3 I3_HLA2 I3_TcellRestr I3_TCellRestr
Infobox_Antigua_and_Barbuda_place titlestyle abovestyle subheaderstyle above subheader imagestyle captionstyle image caption image2 caption2 headerstyle labelstyle datastyle header1 label1 data1 header2 label2 data2 header3 label3 data3 header4 label4 data4 header5 label5 data5 header6 label6 data6 header7 label7 data7 header8 label8 data8 header9 label9 data9 header10 label10 data10 header11 label11 data11 header12 label12 data12 header13 label13 data13 header14 label14 data14 header15 label15 data15 header16 label16 data16 header17 label17 data17 header18 label18 data18 header19 label19 data19
Infobox_Arabic_name ism ism-ar nasab nasab-ar kunya kunya-ar laqab laqab-ar nisba nisba-ar other birthname
Infobox_Arabic_term title image caption imgwidth arabic arabic_rom native
Infobox_architectural_practice name logo logo_size logo_alt logo_caption image image_size image_alt image_caption caption firm_type architects partners founders principals employees city coordinates
Infobox_archives name image image image logo logo alternative alternative archive creation dissolution affiliation title director collection period employees building architect construction heritage country subdivision subdivision city address coordinates location site
Infobox_Arizona_State_Legislature_district district image image image senate assembly Democratic Republican Independent percent percent percent percent percent percent percent percent population population voting-age registered
Infobox_art_movement name image alt caption yearsactive country majorfigures influences influenced
Infobox_artifact name native_name native_name_lang image image_size alt image_caption image2 image2_size alt2 image2_caption type material size height
Infobox_artificial_intelligence name logo image caption developer user country introduced type purpose language derived_from replaced_by website
Infobox_artwork title other_language_1 other_title_1 other_language_2 other_title_2 wikidata image image_upright alt caption artist year YYYY
Infobox_AseanBL_season ABLyear team team2 misc coach 1c-name 1c-wins 1c-losses 1c-place 1c-playoffs 2c-name 2c-wins 2c-losses 2c-place 2c-playoffs 3c-name 3c-wins 3c-losses 3c-place 3c-playoffs owners television radio pol_team prevseason nextseason
Infobox_Asian_comic_series name image image_size alt caption lang origtitle romanized genre author illustrator publisher publisher_en publisher_other demographic magazine first firstmo last lastmo volumes chapter_list related content altcat ko zh OEL
Infobox_Asian_Games_bid YEAR
Infobox_astronomical_event name image image_size caption alt names event_type class start_time duration detected_by constellation ra dec epoch gal distance redshift source remnant host progenitor progenitor_type b-v notes peak energy website predecessor successor commons embedded
Infobox_Athletics_Championships Colour Name Logo Size Optional Organisers Edition Dates Host Location Stadium Level Type Events Athletes Nations Records Individualprize Teamprize Website Previous Next Games
Infobox_athletics_club name type native_name native_name_lang image image_border image_size alt caption fullname short founded YYYY MM DD df=y
Infobox_athletics_event event image caption category surface WRmen ORmen CRmen ICRmen WRwomen ORwomen CRwomen ICRwomen WRmixed ORmixed CRmixed ICRmixed OCmen OCwomen WCmen WCwomen WICmen WICwomen
Infobox_athletics_race bgcolour image caption date location type iaaf_category distance sponsor beneficiary est last record homepage participants
Infobox_attraction_model name logo logo_width image imagedimensions caption status first_produced installations manufacturer manufacturer2 designer height_ft height_m drop_ft drop_m length_ft length_m speed_mph speed_km/h gforce capacity vehicle_type vehicles riders_per_vehicle rows riders_per_row participants_per_group= audience_capacity duration restraint custom_label_1 custom_value_1 custom_label_2 custom_value_2 custom_label_3 custom_value_3 custom_label_4 custom_value_4 custom_label_5 custom_value_5 custom_label_6 custom_value_6 custom_label_7 custom_value_7 custom_label_8 custom_value_8 rcdb_number
Infobox_audio_drama title cover alt caption publisher series range number featuring writer director producer executive_producer starring music production_code length date YYYY MM DD df=y
Infobox_Audio_over_Ethernet_technology name logo caption manufacturer date switchable routable 10meg 100meg 1gig 5gig 10gig 25gig 40gig agnostic= latency maxchannels samplingrate bitdepth
Infobox_Australian_electorate federal name image image_upright image_alt caption created mp mp-party namesake electors electors_year electors_footnotes area class stategov territorygov coordinates LAT S LON E display=inline,title
Infobox_Australian_football_club clubname image image_name image_size fullname formernames nicknames formernicknames motto clubsong season afterfinals home&away premierships pre-season topgoalkicker bestandfairest founded dissolved colours league owners president chairman ceo coach captain n1th ground capacity ground2 capacity2 ground3 capacity3 formerground span formerground2 span2 formerground3 span3 formerground4 span4 trainingground trainingground2 trainingground3 premierships kit_alt1 pattern_b1 pattern_sh1 pattern_so1 body1 shorts1 socks1 pattern_name1 kit_alt2 pattern_b2 pattern_sh2 pattern_so2 body2 shorts2 socks2 pattern_name2 kit_alt3 pattern_b3 pattern_sh3 pattern_so3 body3 shorts3 socks3 pattern_name3 url jumper current
Infobox_Australian_government name image caption term_start term_end monarch governor-general primeminister deputypm party parties status startreason endreason predecessor successor
Infobox_Australian_rules_football_match year competition match_type image home home_abbr home_colours away away_abbr away_colours home_qtr1 home_qtr2 home_qtr3 home_qtr4 away_qtr1 away_qtr2 away_qtr3 away_qtr4 home_score away_score date stadium attendance favourite umpire coin_toss kick_end prematch anthem halftime postmatch norm_smith jock_mchale jack_oatey_medal hall_of_fame network commentators last next
Infobox_Australian_rules_football_season competition year image imagesize caption date teams premiers count minor mpcount runners-up pre-season pre-season pscount matches attendance highattend top liston brownlow magarey sandover grogan mulrooney neafl lynch nwfl stillwell bestandfairest wooden wscount prevseason nextseason
Infobox_Australian_university_ranking UniName QS_W QS_W_GER THES_W THES_WR ARWU_W USNWR_W LEIDEN_W QS_AUS THES_AUS ARWU_AUS USNWR_AUS LEIDEN_AUS ERA_AUS
Infobox_automobile name image caption manufacturer aka production model_years assembly designer class body_style layout platform related engine NNN cuin L 0 order=flip
Infobox_automobile_platform name image caption manufacturer parent_company aka production assembly class layout body_style vehicles related engine NNNN cuin L 0 abbr=on order=flip
Infobox_aviation_in_region region series image alt caption cs_primary cs_non-primary general_aviation other_public-use military first_flight
Infobox_award name subheader current_awards image image_size image_upright alt caption awarded_for sponsor date YYYY MM DD
Infobox_badminton_event name image size dates YYYY MM DD df=y
Infobox_badminton_player name image image_size alt caption nickname full_name birth_name country birth_date YYYY MM DD
Infobox_badminton_tournament Name Last Last Current Current Logo Logo Bar Founded Editions City Country Venue Circuit Men Men Men Men Women Women Women Women Mixed Mixed Mixed Mixed Prize Web Notes
Infobox_ballet name italic image image_size alt caption native_name native_name_lang choreographer composer librettist based_on premiere YYYY MM DD df=y
Infobox_ballet_company name logo local_name previous_names predecessor founded YYYY MM DD
Infobox_bandy_biography name image image_size alt caption header-color full_name birth_date birth_place death_date death_place height height_m height_cm height_ft height_in position currentclub clubnumber youthyears1 youthclubs1 youthyears2 youthclubs2 youthyears3 youthclubs3 youthyears4 youthclubs4 youthyears5 youthclubs5 youthyears6 youthclubs6 youthyears7 youthclubs7 youthyears8 youthclubs8 years1 clubs1 caps1 goals1 years2 clubs2 caps2 goals2 years3 clubs3 caps3 goals3 years4 clubs4 caps4 goals4 years5 clubs5 caps5 goals5 years6 clubs6 caps6 goals6 years7 clubs7 caps7 goals7 years8 clubs8 caps8 goals8 years9 clubs9 caps9 goals9 years10 clubs10 caps10 goals10 years11 clubs11 caps11 goals11 years12 clubs12 caps12 goals12 years13 clubs13 caps13 goals13 years14 clubs14 caps14 goals14 years15 clubs15 caps15 goals15 years16 clubs16 caps16 goals16 years17 clubs17 caps17 goals17 years18 clubs18 caps18 goals18 years19 clubs19 caps19 goals19 years20 clubs20 caps20 goals20 years21 clubs21 caps21 goals21 years22 clubs22 caps22 goals22 years23 clubs23 caps23 goals23 years24 clubs24 caps24 goals24 years25 clubs25 caps25 goals25 years26 clubs26 caps26 goals26 years27 clubs27 caps27 goals27 years28 clubs28 caps28 goals28 years29 clubs29 caps29 goals29 years30 clubs30 caps30 goals30 years31 clubs31 caps31 goals31 years32 clubs32 caps32 goals32 years33 clubs33 caps33 goals33 years34 clubs34 caps34 goals34 years35 clubs35 caps35 goals35 years36 clubs36 caps36 goals36 years37 clubs37 caps37 goals37 years38 clubs38 caps38 goals3 years39 clubs39 caps39 goals39 totalyears totalcaps totalgoals nationalyears1 nationalteam1 nationalcaps1 nationalgoals1 nationalyears2 nationalteam2 nationalcaps2 nationalgoals2 nationalyears3 nationalteam3 nationalcaps3 nationalgoals3 nationalyears4 nationalteam4 nationalcaps4 nationalgoals4 nationalyears5 nationalteam5 nationalcaps5 nationalgoals5 nationalyears6 nationalteam6 nationalcaps6 nationalgoals6 nationalyears7 nationalteam7 nationalcaps7 nationalgoals7 nationalyears8 nationalteam8 nationalcaps8 nationalgoals8 nationalyears9 nationalteam9 nationalcaps9 nationalgoals9 manageryears1 managerclubs1 manageryears2 managerclubs2 manageryears3 managerclubs3 manageryears4 managerclubs4 manageryears5 managerclubs5 manageryears6 managerclubs6 manageryears7 managerclubs7 manageryears8 managerclubs8 manageryears9 managerclubs9 manageryears10 managerclubs10 manageryears11 managerclubs11 manageryears12 managerclubs12 manageryears13 managerclubs13 manageryears14 managerclubs14 manageryears15 managerclubs15 manageryears16 managerclubs16 manageryears17 managerclubs17 manageryears18 managerclubs18 manageryears19 managerclubs19 manageryears20 managerclubs20 manageryears21 managerclubs21 manageryears22 managerclubs22 manageryears23 managerclubs23 manageryears24 managerclubs24 manageryears25 managerclubs25 manageryears26 managerclubs26 manageryears27 managerclubs27 manageryears28 managerclubs28 manageryears29 managerclubs29 manageryears30 managerclubs30 manageryears31 managerclubs31 manageryears32 managerclubs32 manageryears33 managerclubs33 manageryears34 managerclubs34 manageryears35 managerclubs35 manageryears36 managerclubs36 manageryears37 managerclubs37 manageryears38 managerclubs38 manageryears39 managerclubs39 manageryears40 managerclubs40 medals medals-title medals-expand module club-update nationalteam-update
Infobox_bandy_biography/doc name image image_size alt caption header-color full_name birth_date birth_place death_date death_place height height_m height_cm height_ft height_in position currentclub clubnumber youthyears1 youthclubs1 youthyears2 youthclubs2 youthyears3 youthclubs3 youthyears4 youthclubs4 youthyears5 youthclubs5 youthyears6 youthclubs6 youthyears7 youthclubs7 youthyears8 youthclubs8 years1 clubs1 caps1 goals1 years2 clubs2 caps2 goals2 years3 clubs3 caps3 goals3 years4 clubs4 caps4 goals4 years5 clubs5 caps5 goals5 years6 clubs6 caps6 goals6 years7 clubs7 caps7 goals7 years8 clubs8 caps8 goals8 years9 clubs9 caps9 goals9 years10 clubs10 caps10 goals10 years11 clubs11 caps11 goals11 years12 clubs12 caps12 goals12 years13 clubs13 caps13 goals13 years14 clubs14 caps14 goals14 years15 clubs15 caps15 goals15 years16 clubs16 caps16 goals16 years17 clubs17 caps17 goals17 years18 clubs18 caps18 goals18 years19 clubs19 caps19 goals19 years20 clubs20 caps20 goals20 years21 clubs21 caps21 goals21 years22 clubs22 caps22 goals22 years23 clubs23 caps23 goals23 years24 clubs24 caps24 goals24 years25 clubs25 caps25 goals25 years26 clubs26 caps26 goals26 years27 clubs27 caps27 goals27 years28 clubs28 caps28 goals28 years29 clubs29 caps29 goals29 years30 clubs30 caps30 goals30 years31 clubs31 caps31 goals31 years32 clubs32 caps32 goals32 years33 clubs33 caps33 goals33 years34 clubs34 caps34 goals34 years35 clubs35 caps35 goals35 years36 clubs36 caps36 goals36 years37 clubs37 caps37 goals37 years38 clubs38 caps38 goals3 years39 clubs39 caps39 goals39 totalyears totalcaps totalgoals nationalyears1 nationalteam1 nationalcaps1 nationalgoals1 nationalyears2 nationalteam2 nationalcaps2 nationalgoals2 nationalyears3 nationalteam3 nationalcaps3 nationalgoals3 nationalyears4 nationalteam4 nationalcaps4 nationalgoals4 nationalyears5 nationalteam5 nationalcaps5 nationalgoals5 nationalyears6 nationalteam6 nationalcaps6 nationalgoals6 nationalyears7 nationalteam7 nationalcaps7 nationalgoals7 nationalyears8 nationalteam8 nationalcaps8 nationalgoals8 nationalyears9 nationalteam9 nationalcaps9 nationalgoals9 manageryears1 managerclubs1 manageryears2 managerclubs2 manageryears3 managerclubs3 manageryears4 managerclubs4 manageryears5 managerclubs5 manageryears6 managerclubs6 manageryears7 managerclubs7 manageryears8 managerclubs8 manageryears9 managerclubs9 manageryears10 managerclubs10 manageryears11 managerclubs11 manageryears12 managerclubs12 manageryears13 managerclubs13 manageryears14 managerclubs14 manageryears15 managerclubs15 manageryears16 managerclubs16 manageryears17 managerclubs17 manageryears18 managerclubs18 manageryears19 managerclubs19 manageryears20 managerclubs20 manageryears21 managerclubs21 manageryears22 managerclubs22 manageryears23 managerclubs23 manageryears24 managerclubs24 manageryears25 managerclubs25 manageryears26 managerclubs26 manageryears27 managerclubs27 manageryears28 managerclubs28 manageryears29 managerclubs29 manageryears30 managerclubs30 manageryears31 managerclubs31 manageryears32 managerclubs32 manageryears33 managerclubs33 manageryears34 managerclubs34 manageryears35 managerclubs35 manageryears36 managerclubs36 manageryears37 managerclubs37 manageryears38 managerclubs38 manageryears39 managerclubs39 manageryears40 managerclubs40 medals medals-title medals-expand module club-update nationalteam-update
Infobox_bandy_biography/sandbox name image image_size alt caption header-color full_name birth_date birth_place death_date death_place height height_m height_cm height_ft height_in position currentclub clubnumber youthyears1 youthclubs1 youthyears2 youthclubs2 youthyears3 youthclubs3 youthyears4 youthclubs4 youthyears5 youthclubs5 youthyears6 youthclubs6 youthyears7 youthclubs7 youthyears8 youthclubs8 years1 clubs1 caps1 goals1 years2 clubs2 caps2 goals2 years3 clubs3 caps3 goals3 years4 clubs4 caps4 goals4 years5 clubs5 caps5 goals5 years6 clubs6 caps6 goals6 years7 clubs7 caps7 goals7 years8 clubs8 caps8 goals8 years9 clubs9 caps9 goals9 years10 clubs10 caps10 goals10 years11 clubs11 caps11 goals11 years12 clubs12 caps12 goals12 years13 clubs13 caps13 goals13 years14 clubs14 caps14 goals14 years15 clubs15 caps15 goals15 years16 clubs16 caps16 goals16 years17 clubs17 caps17 goals17 years18 clubs18 caps18 goals18 years19 clubs19 caps19 goals19 years20 clubs20 caps20 goals20 years21 clubs21 caps21 goals21 years22 clubs22 caps22 goals22 years23 clubs23 caps23 goals23 years24 clubs24 caps24 goals24 years25 clubs25 caps25 goals25 years26 clubs26 caps26 goals26 years27 clubs27 caps27 goals27 years28 clubs28 caps28 goals28 years29 clubs29 caps29 goals29 years30 clubs30 caps30 goals30 years31 clubs31 caps31 goals31 years32 clubs32 caps32 goals32 years33 clubs33 caps33 goals33 years34 clubs34 caps34 goals34 years35 clubs35 caps35 goals35 years36 clubs36 caps36 goals36 years37 clubs37 caps37 goals37 years38 clubs38 caps38 goals3 years39 clubs39 caps39 goals39 totalyears totalcaps totalgoals nationalyears1 nationalteam1 nationalcaps1 nationalgoals1 nationalyears2 nationalteam2 nationalcaps2 nationalgoals2 nationalyears3 nationalteam3 nationalcaps3 nationalgoals3 nationalyears4 nationalteam4 nationalcaps4 nationalgoals4 nationalyears5 nationalteam5 nationalcaps5 nationalgoals5 nationalyears6 nationalteam6 nationalcaps6 nationalgoals6 nationalyears7 nationalteam7 nationalcaps7 nationalgoals7 nationalyears8 nationalteam8 nationalcaps8 nationalgoals8 nationalyears9 nationalteam9 nationalcaps9 nationalgoals9 manageryears1 managerclubs1 manageryears2 managerclubs2 manageryears3 managerclubs3 manageryears4 managerclubs4 manageryears5 managerclubs5 manageryears6 managerclubs6 manageryears7 managerclubs7 manageryears8 managerclubs8 manageryears9 managerclubs9 manageryears10 managerclubs10 manageryears11 managerclubs11 manageryears12 managerclubs12 manageryears13 managerclubs13 manageryears14 managerclubs14 manageryears15 managerclubs15 manageryears16 managerclubs16 manageryears17 managerclubs17 manageryears18 managerclubs18 manageryears19 managerclubs19 manageryears20 managerclubs20 manageryears21 managerclubs21 manageryears22 managerclubs22 manageryears23 managerclubs23 manageryears24 managerclubs24 manageryears25 managerclubs25 manageryears26 managerclubs26 manageryears27 managerclubs27 manageryears28 managerclubs28 manageryears29 managerclubs29 manageryears30 managerclubs30 manageryears31 managerclubs31 manageryears32 managerclubs32 manageryears33 managerclubs33 manageryears34 managerclubs34 manageryears35 managerclubs35 manageryears36 managerclubs36 manageryears37 managerclubs37 manageryears38 managerclubs38 manageryears39 managerclubs39 manageryears40 managerclubs40 medals medals-title medals-expand module club-update nationalteam-update
Infobox_bandy_biography/testcases name height
Infobox_banknote denomination country value unit width_mm height_mm weight_g security_features paper_type years_of_printing nature_of_rarity estimated_value obverse obverse_design obverse_designer obverse_design_date reverse reverse_design reverse_designer reverse_design_date
Infobox_baseball_championship_series country year image image_size alt caption champion champion_manager champion_games runnerup runnerup_manager runnerup_games date venue MVP FSA OP MOY umpires HOFers ALCS NLCS television announcers radio_network radio_announcers image2 image_size2 alt2
Infobox_baseball_game year game image image_size image_maxsize image_sizedefault image_upright alt image_title image_link caption visitor top1 top2 top3 top4 top5 top6 top7 top8 top9 visitor_r visitor_h visitor_e visitor_total visitor_association home bot1 bot2 bot3 bot4 bot5 bot6 bot7 bot8 bot9 home_r home_h home_e home_total home_association details date YYYY MM DD
Infobox_Baseball_Hall_of_Fame_ballot new_inductees= BBWAA= Centennial= Special= OTC= Veterans= NLC= CAAB= EEC= GEC= PEC= TGEC= MBEC= GDEC= EBEC= CBEC= CBC= inductees= date= before= after=
Infobox_baseball_league_division_series alds image year champion1 champion1_manager champion1_games runnerup1 runnerup1_manager runnerup1_games champion2 champion2_manager champion2_games runnerup2 runnerup2_manager runnerup2_games date1 date2 television1 announcers1 television2 announcers2 radio1 radio_announcers1 radio2 radio_announcers2 umpires1 umpires2 WC WCS
Infobox_baseball_league_division_series/doc alds image year champion1 champion1_manager champion1_games runnerup1 runnerup1_manager runnerup1_games champion2 champion2_manager champion2_games runnerup2 runnerup2_manager runnerup2_games date1 date2 television1 announcers1 television2 announcers2 radio1 radio_announcers1 radio2 radio_announcers2 umpires1 umpires2 WC WCS
Infobox_baseball_league_division_series/sandbox alds image year champion1 champion1_manager champion1_games runnerup1 runnerup1_manager runnerup1_games champion2 champion2_manager champion2_games runnerup2 runnerup2_manager runnerup2_games date1 date2 television1 announcers1 television2 announcers2 radio1 radio_announcers1 radio2 radio_announcers2 umpires1 umpires2 WC WCS
Infobox_baseball_season_yearly name season image imagesize caption league current_league1 y1 division1 y3 current_league2 y2 division2 y4 ballpark y5 city y6 record divisional_place league_place owners managers general_managers presbo television radio
Infobox_baseball_team name native_name native_name_lang logo logo_size logo_alt cap_logo cap_logo_size cap_logo_alt uniform h_title h_cap h_pattern_cap h_leftarm h_pattern_la h_body h_pattern_b h_rightarm h_pattern_ra h_pants h_pattern_pants h_socks h_pattern_socks a_title a_cap a_pattern_cap a_leftarm a_pattern_la a_body a_pattern_b a_rightarm a_pattern_ra a_pants a_pattern_pants a_socks a_pattern_socks t_title t_cap t_pattern_cap t_leftarm t_pattern_la t_body t_pattern_b t_rightarm t_pattern_ra t_pants t_pattern_pants t_socks t_pattern_socks affiliations league division location ballpark founded folded nickname league_champ_type league_champs division_champ_type division_champs series series_champs series2 series2_champs former_names former_leagues former_ballparks colors mascot season record playoffs berths retired_numbers owner management coach manager gm president_label president media website
Infobox_baseball_team_season year name nickname PreviousName NextName JapanSeries claxton_shield LeagueWin minor_premiership ClimaxBerth PlayoffBerth image image_size alt record W L record=y
Infobox_basketball_association Logo = Badge_size Founded = Folded Headquarters Region = Subregion = Subregion President = Head Head Vice-President = Website =
Infobox_basketball_biography name image alt number team position league birth_date birth_place height_ft height_in weight_lb high_school college draft_year draft_round draft_pick draft_team draft_league career_start years1 team1 highlights bbr bbr_wnba wnba_profile
Infobox_basketball_club name color1 colour1 color2 colour2 color3 colour3 logo nickname league league conference division founded established dissolved folded history arena capacity location colors colours current sponsor media chairman president vice-presidents gm manager coach captain ownership championships conf_champs div_champs season position website 1_title 1_body 1_pattern_b 1_shorts 1_pattern_s 2_title 2_body 2_pattern_b 2_shorts 2_pattern_s
Infobox_basketball_club_season club season image image_size alt caption chrtitle chairman ownertitle owner mgrtitle manager stdtitle stadium league league playoffs league2 league2 playoffs2 cup1 cup1 cup2 cup2 cup3 cup3 cup4 cup4 cup5 cup5 cup6 cup6 cup7 cup7 cup8 cup8 PIR_leader pir_n pir top_scorer ppg_n ppg rebounds_leader rpg_n rpg assists_leader apg_n apg highest lowest average largest largest h_title h_body h_pattern_b h_shorts h_pattern_s a_title a_body a_pattern_b a_shorts a_pattern_s 3_title 3_body 3_pattern_b 3_shorts 3_pattern_s updated prevseason nextseason
Infobox_basketball_final league year image image_size image_alt caption champion champion_coach champion_games runnerup runnerup_coach runnerup_games team_A team_A_coach team_A_games team_B team_B_coach team_B_games country dates num_teams defending MVP HOFers ECF WCF NDF SDF SF PF matches attendance top_scorer ppg updated
Infobox_basketball_Final_Four tourney_name year other_titles logo size alt caption city country arena dates YYYY MM DD df=y
Infobox_basketball_game game_name image visitor home visitor_total home_total visitor_per1 visitor_per2 visitor_per3 visitor_per4 visitor_OT visitor_OT2 visitor_OT3 home_per1 home_per2 home_per3 home_per4 home_OT home_OT2 home_OT3 date officials Alice Bob Charles
Infobox_basketball_league name image pixels formerly organiser founded first folded successor country other fed confed divisions teams feeds promotion relegation levels domest_cup supercup confed_cup champions season most_champs most_appearances top_scorer ceo commissioner president tv website current American/Canadian
Infobox_basketball_league_season title image caption league season dates duration games teams TV regular_season regular_season_link season_champs season_champ_name league_champs league_champ_name minor_champions minor_premiers top_seed continentalcup1 continentalcup1 continentalcup2 continentalcup2 continentalcup3 continentalcup3 continentalcup4 continentalcup4 promoted relegated finals finals_link champions runners_up semifinalists MVP MVP_link MVP_n finals_MVP finals_MVP_link finals_MVP_n playoffs_MVP playoffs_MVP_link playoffs_MVP_n final_four_MVP final_four_MVP_link final_four_MVP_n grand_final_MVP grand_final_MVP_link grand_final_MVP_n award4 award4_winner award4_link award4_n award5 award5_winner award5_link award5_n award6 award6_winner award6_link award6_n award7 award7_winner award7_link award7_n award8 award8_winner award8_link award8_n award9 award9_winner award9_link award9_n top_scorer ppg ppg_n top_scorer_link rebounds_leader rpg rpg_n assists_leader apg apg_n efficiency_leader epg epg_n biggest_home_win biggest_away_win highest_scoring lowest_scoring winning_streak losing_streak highest_attendance lowest_attendance attendance average_attendance seasonslist seasonslistnames prevseason_link prevseason_year altseason_link altseason_year nextseason_link nextseason_year updated extra
Infobox_basketball_league_season/doc title image caption league season dates duration games teams TV regular_season regular_season_link season_champs season_champ_name league_champs league_champ_name minor_champions minor_premiers top_seed continentalcup1 continentalcup1 continentalcup2 continentalcup2 continentalcup3 continentalcup3 continentalcup4 continentalcup4 promoted relegated finals finals_link champions runners_up semifinalists MVP MVP_link MVP_n finals_MVP finals_MVP_link finals_MVP_n playoffs_MVP playoffs_MVP_link playoffs_MVP_n final_four_MVP final_four_MVP_link final_four_MVP_n grand_final_MVP grand_final_MVP_link grand_final_MVP_n award4 award4_winner award4_link award4_n award5 award5_winner award5_link award5_n award6 award6_winner award6_link award6_n award7 award7_winner award7_link award7_n award8 award8_winner award8_link award8_n award9 award9_winner award9_link award9_n top_scorer ppg ppg_n top_scorer_link rebounds_leader rpg rpg_n assists_leader apg apg_n efficiency_leader epg epg_n biggest_home_win biggest_away_win highest_scoring lowest_scoring winning_streak losing_streak highest_attendance lowest_attendance attendance average_attendance seasonslist seasonslistnames prevseason_link prevseason_year altseason_link altseason_year nextseason_link nextseason_year updated extra
Infobox_basketball_tournament_at_games type city year logo size games host venue dates YYYY MM DD
Infobox_basketball_tournament_season title year other_titles image imagesize caption country dates num_teams defending champions runner-up third fourth continentalcup1 continentalcup1 matches attendance top player prevseason nextseason extra updated
Infobox_battery name image caption EtoW XXX ul=Wh upl=kg
Infobox_BBL_season BBLyear <span <span clubname <span <span image color1 color2 color3 championship_win playoff_win cup_win trophy_win wins losses ladder bblcup bbltrophy playoffs cup1 cup1_result coach_n coach captain_n captain arena top_scorer ppg_n ppg rebounds_leader rpg_n rpg assists_leader apg_n apg efficiency_leader epg_n epg prevseason nextseason updated
Infobox_beauty_pageant name image image image caption date presenters hosts entertainment acts theme venue broadcaster director producer owner sponsor entrants placements debuts withdrawals returns winner represented congeniality personality best best photogenic miss award1 award1 award2 award2 opening before next
Infobox_beer_style name image caption origin yeast alcohol color bitterness originalgravity finalgravity maltpercentage
Infobox_Belgian_Football_League_season year image image_caption number_of_teams regular_season playoff_start playoff_end championship_bowl bowl_date championship_location champions_BB champions_FFL champions_LFFAB
Infobox_Bible_chapter name image caption book hbiblepart hbooknum category biblepart booknum previous next
Infobox_Bible_translation title translation_title image image_size image_alt_text image_caption full_name other_names abbreviation language OT_published NT_published complete_bible_published wikisource apocrypha authorship derived_from textual_basis translation_type reading_level revision version_revised version publisher copyright copies_printed religious_affiliation website webpage genesis_1:1-3 john_3:16
Infobox_bilateral_relations title party1 party2 map filetype size mission1 mission2 envoytitle1 envoy1 envoytitle2 envoy2
Infobox_biodatabase title logo description scope organism center laboratory author citation released standard format url download webservice sql sparql webapp standalone license versioning frequency curation bookmark version
Infobox_bird collapsible state pop1 data1 unit lengthm lengthf culmen wing tail tarsus wingspan
Infobox_bird/doc collapsible state pop1 data1 unit lengthm lengthf culmen wing tail tarsus wingspan
Infobox_bird/sandbox collapsible state pop1 data1 unit lengthm lengthf culmen wing tail tarsus wingspan
Infobox_boat_race name image caption type race_area dates period= competitors nations countries= boats sponsor host_city distance media first_race former_names website winner winner_year gold silver bronze previous next
Infobox_body_of_water name
Infobox_body_process name image caption pronounce organisms biological health action stimuli method outcome frequency duration footnote
Infobox_bodybuilder name gender image caption nickname full_name birth_date YYYY MM DD
Infobox_book italic name image image_size border alt caption author audio_read_by title_orig orig_lang_code title_working translator illustrator cover_artist country language series release_number subject genre set_in publisher publisher2 pub_date english_pub_date published media_type pages awards isbn isbn_note oclc dewey congress preceded_by followed_by native_wikisource wikisource notes exclude_cover website
Infobox_book_series name image image_caption books author editors title_orig translator illustrator cover_artist country language discipline genre= publisher pub_date english_pub_date media_type number_of_books list_books oclc preceded followed website
Infobox_border name image image_size alt caption territory1 territory2 length enclaves established establishedreason current currentreason disestablished disestablishedreason treaties notes
Infobox_botanical_product product image caption pronounce plant part origin active uses producers consumers wholesale retail legal_AU legal_BR legal_CA legal_DE legal_UK legal_US legal_UN legal_EU legal_status
Infobox_bottled_water brand logo logo_size logo_alt logo_caption image image_size image_alt image_caption alt caption country market producer introduced discontinued tagline source type ph br ca cl c2 fl li mn mg ni k si na sr s tds website
Infobox_boxer name image image_size image_border alt caption real_name nickname weight height reach nationality birth_name birth_date year month day
Infobox_boxing_match Fight image caption fight location titles fighter1 nickname1 hometown1 purse1 record1 age1 height1 weight1 style1 recognition1 fighter2 nickname2 hometown2 purse2 record2 age2 height2 weight2 style2 recognition2 result
Infobox_boxing_match/doc Fight image caption fight location titles fighter1 nickname1 hometown1 purse1 record1 age1 height1 weight1 style1 recognition1 fighter2 nickname2 hometown2 purse2 record2 age2 height2 weight2 style2 recognition2 result
Infobox_brand name logo logo_upright logo_alt logo_caption image image_upright alt caption producttype currentowner producedby country introduced discontinued related markets previousowners trademarkregistrations ambassadors tagline website module module1 footnotes
Infobox_bridge name native_name native_name_lang image image_size image_upright alt caption coordinates
Infobox_British_Academy_video_games_awards name image caption date site best_game most_wins most_nominations last next
Infobox_British_computerised_railway_ticket_system System image caption Name Usage Stock Manuf Date Machines Windows Total Current Former
Infobox_British_National_Vegetation_Classification_community name fullname image image_size caption alt volume constant rare
Infobox_British_Touring_Car_Championship_record team championships wins podiums poles fastest first first best last last
Infobox_broadcasting_network name logo logo_size logo_alt logo_caption collapsible image image_size image_alt caption type branding country airdate available founded founder motto tvstations tvtransmitters radiostations radiotransmitters market_share endowment revenue net_income licence_area license_area headquarters broadcast_area area nation regions erp owner parent key_people established test_card test_of_transmission launch_date YYYY MM DD df=y
Infobox_Buddha name image image_caption sanskrit_name pali_name burmese_name chinese_name cyrillic_name ilocano_name japanese_name karen_name khmer_name korean_name mongolian_name okinawan_name shan_name sinhala_name tagalog_name thai_name tibetan_name vietnamese_name sinhalese_name veneration attributes shakti preceded_by succeeded_by birth_name birthplace parents
Infobox_Buddhist_term title collapsible image image_size caption en pi pi-Latn sa sa-Latn as as-Latn bn bn-Latn mr mr-Latn my my-Latn zh zh-Hans zh-Hant zh-Latn id ja ja-Hani ja-Kana ja-Latn km km-Latn ko ko-Hani ko-Latn lo lo-Latn ms mnw mnw-Latn mn mn-Latn shn shn-Latn si si-Latn bo bo-Latn ta ta-Latn tl tl-tglg th th-Latn vi vi-Hani pr-Hani
Infobox_bug name image image_size alt caption screenshot screenshot_size screenshot_alt screenshot_caption CVE discovered patched discoverer affected affected used website
Infobox_bullfighting_career name image caption birth_name birth_date birth_place death_date death_place nickname residence sport rank module2 relatives school cuadrilla novillero_date novillero_place alternativa_date alternativa_place alternativa_godfather alternativa_witness confirmacion_date confirmacion_place confirmacion_godfather confirmacion_witness attorney
Infobox_bus_company name logo logo_size logo_alt image image_size alt image_caption parent founded YYYY MM DD
Infobox_bus_line logo logo_width logo_alt number bgcolor titlecolor box_width subheader operatorlogo oplogo_width image image_width image_alt caption system operator garage vehicle livery pvr status open YYYY MM DD df=y
Infobox_business_park name image image_upright alt caption map_type relief map_size map_dot_label map_alt map_caption mapframe location address coordinates opening_date closing_date developer construction_cost manager owner architect engineer number_of_tenants number_of_workers size parking website footnotes
Infobox_business_school_rankings BWg QSUSA USNWRg QSe FTe QSglobal FT
Infobox_cable cable_name cable_logo cable_type fate predecessor successor construction_beginning construction_finished first_traffic design_capacity lit_capacity built_by defunct landings area_served owner homepage footnotes
Infobox_California_State_Legislature_district district chamber image image Democratic Republican NPP percent percent percent percent percent percent percent percent population population voting citizen registered
Infobox_camera_mount name image caption type external_diameter inner_diameter tabs flange connectors introduced replaced discontinued
Infobox_Camogie_All-Ireland year image dates teams team1 captain1 manager1 titles team2 captain2 manager2 munster leinster ulster connacht matches totalgoals totalpoints topscorer poty previous next
Infobox_campground headingcolor name image image_size alt caption logo logo_size logo_alt logo_caption pushpin_map pushpin_label_position pushpin_label pushpin_map_alt coordinates LAT LON type:landmark display=inline,title
Infobox_Canada_electoral_district name province image imagemap caption coordinates coordinates_caption coordinates_date fed-status fed-district-number fed-created fed-abolished fed-election-first fed-election-last fed-rep fed-rep-party prov-status prov-created prov-abolished prov-election-first prov-election-last prov-rep prov-rep-party demo-census-date demo-pop demo-pop-ref demo-electors demo-electors-date demo-electors-ref demo-area demo-area-ref region communities communities-name
Infobox_Canadian_football_game number type image image_caption date stadium city visitor home visitor home visitor home visitor1 visitor2 visitor3 visitor4 home1 home2 home3 home4 MVP MV2 anthem referee coin kick-off halftime attendance network announcers ratings previous next
Infobox_Canadian_Football_League_biography name number team image alt caption birth_date birth_place death_date death_place status import position1 height_ft height_in weight_lb college CIS high_school CFLDraftedYear CFLDraftedRound CFLDraftedPick CFLDraftedTeam NFLDraftedYear NFLDraftedRound NFLDraftedPick NFLDraftedTeam playing_years1 playing_team1 career_highlights CFL NFL
Infobox_Canadian_leadership_election colour party year logo date location replaces winner ballots numcands entryfee spendcap
Infobox_Canadian_legislation short_title type parliament long_title year citation introduced_by territorial_extent si_made_date si_laid_date royal_assent commencement repeal_date replaces primary_legislation amendments related_legislation repealing_legislation= status original_text legislation_history revised_text
Infobox_Canadian_Parliament jurisdiction # type houseimage status term-begin term-end pm ministry pmterm pm2 ministry2 pmterm2 lo loterm lo2 loterm2 party party2 party3 unrecparty1 unrecparty2 sc scterm sc2 scterm2 ghl ghlterm ghl2 ghlterm2 ohl ohlterm ohl2 ohlterm2 sessionbegin sessionend sessionbegin2 sessionend2 sessionbegin3 sessionend3 sessionbegin4 sessionend4 monarch monarchterm 2022-09-08
Infobox_Canadian_university_rankings ARWU_W ARWU_CAN MAC_med MAC_comp MAC_undergrad MAC_rep QS_W QS_N QS_GEUR THES_W THES_N THES_GEUR THES_REP USNWR_GU USNWR_N
Infobox_canal name image image_size alt image_caption map map_size map_alt map_caption pushpin_map pushpin_map_alt pushpin_map_size pushpin_map_relief pushpin_map_caption location country coordinates length_mi length_km lock_length_mi lock_length_km lock_length lock_width_m lock_width_ft len_ft len_m max_boat_length beam_ft beam_m max_boat_beam max_boat_draft min_boat_draft max_boat_air_draft min_boat_air_draft locks current_num_locks original_num_locks current_num_lifts elev_ft elev_m max_elev min_elev_ft min_elev_m min_elev total_rise status navigation_authority original_length_km original_length_mi length_note original_lock_length_km original_lock_length_mi lock_length_note original_lock_width_m original_lock_width_ft lock_width_note lock_width len_in original_boat_length_m original_boat_length_ft original_boat_length_in len_note beam_in original_beam_m original_beam_ft original_beam_in beam_note lock_note elev_note min_elev_note xfield1 xvalue1 former_names modern_name present_owner original_owner engineer other_engineer date_approved date_act date_began date_use date_completed date_extended date_closed date_restored xvalue2 xfield2 direction begin_coord end_coord branch branch_of connects_to start_point original_start start_note end_point original_end end_note xfield3 xvalue3 module routemap routemap_state routemap_name
Infobox_capoeira_technique name meaning aka image image_size caption type parent_style parent_technique child_techniques escapes counters attacks
Infobox_card_game title subtitle image image_size alt image_caption logo logo_size logo_alt logo_caption cardback cardback_size cardback_alt cardback_caption alt_name named_variant designer publisher date yyyy mm dd
Infobox_casino name native_name logo logo_size logo_alt logo_caption image image_size image_alt image_caption pushpin_map pushpin_mapsize pushpin_map_alt pushpin_map_caption pushpin_label_position coordinates
Infobox_caste caste_name country region populated_states languages [[Marathi Marathi]] [[Konkani]]
Infobox_castrum name image image_size alt caption alt_names known_as built_during_reign_of founded abandoned attested_by previous_fortification type robust_struct_material robust_struct_built_during_reign_of robust_struct_built robust_struct_dim1 robust_struct_dim2 robust_struct_area robust_struct_shape robust_struct_thickness= robust_struct_technique= robust_struct_towers weak_struct_material weak_struct_built_during_reign_of weak_struct_built weak_struct_dim1 weak_struct_dim2 weak_struct_area weak_struct_shape weak_struct_thickness weak_struct_technique weak_struct_towers commanders legions cohorts alae classis numberi events province capital_of admin_unit_1 admin_unit_2 limes nearby_water links coordinates
Infobox_Catholic_apparition name full_name image size alt caption map msize malt mcaption location date witness type approval shrine patronage attributes feast_day
Infobox_cattle_breed name image image_size image_alt image_caption status altname
Infobox_cave name other_name photo photo_width photo_alt photo_caption map map_image map_width map_alt map_caption mapframe location land_registry_number= grid_ref_UK grid_ref_Ireland grid_ref coords coords_ref depth length height_variation elevation discovery geology entrance_count entrance_list difficulty hazards access show_cave show_cave_length lighting visitors features survey survey_format website
Infobox_CDL_team_season logo championship_win bg1 bg2 color1 color2 team year record winpct homestand_wins league_place coach gm owner arena playoffs earnings no_prevseason no_nextseason
Infobox_Celts_of_England name image image_size image_upright image_title alt motto map map_size map_upright map_title map_alt capital location rulers
Infobox_cemetery name native_name native_name_lang image image_size alt caption pushpin map_type map_size map_caption mapframe established abandoned closed location country coordinates type style owner size graves interments cremations leases website findagraveid politicalgeo footnotes nrhp embedded
Infobox_census name logo logo_size logo_caption image image_size image_caption previous_year previous_census date next_year next_census region region_type country topic1 topic2 topic3 topic10 authority website participation population percent_change most_populous least_populous additional_label1 additional_data1 additional_label2 additional_data2 additional_label5 additional_data5
Infobox_central_bank name
Infobox_Central_Committee_outline number name previous next image image_upright alt caption start end gs ss trs es rs cms ts chairman chairmen sg ig nopsc nop nos nog departments apparatus full candidates sessionnumber1 sessionstart1 sessionend1 sessionstart2 sessionnumber2 sessionend2 sessionstart3 sessionnumber3 sessionend3 sessionstart4 sessionnumber4 sessionend4 sessionstart5 sessionnumber5 sessionend5 sessionstart6 sessionnumber6 sessionend6 sessionstart7 sessionnumber7 sessionend7 sessionstart8 sessionnumber8 sessionend8
Infobox_certification_mark name image caption image2 caption2 expansion standards_org agency region founded defunct predecessor successor products type legalstatus mandatorysince homepage
Infobox_Champ_Car_driver name image caption nationality birth_name birth_date YYYY MM DD
Infobox_character name series franchise=; image alt caption first_major first_minor first_issue=; first_date first last_major last_minor last_issue= last_date last creator based_on character author
Infobox_checkers_biography name image caption full_name nickname country birth_date birth_place death_date death_place title worldchampion womensworldchampion ranking
Infobox_cheese name image alt caption othernames country region town source pasteurised texture fat protein dimensions weight aging certification commons
Infobox_chemical_analysis name image caption acronym classification analytes manufacturers related hyphenated
Infobox_chess_biography name image image_size caption full_name country birth_date birth_place death_date death_place title worldchampion womensworldchampion ICCFworldchampion yearsactive rating peakrating ranking peakranking FideID show-medals medaltemplates medaltemplates-title module
Infobox_chess_opening openingname
Infobox_Chinese ibox-order title float right none collapse no pic piccap picsize pictooltip alt pic2 piccap2 picsize2 pic2tooltip headercolor name1 t s c l tp p w mi psp myr gr bpmf mps xej zh-dungan sic lj y j sl gd hk mo ci toi gan wuu hsn h phfs poj tl bp buc hhbuc mblmc lmz ouji suz teo hain lizu mc emc lmc oc-b92 oc-bs oc-zz altname c2 t2 s2 l2 tp2 p2 w2 mi2 psp2 my2 gr2 mps2 bpmf2 xej2 zh-dungan2 sic2 y2 j2 sl2 gd2 ci2 toi2 gan2 wuu2 hsn2 h2 phfs2 poj2 buc2 hhbuc2 mblmc2 lmz2 ouji2 suz2 teo2 oc-bs2 oc-zz2 altname3 c3 t3 s3 l3 tp3 p3 w3 mi3 psp3 my3 gr3 mps3 bpmf3 xej3 zh-dungan3 sic3 y3 j3 sl3 gd3 ci3 toi3 gan3 wuu3 hsn3 h3 phfs3 poj3 buc3 hhbuc3 mblmc3 lmz3 ouji3 suz3 teo3 oc-bs3 oc-zz3 altname4 c4 t4 s4 l4 tp4 p4 w4 mi4 psp4 my4 gr4 mps4 bpmf4 xej4 zh-dungan4 sic4 y4 j4 sl4 gd4 ci4 toi4 gan4 wuu4 hsn4 h4 phfs4 poj4 buc4 hhbuc4 mblmc4 lmz4 ouji4 suz4 teo4 oc-bs4 oc-zz4 hangul hanja rr mr northkorea lk cnhangul cnhanja cnrr cnmr cnlk nkhangul nkhanja nkmr nkrr nklk skhangul skhanja skrr skmr sklk kanji kyujitai shinjitai kana hiragana katakana romaji revhep tradhep kunrei nihon tgl ben asm nep pra hin san pli ind lao li khm ki msa mnc mnc_rom mnc_a mnc_v mon mong monr rus rusr tam tha rtgs tib wylie thdl zwpy lhasa uig lu uly uyy sgs usy uipa vie qn hn chuhan chunom lqn zha zha57 sd dungan dungan-xej dungan-han dungan-latin my bi phagspa phagspa-latin tet por lang1_content lang1 lang2_content lang2 lang2_content lang3 lang3_content lang11 lang11_content
Infobox_Chinese_opera_genre name native_name etymology other_names image alt caption origin region instruments topolect troupes shengqiang
Infobox_chipset Table_name Image img_w Caption Codename CPU Socket Process TDP Southbridge Server Multiple Dual Single UnknownServer Desktop Enthusiast Performance Mainstream Value UnknownDesktop Embedded EmbedLineup Date D3D Predecessor Successor
Infobox_choir name image image_size alt caption alias former_name origin founding YYYY MM DD df=y
Infobox_Christian_leader type honorific_prefix name honorific_suffix title image image_size alt caption native_name native_name_lang church archdiocese province metropolis diocese see elected appointed term quashed retired predecessor successor opposed other_post ordination ordained_by consecration consecrated_by cardinal created_cardinal_by rank laicized birth_name birth_date YYYY MM DD
Infobox_chromosome name image alt caption length_bp genes type chr centromere_position ensembl_id entrez_id ncbi_id ucsc_id refseq_id genbank_id
Infobox_circus name image caption circus_name country founder year defunct operator fate ringmaster director traveling tent number winter acts other website
Infobox_Civil_Air_Patrol_Region Region Commander Vice Chief Deputy Director Command Wings Cadets Seniors Total Awards Date Website
Infobox_civilian_attack title partof image image_size image_upright alt caption map map_size map_alt map_caption location target coordinates date YYYY MM DD
Infobox_clan clan native_name gaelic image image_size alt chiefs badge_caption chiefs chiefs war country region region district district ancestry ethnicity founder plant clan animal pipe chiefs image image_arms_size image_arms_alt chiefs chiefs seat historic septs branches Allied Rival kindreds titles last date commander
Infobox_Climax_Series year clcs playoffs stage1champion stage1champion_manager stage1champion_games stage1runnerup stage1runnerup_manager stage1runnerup_games date1 television1 announcers1 radio1 radio_announcers1 umpires1 stage2champion stage2champion_manager stage2champion_games stage2runnerup stage2runnerup_manager stage2runnerup_games date2 television2 announcers2 radio2 radio_announcers2 umpires2 image2 previous_series previous_year next_series next_year
Infobox_Climax_Series/doc year clcs playoffs stage1champion stage1champion_manager stage1champion_games stage1runnerup stage1runnerup_manager stage1runnerup_games date1 television1 announcers1 radio1 radio_announcers1 umpires1 stage2champion stage2champion_manager stage2champion_games stage2runnerup stage2runnerup_manager stage2runnerup_games date2 television2 announcers2 radio2 radio_announcers2 umpires2 image2 previous_series previous_year next_series next_year
Infobox_Climax_Series/sandbox year clcs playoffs stage1champion stage1champion_manager stage1champion_games stage1runnerup stage1runnerup_manager stage1runnerup_games date1 television1 announcers1 radio1 radio_announcers1 umpires1 stage2champion stage2champion_manager stage2champion_games stage2runnerup stage2runnerup_manager stage2runnerup_games date2 television2 announcers2 radio2 radio_announcers2 umpires2 image2 previous_series previous_year next_series next_year
Infobox_climbing_area name alt_name photo photo_width photo_alt photo_caption map map_image map_width map_alt map_caption location nearest_city range coordinates climbing_type height pitches ratings grades rock_type quantity development aspect season elevation ownership access camping classic_climbs stars website
Infobox_climbing_route name photo photo_width photo_caption map map_width map_caption location coords coords_ref climbing_area route_type vertical_gain pitches rating grade bolted_by established_by first_ascent first_free_ascent fastest_ascent
Infobox_clothing_item image_file caption designer year type material on_display_at
Infobox_clothing_type name image_file image_size caption type material location manufacturer url
Infobox_coin Denomination Country Value Unit Mass_g Mass_troy_oz Mass_grain Mass_ounce Mass_special Gold_troy_oz Silver_troy_oz Diameter_mm Diameter_inch Diameter_special Thickness_mm Thickness_inch Thickness_special Edge Orientation Composition Years YYYY
Infobox_collection name image image_caption housed_at curators size funded_by website
Infobox_college_baseball_season title duration no_of_games no_of_teams preseason1 DefendingChampions attendance average_attendance TV tournament_link tournament TourneyDuration ConferenceBids CWSDuration WorldSeries_link WorldSeries WorldSeries_champ WorldSeries_titlecount WorldSeries_runner-up WorldSeries_count WorldSeries_coach WorldSeries_coachcount WorldSeries_MOP MOPTeam prevseason_year nextseason_year
Infobox_college_baseball_team name current logo logo_size founded YYYY
Infobox_college_basketball_team name current logo logo_size university firstseason record athletic_director coach tenure conference division location arena capacity nickname studentsection color1 color2 color3 color4 colorfootnotes hex1 hex2 hex3 hex4 h_pattern_b h_body h_shorts h_pattern_s a_pattern_b a_body a_shorts a_pattern_s 3_pattern_b 3_body 3_shorts 3_pattern_s 4_pattern_b 4_body 4_shorts 4_pattern_s NCAAchampion3 NCAAchampion2 NCAAchampion NCAAfinalfour NCAAeliteeight NCAAsweetsixteen NCAAroundof32 NCAAopeninground NCAAtourneys NAIAchampion NAIArunnerup NAIAsemifinals NAIAquarterfinals NAIAroundof16 NAIAsecondround NAIAtourneys AIAWchampion AIAWrunnerup AIAWfinalfour AIAWeliteeight AIAWsweetsixteen AIAWtourneys conference_tournament conference_season division_season below
Infobox_college_basketball_tournament Type Gender Year Season Image ImageSize ImageUpright Caption Teams FinalFourArena FinalFourCity Champions TitleCount RunnerUp GameCount Semifinal1 FinalFourCount Semifinal2 FinalFourCount2 Coach CoachCount MOP MOPTeam Attendance TopScorer TopScorerTeam TopScorer2 TopScorer2Team Points Canceled PrevYear NextYear
Infobox_college_coach name image alt caption current_title current_team current_conference current_record contract birth_date birth_place death_date death_place alma_mater player_years1 player_team1 player_positions coach_years1 coach_team1 admin_years1 admin_team1 overall_record bowl_record tournament_record championships awards coaching_records CFBHOF_year CFBHOF_id BASKHOF_year BASKHOF_id CBBASKHOF_year CBASEHOF_year WBHOF FIBA_HOF_player uslaxhof_year canlaxhof nllhof medaltemplates show-medals
Infobox_college_cross_country_team name logo logo_size founded university athletic_director coach tenure conference conference_short division location city state stateabb course nickname color1 color2 color3 color4 colorfootnotes hex1 hex2 hex3 hex4 conference_history record men_champ women_champ men_NCAA women_NCAA men_conference_champion women_conference_champion
Infobox_college_fencing_team TeamName CurrentSeason Image ImageSize FirstYear LastYear AthleticDirector HeadCoach HeadCoachYear HCWins HCLosses HCTies OtherStaff stadiums StadiumLink Stadium StadiumBuilt StadCapacity Location League ConferenceLink ConferenceDisplay ConfDivision PastAffiliations ATWins ATLosses ATTies PlayoffApps Playoffs NatlTitles NatlFinalist ConfTitles DivTitles Rivalries AllAmericans uniform FightSong MascotDisplay website
Infobox_college_field_hockey_team team_name current image image_size university conference conference_short division governing_body first_year athletic_director coach coach_year coach_wins coach_losses coach_ties assistant_coaches captains a_captains field capacity surface location studentsection color1 color2 color3 hex1 hex2 hex3 fontcolor fight_song mascot NCAAchampion NCAArunnerup NCAAfrozenfour NCAAtourneys conference_tournament conference_season ivy_championship uniform_image
Infobox_college_football_bowl_game name full_name nickname defunct logo image_size caption stadium previous_stadiums location previous_locations temporary_venue years champ_affiliation conference_tie-ins previous_tie-ins payout sponsors former_names prev_matchup_year prev_matchup_season= prev_matchup_teams prev_matchup_score next_matchup_year next_matchup_season= next_matchup_teams next_matchup_date preceded_by succeeded_by
Infobox_college_football_bowl_season season image image_caption regular_season number_of_bowls all_star_games bowl_start bowl_end championship_bowl championship_location champions bowl_challenge_cup conference1 conference1_teams conference1_wins conference1_losses conference1_ties conference1_ap_poll conference12 conference12_teams conference12_wins conference12_losses conference12_ties conference12_ap_poll Note
Infobox_college_football_bowl_season/doc season image image_caption regular_season number_of_bowls all_star_games bowl_start bowl_end championship_bowl championship_location champions bowl_challenge_cup conference1 conference1_teams conference1_wins conference1_losses conference1_ties conference1_ap_poll conference12 conference12_teams conference12_wins conference12_losses conference12_ties conference12_ap_poll Note
Infobox_college_football_game name year_game_played title_sponsor game_name subheader image caption football_season football_division visitor_name_short visitor_nickname visitor_school home_name_short home_nickname home_school visitor_record visitor_conference home_record home_conference visitor_coach home_coach visitor_ap visitor_coaches visitor_cfp visitor_bcs visitor_bowl_alliance visitor_bowl_coalition home_ap home_coaches home_cfp home_bcs home_bowl_alliance home_bowl_coalition visitor1 visitor2 visitor3 visitor4 visitor5 visitor6 visitor7 visitor8 visitor9 visitor10 visitor11 visitor12 visitor13 home1 home2 home3 home4 home5 home6 home7 home8 home9 home10 home11 home12 home13 date date_game_played stadium city type mvp odds anthem referee halftime attendance payout us_network us_announcers ratings us_network_link us_announcers_link intl_network intl_announcers intl_network_link intl_announcers_link game_link firstgameeverplayed different_previous lastgameeverplayed different_next
Infobox_college_football_player embed name image image_size alt caption school pastschools currentnumber currentposition position class major bowlgames highschool birth_date birth_place death_date death_place height_ft height_in weight_lb highlights CFBHOF_id CFBHOF_year module espn cbs si yahoo rivals
Infobox_college_football_season year type image image_caption number_of_teams preseason_ap regular_season number_of_bowls bowl_start bowl_end championship championship_location champion heisman
Infobox_college_football_team TeamName CurrentSeason Image ImageSize FirstYear YYYY
Infobox_college_golf_team name logo logo_size founded university athletic_director coach coach-tenure mens mens-tenure womens womens-tenure conference division location course par yards nickname color1 color2 color3 hex1 hex2 hex3 NCAAchampion NCAArunnerUp Individualchampion NCAAmatchplay NCAAappearance All-American Conferencechampion Individualconference
Infobox_college_gymnastics_team name logo logo_size founded university athletic_director coach tenure conference division arena capacity nickname color1 color2 color3 fontcolor hex1 hex2 hex3 national_champion fouronthefloor supersix ncaa_regionals= ncaa_tourneys conference_champion
Infobox_college_ice_hockey_team name team_name current image image_size university conference conference_short division sex governing_body font first_year athletic_director coach coach_year coach_wins coach_losses coach_ties assistant_coaches captains a_captains arena location studentsection color1 color2 color3 hex1 hex2 hex3 fontcolor fight_song mascot NCAAchampion NCAArunnerup NCAAfrozenfour NCAAtourneys USportschampion USportstourneys ACHAchampion ACHAtourneys clubchampion clubtourneys NAIAchampion NAIAtourneys conference_tournament conference_season ivy_championship uniform_image
Infobox_college_lacrosse_championship Type Gender Year Image ImageSize Caption Teams FinalFourArena FinalsField FinalFourCity FinalsCity Champions TitleCount RunnerUp GameCount Semifinal1 FinalFourCount1 Semifinal2 FinalFourCount2 Coach CoachCount MOP MOPTeam AttendSemis AttendFinals AttendRef TopScorer TopScorerTeam TopScorer2 TopScorer2Team Goals
Infobox_college_lacrosse_team name logo logo_size caption founded university athletic_director coach tenure other_staff stadium capacity location conference division past_conferences ATWins ATLosses ATTies nickname colors website pre_NCAA NCAA_champion NCAA_runner NCAA_semi NCAA_quarter NCAA_tourney conf_tourney conf_champion division_season
Infobox_college_rifle_team name current logo logo_size founded folded university athletic_director coach tenure conference conference_short division city state stateabb arena capacity nickname NCAAteamgold NCAAteamsilver NCAAteambronze NCAAsmallboregold NCAAsmallboresilver NCAAsmallborebronze NCAAairriflegold NCAAairriflesilver NCAAairriflebronze NCAAtourneys conference_tournament conference_season
Infobox_college_rowing_team name logo logo_size founded university school athletic_director coach tenure conference conference_short division location city stateabb state facility water nickname colors color1 color2 color3 color4 fontcolor hex1 hex2 hex3 hex4 champions NCAA_appearances conference_champion
Infobox_college_sailing_team name logo logo_size founded university athletic_director coach tenure conference conference_short division location city stateabb state venue water nickname colors color1 color2 color3 color4 fontcolor hex1 hex2 hex3 hex4 champions
Infobox_college_ski_team name logo logo_size founded university athletic_director coach tenure association conference conference_short division location homemountain nickname colors color1 color2 color3 color4 hex1 hex2 hex3 hex4 yearsactive NCAAchampion champion USCSAchampion regionalchamp divisionchamp
Infobox_college_soccer_team name current logo logo_size founded folded university athletic_director coach tenure conference conference_short division city state stateabb stadium capacity nickname colors color1 color2 color3 color4 colorfootnotes hex1 hex2 hex3 hex4 pattern_la1 pattern_b1 pattern_ra1 leftarm1 body1 rightarm1 shorts1 pattern_sh1 socks1 pattern_so1 pattern_la2 pattern_b2 pattern_ra2 leftarm2 body2 rightarm2 shorts2 pattern_sh2 socks2 pattern_so2 PreISFA ASHAchampion IFRAchampion ISFAchampion NCAAchampion NCAArunnerup NCAAcollegecup NCAAfinalfour NCAAeliteeight NCAAsweetsixteen NCAAroundof32 NCAAtourneys conference_tournament conference_season
Infobox_college_softball_season title duration no_of_games no_of_teams preseason1 DefendingChampions attendance average_attendance TV tournament_link tournament TourneyDuration ConferenceBids WCWSDuration WCWS_link WCWS WCWSChamp WCWSTitleCount WCWSRunnerUp WCWSCount WCWSCoach WCWSCoachCount WCWSMOP MOPTeam prevseason_year nextseason_year
Infobox_college_softball_team name CurrentSeason logo logo_size founded university athletic_director record coach tenure conference conference_short division location city state stateabb stadium capacity nickname color1 color2 color3 color4 colorfootnotes hex1 hex2 hex3 hex4 national_champion national_champion2 national_champion3 wcws_runnerup wcws wcws2 wcws3 super_regional ncaa_tourneys conference_tournament conference_champion
Infobox_college_squash_school team_name athletics_name logo logo_size University FirstYear HeadCoach tenure Venue Location League ConferenceLink ConferenceDisplay ATWins ATLosses Rivalries AllAmericans Nickname NatlTitles NatlFinalist ConfTitles website
Infobox_college_swim_team name image imagesize caption founded university conference division location city state stateabb coach tenure home nickname color1 color2 color3 color4 colorfootnotes hex1 hex2 hex3 hex4 men's men's women's women's NCAA men's women's conferenceshort footnotes
Infobox_college_tennis_team name logo logo_size founded university athletic_director coach tenure conference conference_short division location city state stateabb stadium nickname color1 color2 color3 color4 colorfootnotes hex1 hex2 hex3 hex4 NCAAchampion NCAArunnerup NCAAsemifinals NCAAquarterfinals NCAAroundof16 NCAAroundof32 NCAAtourneys conference_tournament conference_season
Infobox_college_track_and_field_team name logo logo_size founded university athletic_director coach tenure conference conference_short division location city state stateabb indoortrack outdoortrack nickname color1 color2 color3 color4 colorfootnotes hex1 hex2 hex3 hex4 NCAAindoorchampion NCAAoutdoorchampion IndivIndoorChamp IndivOutdoorChamp NCAAindoortourneys NCAAoutdoortourneys conference_indoor conference_outdoor men_indoor women_indoor men_outdoor women_outdoor
Infobox_college_volleyball_team name logo logo_size founded university athletic_director coach tenure conference conference_short division location city state stateabb arena capacity nickname color1 color2 color3 color4 colorfootnotes hex1 hex2 hex3 hex4 NCAAchampion NCAArunnerup NCAAfinalfour NCAAeliteeight NCAAsweetsixteen NCAAtourneys AIWAregionals conference_tournament conference_season
Infobox_college_water_polo_team name image imagesize caption founded university conference division location city state stateabb coach tenure home nickname color1 color2 color3 color4 colorfootnotes hex1 hex2 hex3 hex4 NCAAchampion NCAAfinalfour NCAAquarterfinal NCAAopeninground NCAAtourneys conference_champions division_season footnotes
Infobox_college_wrestling_team name logo_file logo_width founded university university_ref athletic_director coach tenure conference conference_short conference_ref division division_ref city state state_abbr location location_ref assistant_coach assistant_tenure arena capacity nickname color1 color2 color3 color1hex color2hex color3hex colorfootnotes fight_song fight_song_ref total_team_national_championships ncaa_individual_national_championships ncaa_individual_champions all_americans conference_championships conference_tournament_championships website website_ref
Infobox_color title hex source
Infobox3cols/doc child bodyclass bodystyle title titleclass titlestyle above abovestyle aboveclass aboverowclass subheader subheaderstyle subheaderclass subheaderrowclass1 subheader2 subheaderrowclass2 image image1 caption caption1 captionstyle imagestyle imageclass imagerowclass1 image2 caption2 imagerowclass2 headerstyle labelstyle datastyle datastylea datastyleb datastylec extracellstyles header1 label1 data1 data1a data1b data1c class1 rowclass1 header2 rowclass2 label2 data2 class2 data2a data2b class2a class2b class2c data2c below belowstyle belowclass belowrowclass name
Infobox3cols/sandbox child bodyclass bodystyle title titleclass titlestyle above abovestyle aboveclass aboverowclass subheader subheaderstyle subheaderclass subheaderrowclass1 subheader2 subheaderrowclass2 image image1 caption caption1 captionstyle imagestyle imageclass imagerowclass1 image2 caption2 imagerowclass2 headerstyle labelstyle datastyle datastylea datastyleb datastylec extracellstyles header1 label1 data1 data1a data1b data1c class1 rowclass1 header2 rowclass2 label2 data2 class2 data2a data2b class2a class2b class2c data2c below belowstyle belowclass belowrowclass name
Infobox_combinatorial_classes name notation intro parameters nth_element asymptotic support OGF OGF EGF EGF PGF PGF LS LS BS BS DGF DGF PSGF PSGF
Infobox_comedian pre-nominals name post-nominals image image_size alt caption pseudonym birth_name native_name native_name_lang birth_date birth_place death_date death_place resting_place resting_place_coordinates medium nationality education alma_mater years_active employer genre subject subjects= spouse domestic_partner children parents relatives notable_works memorials signature website footnotes module
Infobox_comet name image caption discovery_ref discoverer discoverery_site discovery_date mpc_name designations orbit_ref epoch observation_arc earliest_precovery_date obs orbit aphelion perihelion semimajor semiminor orbital_circ eccentricity period avg_speed max_speed min_speed inclination asc_node arg_peri long_peri tjup Earth_moid Jupiter_moid physical_ref dimensions mean_diameter mean_radius equatorial_radius polar_radius flattening circumference surface_area volume mass density surface_grav moment_of_inertia_factor escape_velocity sidereal_day rot_velocity rotation axial_tilt right_asc_north_pole declination pole_ecliptic_lat pole_ecliptic_lon albedo spectral_type M1 M2 magnitude last_p next_p b_semimajor b_period
Infobox_comic_strip fgcolor bgcolor title image alt caption author current owner illustrator website status first last altnames syndicate publisher genre language rating preceded followed
Infobox_comics_character character_name image imagesize image_size alt caption publisher debut creators voiced_by first_series first_episode first_comic real_name alter alter_ego full_name full species homeworld alliances affiliations supports aliases powers partners IOM_alter_ego IOM_full_name IOM_alliances IOM_partners IOM_aliases IOM_powers sortkey subcat cat hero villain altcat addcharcat1 addcharcat2 addcharcat3 addcharcat4 addcharcat5 addcharcat6 noimage converted
Infobox_comics_character_and_title character_name image imagesize caption publisher debut creators alter_ego full_name species homeworld alliances partners supports aliases powers title cvr_image cvr_caption cvr_alt schedule format limited ongoing 1shot genre pub_series date 1stishhead 1stishyr 1stishmo endishyr endishmo 1stishhead# 1stishyr# 1stishmo# endishyr# endishmo# issues main_char_team writers artists pencillers inkers letterers colorists editors creative_team_month creative_team_year creators_series CEheader TPB ISBN nonUS cat subcat altcat hero villain sortkey
Infobox_comics_creator name name_nonEN nonUS image image_size alt caption birth_name birth_date birth_place death_date death_place nationality nationality2 area alias notable collaborators awards partner spouse children relatives signature signature_alt module website bodyclass
Infobox_comics_creator_biblio manga name image imagesize alt caption actstart actend pub1 start1 end1 pub2 start2 end2 pub3 start3 end3 pub4 start4 end4 pub5 start5 end5 pub6 start6 end6 noimage
Infobox_comics_nationality name image imagesize caption alt date pub# title# person# series# character# lang# related#
Infobox_comics_organization name image imagesize caption publisher debut debutmo debutyr debuthead debut# debutmo# debutyr# debuthead# creators type business organisation organization team base owners employees members fullroster cat subcat altcat hero villain sortkey
Infobox_company name logo logo_caption logo_upright logo_alt type industry predecessor founded YYYY MM DD
Infobox_computer_hardware name logo logo-size logo_caption image image-size caption invent-date invent-name conn1 via1_1 class-name class1 manuf1 designfirm manufacturer introduced discontinued cost type processor frequency memory slots rom coprocessor connection ports power color dpi speed language weight dimensions
Infobox_computer_hardware_bus name fullname logo image image_size alt caption invent-date invent-name super-name super-date replaces width numdev speed style hotplug external website
Infobox_computer_virus fullname image caption common_name technical_name aliases family classification type subtype isolation_date origin infection_vector author ports_used OS filesize language discontinuation_date
Infobox_computing_device name codename aka logo image caption developer manufacturer family type generation release YYYY MM DD
Infobox_concentration_camp type name image image caption alt location map map map map map map other known location coordinates
Infobox_concert concert_name image caption artist type date venue tour album albums number_of_shows duration support_act support_acts attendance gross website last_concert this_concert next_concert
Infobox_connector name type image image_size image_upright image_alt caption logo logo_size logo_upright logo_alt designer design_date manufacturer production_date superseded superseded_by superseded_by_date weight length diameter width height hotplug daisy_chain external electrical earth maximum_voltage maximum_current audio_signal video_signal data_signal data_bit_width data_bandwidth data_devices data_style cable high_freq physical_connector num_pins pinout_col1_name pinout_col2_name pinout_image pinout_caption pinout_image2 pinout_caption2 pin1 pin1_name pin2 pin2_name pin3 pin3_name pin4 pin4_name pin5 pin5_name pin6 pin6_name pin7 pin7_name pin8 pin8_name pin9 pin9_name pin10 pin10_name pin11 pin11_name pin12 pin12_name pin13 pin13_name pin14 pin14_name pin15 pin15_name pin16 pin16_name pin17 pin17_name pin18 pin18_name pin19 pin19_name pin20 pin20_name pin21 pin21_name pin22 pin22_name pin23 pin23_name pin24 pin24_name pin25 pin25_name pin26 pin26_name pin27 pin27_name pin28 pin28_name pin29 pin29_name pin30 pin30_name pin31 pin31_name pin_custom1_name pin_name_custom1 pin_custom1 pin_custom2_name pin_name_custom2 pin_custom2 pin_custom3_name pin_name_custom3 pin_custom3 pin_custom4_name pin_name_custom4 pin_custom4 pin_custom5_name pin_name_custom5 pin_custom5 pin_custom6_name pin_name_custom6 pin_custom6 pin_custom7_name pin_name_custom7 pin_custom7 pin_custom8_name pin_name_custom8 pin_custom8 pinout_notes
Infobox_connector/doc name type image image_size image_upright image_alt caption logo logo_size logo_upright logo_alt designer design_date manufacturer production_date superseded superseded_by superseded_by_date weight length diameter width height hotplug daisy_chain external electrical earth maximum_voltage maximum_current audio_signal video_signal data_signal data_bit_width data_bandwidth data_devices data_style cable high_freq physical_connector num_pins pinout_col1_name pinout_col2_name pinout_image pinout_caption pinout_image2 pinout_caption2 pin1 pin1_name pin2 pin2_name pin3 pin3_name pin4 pin4_name pin5 pin5_name pin6 pin6_name pin7 pin7_name pin8 pin8_name pin9 pin9_name pin10 pin10_name pin11 pin11_name pin12 pin12_name pin13 pin13_name pin14 pin14_name pin15 pin15_name pin16 pin16_name pin17 pin17_name pin18 pin18_name pin19 pin19_name pin20 pin20_name pin21 pin21_name pin22 pin22_name pin23 pin23_name pin24 pin24_name pin25 pin25_name pin26 pin26_name pin27 pin27_name pin28 pin28_name pin29 pin29_name pin30 pin30_name pin31 pin31_name pin_custom1_name pin_name_custom1 pin_custom1 pin_custom2_name pin_name_custom2 pin_custom2 pin_custom3_name pin_name_custom3 pin_custom3 pin_custom4_name pin_name_custom4 pin_custom4 pin_custom5_name pin_name_custom5 pin_custom5 pin_custom6_name pin_name_custom6 pin_custom6 pin_custom7_name pin_name_custom7 pin_custom7 pin_custom8_name pin_name_custom8 pin_custom8 pinout_notes
Infobox_connector/sandbox name type image image_size image_upright image_alt caption logo logo_size logo_upright logo_alt designer design_date manufacturer production_date superseded superseded_by superseded_by_date weight length diameter width height hotplug daisy_chain external electrical earth maximum_voltage maximum_current audio_signal video_signal data_signal data_bit_width data_bandwidth data_devices data_style cable high_freq physical_connector num_pins pinout_col1_name pinout_col2_name pinout_image pinout_caption pinout_image2 pinout_caption2 pin1 pin1_name pin2 pin2_name pin3 pin3_name pin4 pin4_name pin5 pin5_name pin6 pin6_name pin7 pin7_name pin8 pin8_name pin9 pin9_name pin10 pin10_name pin11 pin11_name pin12 pin12_name pin13 pin13_name pin14 pin14_name pin15 pin15_name pin16 pin16_name pin17 pin17_name pin18 pin18_name pin19 pin19_name pin20 pin20_name pin21 pin21_name pin22 pin22_name pin23 pin23_name pin24 pin24_name pin25 pin25_name pin26 pin26_name pin27 pin27_name pin28 pin28_name pin29 pin29_name pin30 pin30_name pin31 pin31_name pin_custom1_name pin_name_custom1 pin_custom1 pin_custom2_name pin_name_custom2 pin_custom2 pin_custom3_name pin_name_custom3 pin_custom3 pin_custom4_name pin_name_custom4 pin_custom4 pin_custom5_name pin_name_custom5 pin_custom5 pin_custom6_name pin_name_custom6 pin_custom6 pin_custom7_name pin_name_custom7 pin_custom7 pin_custom8_name pin_name_custom8 pin_custom8 pinout_notes
Infobox_constellation name abbreviation genitive pronounce symbolism RA
Infobox_constituency name type constituency_link parl_name map1 map_size image image_size map_entity map_year caption district region population electorate towns future year abolished members seats elects_howmany party local_council next previous
Infobox_constitution document_name image image_alt caption orig_lang_code title_orig jurisdiction subordinate_to date_created date_presented date_ratified date_effective system branches chambers executive courts federalism electoral_college number_entrenchments date_legislature date_first_executive date_first_court date_repealed number_amendments date_last_amended citation location_of_document commissioned writer signers media_type supersedes native_wikisource orig_lang_code wikisource wikisource1 wikisource2 wikisource3 wikisource4 wikisource5 footnotes
Infobox_Continental_Cup Year Sponsor Logo Size Host Arena Dates Attendance NA World In discipline1 NA World discipline2 NA World discipline3 NA World discipline4 NA World discipline5 NA World discipline6 NA World discipline7 NA World discipline8 NA World discipline9 NA World discipline10 NA World
Infobox_Continental_Cup/doc Year Sponsor Logo Size Host Arena Dates Attendance NA World In discipline1 NA World discipline2 NA World discipline3 NA World discipline4 NA World discipline5 NA World discipline6 NA World discipline7 NA World discipline8 NA World discipline9 NA World discipline10 NA World
Infobox_continental_football continent title image caption club african caf cup caf caf Afro-Asian club most top first last
Infobox_control_chart name proposer subgroupsize measurementtype qualitycharacteristictype distribution sizeofshift arl varchart varcenter varupperlimit varlowerlimit varstatistic meanchart meancenter meanlimits meanupperlimit meanlowerlimit meanstatistic
Infobox_country_dance name genre formation difficulty signature tempo character key era choreographer year published_in music_title composer music_collector music_year music_published_in
Infobox_country_deforestation country the_country= image frameless]] caption location forest_type forest_area XX sqmi km2 abbr=on
Infobox_country_demographics place image image_size alt caption size_of_population density growth birth death life life_male life_female fertility infant_mortality net_migration under_18_years age_18�44_years age_45-64_years age_65_years age_0�14_years age_15�64_years total_mf_ratio sr_at_birth sr_under_15 sr_15�64_years sr_65_years_over nation major_ethnic minor_ethnic official spoken footnote
Infobox_country_languages country image image caption official semi-official national unofficial main indigenous regional vernacular minority immigrant foreign sign keyboard keyboard source
Infobox_country_telephone_plan country country_link continent map_image map_caption map_size map_alt regulator plan_membership plan_type nsn_length number_format plan_link plan_date country_calling_code international_prefix trunk_prefix codes_list
Infobox_CPU name hide_subheadings image image_size alt caption launching produced-start produced-end soldby designfirm manuf1 cpuid code slowest fastest slow-unit fast-unit fsb-slowest fsb-fastest fsb-slow-unit fsb-fast-unit hypertransport-slowest hypertransport-fastest hypertransport-slow-unit hypertransport-fast-unit qpi-slowest qpi-fastest qpi-slow-unit qpi-fast-unit dmi-slowest dmi-fastest dmi-slow-unit dmi-fast-unit data-width address-width virtual-width l1cache l2cache l3cache l4cache llcache application size-from size-to microarch arch instructions extensions numinstructions transistors numcores gpu co-processor pack1 sock1 core1 pcode1 model1 brand1 variant predecessor successor support
Infobox_CPU_architecture name image image_size alt caption designer bits introduced version design type encoding branching endianness page extensions open predecessor successor registers gpr fpr vpr
Infobox_CPU_socket name image release-date designed-by manufacturer type formfactors contacts protocol fsb voltage dimensions processors predecessor variant successor memory
Infobox_crater title
Infobox_cricket_club_season club season coach coachtitle captain captaintitle overseas overseastitle ground comp1 comp1 comp2 comp2 most most most most prevseason nextseason
Infobox_cricket_country_season country season tournament1 champions1 tournament2 champions2 tournament3 champions3 tournament4 champions4 tournament5 champions5 tournament6 champions6 tournament7 champions7 tournament8 champions8 tournament9 champions9 wtournament1 wchampions1 wtournament2 wchampions2 wtournament3 wchampions3 wtournament4 wchampions4 wtournament5 wchampions5 wtournament6 wchampions6 prevseason nextseason flagicon
Infobox_cricket_final title other_titles image event team1 team1flag team1score team1overs team1score1 team1overs1 team1score2 team1overs2 team2 team2flag team2score team2overs team2score1 team2overs1 team2score2 team2overs2 rain details date stadium city man_of_the_match man_of_the_match_title umpires attendance previous next
Infobox_cricket_ground ground_name ground nickname logo_image logo_caption image caption country location coordinates map establishment demolished last seating_capacity owner architect contractor operator tenants home county end1 end2 international firsttestdate firsttestyear firsttesthome firsttestaway firsttesthomevar firsttestawayvar lasttestdate lasttestyear lasttesthome lasttestaway lasttesthomevar lasttestawayvar onlytestdate onlytestyear onlytesthome onlytestaway onlytesthomevar onlytestawayvar firstodidate firstodiyear firstodihome firstodiaway firstodihomevar firstodiawayvar lastodidate lastodiyear lastodihome lastodiaway lastodihomevar lastodiawayvar onlyodidate onlyodiyear onlyodihome onlyodiaway onlyodihomevar onlyodiawayvar firstt20idate firstt20iyear firstt20ihome firstt20iaway lastt20idate lastt20iyear lastt20ihome lastt20iaway onlyt20idate onlyt20iyear onlyt20ihome onlyt20iaway firstwtestdate firstwtestyear firstwtesthome firstwtestaway lastwtestdate lastwtestyear lastwtesthome lastwtestaway onlywtestdate onlywtestyear onlywtesthome onlywtestaway firstwodidate firstwodiyear firstwodihome firstwodiaway lastwodidate lastwodiyear lastwodihome lastwodiaway onlywodidate onlywodiyear onlywodihome onlywodiaway firstwt20idate firstwt20iyear firstwt20ihome firstwt20iaway lastwt20idate lastwt20iyear lastwt20ihome lastwt20iaway onlywt20idate onlywt20iyear onlywt20ihome onlywt20iaway year1 club1 year2 club2 year3 club3 year4 club4 year5 club5 year6 club6 year7 club7 year8 club8 date year source
Infobox_cricket_rankings name administrator creation total_teams current cumulative continuous highest updated
Infobox_cricket_season tourney_name year yearr other_titles image size alt caption tournament1 champions1 runnersup1 runs1 wickets1 tournament2 champions2 runnersup2 runs2 wickets2 tournament3 champions3 runnersup3 runs3 wickets3 tournament4 champions4 runnersup4 runs4 wickets4 tournament5 champions5 runnersup5 runs5 wickets5 tournament6 champions6 runnersup6 runs6 wickets6 tournament7 champions7 runnersup7 runs7 wickets7 tournament8 champions8 runnersup8 runs8 wickets8 pca wisden prevseason nextseason
Infobox_cricket_series series= partof= image= caption= date= place= result= player team1= team2= team3= captain1= captain2= captain3= runs1= runs2= runs3= wickets1= wickets2= wickets3= notes= previous= next=
Infobox_cricket_series/doc series= partof= image= caption= date= place= result= player team1= team2= team3= captain1= captain2= captain3= runs1= runs2= runs3= wickets1= wickets2= wickets3= notes= previous= next=
Infobox_cricket_team name team_name alt_name native_name native_name_lang image image_size logo_image alt caption nickname oneday_name t20_name league conference association captain test_captain od_captain t20i_captain 1captain 2captain coach test_coach od_coach chairman batting_coach bowling_coach fielding_coach overseas overseas1 overseas2 owner ceo manager adviser city colours colors founded established dissolved last_match ground home_venue capacity ground2 capacity2 test_status_year first_fc first_fc_year first_fc_venue first_la first_t20 num_titles title1 title1wins title2 title2wins title3 title3wins title4 title4wins title5 title5wins title6 title6wins title7 title7wins title8 title8wins sheffield frc_wins t20_wins ipl_wins clt20_wins bpl_wins psl_wins notable_players icc_status icc_member_year icc_status2 icc_member_year2 icc_status3 icc_member_year3 icc_region WCL_division test_rank test_rank_best odi_rank odi_rank_best t20i_rank t20i_rank_best wodi_rank wodi_rank_best wt20i_rank wt20i_rank_best first_match first_test only_test most_recent_test num_tests test_record num_tests_this_year test_record_this_year wtc_apps wtc_first wtc_best first_odi only_odi most_recent_odi num_odis odi_record num_odis_this_year odi_record_this_year wc_apps wc_first wc_best wcq_apps wcq_first wcq_best first_t20i only_t20i most_recent_t20i num_t20is t20i_record num_t20is_this_year t20i_record_this_year wt20_apps wt20_first wt20_best wt20q_apps wt20q_first wt20q_best first_wmatch first_wtest only_wtest most_recent_wtest num_wtests wtest_record num_wtests_this_year wtest_record_this_year first_wodi only_wodi most_recent_wodi num_wodis wodi_record num_wodis_this_year wodi_record_this_year wwc_apps wwc_first wwc_best wwcq_apps wwcq_first wwcq_best first_wt20i only_wt20i most_recent_wt20i num_wt20is wt20i_record num_wt20is_this_year wt20i_record_this_year wwt20_apps wwt20_first wwt20_best wwt20q_apps wwt20q_first wwt20q_best website h_leftarm h_pattern_la h_body h_pattern_b h_rightarm h_pattern_ra h_pants h_pattern_pants h_title a_leftarm a_leftarm a_pattern_la a_body a_pattern_b a_rightarm a_pattern_ra a_pants a_pattern_pants a_title t_leftarm t_leftarm t_pattern_la t_body t_pattern_b t_rightarm t_pattern_ra t_pants t_pattern_pants t_title current asofdate medal_templates
Infobox_cricket_team/doc name team_name alt_name native_name native_name_lang image image_size logo_image alt caption nickname oneday_name t20_name league conference association captain test_captain od_captain t20i_captain 1captain 2captain coach test_coach od_coach chairman batting_coach bowling_coach fielding_coach overseas overseas1 overseas2 owner ceo manager adviser city colours colors founded established dissolved last_match ground home_venue capacity ground2 capacity2 test_status_year first_fc first_fc_year first_fc_venue first_la first_t20 num_titles title1 title1wins title2 title2wins title3 title3wins title4 title4wins title5 title5wins title6 title6wins title7 title7wins title8 title8wins sheffield frc_wins t20_wins ipl_wins clt20_wins bpl_wins psl_wins notable_players icc_status icc_member_year icc_status2 icc_member_year2 icc_status3 icc_member_year3 icc_region WCL_division test_rank test_rank_best odi_rank odi_rank_best t20i_rank t20i_rank_best wodi_rank wodi_rank_best wt20i_rank wt20i_rank_best first_match first_test only_test most_recent_test num_tests test_record num_tests_this_year test_record_this_year wtc_apps wtc_first wtc_best first_odi only_odi most_recent_odi num_odis odi_record num_odis_this_year odi_record_this_year wc_apps wc_first wc_best wcq_apps wcq_first wcq_best first_t20i only_t20i most_recent_t20i num_t20is t20i_record num_t20is_this_year t20i_record_this_year wt20_apps wt20_first wt20_best wt20q_apps wt20q_first wt20q_best first_wmatch first_wtest only_wtest most_recent_wtest num_wtests wtest_record num_wtests_this_year wtest_record_this_year first_wodi only_wodi most_recent_wodi num_wodis wodi_record num_wodis_this_year wodi_record_this_year wwc_apps wwc_first wwc_best wwcq_apps wwcq_first wwcq_best first_wt20i only_wt20i most_recent_wt20i num_wt20is wt20i_record num_wt20is_this_year wt20i_record_this_year wwt20_apps wwt20_first wwt20_best wwt20q_apps wwt20q_first wwt20q_best website h_leftarm h_pattern_la h_body h_pattern_b h_rightarm h_pattern_ra h_pants h_pattern_pants h_title a_leftarm a_leftarm a_pattern_la a_body a_pattern_b a_rightarm a_pattern_ra a_pants a_pattern_pants a_title t_leftarm t_leftarm t_pattern_la t_body t_pattern_b t_rightarm t_pattern_ra t_pants t_pattern_pants t_title current asofdate medal_templates
Infobox_cricket_team/sandbox name team_name alt_name native_name native_name_lang image image_size logo_image alt caption nickname oneday_name t20_name league conference association captain test_captain od_captain t20i_captain 1captain 2captain coach test_coach od_coach chairman batting_coach bowling_coach fielding_coach overseas overseas1 overseas2 owner ceo manager adviser city colours colors founded established dissolved last_match ground home_venue capacity ground2 capacity2 test_status_year first_fc first_fc_year first_fc_venue first_la first_t20 num_titles title1 title1wins title2 title2wins title3 title3wins title4 title4wins title5 title5wins title6 title6wins title7 title7wins title8 title8wins sheffield frc_wins t20_wins ipl_wins clt20_wins bpl_wins psl_wins notable_players icc_status icc_member_year icc_status2 icc_member_year2 icc_status3 icc_member_year3 icc_region WCL_division test_rank test_rank_best odi_rank odi_rank_best t20i_rank t20i_rank_best wodi_rank wodi_rank_best wt20i_rank wt20i_rank_best first_match first_test only_test most_recent_test num_tests test_record num_tests_this_year test_record_this_year wtc_apps wtc_first wtc_best first_odi only_odi most_recent_odi num_odis odi_record num_odis_this_year odi_record_this_year wc_apps wc_first wc_best wcq_apps wcq_first wcq_best first_t20i only_t20i most_recent_t20i num_t20is t20i_record num_t20is_this_year t20i_record_this_year wt20_apps wt20_first wt20_best wt20q_apps wt20q_first wt20q_best first_wmatch first_wtest only_wtest most_recent_wtest num_wtests wtest_record num_wtests_this_year wtest_record_this_year first_wodi only_wodi most_recent_wodi num_wodis wodi_record num_wodis_this_year wodi_record_this_year wwc_apps wwc_first wwc_best wwcq_apps wwcq_first wwcq_best first_wt20i only_wt20i most_recent_wt20i num_wt20is wt20i_record num_wt20is_this_year wt20i_record_this_year wwt20_apps wwt20_first wwt20_best wwt20q_apps wwt20q_first wwt20q_best website h_leftarm h_pattern_la h_body h_pattern_b h_rightarm h_pattern_ra h_pants h_pattern_pants h_title a_leftarm a_leftarm a_pattern_la a_body a_pattern_b a_rightarm a_pattern_ra a_pants a_pattern_pants a_title t_leftarm t_leftarm t_pattern_la t_body t_pattern_b t_rightarm t_pattern_ra t_pants t_pattern_pants t_title current asofdate medal_templates
Infobox_cricket_tournament name image image_size fromdate YYYY MM DD df=y
Infobox_cricket_tournament_main name image imagesize caption country administrator headquarters cricket first last next tournament participants champions trophyholder most qualification most most most TV website current
Infobox_culinary_career name image caption birth_name birth_date year mo da
Infobox_cultivar name image image_size image_caption image_alt genus species hybrid subspecies variety group cultivar marketing_names breeder origin subdivision
Infobox_cultural_movement name image alt caption yearsactive country majorfigures influences influenced
Infobox_curler name role gender image image_size alt caption other_names birth_name birth_date yyyy mm dd
Infobox_curling_club name native_name image image_size alt caption image2 image2_size alt2 caption2 motto motto_translation location coord arena_name arena_location arena_coord host_name host_location host_coord established founder club_type closed usca_region uswca_region cca_region sheets rock_colors rock_colours website
Infobox_curling_event 1 2 Name Logo Logo Organizer Sponsor Established Abolished Host Current Arena Current Website Notes WCT WCT WCT Purse Current Men's Women's Current Current Current
Infobox_currency name local_name local_name_lang obsolete image_1 image_title_1 image_alt_1 iso_code issuing_authority issuing_authority_website date_of_introduction date_of_introduction_source using_countries inflation_rate inflation_source_date unit symbol nickname plural subunit_ratio_1 1 100
Infobox_custom_computer Logo Image Image_Size Alt Caption Dates Sponsors Operators Location Architecture Power OS Space Memory Storage Speed Cost ChartName ChartPosition ChartDate Purpose Legacy Emulators Website Sources
Infobox_cycling_championship image caption venue date YYYY MM DD
Infobox_cycling_hill_climb name image image_size image_alt caption location start end altitude_m altitude_ft length_m length_ft length_km length_mi max_elevation_m max_elevation_ft gradient maxgradient website url
Infobox_cycling_race name current_event image image_caption date region english localnames nickname discipline competition type organiser director website first XXXX
Infobox_cycling_race_report name series race_no season_no image image_caption image_alt image_size date YYYY MM DD
Infobox_cycling_race_report/doc name series race_no season_no image image_caption image_alt image_size date YYYY MM DD
Infobox_cycling_race_report/sandbox name series race_no season_no image image_caption image_alt image_size date YYYY MM DD
Infobox_cycling_team name image image_size caption current code registered founded disbanded discipline status bicycles components analytics website generalmanager teammanager season oldname kitimage pattern_la1 pattern_b1 pattern_ra1 leftarm1 body1 rightarm1
Infobox_cycling_team_season team season men image image_size image_alt image_caption ucicode status wtrank wrrank series rank chairman owner manager sponsor base bikes groupset onedaywins stageraceoverall stageracestages gtwins wcwins natcwins mostwins bestrider kitimage previous previous2 next
Infobox_cyclist name image image_size caption full_name nickname birth_name birth_date birth_place height weight currentteam discipline role ridertype amateuryears1 amateurteam1 amateuryears2 amateurteam2 proyears1 proteam1 proyears2 proteam2 majorwins medaltemplates show-medals
Infobox_Cyrillic_letter heading image size=120px numeral sound /a/
Infobox_DAB_ensemble name image area frequency airdate closedate owner website map transmitter
Infobox_dance name image alt caption native_name etymology genre signature instruments inventor year origin
Infobox_darts_player name image caption full_name nickname birth_date yyyy mm dd
Infobox_darts_team name
Infobox_darts_tournament tournament_name image image_size alt dates venue location country establishment organisation format prizefund month_played final Current Final
Infobox_data_structure name image alt caption type invented_by invented_year space_avg space_worst search_avg search_worst insert_avg insert_worst delete_avg delete_worst peek_avg peek_worst find_min_avg find_min_worst delete_min_avg delete_min_worst decrease_key_avg decrease_key_worst merge_avg merge_worst
Infobox_data_structure/doc name image alt caption type invented_by invented_year space_avg space_worst search_avg search_worst insert_avg insert_worst delete_avg delete_worst peek_avg peek_worst find_min_avg find_min_worst delete_min_avg delete_min_worst decrease_key_avg decrease_key_worst merge_avg merge_worst
Infobox_data_structure/sandbox name image alt caption type invented_by invented_year space_avg space_worst search_avg search_worst insert_avg insert_worst delete_avg delete_worst peek_avg peek_worst find_min_avg find_min_worst delete_min_avg delete_min_worst decrease_key_avg decrease_key_worst merge_avg merge_worst
Infobox_Daytona_500 Year Details_ref Type Race_No Season_No Image Fulldate YYYY MM DD
Infobox_Daytona_500/doc Year Details_ref Type Race_No Season_No Image Fulldate YYYY MM DD
Infobox_debate name logo_image logo_caption image caption order host date duration venue location participants footage leadmoderator othermoderators transcript fact_checking website
Infobox_deity type name deity_of member_of image alt caption other_names hiero avatar_birth avatar_end Old_Norse script_name script affiliation associate cult_center cult_centre abode abodes planet world mantra mantra weapon weapons battles artifacts artefacts animals symbol symbols adherents height age tree day color colour number consort consorts parents siblings offspring children predecessor successor army mount texts gender Greek_equivalent Roman_equivalent Etruscan_equivalent Christian_equivalent Islamic_equivalent Slavic_equivalent Hinduism_equivalent Canaanite_equivalent Indo-european_equivalent Maya_equivalent Aztec_equivalent equivalent1_type equivalent1 equivalent2_type equivalent2 equivalent3_type equivalent3 equivalent4_type equivalent4 equivalent5_type equivalent5 region ethnic_group festivals nirvana
Infobox_demographics auto_percent type group1 pop1 group2 pop2 group3 pop3 group4 pop4 group5 pop5 group6 pop6 group7 pop7 source
Infobox_demographics/doc auto_percent type group1 pop1 group2 pop2 group3 pop3 group4 pop4 group5 pop5 group6 pop6 group7 pop7 source
Infobox_derecho name image alt image radar radaralt radar date duration= durationref track trackref wind windloc windref windest= windestloc windestref hail hailloc hailref tornadoes torloc torref fscale ef casualties casualtiesref fatalities fatalref damage damageref damagetype dmgtyperef areas areasref worstareas worstareasref series related
Infobox_desalination_plant name image image_size alt caption location_map location_map_width location_map_text location location coordinates
Infobox_detention_facility name image image_size alt caption established dissolved country function activities detainees detainees
Infobox_Deutsche_Tourenwagen_Masters_round_report Country Year Circuit Round_No Season_No Previous_round Next_round Image Caption Location Course_mi Course_km Date_r1 Laps_r1 Pole_driver_country Pole_driver Pole_team Pole_time First_driver_country_r1 First_driver_r1 First_team_r1 Second_driver_country_r1 Second_driver_r1 Second_team_r1 Third_driver_country_r1 Third_driver_r1 Third_team_r1 Fast_driver_country_r1 Fast_driver_r1 Fast_team_r1 Fast_time_r1 Fast_lap_r1 Date_r2 Laps_r2 Pole_driver_r2_country Pole_driver_r2 Pole_team_r2 Pole_time_r2 First_driver_country_r2 First_driver_r2 First_team_r2 Second_driver_country_r2 Second_driver_r2 Second_team_r2 Third_driver_country_r2 Third_driver_r2 Third_team_r2 Fast_driver_country_r2 Fast_driver_r2 Fast_team_r2 Fast_time_r2 Fast_lap_r2
Infobox_Deutsche_Tourenwagen_Masters_round_report/doc Country Year Circuit Round_No Season_No Previous_round Next_round Image Caption Location Course_mi Course_km Date_r1 Laps_r1 Pole_driver_country Pole_driver Pole_team Pole_time First_driver_country_r1 First_driver_r1 First_team_r1 Second_driver_country_r1 Second_driver_r1 Second_team_r1 Third_driver_country_r1 Third_driver_r1 Third_team_r1 Fast_driver_country_r1 Fast_driver_r1 Fast_team_r1 Fast_time_r1 Fast_lap_r1 Date_r2 Laps_r2 Pole_driver_r2_country Pole_driver_r2 Pole_team_r2 Pole_time_r2 First_driver_country_r2 First_driver_r2 First_team_r2 Second_driver_country_r2 Second_driver_r2 Second_team_r2 Third_driver_country_r2 Third_driver_r2 Third_team_r2 Fast_driver_country_r2 Fast_driver_r2 Fast_team_r2 Fast_time_r2 Fast_lap_r2
Infobox_diagnostic name
Infobox_DIN NR Area rule Overview year ISO
Infobox_diocese jurisdiction name latin local titleoverride archbishopric bishopric border image image_size image_alt caption coat coat_size coat_alt coat_caption flag flag_size flag_alt incumbent incumbent_note style country territory episcopal ecclesiastical province residence metropolitan archdeaconries deaneries subdivisions headquarters coordinates
Infobox_disc_golfer name image image_size caption full_name nickname birth_date YYYY MM DD
Infobox_Disney_resort name logo_width image imagedimensions caption location type category opendate closedate theme sections roomnumber suites operator greenlodge free_label free_label1 free_label2 free_label3 free_label4 free_label5 website
Infobox_distillery name type logo logo_size logo_alt logo_caption image image_size image_alt alt= image_caption caption= location coordinates LAT LON region:GB_type:landmark display=inline,title
Infobox_distributed_computing_project name logo logo_alt logo_caption screenshot screenshot_alt screenshot_caption author developer released discontinued latest latest frequently latest latest status goal software funding programming operating platform size language genre license licence standard as performance active total active total website
Infobox_dive_site name photo photo_width photo_caption map map_width map_caption location coords coords_ref waterbody nearest_land dive_type Open-water]], Wreck]], Altitude]], depth_range 10 to 100 ft m abbr=on
Infobox_diving_equipment name image alt caption acronym other_names uses inventor manufacturer model related
Infobox_docks name image caption location coordinates LAT LON display=inline,title
Infobox_Doctor_Who_episode number serial_name show quotes type type image caption image_size alt doctor doctors companion companions cast doctor guests director writer based_on
Infobox_document document_name image image_size image_alt caption image2 image2_size image2_alt caption2 orig_lang_code title_orig date_created date_presented date_ratified date_effective date_repeal date_superseded location_of_document commissioned writer signers media_type subject purpose official_website wikisource wikisource1 wikisource2 wikisource3 wikisource4 wikisource5
Infobox_dog_breed name image image_alt image_caption image2 image_alt2 image_caption2 altname nickname stock country distribution height maleheight femaleheight weight maleweight femaleweight coat colour color litter_size life_span kc_name kc_std kc2_name kc2_std fcistd notrecognised notrecognized extinct note
Infobox_dog_breed/doc name image image_alt image_caption image2 image_alt2 image_caption2 altname nickname stock country distribution height maleheight femaleheight weight maleweight femaleweight coat colour color litter_size life_span kc_name kc_std kc2_name kc2_std fcistd notrecognised notrecognized extinct note
Infobox_dog_breed/sandbox name image image_alt image_caption image2 image_alt2 image_caption2 altname nickname stock country distribution height maleheight femaleheight weight maleweight femaleweight coat colour color litter_size life_span kc_name kc_std kc2_name kc2_std fcistd notrecognised notrecognized extinct note
Infobox_donkey name image image_size image_alt image_caption status altname Baudet Poitevin
Infobox_Double_Wintersport_World_Cup title= competition1= competition1men= competition1ladies= competition2= competition2men= competition2ladies= competition3= competition3men= competition3ladies= competition4= competition4men= competition4ladies= competition5= competition5men= competition5ladies= competition6= competition6men= competition6ladies= competition7= competition7men= competition7ladies= competition8= competition8men= competition8ladies= competition9= competition9men= competition9ladies= mixedcompetition1= mixedcompetition1both= stageevent1= stageevent1men= stageevent1ladies= stageevent2= stageevent2men= stageevent2ladies= stageevent3= stageevent3men= stageevent3ladies= menlocations= ladieslocations= menseason= ladiesseason= menindividual= ladiesindividual= teammen= teamladies= relaymmen= relayladies= mixedmen= mixedladies= cancelledmen= cancelledladies= rescheduledmen= rescheduledladies= nationsmen= nationsladies= skijumpersmen= skijumpersladies= previous= next=
Infobox_Double_Wintersport_World_Cup/doc title= competition1= competition1men= competition1ladies= competition2= competition2men= competition2ladies= competition3= competition3men= competition3ladies= competition4= competition4men= competition4ladies= competition5= competition5men= competition5ladies= competition6= competition6men= competition6ladies= competition7= competition7men= competition7ladies= competition8= competition8men= competition8ladies= competition9= competition9men= competition9ladies= mixedcompetition1= mixedcompetition1both= stageevent1= stageevent1men= stageevent1ladies= stageevent2= stageevent2men= stageevent2ladies= stageevent3= stageevent3men= stageevent3ladies= menlocations= ladieslocations= menseason= ladiesseason= menindividual= ladiesindividual= teammen= teamladies= relaymmen= relayladies= mixedmen= mixedladies= cancelledmen= cancelledladies= rescheduledmen= rescheduledladies= nationsmen= nationsladies= skijumpersmen= skijumpersladies= previous= next=
Infobox_drink name image image_size image_alt caption type abv proof manufacturer distributor origin introduced discontinued colour flavour ingredients variants related website region
Infobox_drug_class Name Image Alt Caption Pronounce Synonyms Use ATC_prefix Mode_of_action Mechanism_of_action Biological_target Chemical_class Drugs.com drug-class ?
Infobox_drug_mechanism Name Image Alt Caption Use MOA_text Biological_target ATC_prefix ATC_suffix PDB_ligand PDB_complex
Infobox_Dungeons_%26_Dragons_module italic module_title module_image image_caption module_code tsr_product_code module_rules module_character_levels module_campaign module_lead_designers module_authors module_first_published pages isbn series
Infobox_early_American_football_team_season team year image image_size image_alt caption bg_color text_color border_color champion league short_league record league_record league_place owner chairman president manager coach captain field previous next
Infobox_earthquake name image alt caption map map_alt map_caption pushpin_map map2 pre-1900 timestamp isc-event anss-url local-date YYYY MM DD
Infobox_economy country image image_size caption currency fixed year organs group population gdp gdp growth per per sectors components inflation bankrate poverty risk gini hdi cpi labor occupations unemployment average average consumption gfcf savings yield pmi industries edbr exports export-goods export-partners imports import-goods import-partners FDI current gross NIIP debt balance revenue expenses aid credit reserves cianame spelling usebelowbox presentUS$asdefault
Infobox_ecoregion name image image_size image_alt caption map map_size map_alt map_caption biogeographic_realm biome animals bird_species mammal_species border borders area country countries state region_type elevation coordinates geology seas rivers climate soil conservation global200 habitat_loss habitat_loss_ref protected protected_ref embedded
Infobox_ecumenical_council council_name image imagewidth imagealttext caption council_date accepted_by previous next convoked_by president presided_by attendance topics documents location
Infobox_effects_unit name = image = image_size = image_caption = brand = manufacturer = distributor = dates = price = effects_type = hardware = bypass = loops = polyphony = timbrality = memory = oscillator = filter = attenuator = lfo = pedal_control = ext_control = inputs = outputs =
Infobox_Egyptian_dignitary Name Style Image Alt Caption Predecessor Successor Dynasty Pharaoh Father Mother Siblings Wife Children Burial
Infobox_election_campaign name logo logo_upright logo_alt campaigned_for candidate affiliation status headquarters key_people receipts slogan chant website
Infobox_electricity_sector country image imagesize imagecaption coverage continuity demand demandyear capacity capacityyear operating production productionyear exports exportsyear imports importsyear fossilshare renewableshare greenhouse greenhouseyear use useyear distlosses distlossesyear translosses translossesyear tdlosses tdlossesyear residential residentialyear industrial industrialyear agriculture agricultureyear commercialpublic commercialpublicyear commercial commercialyear public publicyear traction tractionyear rural ruralyear rtariff rtariffyear itariff itariffyear ctariff ctariffyear investment investmentyear selffinance selffinanceyear governmentfinance governmentfinanceyear privatefinance privatefinanceyear unbundling privategen privatetrans privatedist largeusers residentialusers providers transmission regulation policy renewableenergy environment law renewablelaw cdm
Infobox_electrolysis name electrolysisimage Width Caption electrolysistype membranemat bppmat acatalyst ccatalyst aptl cptl celltemp cellpress cellare curdens cellvolt powdens ploadrng specengcomstack specengcomsys cellvolteff h2prod lifetimestack degrat syslife
Infobox_electronic_component name image caption type working_principle invented first_produced pins symbol symbol_caption
Infobox_electronic_payment name image logo alt caption native_name longname shortname othername_1 othername_2 othername_3 location launched discontinued technology_1 technology_2 technology_3 generation operator manager currency maximum_credit minimum_credit stored_value credit_expiry automatic_recharge unlimited_use service_1 service_12 sales_location1 sales_location5 variant_1 variant_6 homepage
Infobox_emblem name image alt image_width caption middle middle_width middle_caption lesser lesser_alt lesser_width lesser_caption image2 image2_alt image2_width image2_caption image3 image3_alt image3_width image3_caption armiger year_adopted until crest torse shield supporter supporters compartment motto orders badge other_elements earlier_versions use notes
Infobox_EN_Standard_Details Reference Type Status title Committee Work_Item_Number Directives Mandate Citation_in_OJEU CE_marking Normative_reference
Infobox_encryption_method name image 280px center]] caption designers publish derived Square]] derived Anubis]], Grand related key block structure rounds cryptanalysis
Infobox_engine name image image_size alt caption manufacturer designer aka production configuration displacement bore stroke block head valvetrain timing compression idle redline operating supercharger turbocharger turboboostpressure fuelsystem management fueltype oilsystem coolingsystem power specpower torque length width height diameter weight emissions emissions predecessor successor test
Infobox_engineering_career discipline institutions practice_name employer significant_projects significant_design significant_advance significant_awards
Infobox_England_and_Wales_ward name council map1 map2 map_entity map_year year abolished previous next electorate councillor1 councillor2 councillor3 councillor4 councillor5 party1 party2 party3 party4 party5 region county european
Infobox_enzyme name AltNames image image_size caption EC_number CAS_number GO_code
Infobox_equestrian honorific_prefix name honorific_suffix native_name native_name_lang image image_size alt caption full_name other_names nationality discipline birth_date birth_place death_date death_place resting_place resting_place_coordinates hometown homecountry height weight horse website show-medals medals
Infobox_equestrian_championships name logo logo colour caption host Denmark
Infobox_ethnonym person=Motswana people=[[Tswana Batswana]] language=[[Tswana Setswana]]
Infobox_EU_accession_bid nation Montenegro
Infobox_EU_legislation number type EEA Enhancedcooperation title Parties madeby madeunder OJrefurl OJref EEATreaty EEADec made commenced implementation application CommProp ESCOpin CROpin ParlOpin Reports replaces amends amendedby replacedby status
Infobox_EUCOM_SPP name image alt caption origin country_president prime_minister minister_of_defense ambassador1_region ambassador1 ambassador2_region ambassador2 honorary_consul1_region honorary_consul1 honorary_consul2_region honorary_consul2 state_governor adjutant_general1_region adjutant_general1 adjutant_general2_region adjutant_general2 engagements_year engagements ISAF_pax NATO_member NATO_year EU_member EU_year
Infobox_European_case court SubmitDate SubmitYear DecideDate DecideYear FullName ShortName CelexID CaseType CaseNumber ECLI Chamber Language Nationality Procedural Ruling JudgeRapporteur JudgePresident Judge1 Judge2 Judge3 Judge4 Judge5 Judge6 JudgeN Judge1Link Judge2Link Judge3Link Judge4Link Judge5Link Judge6Link JudgeNLink AdvocateGeneral InstrumentsCited LegislationAffecting Keywords
Infobox_European_Commission cabinet_name cabinet_number incumbent image caption date_formed YYYY MM DD df=y
Infobox_European_Parliament_constituency title locationmap2014 coordinates ... ...
Infobox_European_Parliament_group name title image imagecaption from to precededby succeededby englishabbr formalname ideology
Infobox_European_Parliament_term number start end president_half_one president_half_two vice-presidents commission groups meps election location treaty website previous next
Infobox_European_political_party party_name party_name_de party_name_fr party_name_it party_name_es party_name_nl party_name_eo party_name_mt party_name_el party_name_pl party_name_hu party_name_pt party_name_tr party_name_da party_name_bg party_name_ga party_name_ca party_name_se party_name_cs party_articletitle party_logo president secretary_general spokesperson foundation dissolution merger split predecessor merged successor headquarters youth_wing ideology position international europarl colours website
Infobox_European_Rugby_Cup_pool_stage name image imagesize caption season date seed1 seed2 seed3 seed4 seed5 seed6 seed7 seed8 previous previous next next
Infobox_European_Rugby_Cup_season name image imagesize caption countries tournament date teams matches highest attendance lowest tries top top venue attendance2 champions count runner-up website previous previous next next
Infobox_examination name image_name image_size image_alt caption acronym type test_admin skills_tested purpose year_started YYYY
Infobox_exchange name alt_name logo image image_size alt type city country coor founded closed owner key_people currency commodity listings mcap volume indexes homepage footnotes
Infobox_F1_driver name image image_size alt caption birth_name birth_date birth_place death_date death_place nationality years teams team 2023 car_number races championships wins podiums points poles fastest_laps first_race first_win last_win last_race last_season last_position bf1_years bf1_races bf1_championships bf1_wins bf1_podiums bf1_points bf1_poles bf1_fastest_laps website signature signature_size module module2 module3 module4 module5 updated
Infobox_F1_engine_manufacturer name logo official_name base founders staff debut final_race races chassis cons_champ drivers_champ wins podiums points poles fastest_laps
Infobox_F1_nationality title image caption image_size Drivers Grands Entries Starts Highest Wins Podiums Pole Fastest Points First First Last Last 2023
Infobox_F1_race name flag circuit image image_size laps circuit_length_km circuit_length_mi race_length_km race_length_mi times_held first_held first_race last_held last_race most_wins_driver most_wins_constructor current_year current_race pole_driver pole_team pole_time winner winning_team winning_time second second_team second_time third third_team third_time fastest_lap_driver fastest_lap_team fastest_lap
Infobox_F1_team name long_name logo base principal director website previous_name next_name 2023_drivers 2023_test_drivers 2023_chassis 2023_engine 2023_tyres debut final races cons_champ drivers_champ wins poles fastest_laps last_season last_position
Infobox_factory name image image_size alt caption location_map location_map_size location_map_caption location_map_alt coordinates
Infobox_famine name native_name image image_upright thumbtime caption country location coordinates
Infobox_farm name image image_size alt caption map_name map_alt map_width map_relief map_label map_label_position map_caption location state province prefecture country coordinates grid_ref_UK grid_ref_Ireland established disestablished owner area produce status website
Infobox_fault name other_name namedfor namedby yeardef image image_size image_alt image_caption pushpin_map
Infobox_FCF_team name founded first_season city misc logo wordmark affiliate_old division_hist uniform colors song mascot owner chairman president general coach hist_misc hist_yr hist_misc2 nicknames no_league_champs league_champs no_sb_champs sb_champs no_pre1970sb_champs pre1970sb_champs no_div_champs div_champs stadium_years team_owners team_presidents
Infobox_feature_on_celestial_object name image image_size caption type location coordinates= latitude NS longitude EW globe:GLOBE_type:landmark display=inline,title
Infobox_fencer name
Infobox_fencing_competition Name= Logo= Size= Host Host= Edition= dates= Duration= Organiser= Venue= Nations Athletes Events= Website= epeemen= epeewomen= foilmen= foilwomen= sabremen= sabrewomen= previous= next=
Infobox_FIA_Formula_2_race_report Country Name Round_No Season_No Image image-size alt Caption Year Flag_suffix Location Course Course_mi Course_km Type_r1 Date_r1 Laps_r1 Pole_driver_country_r1 Pole_driver_r1 Pole_team_r1 Pole_Time_r1 First_driver_country_r1 First_driver_r1 First_team_r1 Second_driver_country_r1 Second_driver_r1 Second_team_r1 Third_driver_country_r1 Third_driver_r1 Third_team_r1 Fast_driver_country_r1 Fast_driver_r1 Fast_team_r1 Fast_time_r1 Fast_lap_r1 Type_r2 Date_r2 Laps_r2 Pole_driver_country_r2 Pole_driver_r2 Pole_team_r2 Pole_Time_r2 First_driver_country_r2 First_driver_r2 First_team_r2 Second_driver_country_r2 Second_driver_r2 Second_team_r2 Third_driver_country_r2 Third_driver_r2 Third_team_r2 Fast_driver_country_r2 Fast_driver_r2 Fast_time_r2 Fast_lap_r2 Type_r3 Date_r3 Laps_r3 Pole_driver_country_r3 Pole_driver_r3 Pole_team_r3 Pole_Time_r3 First_driver_country_r3 First_driver_r3 First_team_r3 Second_driver_country_r3 Second_driver_r3 Second_team_r3 Third_driver_country_r3 Third_driver_r3 Third_team_r3 Fast_driver_country_r3 Fast_driver_r3 Fast_time_r3 Fast_lap_r3
Infobox_FIA_Formula_2_race_report/doc Country Name Round_No Season_No Image image-size alt Caption Year Flag_suffix Location Course Course_mi Course_km Type_r1 Date_r1 Laps_r1 Pole_driver_country_r1 Pole_driver_r1 Pole_team_r1 Pole_Time_r1 First_driver_country_r1 First_driver_r1 First_team_r1 Second_driver_country_r1 Second_driver_r1 Second_team_r1 Third_driver_country_r1 Third_driver_r1 Third_team_r1 Fast_driver_country_r1 Fast_driver_r1 Fast_team_r1 Fast_time_r1 Fast_lap_r1 Type_r2 Date_r2 Laps_r2 Pole_driver_country_r2 Pole_driver_r2 Pole_team_r2 Pole_Time_r2 First_driver_country_r2 First_driver_r2 First_team_r2 Second_driver_country_r2 Second_driver_r2 Second_team_r2 Third_driver_country_r2 Third_driver_r2 Third_team_r2 Fast_driver_country_r2 Fast_driver_r2 Fast_time_r2 Fast_lap_r2 Type_r3 Date_r3 Laps_r3 Pole_driver_country_r3 Pole_driver_r3 Pole_team_r3 Pole_Time_r3 First_driver_country_r3 First_driver_r3 First_team_r3 Second_driver_country_r3 Second_driver_r3 Second_team_r3 Third_driver_country_r3 Third_driver_r3 Third_team_r3 Fast_driver_country_r3 Fast_driver_r3 Fast_time_r3 Fast_lap_r3
Infobox_FIA_Formula_3_race_report Country Name Round_No Season_No Image image-size alt Caption Year Flag_suffix Location Course Course_mi Course_km Type_r1 Date_r1 Laps_r1 Pole_driver_country_r1 Pole_driver_r1 Pole_team_r1 Pole_Time_r1 First_driver_country_r1 First_driver_r1 First_team_r1 Second_driver_country_r1 Second_driver_r1 Second_team_r1 Third_driver_country_r1 Third_driver_r1 Third_team_r1 Fast_driver_country_r1 Fast_driver_r1 Fast_team_r1 Fast_time_r1 Fast_lap_r1 Type_r2 Date_r2 Laps_r2 Pole_driver_country_r2 Pole_driver_r2 Pole_team_r2 Pole_Time_r2 First_driver_country_r2 First_driver_r2 First_team_r2 Second_driver_country_r2 Second_driver_r2 Second_team_r2 Third_driver_country_r2 Third_driver_r2 Third_team_r2 Fast_driver_country_r2 Fast_driver_r2 Fast_time_r2 Fast_lap_r2
Infobox_FIA_Formula_3_race_report/doc Country Name Round_No Season_No Image image-size alt Caption Year Flag_suffix Location Course Course_mi Course_km Type_r1 Date_r1 Laps_r1 Pole_driver_country_r1 Pole_driver_r1 Pole_team_r1 Pole_Time_r1 First_driver_country_r1 First_driver_r1 First_team_r1 Second_driver_country_r1 Second_driver_r1 Second_team_r1 Third_driver_country_r1 Third_driver_r1 Third_team_r1 Fast_driver_country_r1 Fast_driver_r1 Fast_team_r1 Fast_time_r1 Fast_lap_r1 Type_r2 Date_r2 Laps_r2 Pole_driver_country_r2 Pole_driver_r2 Pole_team_r2 Pole_Time_r2 First_driver_country_r2 First_driver_r2 First_team_r2 Second_driver_country_r2 Second_driver_r2 Second_team_r2 Third_driver_country_r2 Third_driver_r2 Third_team_r2 Fast_driver_country_r2 Fast_driver_r2 Fast_time_r2 Fast_lap_r2
Infobox_FIBA_3x3_tourney title subtitle type year logo size caption host host2 dates teams federations venues cities games champions title_number mvp website prevseason nextseason
Infobox_FIBA_tourney gender type year logo size caption host host2 dates motto teams confederations federations venues cities games attendance champions champions-flagvar title_number mvp ppg_p ppg_t rpg_p rpg_t apg_p apg_t website prevseason nextseason
Infobox_fictional_artifact name image image_size alt caption source source_type company first first_ep first_type date creator episode_creator based_on adapted_by genre type owner uses traits affiliation
Infobox_fictional_family name series franchise=; image alt caption first_major first_minor first_issue=; first_date last_major last_minor last_issue= last_date creator members
Infobox_fictional_location name image image_size alt caption source alt_name first last based_on creator adapted_by genre type located_in ruler locations ethnic_group races characters population blank_label blank_data blank_label1 blank_data1 blank_label2 blank_data2 blank_label3 blank_data3 blank_label4 blank_data4
Infobox_fictional_organisation name image image_size alt caption universe first recent creator based_on adapted_by genre alt_name type founded defunct fate address location owner leader key_people employees purpose products motto technologies powers affiliations subsid enemies website footnotes other_label1 other1 other_label2 other2 other_label3 other3
Infobox_fictional_race name series franchise=; image alt caption first_major first_minor first_issue=; first_date last_major last_minor last_issue= last_date creator based_on character author
Infobox_fictional_vehicle name other_names series franchise=; image alt caption first_major first_minor first_issue=; first_date last_major last_minor last_issue= last_date creator based_on vehicle author
Infobox_field_hockey tournament other_titles image size caption country city dates YYYY MM DD df=y
Infobox_field_hockey_club clubname image caption fullname nickname short founded YYYY MM DD df=y
Infobox_field_hockey_league_season name image pixels caption fromdate todate administrator tformat host venues teams champion second third count runners-up matches goals potourn topscorer attendance
Infobox_field_hockey_player name image image_size alt caption full_name birth_name birth_date YYYY MM DD df=y
Infobox_field_hockey_player/doc name image image_size alt caption full_name birth_name birth_date YYYY MM DD df=y
Infobox_field_hockey_player/sandbox name image image_size alt caption full_name birth_name birth_date YYYY MM DD df=y
Infobox_field_hockey_player/testcases name height weight
Infobox_fieldbus_protocol name type_of_network physical_media network_topology maximum_devices maximum_distance maximum_speed device_addressing governing_body website
Infobox_figure_skater honorific_prefix name={{subst:PAGENAME
Infobox_figure_skating_competition title= image= imagesize= caption= comptype= startdate= enddate= skatingseason= location= host= venue= prizemoney= reignmen= reignladies= reignpairs= reigndance= reignsynchro= defendmen= defendladies= defendwomen= defendpairs= defenddance= defendsynchro= championmen= championladies= championwomen= championpairs= championdance= championsynchro= previouscomp= nextcomp= previousgp= nextgp= previouscs= nextcs=
Infobox_figure_skating_element image imagesize caption element alt scoring element edges take landing inventor named disciplines
Infobox_FILA_wrestling_event name year logo logo_size logo_caption host_city dates stadium freestyle Greco-Roman women previous next games
Infobox_file_format name icon iconcaption icon_size screenshot screenshot_size caption _noextcode extension extensions _nomimecode mime type_code uniform_type conforms_to magic max_size developer released YYYY mm dd df=yes/no
Infobox_file_system name full_name developer variants introduction_date YYYY MM DD df=yes
Infobox_film name image alt caption native_name language title
Infobox_film_awards number award image caption awarded_for award_org presenting_org announced_date YYYY MM DD
Infobox_fire_department name native_name native_name_lang logo logo_caption logo_alt patch patch_caption patch_alt flag flag_caption flag_alt image_size motto country subdivision_type1 subdivision_name1 subdivision_type2 subdivision_name2 subdivision_type3 subdivision_name3 address coordinates reference1 established YYYY MM DD df=y
Infobox_First_Lego_League_Challenge logo logo_size challenge released champions missions designers kids teams tournaments championship
Infobox_First_Nation band_name band_number endonym image caption map map_caption people treaty headquarters province main_reserve reserve area pop_year on_reserve on_other_land off_reserve total_pop chief council tribal_council website footnotes
Infobox_First_Robotics_Competition_game game_title logo year number_teams number_regionals number_dist championship_location chairman_winner impact_winner wf_winner founders_winner gp_winner champions homepage altlogo altlogocaption below prevseason nextseason
Infobox_FIRST_Robotics_Competition_team clubname image caption fullname nickname shortname founded dissolved ground capacity org-runby director m1title mentor1 m2title mentor2 regionals championships results bestcompresult= ATWins ATLosses ATTies firstgame largestwin worstdefeat currentrobot fansgroup awards budget sponsors website current
Infobox_First_Tech_Challenge_game game_title logo year number_teams number_qual_tournaments number_champ_tournaments championship_location champions inspire_winner think_winner innovate_winner motivate_winner connect_winner design_winner control_winner promote_winner homepage altlogo altlogocaption below prevseason nextseason
Infobox_FIVB_tournament competition gender continent year logo size caption host city dates opened teams confederations venues cities champions title_number second third fourth mvp setter outside_spikers middle_blockers opposite_spiker libero matches attendance best_scorer best_spiker best_blocker best_server best_setter best_digger best_receiver website last next
Infobox_flag Name Image Image_size Alt Use Symbol Proportion Adoption Design Designer
Infobox_floorball_club clubname image caption fullname nickname shortname founded dissolved arena capacity manager coach captain league season position pattern_la1 pattern_b1 pattern_ra1 pattern_sh1 pattern_so1 leftarm1 body1 rightarm1 shorts1 socks1 pattern_la2 pattern_b2 pattern_ra2 pattern_sh2 pattern_so2 leftarm2 body2 rightarm2 shorts2 socks2 firstgame largestwin worstdefeat topscorer championships
Infobox_folk_tale Folk_Tale_Name Image_Name Image_Caption Aarne-Thompson AKA Mythology Country Region Origin_Date Published_In Related
Infobox_food name name_lang name_italics image image_size image_alt caption alternate_name type course place_of_origin region associated_cuisine creator creators year mintime maxtime served main_ingredient minor_ingredient variations serving_size calories calories_ref protein fat carbohydrate glycemic_index similar_dish cookbook commons other no_recipes
Infobox_Football_All-Ireland year type image dates teams connacht munster leinster ulster matches poty team titles captain manager team2 captain2 manager2 totalgoals totalpoints topscorer previous next
Infobox_football_association Logo Badge_size Short Founded YYYY MM DD df=y
Infobox_football_club clubname image image_size upright alt caption fullname nickname short founded dissolved American ground capacity coordinates owntitle owner chrtitle chairman mgrtitle manager coach league season position website kit_alt1 pattern_la1 pattern_b1 pattern_ra1 pattern_sh1 pattern_so1 leftarm1 body1 rightarm1 shorts1 socks1 pattern_name1 kit_alt2 pattern_la2 pattern_b2 pattern_ra2 pattern_sh2 pattern_so2 leftarm2 body2 rightarm2 shorts2 socks2 pattern_name2 kit_alt3 pattern_la3 pattern_b3 pattern_ra3 pattern_sh3 pattern_so3 leftarm3 body3 rightarm3 shorts3 socks3 pattern_name3 current
Infobox_football_club_season club season image image_size alt caption chrtitle chairman ownertitle owner mgrtitle manager stdtitle stadium league league league2 league2 cup1 cup1 cup2 cup2 cup3 cup3 cup4 cup4 cup5 cup5 cup6 cup6 cup7 cup7 cup8 cup8 league season highest lowest average largest largest pattern_name1 pattern_la1 pattern_b1 pattern_ra1 pattern_sh1 pattern_so1 leftarm1 body1 rightarm1 shorts1 socks1 alt1 filetype1 pattern_name2 pattern_la2 pattern_b2 pattern_ra2 pattern_sh2 pattern_so2 leftarm2 body2 rightarm2 shorts2 socks2 alt2 filetype2 pattern_name3 pattern_la3 pattern_b3 pattern_ra3 pattern_sh3 pattern_so3 leftarm3 body3 rightarm3 shorts3 socks3 alt3 filetype3 American updated prevseason nextseason
Infobox_football_country_season country soccer season division1 champions1 division2 champions2 division3 champions3 division4 champions4 division5 champions5 division6 champions6 division7 champions7 domestic dchampions domestic2 dchampions2 leaguecup lchampions supercup schampions wdivision1 wchampions1 wdivision2 wchampions2 wdivision3 wchampions3 wdivision4 wchampions4 wdomestic wdchampions wleaguecup wlchampions wsupercup wschampions prevseason nextseason flagicon
Infobox_football_league name image pixels upright organiser founded first folded country other confed divisions teams feeds promotion relegation levels domest_cup league_cup overseas_tournament confed_cup champions season premiers prem_season mlscupchamps mlscupseason shieldchamps shieldseason shieldtitle shield most_champs most_prems most_mlscups most_shields most_appearances top_goalscorer tv sponsor website current
Infobox_football_league_season competition logo image pixels alt caption season dates mlscup winners American shieldtitle shield premiers promoted relegated continentalcup1 continentalcup1 continentalcup2 continentalcup2 continentalcup3 continentalcup3 continentalcup4 continentalcup4 matches matches total total average best league best biggest biggest highest longest longest longest longest highest lowest attendance average prevseason nextseason updated extra
Infobox_football_match title other_titles image alt event caption team1 team1association team1score team2 team2association team2score details date YYYY MM DD df=y
Infobox_football_tournament name image imagesize alt caption organiser founded abolished region number qualifier related domestic confed current most broadcasters motto website current American
Infobox_football_tournament_at_games variant type year image image_size alt caption youth country city venues cities dates competitors nations men_teams men_confederations men_sub-confederations men_associations men_team_template
Infobox_football_tournament_season title year yearr= other_titles image image_size caption country dates date= venue num_teams defending_champions champions count runner-up third semi-finalist1= fourth semi-finalist2= continentalcup1 continentalcup1_qualifiers continentalcup2 continentalcup2_qualifiers continentalcup3 continentalcup3_qualifiers champ_match_score matches goals attendance top_goal_scorer player_label player prevseason nextseason updated extra_information
Infobox_fragrance name image image_size image_alt caption endorsed_by category designed_for notes top_note heart_note base_note released YYYY MM DD
Infobox_French_constituency title image caption map caption2 member-type member member-party department cantons voters
Infobox_fuel name image alt caption image2 alt2 caption2 IUPAC other_names UN_number IMO DOT ADR IATA WHMIS RTECS PEL-OSHA ACGIH_TLV-TWA appearance LEL UEL auto_ignition footnotes
Infobox_furniture name image caption designer made date materials style sold_by height width depth collection
Infobox_fusion_device name fullname image imagetitle type city state country affiliation major_radius 00 m
Infobox_future_infrastructure_project property_name location proposer official status type estimated max min planned planned image_name image_size caption osm_id supporters stakeholders opponents geometry footnotes
Infobox_GAA_championship image name county province year trophy level sponsor date num_teams defending_champions winners ordinal manager captain qualify_for runnersup runnerupmanager runnerupcaptain promoted relegated matches total_scored poty topscorer website previous next
Infobox_GAA_club club irish crest founded province county nickname colours grounds coordinates f1 f2 f3 h1 h2 h3 c1 c2 c3 l1 l2 l3 pattern_la pattern_b pattern_ra pattern_sh pattern_so leftarm body rightarm shorts socks
Infobox_GAA_overseas_club club irish crest founded county division nickname colours grounds kit1 pattern_la pattern_b pattern_ra leftarm body rightarm shorts socks kit2 pattern_la2 pattern_b2 pattern_ra2 leftarm2 body2 rightarm2 shorts2 socks2 competitionm winsm competitionh winsh competitionl winsl competitionc winsc
Infobox_GAA_region name crest irish nickname founded province dominant grounds county website chairman secretary treasurer provcodel centcodel clubs sfc sfc shc shc nfl nhl football hurling ladies camogie
Infobox_Gaelic_games_county_board name crest irish nickname founded province dominant grounds county website chairman secretary treasurer provcodel centcodel clubs sfc sfc shc shc nfl nhl football hurling ladies camogie
Infobox_Gaelic_games_county_team name crest sport irish nickname county manager captain most top home sfc last nfl last pattern_la1 pattern_b1 pattern_ra1 pattern_sh1 pattern_so1 leftarm1 body1 rightarm1 shorts1 socks1 pattern_la2 pattern_b2 pattern_ra2 pattern_sh2 pattern_so2 leftarm2 body2 rightarm2 shorts2 socks2 current
Infobox_Gaelic_games_manager image name irish birth_date birth_place death_date death_place nickname feet inches occupation sport clyears club winningclubs clallireland clprovince clcounty county icyears winningcounties icprovince icallireland league
Infobox_Gaelic_games_player name image alt caption <!-- irish sport clposition icposition birth_date birth_place death_date death_place feet inches nickname occupation <!-- clyears clubs clapps(points) <!-- code county clcounty province clprovince clallireland <!-- colyears colleges colapps(points) <!-- fitz sig <!-- icyears counties icapps(points) <!-- icprovince icconnacht iculster icleinster icmunster icallireland nfl nhl allstars <!-- clupdate icupdate
Infobox_Gaelic_games_player/doc name image alt caption <!-- irish sport clposition icposition birth_date birth_place death_date death_place feet inches nickname occupation <!-- clyears clubs clapps(points) <!-- code county clcounty province clprovince clallireland <!-- colyears colleges colapps(points) <!-- fitz sig <!-- icyears counties icapps(points) <!-- icprovince icconnacht iculster icleinster icmunster icallireland nfl nhl allstars <!-- clupdate icupdate
Infobox_Gaelic_games_province province image irish location county colours grounds pro pro AI AI RC RC pattern_la pattern_b pattern_ra leftarm body rightarm shorts socks
Infobox_Gaelic_games_tournament name currentlyrunning image caption irish code founded firstspan1 firstspan2 abolished region trophy teams number firstwin title currentordinal most mostordinal sponsors tv motto website
Infobox_galaxy name
Infobox_galaxy_cluster name image image_size alt caption credit epoch constellation ra 00 00
Infobox_game_series width title collapsible state image caption type genre creator publisher owner released first first latest latest parent spinoffs related
Infobox_games name logo size caption host_city host country motto organizer organiser edition nations teams debuting_countries athletes sports events dates opening_link opening YYYY MM DD
Infobox_gem name image caption type_of_stone weight x.xx carat g
Infobox_genetically_modified_organism name image event id type species mode method vector developer trait genes source
Infobox_genome image caption type taxId ploidy chromosomes size year organelle organelle-size organelle-year
Infobox_geographical_indication name color logo image image_size alt caption alternative description type area country registered material official wwww.example.org
Infobox_geologic_timespan name color top_bar time_start time_start_prefix time_start_uncertainty time_end time_end_prefix time_end_uncertainty image_map caption_map image_outcrop caption_outcrop image_art caption_art timeline proposed_boundaries1 proposed_boundaries1_ref proposed_boundaries2 proposed_boundaries2_ref proposed_boundaries3 proposed_boundaries3_ref proposed_subdivision1 proposed_subdivision1_coined proposed_subdivision2 proposed_subdivision2_coined proposed_subdivision3 proposed_subdivision3_coined former_subdivisions formerly_part_of partially_contained_in partially_contains chrono_name strat_name name_formality name_accept_date alternate_spellings synonym1 synonym1_coined synonym2 synonym2_coined synonym3 synonym3_coined nicknames former_names proposed_names celestial_body usage ICS]]) timescales_used formerly_used_by not_used_by chrono_unit strat_unit proposed_by type_section timespan_formality lower_boundary_def lower_def_candidates lower_gssp_candidates lower_gssp_location lower_gssp_coords lower_gssp_accept_date upper_boundary_def upper_def_candidates upper_gssp_candidates upper_gssp_location upper_gssp_coords upper_gssp_accept_date o2 co2 temp sea_level
Infobox_German_railway_vehicle name
Infobox_glacier child name other_name photo photo_width photo_alt photo_caption map map_image map_width map_alt map_caption type location coordinates coords_ref area length width thickness elevation_max elevation_min terminus status embedded
Infobox_globular_cluster name image caption credit epoch class constellation ra dec dist_ly dist_pc appmag_v size_v absmag_v= mass_msol mass_kg radius_arcminsec radius_ly radius_pc radius_tidal_arcminsec radius_tidal_ly radius_tidal_pc v_hb metal_fe metal_z age notes names
Infobox_go_player name image caption full_name nickname kanji kana hangul hanja revisedromanization mccunereischauer chinese pinyin birth_date birth_place death_date death_place residence teacher pupil turnedpro retired rank affiliation medaltemplates medaltemplates-expand
Infobox_goat_breed name image image_size image_alt image_caption status altname
Infobox_golf_facility name image imagesize caption pushpin_map pushpin_relief pushpin_mapsize pushpin_map_alt pushpin_map_caption coordinates location establishment type owner operator holes tournaments greens fairways website course1 designer1 par1 length1 rating1 slope1 record1 module image2 imagesize2 caption2
Infobox_golf_season year tour image pixels caption regular_season no_of_events most_wins honor1 honoree1 honor2 honoree2 honor3 honoree3 honor4 honoree4 honor5 honoree5 honor6 honoree6 prevseason nextseason
Infobox_golfer name image image_size caption full_name nickname birth_date YYYY MM DD
Infobox_government_budget title year bill bill_link image imagesize alt caption date_submitted submitter submitted_to presented passed parliament government party minister treasurer chancellor Total_Revenue Total_Expenditures spending tax_cut debt_payment surplus deficit debt gdp url previous_budget previous_year next_budget next_year
Infobox_government_cabinet cabinet_name cabinet_number cabinet_type jurisdiction flag flag_border flag_width incumbent image image_size alt caption date_formed YYYY MM DD df=y
Infobox_GP2_round_report Country Year Grand Round_No Season_No Image Caption Location Course_km Course_mi Date_r1 Laps_r1 Pole_driver_country Pole_driver Pole_team Pole_time First_driver_country_r1 First_driver_r1 First_team_r1 Second_driver_country_r1 Second_driver_r1 Second_team_r1 Third_driver_country_r1 Third_driver_r1 Third_team_r1 Fast_driver_country_r1 Fast_driver_r1 Fast_team_r1 Fast_time_r1 Fast_lap_r1 Date_r2 Laps_r2 First_driver_country_r2 First_driver_r2 First_team_r2 Second_driver_country_r2 Second_driver_r2 Second_team_r2 Third_driver_country_r2 Third_driver_r2 Third_team_r2 Fast_driver_country_r2 Fast_driver_r2 Fast_team_r2 Fast_time_r2 Fast_lap_r2
Infobox_GP2_round_report/doc Country Year Grand Round_No Season_No Image Caption Location Course_km Course_mi Date_r1 Laps_r1 Pole_driver_country Pole_driver Pole_team Pole_time First_driver_country_r1 First_driver_r1 First_team_r1 Second_driver_country_r1 Second_driver_r1 Second_team_r1 Third_driver_country_r1 Third_driver_r1 Third_team_r1 Fast_driver_country_r1 Fast_driver_r1 Fast_team_r1 Fast_time_r1 Fast_lap_r1 Date_r2 Laps_r2 First_driver_country_r2 First_driver_r2 First_team_r2 Second_driver_country_r2 Second_driver_r2 Second_team_r2 Third_driver_country_r2 Third_driver_r2 Third_team_r2 Fast_driver_country_r2 Fast_driver_r2 Fast_team_r2 Fast_time_r2 Fast_lap_r2
Infobox_GPU_microarchitecture name image caption alt launching launched discontinued soldby designfirm manuf1 process codename products-desktop1 products-hedt1 products-server1 directx-version direct3d-version shadermodel-version opencl-version opengl-version opengles-version cuda-version optix-version mantle-api vulkan-api opengl-compute-version cuda-compute-version directcompute-version compute slowest slow-unit fastest fast-unit shader-clock l0-cache l1-cache l2-cache l3-cache memory-support memory-clock pcie-support encode-codec decode-codec color-depth encoders display-outputs predecessor variant successor
Infobox_Grand_Lodge name image imagesize alt caption motto-latin motto-english established location country coordinates jurisdiction GrandMaster website
Infobox_Grand_Prix_Final_report title logo pixels alt caption sport founded country grand_prix date year season_number airfield location soaring_type class races weather TV website First_Country First_flag_suffix First_Pilot First_Plane_Type Second_Country Second_flag_suffix Second_Pilot Second_Plane_Type Third_Country Third_flag_suffix Third_Pilot Third_Plane_Type
Infobox_Grand_Prix_Final_report/doc title logo pixels alt caption sport founded country grand_prix date year season_number airfield location soaring_type class races weather TV website First_Country First_flag_suffix First_Pilot First_Plane_Type Second_Country Second_flag_suffix Second_Pilot Second_Plane_Type Third_Country Third_flag_suffix Third_Pilot Third_Plane_Type
Infobox_Grand_Prix_motorcycle_race_report Grand_Prix GP_suffix Flag Year Date Race_No Season_No Previous_round Next_round Official_Name Location Image Caption Course_km Course_mi Pole_Rider_MotoGP Pole_Rider_MotoGP_Country Pole_Rider_MotoGP_Bike Pole_Time_MotoGP Fast_Rider_MotoGP Fast_Rider_MotoGP_Country Fast_Rider_MotoGP_Bike Fast_Time_MotoGP First_Rider_MotoGP First_Rider_MotoGP_Country First_Rider_MotoGP_Bike Second_Rider_MotoGP Second_Rider_MotoGP_Country= Second_Rider_MotoGP_Bike Third_Rider_MotoGP Third_Rider_MotoGP_Country Third_Rider_MotoGP_Bike Pole_Rider_Moto2 Pole_Rider_Moto2_Country Pole_Rider_Moto2_Bike Pole_Time_Moto2 Fast_Rider_Moto2 Fast_Rider_Moto2_Country Fast_Rider_Moto2_Bike Fast_Time_Moto2 First_Rider_Moto2 First_Rider_Moto2_Country First_Rider_Moto2_Bike Second_Rider_Moto2 Second_Rider_Moto2_Country Second_Rider_Moto2_Bike Third_Rider_Moto2 Third_Rider_Moto2_Country Third_Rider_Moto2_Bike Pole_Rider_Moto3 Pole_Rider_Moto3_Country Pole_Rider_Moto3_Bike Pole_Time_Moto3 Fast_Rider_Moto3 Fast_Rider_Moto3_Country Fast_Rider_Moto3_Bike Fast_Time_Moto3 First_Rider_Moto3 First_Rider_Moto3_Country First_Rider_Moto3_Bike Second_Rider_Moto3 Second_Rider_Moto3_Country Second_Rider_Moto3_Bike Third_Rider_Moto3 Third_Rider_Moto3_Country Third_Rider_Moto3_Bike Pole_Rider_500 Pole_Rider_500_Country Pole_Rider_500_Bike Pole_Time_500 Fast_Rider_500 Fast_Rider_500_Country Fast_Rider_500_Bike Fast_Time_500 First_Rider_500 First_Rider_500_Country First_Rider_500_Bike Second_Rider_500 Second_Rider_500_Country Second_Rider_500_Bike Third_Rider_500 Third_Rider_500_Country Third_Rider_500_Bike Pole_Rider_350 Pole_Rider_350_Country Pole_Rider_350_Bike Pole_Time_350 Fast_Rider_350 Fast_Rider_350_Country Fast_Rider_350_Bike Fast_Time_350 First_Rider_350 First_Rider_350_Country First_Rider_350_Bike Second_Rider_350 Second_Rider_350_Country Second_Rider_350_Bike Third_Rider_350 Third_Rider_350_Country Third_Rider_350_Bike Pole_Rider_250 Pole_Rider_250_Country Pole_Rider_250_Bike Pole_Time_250 Fast_Rider_250 Fast_Rider_250_Country Fast_Rider_250_Bike Fast_Time_250 First_Rider_250 First_Rider_250_Country First_Rider_250_Bike Second_Rider_250 Second_Rider_250_Country Second_Rider_250_Bike Third_Rider_250 Third_Rider_250_Country Third_Rider_250_Bike Pole_Rider_125 Pole_Rider_125_Country Pole_Rider_125_Bike Pole_Time_125 Fast_Rider_125 Fast_Rider_125_Country Fast_Rider_125_Bike Fast_Time_125 First_Rider_125 First_Rider_125_Country First_Rider_125_Bike Second_Rider_125 Second_Rider_125_Country Second_Rider_125_Bike Third_Rider_125 Third_Rider_125_Country Third_Rider_125_Bike Pole_Rider_80 Pole_Rider_80_Country Pole_Rider_80_Bike Pole_Time_80 Fast_Rider_80 Fast_Rider_80_Country Fast_Rider_80_Bike Fast_Time_80 First_Rider_80 First_Rider_80_Country First_Rider_80_Bike Second_Rider_80 Second_Rider_80_Country Second_Rider_80_Bike Third_Rider_80 Third_Rider_80_Country Third_Rider_80_Bike Pole_Rider_50 Pole_Rider_50_Country Pole_Rider_50_Bike Pole_Time_50 Fast_Rider_50 Fast_Rider_50_Country Fast_Rider_50_Bike Fast_Time_50 First_Rider_50 First_Rider_50_Country First_Rider_50_Bike Second_Rider_50 Second_Rider_50_Country Second_Rider_50_Bike Third_Rider_50 Third_Rider_50_Country Third_Rider_50_Bike Pole_Rider_Sidecar Pole_Rider_Sidecar_Country Pole_Rider_Sidecar_Bike Pole_Passenger_Sidecar Pole_Passenger_Sidecar_Country Pole_Time_Sidecar Fast_Rider_Sidecar Fast_Rider_Sidecar_Country Fast_Rider_Sidecar_Bike Fast_Passenger_Sidecar Fast_Passenger_Sidecar_Country Fast_Time_Sidecar First_Rider_Sidecar First_Rider_Sidecar_Country First_Passenger_Sidecar First_Passenger_Sidecar_Country First_Rider_Sidecar_Bike Second_Rider_Sidecar Second_Rider_Sidecar_Country Second_Passenger_Sidecar Second_Passenger_Sidecar_Country Second_Rider_Sidecar_Bike Third_Rider_Sidecar Third_Rider_Sidecar_Country Third_Passenger_Sidecar Third_Passenger_Sidecar_Country Third_Rider_Sidecar_Bike Pole_Rider_Sidecar_B2B Pole_Rider_Sidecar_B2B_Country Pole_Rider_Sidecar_B2B_Bike Pole_Passenger_Sidecar_B2B Pole_Passenger_Sidecar_B2B_Country Pole_Time_Sidecar_B2B Fast_Rider_Sidecar_B2B Fast_Rider_Sidecar_B2B_Country Fast_Rider_Sidecar_B2B_Bike Fast_Passenger_Sidecar_B2B Fast_Passenger_Sidecar_B2B_Country Fast_Time_Sidecar_B2B First_Rider_Sidecar_B2B First_Rider_Sidecar_B2B_Country First_Passenger_Sidecar_B2B First_Passenger_Sidecar_B2B_Country First_Rider_Sidecar_B2B_Bike Second_Rider_Sidecar_B2B Second_Rider_Sidecar_B2B_Country Second_Passenger_Sidecar_B2B Second_Passenger_Sidecar_B2B_Country Second_Rider_Sidecar_B2B_Bike Third_Rider_Sidecar_B2B Third_Rider_Sidecar_B2B_Country Third_Passenger_Sidecar_B2B Third_Passenger_Sidecar_B2B_Country Third_Rider_Sidecar_B2B_Bike
Infobox_Grand_Prix_motorcycle_race_report/doc Grand_Prix GP_suffix Flag Year Date Race_No Season_No Previous_round Next_round Official_Name Location Image Caption Course_km Course_mi Pole_Rider_MotoGP Pole_Rider_MotoGP_Country Pole_Rider_MotoGP_Bike Pole_Time_MotoGP Fast_Rider_MotoGP Fast_Rider_MotoGP_Country Fast_Rider_MotoGP_Bike Fast_Time_MotoGP First_Rider_MotoGP First_Rider_MotoGP_Country First_Rider_MotoGP_Bike Second_Rider_MotoGP Second_Rider_MotoGP_Country= Second_Rider_MotoGP_Bike Third_Rider_MotoGP Third_Rider_MotoGP_Country Third_Rider_MotoGP_Bike Pole_Rider_Moto2 Pole_Rider_Moto2_Country Pole_Rider_Moto2_Bike Pole_Time_Moto2 Fast_Rider_Moto2 Fast_Rider_Moto2_Country Fast_Rider_Moto2_Bike Fast_Time_Moto2 First_Rider_Moto2 First_Rider_Moto2_Country First_Rider_Moto2_Bike Second_Rider_Moto2 Second_Rider_Moto2_Country Second_Rider_Moto2_Bike Third_Rider_Moto2 Third_Rider_Moto2_Country Third_Rider_Moto2_Bike Pole_Rider_Moto3 Pole_Rider_Moto3_Country Pole_Rider_Moto3_Bike Pole_Time_Moto3 Fast_Rider_Moto3 Fast_Rider_Moto3_Country Fast_Rider_Moto3_Bike Fast_Time_Moto3 First_Rider_Moto3 First_Rider_Moto3_Country First_Rider_Moto3_Bike Second_Rider_Moto3 Second_Rider_Moto3_Country Second_Rider_Moto3_Bike Third_Rider_Moto3 Third_Rider_Moto3_Country Third_Rider_Moto3_Bike Pole_Rider_500 Pole_Rider_500_Country Pole_Rider_500_Bike Pole_Time_500 Fast_Rider_500 Fast_Rider_500_Country Fast_Rider_500_Bike Fast_Time_500 First_Rider_500 First_Rider_500_Country First_Rider_500_Bike Second_Rider_500 Second_Rider_500_Country Second_Rider_500_Bike Third_Rider_500 Third_Rider_500_Country Third_Rider_500_Bike Pole_Rider_350 Pole_Rider_350_Country Pole_Rider_350_Bike Pole_Time_350 Fast_Rider_350 Fast_Rider_350_Country Fast_Rider_350_Bike Fast_Time_350 First_Rider_350 First_Rider_350_Country First_Rider_350_Bike Second_Rider_350 Second_Rider_350_Country Second_Rider_350_Bike Third_Rider_350 Third_Rider_350_Country Third_Rider_350_Bike Pole_Rider_250 Pole_Rider_250_Country Pole_Rider_250_Bike Pole_Time_250 Fast_Rider_250 Fast_Rider_250_Country Fast_Rider_250_Bike Fast_Time_250 First_Rider_250 First_Rider_250_Country First_Rider_250_Bike Second_Rider_250 Second_Rider_250_Country Second_Rider_250_Bike Third_Rider_250 Third_Rider_250_Country Third_Rider_250_Bike Pole_Rider_125 Pole_Rider_125_Country Pole_Rider_125_Bike Pole_Time_125 Fast_Rider_125 Fast_Rider_125_Country Fast_Rider_125_Bike Fast_Time_125 First_Rider_125 First_Rider_125_Country First_Rider_125_Bike Second_Rider_125 Second_Rider_125_Country Second_Rider_125_Bike Third_Rider_125 Third_Rider_125_Country Third_Rider_125_Bike Pole_Rider_80 Pole_Rider_80_Country Pole_Rider_80_Bike Pole_Time_80 Fast_Rider_80 Fast_Rider_80_Country Fast_Rider_80_Bike Fast_Time_80 First_Rider_80 First_Rider_80_Country First_Rider_80_Bike Second_Rider_80 Second_Rider_80_Country Second_Rider_80_Bike Third_Rider_80 Third_Rider_80_Country Third_Rider_80_Bike Pole_Rider_50 Pole_Rider_50_Country Pole_Rider_50_Bike Pole_Time_50 Fast_Rider_50 Fast_Rider_50_Country Fast_Rider_50_Bike Fast_Time_50 First_Rider_50 First_Rider_50_Country First_Rider_50_Bike Second_Rider_50 Second_Rider_50_Country Second_Rider_50_Bike Third_Rider_50 Third_Rider_50_Country Third_Rider_50_Bike Pole_Rider_Sidecar Pole_Rider_Sidecar_Country Pole_Rider_Sidecar_Bike Pole_Passenger_Sidecar Pole_Passenger_Sidecar_Country Pole_Time_Sidecar Fast_Rider_Sidecar Fast_Rider_Sidecar_Country Fast_Rider_Sidecar_Bike Fast_Passenger_Sidecar Fast_Passenger_Sidecar_Country Fast_Time_Sidecar First_Rider_Sidecar First_Rider_Sidecar_Country First_Passenger_Sidecar First_Passenger_Sidecar_Country First_Rider_Sidecar_Bike Second_Rider_Sidecar Second_Rider_Sidecar_Country Second_Passenger_Sidecar Second_Passenger_Sidecar_Country Second_Rider_Sidecar_Bike Third_Rider_Sidecar Third_Rider_Sidecar_Country Third_Passenger_Sidecar Third_Passenger_Sidecar_Country Third_Rider_Sidecar_Bike Pole_Rider_Sidecar_B2B Pole_Rider_Sidecar_B2B_Country Pole_Rider_Sidecar_B2B_Bike Pole_Passenger_Sidecar_B2B Pole_Passenger_Sidecar_B2B_Country Pole_Time_Sidecar_B2B Fast_Rider_Sidecar_B2B Fast_Rider_Sidecar_B2B_Country Fast_Rider_Sidecar_B2B_Bike Fast_Passenger_Sidecar_B2B Fast_Passenger_Sidecar_B2B_Country Fast_Time_Sidecar_B2B First_Rider_Sidecar_B2B First_Rider_Sidecar_B2B_Country First_Passenger_Sidecar_B2B First_Passenger_Sidecar_B2B_Country First_Rider_Sidecar_B2B_Bike Second_Rider_Sidecar_B2B Second_Rider_Sidecar_B2B_Country Second_Passenger_Sidecar_B2B Second_Passenger_Sidecar_B2B_Country Second_Rider_Sidecar_B2B_Bike Third_Rider_Sidecar_B2B Third_Rider_Sidecar_B2B_Country Third_Passenger_Sidecar_B2B Third_Passenger_Sidecar_B2B_Country Third_Rider_Sidecar_B2B_Bike
Infobox_Grand_Prix_motorcycle_race_report/section Pole Pole_country Pole_suffix Pole_Bike Pole_Time Fast Fast_country Fast_suffix Fast_bike Fast_time First First_country First_suffix First_bike Second Second_country Second_suffix Second_bike Third Third_country Third_suffix Third_bike
Infobox_Grand_Prix_race_report Type Country Grand Details Fulldate YYYY MM DD df=y
Infobox_Grand_Prix_race_report/doc Type Country Grand Details Fulldate YYYY MM DD df=y
Infobox_Grand_Prix_race_report/sandbox Type Country Grand Details Fulldate YYYY MM DD df=y
Infobox_GrandSlamTournaments Name Last Last Current Current Logo Logo Bar Founded Editions City Country Venue Surface Men Men Men Men Women Women Women Women Mixed Mixed Mixed Mixed Prize Web Notes
Infobox_GrandSlamTournamentsDisciplines Name Logo Logo Bar City Country Venue Governing Created Editions Surface Prize Trophy Current Most Most Most Most Website
Infobox_GrandSlamTournamentsFinals Name Logo Logo Bar City Country Created Men's Men's Women's Women's Most Web
Infobox_grape_variety name image caption alt color color_alt species also_called origin pedigree0 pedigree1 pedigree2 regions notable_wines soil hazards breeder institute crossing_year selection_year protection_year seeds_formation flowers_sex vivc_number
Infobox_graphic_novel title foreigntitle image imagesize alt caption publisher date issues series main_char_team creators creator writers writer artists artist pencillers penciller inkers inker colourists colorists colourist colorist letterers letterer editors editor single_creator origpublication origissues origdate origdates origlanguage origisbn origedinfo origisbn2 origedinfo2 origisbn3 origedinfo3 origisbn9 origedinfo9 transpublisher transdate transisbn pages translator previous previous-date next next-date
Infobox_graphics_processing_unit name
Infobox_Grappling_hold name image image_size alt caption aka parent_style classification parent_hold child_holds attacks counters escapes
Infobox_guitar_model title image caption manufacturer period bodytype necktype scale woodbody woodneck woodfingerboard bridge pickups colors
Infobox_Halacha image caption verse mishnah talmud talmudy rambam sa codes
Infobox_halftime_show SBNumeral logo image caption date YYYY MM DD
Infobox_handball_club clubname image fullname short founded dissolved ground capacity chairman manager captain league season position website colour1 colour2 colour3 pattern_la1 pattern_b1 pattern_ra1 pattern_sh1 leftarm1 body1 rightarm1 shorts1 pattern_la2 pattern_b2 pattern_ra2 pattern_sh2 leftarm2 body2 rightarm2 shorts2
Infobox_handball_league_season competition logo image pixels alt caption season dates winners shieldtitle shield premiers promoted relegated continentalcup1 continentalcup1qualifiers continentalcup2 continentalcup2qualifiers continentalcup3 continentalcup3qualifiers continentalcup4 continentalcup4qualifiers matches matches total total average best league best biggest biggest highest longest longest longest longest highest lowest attendance average prevseason nextseason updated
Infobox_Hangul Hangul rr mr
Infobox_haplogroup name map origin-date TMRCA origin-place ancestor descendants mutations members
Infobox_herald image image_size caption tradition jurisdiction authority officername officertitle formerofficers formerofficeN formerofficerN
Infobox_heraldic_knot knot image image_caption arms arms_caption badge badge_caption family region notes
Infobox_heraldic_tincture title class non-heraldic_equivalent hatching Gules
Infobox_hereditary_title name image 150px]]<br/>[[File:ExampleCoatofArms.svg 180px]] image_size alt caption creation_date 1 dmy
Infobox_heritage_railway name other_name logo logo_width logo_alt color image image_width image_alt caption locale terminus coordinates type:landmark display=inline,title
Infobox_hieroglyphs name name name
Infobox_highway_system title markers caption map map_alt map_notes maint formed established length_km length_mi length_ref notes links
Infobox_hill_of_Rome name Latin Italian seven rione buildings palazzi churches people events religion mythology sculptures
Infobox_hillclimb_venue Name Nicknames Time Location Coordinates Image Image_caption Opened Closed Former_names Events Length_yds Length_mi Length_met Length_kms Turns Record_time Record_driver Record_year Record_class
Infobox_Hindu_term title en sa sa-Latn as as-Latn ban ban-Latn bn bn-Latn bho bho-Latn gu gu-Latn hi hi-Latn jv jv-Latn kn kn-Latn ml ml-Latn mr mr-Latn mni mni-Latn ne ne-Latn or or-Latn pa pa-Latn ta ta-Latn te te-Latn ur ur-Latn
Infobox_historic_engine name image image_size alt caption type designer maker date YYYY MM DD df=y
Infobox_historic_site name native_name native_language native_name2 native_language2 native_name3 native_language3 other_name image image_size alt caption mapframe locmapin map_relief map_width map_caption map_dot_mark coordinates LAT LON display=inline,title
Infobox_historical_continent name image caption formation_year type today smaller_continents plate footnotes
Infobox_historical_era name location start end image alt caption before including after monarch leaders presidents primeministers key_events
Infobox_hockey_awards text_color bg_color name image image_size caption Stanley Obrien Campbell Wales Presidents Ross Masterton Calder Smythe Selke GM Hart Adams Norris Clancy Byng Patrick Messier Richard Fanfav Foundation Lifetime Man Plusminus Roadperformer Crozier Lindsay Vezina Jennings award1 award1num award2 award2num award3 award3num award4 award4num award5 award5num award6 award6num award7 award7num award8 award8num award9 award9num award10 award10num award11 award11num award12 award12num award13 award13num award14 award14num award15 award15num award16 award16num award17 award17num award18 award18num awards
Infobox_hockey_league name logo pixels caption country republic region confed leader_title leader_name leader_title2 leader_name2 former_names founded first folded divisions conferences teams feeds feeder promotion relegation champ assc_champ champions season most headquarters website current_season
Infobox_Hokkien_name title hanji poj hanlo tl bp hokkienipa context image caption lm
Infobox_Holocaust_event name image image_size image_alt caption image_map map_size map_alt map_caption pushpin_map pushpin_map_relief pushpin_map_width pushpin_map_alt pushpin_label pushpin_label_position pushpin_map_caption AKA location coordinates
Infobox_home_rule bill image act country year govt HoC HoL RA house stage vote date unibi subd name size westminster executive body PM to imple succeeded
Infobox_horse_color name image image_alt caption synonyms variants base modifiers description body mane/tail head/legs skin eyes other
Infobox_horse_person name image image_size image_upright alt caption native_name native_name_lang birth_name occupation discipline birth_date birth_place death_date death_place resting_place resting_place_coordinates spouse major_wins lifetime_achievements honors memorials horses website module
Infobox_horse_race name class horse image caption location date distance winning winning final winning winning winning conditions surface attendance previous next
Infobox_horseraces class horse image caption location inaugurated YYYY MM DD df=y
Infobox_horseracing_personality honorific_prefix name honorific_suffix image image_size image_upright alt caption native_name native_name_lang full_name other_names nickname occupation birth_date YYYY MM DD df=y
Infobox_Hottest_100 year image caption date charity winning most prev next
Infobox_House_of_Representatives_of_Puerto_Rico session start end speaker pro_tempore majority_leader majority_whip minority_leader minority_whip minority_leader1 minority_whip1 minority_leader2 minority_whip2 minority_leader3 minority_whip3 minority_leader4 minority_whip4 minority_leader5 minority_whip5 secretary sergeant seats structure structure_res structure_alt party1 party2 party3 party4 party5 term_length voting_system last_election next_election legislature upper_house session1 session1start session1end session2 session2start session2end session3 session3start session3end session4 session8 session4start session8start session4end session8end previous next
Infobox_housing_project building image image_size alt caption image_map map_size map_alt map_caption pushpin_map pushpin_relief pushpin_mapsize pushpin_map_alt pushpin_map_caption pushpin_label map_dot_mark location coordinates status category demolished area population population blocknumber units density built construction constructed construction construction construction construction construction construction refurbishment refurbishment refurbishment refurbishment refurbishment refurbishment refurbishment refurbishment refurbished refurbishment listing listing succession governing famous
Infobox_hromada name native-name oblast raion image_flag image_shield leader-name leader-party area_footnotes area_total_km2 area_land_km2 population_as_of population_total population_note population_footnotes cities towns villages rural_type_settlements seat CATOTTG website module
Infobox_hunt founded= type= master= jointmasters= huntsman= whippersin= kennelman= city= meet= time= owner= country= centres= size= website= predecessors=
Infobox_Hurling_All-Ireland year image dates teams munster leinster matches poty team titles captain manager team2 captain2 manager2 totalgoals totalpoints topscorer previous next
Infobox_hymnal name cover caption commissioned_by approved_for released publisher editor pages number_of_hymns psalms service_music last_hymnal next_hymnal
Infobox_ICC_situation country situation_number referral referral_date begin_date YYYY MM DD
Infobox_ice_hockey_biography name halloffame image image_size alt caption birth_date birth_place death_date death_place height_cm weight_kg position shoots catches league team prospect_league prospect_team former_teams played_for league_coach team_coach coached_for sex ntl_team ntl_team_2 ntl_team_3 draft draft_year draft_team wha_draft wha_draft_year wha_draft_team career_start career_end career_start_coach career_end_coach website medaltemplates show-medals
Infobox_ice_hockey_biography/doc name halloffame image image_size alt caption birth_date birth_place death_date death_place height_cm weight_kg position shoots catches league team prospect_league prospect_team former_teams played_for league_coach team_coach coached_for sex ntl_team ntl_team_2 ntl_team_3 draft draft_year draft_team wha_draft wha_draft_year wha_draft_team career_start career_end career_start_coach career_end_coach website medaltemplates show-medals
Infobox_ice_hockey_biography/sandbox name halloffame image image_size alt caption birth_date birth_place death_date death_place height_cm weight_kg position shoots catches league team prospect_league prospect_team former_teams played_for league_coach team_coach coached_for sex ntl_team ntl_team_2 ntl_team_3 draft draft_year draft_team wha_draft wha_draft_year wha_draft_team career_start career_end career_start_coach career_end_coach website medaltemplates show-medals
Infobox_ice_hockey_series year name image image_size alt caption team1 team2 team1_1 team2_1 team1_2 team2_2 team1_3 team2_3 team1_4 team2_4 team1_5 team2_5 team1_6 team2_6 team1_7 team2_7 team1_tot team2_tot table-note location1 location2 location3 format team1_coach team2_coach team1_short team2_short coaches team1_captain team2_captain captains team2_national_anthem team1_national_anthem national_anthems referees dates mvp series_winner hofers networks net_announcers ECF_result WCF_result
Infobox_ice_hockey_team team colour colour logo city league conference Western]] division B.C.]] founded arena colours #008394
Infobox_ice_hockey_team_season Season year Team League LeagueRank Conference ConferenceRank Division DivisionRank Record HomeRecord RoadRecord GoalsFor GoalsAgainst GeneralManager Coach AssistantCoach Captain AltCaptain Arena Attendance MinorLeague GoalsLeader AssistsLeader PointsLeader PIMLeader WinsLeader GAALeader Championship ConferenceWin DivisionWin prev_season next_season
Infobox_ice_hockey_tournament_season title year yearr other_titles image imagesize caption country city num_teams arenas country2 country-flagvar country2-flagvar country3 country3-flagvar country4 country4-flagvar country5 country5-flagvar country6 country6-flagvar country7 country7-flagvar dates tournament_format venues cities host_cities host_team defending_champions winners count second third fourth semifinal1 semifinal2 conf-runner-up1 conf-runner-up2 games goals attendance scoring_leader player points mvp nhl_mvp website prevseason nextseason note
Infobox_Idaho_State_Legislature_district district image image image senate house Democratic Republican Unaffiliated/Other percent percent percent percent percent percent percent percent population population voting-age registered
Infobox_identifier name image image_size image_caption image_alt image_border full_name acronym number start_date YYYY MM DD df=y
Infobox_identity_document document_name image image_size image_width image_alt image_caption image2 image2_size image_width2 image2_alt image_caption2 image3 image3_size image_width3 image3_alt image_caption3 date_first_issued in_circulation using_jurisdiction valid_jurisdictions document_type purpose eligibility expiration cost rights size website
Infobox_impeachment_process image image_size caption accused presiding proponents period start end outcome accusations cause header_votes vote1 accusation1 votes_favor1 votes_against1 present1 not_voting1 result1 vote2 accusation2 votes_favor2 votes_against2 present2 not_voting2 result2 vote3 accusation3 votes_favor3 votes_against3 present3 not_voting3 result3 vote4 accusation4 votes_favor4 votes_against4 present4 not_voting4 result4 vote5 accusation5 votes_favor5 votes_against5 present5 not_voting5 result5 vote6 accusation6 votes_favor6 votes_against6 present6 not_voting6 result6 vote7 accusation7 votes_favor7 votes_against7 present7 not_voting7 result7 vote8 accusation8 votes_favor8 votes_against8 present8 not_voting8 result8 notes
Infobox_incumbency image image_size image_upright caption name term_start term_end monarch monarch_link president president_link chancellor chancellor_link premier premier_link governor governor_link mayor mayor_link cabinet party election appointer nominator seat predecessor successor term_start1 term_end1 cabinet1 party1 election1 appointer1 nominator1 seat1 predecessor1 successor1 term_start2 term_end2 cabinet2 party2 election2 appointer2 nominator2 seat2 predecessor2 successor2 term_start3 term_end3 cabinet3 party3 election3 appointer3 nominator3 seat3 predecessor3 successor3 term_start4 term_end4 cabinet4 party4 election4 appointer4 nominator4 seat4 predecessor4 successor4 seal seal_size seal_upright seal_caption official_url archive_url library_url
Infobox_India_university_ranking type ARWU_W_2022 QS_W_2023 QS_A_2023 THE_W_2023 THES_E_2022 THES_A_2022 FT_MiM_2022 FT_MBA_2022 QS_B_2023 QS_B_A_2023 QS_EMBA_W_2022 QS_EMBA_2022 ECO_W_2021 NIRF_O_2023 NIRF_R_2023 NIRF_U_2023 NIRF_C_2023 QS_INDIA_2020 OUTLOOK_U_2023 OUTLOOK_E_P_U_2023 NIRF_E_2023 IT_E_2022 OUTLOOK_E_G_2023 OUTLOOK_E_P_2023 NIRF_M_2023 IT_M_2022 OUTLOOK_M_G_2023 OUTLOOK_M_P_2023 NIRF_L_2023 IT_L_2022 OUTLOOK_L_G_2023 OUTLOOK_L_P_2023 NIRF_B_2023 BT_2022 OUTLOOK_B_G_2023 OUTLOOK_B_P_2023 NIRF_P_2023 NIRF_A_2023 NIRF_D_2023
Infobox_individual_darts_tournament tournament_name image image_size alt dates venue location country establishment organisation format prize_fund winners_share nine_dart high_checkout winner prev next
Infobox_individual_golf_tournament name image caption dates YYYY MM DD
Infobox_individual_snooker_tournament tournament_name= logo= caption= dates=<!--{{Start YYYY MM DD YYYY MM DD df=y
Infobox_individual_strongman_competition competition_name image dates venue location country athletes nations winner
Infobox_Indonesian_political_party colorcode name_english name_native logo caption chair SecGen foundation headquarters ideology affiliation1_title position international DPRseats dissolution website
Infobox_industrial_process name image caption type sector technologies feedstock product companies facility inventor year developer
Infobox_Indy500 race_name race_logo sanction AAA]] USAC]] Indy season date winner team mph 000.000 mi/h km/h abbr=on
Infobox_Indy500_(1911-1941) race_name race_logo sanction AAA]] date winner team mph 000.000 mi/h km/h abbr=on
Infobox_IndyCar_team name logo owners principals base series drivers sponsors manufacturer opened closed debut final races drivers_champ indy_wins wins poles
Infobox_Asian_Games_torch_relay Year logo caption host countries distance torch theme start end torch number
Infobox_Commonwealth_Games_Queen%27s_baton_relay Year logo caption host countries distance baton theme start end baton number
Infobox_Confederate_State_ACW Fullname Flag Name Seal Flaglink Seallink Nickname Former Former_flag Map Capital LargestCity AdmittanceDate AdmittanceOrder Total totf tots Total totalsoldiers totalsailors totalmarines totd Facility Location Governor Lieutenant Senators Representative Date
Infobox_Faberg%C3%A9_egg name image width caption year_delivered made_for recipient owner acquisition_year workmaster materials height width surprise_in_egg
Infobox_local_impacts pollution displaced impact jobs development contested result contribute lawsuit module
Infobox_nuclear_reactor name image image_size caption child location coordinates
Infobox_Olympic_torch_relay Year Type logo caption host countries distance torch theme start end torch number
Infobox_Pan_American_Games_torch_relay Year logo caption host countries distance torch theme start end torch number
Infobox_RC_Car_race_report Event Event Event Event Event IFMAR Bloc Club Club Club Club Club Club Car Class 1st JPN
Infobox_retail_market retail_market_name image image_width caption location coordinates address opening_date closing_date developer manager owner architect environment_type goods_sold normal_market_days number_of_tenants floor_area parking website belowstyle footnotes
Infobox_Roman_Limes_fort Name Antiker Bild Bildbeschreibung Limes Nummer Strecke Abschnitt Belegung Kastelltyp Truppenteil Abmessungen Verwendetes Kurzbeschreibung Heutiger Breitengrad L�ngengrad Region-ISO Unauffindbar H�he Im Im Im Im Siehe
Infobox_ski_tour name image image_caption image_alt imagesize series date venue english localnames nickname competition type organiser director first number last firstwinner_men mostwins_men mostrecent_men firstwinner_ladies mostwins_ladies mostrecent_ladies
Infobox_telephone_area_code trunk_code area_code area_name number_format country code_descriptor country_calling_code conservation active_date previous_codes earlier_codes area_served codes_list locator_map locator_map_caption coverage_map coverage_map_caption
Infobox_time_zone caption dst initials dst offset dst
Infobox_World%27s_Fair box_width class category image image_width caption year name motto building area invent visitors organized mascot cnt org biz country city venue coord cand award open close prevexpo prevcity nextexpo nextcity suppl prevsuppl prevsupcity nextsuppl nextsupcity prevunho prevunhocity nextunho nextunhocity simuni simspe simhor simoth website
Infobox_instrument name
Infobox_integer_sequence image image_size alt caption named_after publication_year author terms_number con_number number parentsequence formula first_terms largest_known_term OEIS OEIS_name
Infobox_interbank_network name logo area members atm foundation defunct owner website
Infobox_international_American_football_tournament tourney_name year other_titles logo datefrom dateto host nations champion runnerup third games attendance MVP preceded succeeded
Infobox_international_baseball_tournament tourney_name year year_rear other_titles image size caption city country dates num_teams confederations sub-confederations associations venues cities champion
Infobox_international_basketball_competition tourney_name year other_titles image size alt caption city country dates YYYY MM DD df=y
Infobox_international_floorball_competition tourney_name year yearr other_titles image size caption country province city num_teams venues country2 country-flagvar country2-flagvar country3 country3-flagvar country4 country4-flagvar dates cities winners second third matches goals attendance top_scorer player scoring_leader mvp previous next updated
Infobox_international_handball_competition tourney_name year yearr other_titles image size caption country city num_teams venues country2 country-flagvar country2-flagvar country3 country3-flagvar country4 country4-flagvar dates confederations cities champion champion_other American champion-flagvar count second second-flagvar second_other third third-flagvar third_other fourth fourth-flagvar fourth_other matches goals attendance top_scorer player goalkeeper previous next
Infobox_international_hockey_competition tourney_name year other_titles image image_size image_alt image_caption country country-flagvar country2 country2-flagvar country3 country3-flagvar country4 country4-flagvar country5 country5-flagvar country6 country6-flagvar country7 country7-flagvar country8 country8-flagvar city dates opened tournament_format num_teams arenas venues cities host_cities type count games goals attendance scoring_leader points mvp website prevseason nextseason note
Infobox_International_Ice_Hockey_Federation_nation IIHFnation logo_image Badge_size organization founded YYYY MM DD
Infobox_international_lacrosse_competition tourney_name year yearr other_titles image size caption country dates num_teams venues cities winners_men
Infobox_international_netball_competition tourney_name year other_titles logo logosize caption host city nations venues jointhost1 host-flagvar jointhost1-flagvar jointhost2 jointhost2-flagvar jointhost3 jointhost3-flagvar dates datefrom champion champion-flagvar count runnerup runnerup-flagvar third third-flagvar jointchampions1 jointchampions1-flagvar jointchampions2 jointchampions2-flagvar jointchampions3 jointchampions3-flagvar jointrunnersup1 jointrunnersup1-flagvar jointrunnersup2 jointrunnersup2-flagvar jointrunnersup3 jointrunnersup3-flagvar jointthird1 jointthird1-flagvar jointthird2 jointthird2-flagvar jointthird3 jointthird3-flagvar matches attendance top most preceded succeeded
Infobox_International_Premier_Tennis_League_team_season Season= Seasonlink= Team= League= TeamLink= Record= HomeRecord= RoadRecord= NeutralRecord= GamesWon= GamesLost= Owner= President/CEO= GeneralManager= Coach= Captain= Stadium= Attendance= TV= Champs=Yes PrevSeason_link= PrevSeason_year= NextSeason_link= NextSeason_year=
Infobox_international_softball_tournament tourney_name year year_rear other_titles image size caption city country dates num_teams continents venues cities defending_champion defending_champion_other prev_year champion
Infobox_International_Touring_Car_Championship_round_report Country Year Circuit Round_No Season_No Image Caption Location Course_mi Course_km Date_r1 Laps_r1 Pole_driver_country Pole_driver Pole_team Pole_time First_driver_country_r1 First_driver_r1 First_team_r1 Second_driver_country_r1 Second_driver_r1 Second_team_r1 Third_driver_country_r1 Third_driver_r1 Third_team_r1 Fast_driver_country_r1 Fast_driver_r1 Fast_team_r1 Fast_time_r1 Fast_lap_r1 Date_r2 Laps_r2 First_driver_country_r2 First_driver_r2 First_team_r2 Second_driver_country_r2 Second_driver_r2 Second_team_r2 Third_driver_country_r2 Third_driver_r2 Third_team_r2 Fast_driver_country_r2 Fast_driver_r2 Fast_team_r2 Fast_time_r2 Fast_lap_r2
Infobox_International_Touring_Car_Championship_round_report/doc Country Year Circuit Round_No Season_No Image Caption Location Course_mi Course_km Date_r1 Laps_r1 Pole_driver_country Pole_driver Pole_team Pole_time First_driver_country_r1 First_driver_r1 First_team_r1 Second_driver_country_r1 Second_driver_r1 Second_team_r1 Third_driver_country_r1 Third_driver_r1 Third_team_r1 Fast_driver_country_r1 Fast_driver_r1 Fast_team_r1 Fast_time_r1 Fast_lap_r1 Date_r2 Laps_r2 First_driver_country_r2 First_driver_r2 First_team_r2 Second_driver_country_r2 Second_driver_r2 Second_team_r2 Third_driver_country_r2 Third_driver_r2 Third_team_r2 Fast_driver_country_r2 Fast_driver_r2 Fast_team_r2 Fast_time_r2 Fast_lap_r2
Infobox_international_water_polo_competition tourney_name
Infobox_Internet_exchange_point name image image_size full_name abbreviation founded location
Infobox_IPA above ipa decimal imagefile imagesize x-sampa braille
Infobox_IRC_network name image founded_on YYYY MM DD
Infobox_irrigation country land agricultural equipped irrigated systems efficiency share sources tariff investment
Infobox_islands name
Infobox_Isle_of_Man_TT_races year image alt caption date location course race1 race1_pole race1_pole_speed race1_fast race1_fast_speed race1_1st race1_2nd race1_3rd race2 race2_pole race2_pole_speed race2_fast race2_fast_speed race2_1st race2_2nd race2_3rd race3 race3_pole race3_pole_speed race3_fast race3_fast_speed race3_1st race3_2nd race3_3rd race4 race4_pole race4_pole_speed race4_fast race4_fast_speed race4_1st race4_2nd race4_3rd race5 race5_pole race5_pole_speed race5_fast race5_fast_speed race5_1st race5_2nd race5_3rd race6 race6_pole race6_pole_speed race6_fast race6_fast_speed race6_1st race6_2nd race6_3rd race7 race7_pole race7_pole_speed race7_fast race7_fast_speed race7_1st race7_2nd race7_3rd race8 race8_pole race8_pole_speed race8_fast race8_fast_speed race8_1st race8_2nd race8_3rd
Infobox_isotope name
Infobox_Italian_political_party name_english logo leader leader1_title leader1_name leader2_title leader2_name leader3_title leader3_name foundation YYYY MM DD
Infobox_Italian_university_rankings THE_N THE_W THE_NR THE_WR QS_N QS_W ARWU_N ARWU_W LINE_1 CENSIS_La_Repubblica_SSmall CENSIS_La_Repubblica_SMedium CENSIS_La_Repubblica_SLarge CENSIS_La_Repubblica_SMega CENSIS_La_Repubblica_SPol CENSIS_La_Repubblica_PSmall CENSIS_La_Repubblica_PMedium CENSIS_La_Repubblica_PLarge Il_Sole_24_Ore Il_Sole_24_Ore_non_state
Infobox_iwi name image caption map map_caption rohe waka moana maunga awa population url example.iwi.nz
Infobox_Japanese_snack name package_image contents_image jpname maker ingredients flavours
Infobox_Japanese_university_ranking JPU_N TR_N NikkeiBP_G NikkeiBP_H NikkeiBP_K NikkeiBP_C NikkeiBP_KOY GBUDU_N LINE_1 QS_A QS_WA THE_A ARWU_A LINE_2 THE_W QS_W ARWU_W TR_W ENSMP_W LINE_3 NOTE_1 NOTE_2
Infobox_Japanese_university_ranking_(By_Subject) SOC_1 LAW_1 ASAHI_L BE_N BE_PR ECON_1 RE_N RE_W BUS_1 ED_N ED_W CPA_N LINE_1 NSTR_1 ENG_1 NENG_N KawaiE_N MAT_1 TR_N1 TR_W1 PHY_1 TR_N2 TR_W2 CHE_1 TR_N3 TR_W3 BIO_1 TR_N4 TR_W4 MATH_1 ARWU_N1 ARWU_W1 COM_1 ARWU_N2 ARWU_W2 ARC_1 ARC_N LINE_2 LIFE_1 IMM_1 TR_N5 TR_W5 PHT_1 TR_N6 TR_W6 LINE_3 NOTE_1 NOTE_2
Infobox_Japanese_university_ranking_(By_Subject)/doc SOC_1 LAW_1 ASAHI_L BE_N BE_PR ECON_1 RE_N RE_W BUS_1 ED_N ED_W CPA_N LINE_1 NSTR_1 ENG_1 NENG_N KawaiE_N MAT_1 TR_N1 TR_W1 PHY_1 TR_N2 TR_W2 CHE_1 TR_N3 TR_W3 BIO_1 TR_N4 TR_W4 MATH_1 ARWU_N1 ARWU_W1 COM_1 ARWU_N2 ARWU_W2 ARC_1 ARC_N LINE_2 LIFE_1 IMM_1 TR_N5 TR_W5 PHT_1 TR_N6 TR_W6 LINE_3 NOTE_1 NOTE_2
Infobox_Java_version version lts codename released supported public_support_ended paid_support_ended jeps features removed previews incubating
Infobox_Judo_technique name image image_size alt caption class sub_class grip back_up follow_up targets counter kodokan romaji japanese english korean
Infobox_kana Hiragana Katakana Transliteration Transliteration Transliteration Hiragana Katakana Other Dakuten Spelling Unicode Braille
Infobox_Kangxi_radical 211 uni= meaning= pny= bopo= gr= wade= jyutping= yale= poj= onyomi= kunyomi= jp= hang= hanja= hanviet=
Infobox_keyboard name image alt caption model pn fcc branding manufacturer family features layouts switch switch keycaps interface rollover dimensions weight years introduced discontinued predecessor successor price website example.com
Infobox_knot name names image caption type type2 strength origin related releasing uses caveat abok_number conway_notation ab_notation
Infobox_knot_theory name= common image= caption= arf braid braid bridge crosscap crossing genus= hyperbolic linking stick tunnel unknotting conway_notation= ab_notation= d-t dowker thistlethwaite= last last last next next next alternating= class= fibered= pretzel= prime= slice= symmetry= tricolorable= twist=
Infobox_Korean_clan clan clan image image image home titles founder Major Famous current founding dissolution branches
Infobox_Korean_name hangul hanja rr mr koreanipa context image caption
Infobox_laboratory_equipment name image image alt caption acronym other_names uses notable_experiments inventor manufacturer model material components related
Infobox_lacrosse_player name image image_size birth_date YYYY MM DD
Infobox_lacrosse_team_season Season Seasonlink Team TeamLink League LeagueLink Division DivisionRank Record HomeRecord RoadRecord GoalsFor GoalsAgainst GeneralManager AsstGeneralManager Coach Captain AltCaptain Arena Stadium Attendance GoalsLeader AssistsLeader PointsLeader LooseBallsLeader GroundBallsLeader PIMLeader WinsLeader GAALeader Champs DivisionWin PrevSeason_link PrevSeason_year NextSeason_link NextSeason_year
Infobox_landform water name native_name <IETF <the
Infobox_language name altname nativename acceptance image imagescale imagealt imagecaption pronunciation states region creator created setting ethnicity extinct era speakers date dateprefix ref refname speakers2 revived revived-category familycolor family fam1 fam2 fam3 protoname ancestor ancestor2 standards stand1 stand2 dialects listclass dia1 dia2 script sign posteriori nation minority agency development_body iso1 iso1comment iso2 iso2b iso2t iso2comment iso3 iso3comment lc1 ld1 lc2 ld2 iso6 isoexception linglist lingname linglist2 lingname2 glotto glottorefname glotto2 glottorefname2 aiatsis aiatsisname aiatsis2 aiatsisname2 guthrie ELP ELPname ELP2 ELPname2 glottopedia lingua lingua_ref ietf map mapscale mapalt mapcaption map2 mapalt2 mapcaption2 pushpin_map pushpin_image pushpin_map_alt pushpin_map_caption pushpin_mapsize pushpin_label pushpin_label_position coordinates
Infobox_language_family name altname acceptance ethnicity region extinct speakers date ref familycolor fam1 fam2 ... fam15 family ancestor ancestor2 protoname child1 child2 ... child20 children listclass map mapalt mapcaption map2 mapalt2 mapcaption2 mapsize boxsize iso2, iso5 iso6 lingua glotto(2�5) glottoname(2�5) ELP ELPname module notes
Infobox_launch_pad name image imsize caption site location coordinates Coord
Infobox_law_firm name logo image_size alt headquarters num_offices offices num_partners num_attorneys num_lawyers num_employees practice_areas key_people revenue profit_per_equity_partner date_founded YYYY MM DD
Infobox_law_school name image image_size alt caption motto parent religious established type endowment parent dean head= city state province country coordinates students faculty ranking acceptance yield bar website aba logo logo_size logo_alt
Infobox_LDS_in_Country icon icon_width icon_alt name logo logosize logoalt image imagesize caption area membership census stakes districts wards branches total missions temples family footnotes
Infobox_LDS_in_State icon icon_width icon_alt name image imagesize caption area members stakes districts wards branches missions o u a fhc footnotes
Infobox_LDS_Temple name number image image_caption image_width announcement groundbreaking groundbreaking_by groundbreaking_link open_house dedication dedication_by dedication_link rededication rededication_by rededication_link status location address coordinates ... type:landmark display=inline,title
Infobox_Le_Mans_driver name image caption nationality birth_name birth_date birth_place death_date death_place Years Teams Best Class updated
Infobox_legislative_election election_name country flag_year previous_election outgoing_members next_election elected_members election_date seats_for_election majority_seats turnout reporting last_update time_zone ongoing first_election noleader nopercentage heading1 party1 leader1 colour1 percentage1 seats1 last_election1 heading2 party2 leader2 colour2 percentage2 seats2 last_election2 heading3 heading35 party3 party35 leader3 leader35 colour3 colour35 percentage3 percentage35 seats3 seats35 last_election3 last_election35 results_sec map map_upright map_alt map_caption title posttitle before_election before_image before_image_size before_party after_election after_image after_image_size after_party
Infobox_legislative_term name image image_size alt caption body meeting_place election government opposition term_start YYYY mm D df=y
Infobox_legislature name native_name native_name_lang transcription_name legislature coa_pic coa_res coa_alt coa_caption logo_pic logo_res logo_alt logo_caption house_type houses chambers body jurisdiction term_limits foundation YYYY MM DD
Infobox_Lego_theme image image_size caption subject name subthemes from to sets licensedfrom characters website
Infobox_lens_design name scheme year author elements groups aperture
Infobox_LGBT_rights country image imagesize alt caption status penalty gender gender_res military discrimination recognition union recognition_res union_res adoption
Infobox_library name native_name native_name_lang logo logo_size logo_alt image image_size image_upright alt caption country type scope established year month day
Infobox_library_classification DDC= LCC= UDC=
Infobox_Lions_tour tour image imagesize caption date coach captain champions test result top top top top player preceded succeeded
Infobox_list_of_episodes title image image_size alt caption description series total_episodes aired_episodes pending_episodes cancelled_episodes special_episodes reruns last_updated
Infobox_literary_genre name image imagesize caption alt stylistic_origins cultural_origins features popularity formats authors subgenrelist subgenres relatedgenres base# pub# title# series# regional_scenes local_scenes other_topics
Infobox_Little_League_World_Series_qualification title Great Metro Mid-Atlantic Midwest Mountain New Northwest Southeast Southwest West Asia Asia-Pacific Asia-Pacific Australia Canada Caribbean Cuba Europe Europe Europe, Japan Latin Mexico Middle Pacific Panama Puerto Transatlantic prevseason_year nextseason_year
Infobox_livery_company name motto image location formation YYYY
Infobox_logical_connective title other Venn definition truth logic DNF CNF Zhegalkin 0-preserving 1-preserving monotone affine self-dual
Infobox_London_Assembly_constituency name map member party
Infobox_London_station name alt_name alt_name1 symbol symbol2 symbol3 symbol4 symbol5 manager manager1 manager2 owner owner1 owner2 locale borough platforms tracks fare_zone fare_zone_1 fare_zone_note railcode railcode1 railcode2 dft_category access access_note access_category railstation cyclepark toilets image_name imagesize image_alt caption coordinates map_type label_position gridref original pregroup postgroup years1 years2 years3 years4 years5 years6 years7 years8 years9 years10 years11 years12 years13 years14 years15 events1 events2 events3 events4 events5 events6 events7 events8 events9 events10 events11 events12 events13 events14 events15 replace listing_grade listing_detail listing_start listing_amended listing_entry listing_reference= railexits0203 railexits0405 railexits0506 railexits0607 railexits0708 railexits0809 railexits0910 railexits1011 railexits1112 railexits1213 railexits1314 railexits1415 railexits1516 railexits1617 railexits1718 railexits1819 railexits1920 railexits2021 railexits2122 railexits2223 raillowexits0203 raillowexits0405 raillowexits0506 raillowexits0607 raillowexits0708 raillowexits0809 raillowexits0910 raillowexits1011 raillowexits1112 raillowexits1213 raillowexits1314 raillowexits1415 raillowexits1516 raillowexits1617 raillowexits1718 raillowexits1819 raillowexits1920 raillowexits2021 raillowexits2122 raillowexits2223 railint0203 railint0405 railint0506 railint0607 railint0708 railint0809 railint0910 railint1011 railint1112 railint1213 railint1314 railint1415 railint1516 railint1617 railint1718 railint1819 railint1920 railint2021 railint2122 railint2223 raillowint0203 raillowint0405 raillowint0506 raillowint0607 raillowint0708 raillowint0809 raillowint0910 raillowint1011 raillowint1112 raillowint1213 raillowint1314 raillowint1415 raillowint1516 raillowint1617 raillowint1718 raillowint1819 raillowint1920 raillowint2021 raillowint2122 raillowint2223 tubeexits03 tubeexits04 tubeexits05 tubeexits06 tubeexits07 tubeexits08 tubeexits09 tubeexits03_ref tubeexits04_ref tubeexits05_ref tubeexits06_ref dlrbat0708 dlrbat0809 dlrbat1011 ctbat0910 ctbat1011 interchange interchange1 interchange2 interchange3 interchange4 interchange5 interchange_note
Infobox_Long_track_national_team name image image alt caption nick association fim manager captain colour wt1 wt2 wt3 wt wi1 wi2 wi3 wi
Infobox_lottery name native_name native_name_lang image alt caption region launch_date YYYY MM DD df=y
Infobox_loyalty_program name logo logo_upright logo_alt logo_caption image image_upright alt caption type company run_by owner area_served introduced discontinued users partners accrual accrual_partners rewards reward_partners tagline website
Infobox_lunar_crater_or_mare name image image_size caption coordinates= diameter depth colong eponym
Infobox_machine name image image_size image_maxsize image_sizedefault image_upright alt image_title image_link caption classification industry application dimensions weight fuel_source powered self-propelled wheels tracks legs aerofoils axles components invented inventor examples free_label free_text free_label1 free_text1 free_label2 free_text2 free_label3 free_text3 free_label4 free_text4 free_label5 free_text5
Infobox_machinima show_name image caption engine game genre runtime creator director producer writer voice_actors music actor_control editor crew production_company first_release last_release formats num_episodes website
Infobox_magazine title logo logo_size image_file image_size image_alt image_caption editor editor6= editor_title editor_title6= previous_editor staff_writer photographer category frequency format circulation publisher paid_circulation unpaid_circulation circulation_year total_circulation founder founded firstdate YYYY MM DD
Infobox_Maginot_Line name image image_size image_alt caption type sub-sector sector number year regiment blocks entrances strength localisation
Infobox_magnetosphere name image image_size alt caption background discovery_ref discoverer discovered field_ref Radius Magnetic Field tilt longitude Period harmonics wind_ref Speed IMF SDensity magnetosphere_ref type Bow Magnetopause Size Magnetotail Ions Plasma Loading Plasma Particle aurora_ref Spectrum Power Radio
Infobox_Malaysia_electoral_district name state image imagemap caption coordinates coordinates_caption coordinates_date fed-status fed-constituency-number fed-created fed-abolished fed-election-first fed-election-last fed-rep fed-rep-party state-status state-created state-abolished state-election-first state-election-last state-rep state-rep-party demo-census-date demo-pop demo-pop-ref demo-electors demo-electors-date demo-electors-ref demo-area demo-area-ref demo-cd demo-csd
Infobox_mancala image caption subtitle ranks sowing region
Infobox_manhua name image image_size alt caption hanzi romanized genre author illustrator publisher publisher_en publisher_other demographic magazine first firstmo last lastmo volumes chapter_list related content
Infobox_manhwa name image image_size alt caption hangul romanized genre author illustrator publisher publisher_en publisher_other demographic magazine webtoon first firstmo last lastmo volumes chapter_list related content
Infobox_manner_of_address type name consort image image_size image_alt image2 image2_size image2_alt caption reference spoken religious posthumous alternative informal see
Infobox_manuscript name location image width caption alt Also Type Date Place Language(s) Scribe(s) Author(s) Compiled Illuminated Patron Dedicated Material Size Format Condition Script Contents Illumination(s) Additions Exemplar(s) Previously Discovered Accession Other below
Infobox_marine_ecoregion name image image_size image_alt caption map map_size map_alt map_caption marine_realm marine_province biome marine_border marine_borders mangrove_border mangrove_borders freshwater_border freshwater_borders terrestrial_border terrestrial_borders animals area country countries state region_type coordinates seas physical_features coast currents rivers conservation global200 protected protected_ref embedded
Infobox_martial_art logo logocaption logosize image imagecaption imagesize name aka focus hardness country creator formation famous parenthood ancestor descendant related olympic website meaning martialart
Infobox_martial_art_form name other_names image imagesize caption martial_art origin creator creation_date
Infobox_martial_art_school logo logocaption logosize image imagecaption imagesize name aka date country founder head arts ancestor_arts descendant_arts ancestor descendant notable website
Infobox_martial_artist name image image_size alt caption birth_name birth_date YYYY MM DD
Infobox_martial_arts_tournament name current_event image caption date locale english localnames nickname discipline competition type organiser director qualification skill weight first number last firstwinner mostwins mostrecent
Infobox_martyrs name image imagesize caption birth_date birth_place death_date death_place buried martyred_by means_of_martyrdom venerated_in beatified_date beatified_place beatified_by canonized_label canonized_date canonized_place canonized_by major_shrine feast_day attributes patronage notable_members
Infobox_Maryland_State_Legislature_district district constituency image image image senate delegate Democratic Republican Unaffiliated percent percent percent percent percent percent percent percent population population voting-age registered
Infobox_mascot name image image_size caption team university conference_short conference species name_origin origin first_seen first last_seen last related_mascots hall_of_fame website autograph autograph_size autograph_alt
Infobox_Massachusetts_Senate_district district senator Democratic Republican Green United Independent percent percent percent percent percent percent percent percent population population voting-age registered
Infobox_material name image image_size alt caption synonym synonyms type alloy UNS SAE alloy chemical density abbe_number refractive_index flammability limiting_oxygen_index water_absorption_eq water_absorption_24h radiation_resistance uv_resistance youngs_modulus tensile_strength elongation compressive_strength poissons_ratio hardness_rockwell hardness_brinell izod_impact_strength notch_test abrasive_resistance_note abrasive_resistance coeff_friction speed_of_sound melting_point glass_transition heat_deflection_temp_note heat_deflection_temp vicat_note vicat vicat_a vicat_b upper_working_temp lower_working_temp heat_transfer_coeff thermal_conductivity_note thermal_conductivity thermal_diffusivity_note thermal_diffusivity linear_expansion specific_heat dielectric_constant_note dielectric_constant permittivity relative_permeability_note relative_permeability permeability_note permeability dielectric dissipation_factor_note dissipation_factor surface_resistivity volume_resistivity chem_res_acid_c chem_res_acid_d chem_res_alcohol chem_res_aldehyde chem_res_alkali chem_res_aromatic chem_res_ester chem_res_grease_oil chem_res_haloalkane chem_res_halogen chem_res_ketone gas_perm_temp gas_perm_N gas_perm_O gas_perm_CO2 gas_perm_H2O price footnotes
Infobox_mathematical_function name image= imagesize= imagealt= parity= domain= codomain= range= period= zero= plusinf= minusinf= max= min= vr1= f1= vr2= f2= vr3= f3= vr4= f4= vr5= f5= asymptote= root= critical= inflection= fixed= notes
Infobox_medal_templates above label1 data1 header5 medals
Infobox_medical_intervention name
Infobox_medical_specialty title synonym image 225px Diagram caption Blood
Infobox_Medieval_Scottish_Diocese name= emblem= bishop= archdeacon= deans= attestation= metpre-1472= metpre-1492= cathedral= prevcathedral= saint= scottishsaint= canons= mensal= common= prebendal= catholic= episcopal=
Infobox_medieval_text name alternative image width caption full also author(s) ascribed compiled illustrated patron dedicated audience language date date provenance state authenticity series manuscript(s) MS MS MS MS MS MS MS MS MS MS principal first verse length illustration(s) genre subject setting period personages personages sources below
Infobox_meteor_shower name image caption pronounce <!--
Infobox_meteorite Name Alternative Image Image_caption Type Class Clan Group Grouplet Subgroup Structural_classification Parent Composition Shock Weathering Country Region Lat_Long 00 00 N 00 00 E display=inline,title
Infobox_meteorite_subdivision Subdivision Name Alternative_names Image Image_caption Image_alt_text Compositional_type Type Class Clan Group
Infobox_militant_organization name logo caption native_name native_name_lang other_name leader foundation dates YYYY MM DD
Infobox_military_conflict conflict width partof image image_size alt caption date place coordinates
Infobox_military_hospital name
Infobox_military_operation name partof subtitle image image_upright alt caption scope type location location2 coordinates coordinates2 map_type map_size map_caption map_label map_label2 planned planned_by commanded_by objective target date YYYY MM DD df=y
Infobox_military_rank name native_name image image_size alt caption image2 image_size2 alt2 caption2 image3 image_size3 alt3 caption3 country service abbreviation rank rank NATO Non-NATO pay formation abolished higher lower equivalents history
Infobox_military_rating name image caption issued_by type abbreviation specialty
Infobox_mine name image width caption alt pushpin_map pushpin_mapsize pushpin_map_alt pushpin_map_caption= pushpin_image pushpin_label pushpin_label_position coordinates latitude N/S longitude E/W display=inline,title
Infobox_mineral name boxwidth boxbgcolor image imagesize alt caption struct struct struct struct2 struct2 struct2 SMILES Jmol category formula IMAsymbol molweight strunz dana system class symmetry unit color colour habit twinning cleavage fracture tenacity toughness mohs luster streak diaphaneity gravity density polish opticalprop refractive birefringence pleochroism 2V dispersion extinction length fluorescence absorption melt Curie fusibility diagnostic solubility impurities alteration other prop1 prop1text references var1 var1text var2 var2text var3 var3text var4 var4text var5 var5text var6 var6text
Infobox_mining name image width caption subdivision_type state/province country authority official commodity production value employees year
Infobox_minor_football_All-Ireland year image dates teams connacht munster leinster ulster matches poty team titles captain manager team2 captain2 manager2 totalgoals totalpoints topscorer previous next
Infobox_Minor_League_Baseball name founded city misc logo uniformlogo class past current conference division past majorleague pastmajorleague classnum classchamps leaguenum leaguechamps confnum conferencechamps divnum divisionchamps wildcardnum wildcardberths nickname pastnames colors mascot mascots ballpark pastparks owner president gm manager
Infobox_MLB name established misc logo uniformlogo current y1 division y2 past y5 y6 past y7 y8 pastleaguediv1 y9 y10 pastleaguediv2 y11 y12 pastleaguediv3 y13 y14 Uniform retirednumbers colors colours
Infobox_MLB_home_run_derby image year date venue city winner score
Infobox_MLB_yearly name image image caption season misc current y1 division y2 ballpark y4 city y5 record divisional league owners president presbo general managers television radio espntn brtn
Infobox_MMA_event name image caption promotion date venue city attendance gate buyrate estimatedviewers purse previousevent followingevent
Infobox_MMA_training_association teamname image imagesize caption logo dateestablished YYYY MM DD
Infobox_mobile_phone name logo logosize logoalt image imagesize alt caption codename aka brand developer manufacturer slogan colors series family modelnumber networks released YYYY MM DD
Infobox_model_rail_scale name image_filename image_caption widthpx standard ratio note website area members
Infobox_molecular_geometry Examples= Image_File=(filename.ext) Symmetry_group= Atom_direction= Bond_angle= mu=
Infobox_monarchy royal_title realm native_name border coatofarms coatofarms_size coa_alt coatofarms_article
Infobox_monastery name native_name native_name_lang image alt caption full other_names order denomination established disestablished reestablished mother dedication dedicated consecrated celebration archdiocese diocese churches founder abbot abbess prior prioress archbishop bishop archdeacon people status functional_status heritage_designation designated_date architect style groundbreaking completed_date construction_cost closed_date location country map_type coordinates oscoor remains public_access other_info website
Infobox_monoisoform isoformCount isoformgroup polymer_type image image_source protein_type structure subunit_genes alias subunit1 nick1 allele1a images1 nick2 allele2a images2 nick3 allele3a images3 nick4 allele4a images4 nick5 allele5a images5 rareIsoforms rnick1 rallele1a rimages1 rnick2 rallele2a rimages2 rnick3 rallele3a rimages3 linkout
Infobox_monoisoform/doc isoformCount isoformgroup polymer_type image image_source protein_type structure subunit_genes alias subunit1 nick1 allele1a images1 nick2 allele2a images2 nick3 allele3a images3 nick4 allele4a images4 nick5 allele5a images5 rareIsoforms rnick1 rallele1a rimages1 rnick2 rallele2a rimages2 rnick3 rallele3a rimages3 linkout
Infobox_monoisoform/sandbox isoformCount isoformgroup polymer_type image image_source protein_type structure subunit_genes alias subunit1 nick1 allele1a images1 nick2 allele2a images2 nick3 allele3a images3 nick4 allele4a images4 nick5 allele5a images5 rareIsoforms rnick1 rallele1a rimages1 rnick2 rallele2a rimages2 rnick3 rallele3a rimages3 linkout
Infobox_monster_truck name image image_upright alt caption owner driver home_city year_created previous number style chassis engine transmission tires
Infobox_month image alt caption native_name calendar num days season gregorian holidays prev_month next_month
Infobox_monument name native_name image image_size caption location mapframe designer type material length width height weight visitors_num visitors_year begin complete dedicated open restore dismantled dedicated_to map_name map_text map_width map_relief coordinates website extra_label extra
Infobox_Mosconi_Cup year logo logowidth dates venue location home away homecaptain awaycaptain MVP homescore awayscore result
Infobox_Motocross_rider name image caption nationality birth_date YYYY MM DD
Infobox_motor_race Race Logo Track Series Series Venue Location Coordinates Sponsor First First Last Distance Laps Duration Previous Most Most Most Most Surface Length Length Turns Record Record Record Record Record
Infobox_motorcycle name image alt caption aka manufacturer parent_company production assembly predecessor successor class engine bore_stroke compression top_speed power torque ignition fuel_delivery transmission frame suspension brakes tires rake_trail wheelbase length width height seat_height dry_weight wet_weight fuel_capacity oil_capacity fuel_consumption turning_radius range related sp footnotes
Infobox_motorcycle_rider name image image_size alt caption nationality birth_name birth_date YYYY MM DD
Infobox_motorcycle_speedway_team clubname image image_size alt caption track country founded YYYY MM DD df=y
Infobox_motorsport_championship name logo image-size caption category country region headquarters inaugural folded classes LMP GT drivers riders teams constructors affiliations manufacturers engines tyres tires current_champions champion champion champion champion manufacturer constructor tv website
Infobox_motorsport_formula logo pixels caption category country/region championships inaugural status folded current
Infobox_motorsport_round name logo image-size caption category country/region inaugural inaugural2 folded classes drivers riders teams constructors engines tyres winning winning winning manufacturer constructor website current_season race_director
Infobox_motorsport_season title logo caption organizer discipline duration no_of_races no_of_mfrs no_of_teams no_of_drivers TV champions_title award1_title award1_champ award2_title award2_champ award3_title award3_champ award4_title award4_champ award5_title award5_champ award6_title award6_champ award7_title award7_champ award8_title award8_champ award9_title award9_champ award10_title award10_champ award11_title award11_champ award12_title award12_champ award13_title award13_champ award14_title award14_champ award15_title award15_champ award16_title award16_champ award17_title award17_champ award18_title award18_champ seasonslistnames seasonslist prevseason_year prevseason_link altseason_year altseason_link nextseason_year nextseason_link
Infobox_motorsport_venue name nicknames time location coordinates logo logo_caption image image_caption track_map capacity FIA_grade owner operator broke_ground opened closed construction_cost= architect former_names events minor website example.com
Infobox_motorway_services name logo logo_size logo2 logo_size2 image image_size image_caption county road coordinates
Infobox_mountaineer name image image_size caption full_name birth_name nickname citizenship main_discipline other_discipline birth_date birth_place nationality start_age start_discipline notable_ascents partnerships spouse partner children parents relatives
Infobox_movie_quote name image caption character actor writer firstusedin alsousedin moviequotes
Infobox_MPBL_season MPBLyear team team2 misc coach 1c-name 1c-wins 1c-losses 1c-place 1c-playoffs 2c-name 2c-wins 2c-losses 2c-place 2c-playoffs 3c-name 3c-wins 3c-losses 3c-place 3c-playoffs owners television radio pol_team prevseason nextseason
Infobox_multi-gene_haplotype haplotype chromosome image image_source alias othertype loci1name loci1rows gene1name gene1var type1var gene2name loci2name loci2rows gene2var type2var gene3name loci3name loci3rows gene3var type3var gene4name loci4name loci4rows gene4var type4var gene5name loci5name loci5rows gene5var type5var gene6name loci6name loci6rows gene6var type6var gene7name loci7name loci7rows gene7var type7var gene8name loci8name loci8rows gene8var type8var gene9name loci9name loci9rows gene9var type9var gene10name loci10name loci10rows gene10var type10var popMax freqMax NumLoci location length haplotype1 disease1 haplotype2 disease2 haplotype3 disease3 haplotype4 disease4
Infobox_multigame_series title bgcolor fgcolor image image1 image2 border border1 border2 caption teams location1 date1 result1 location2 date2 result2 location3 date3 result3 location4 date4 result4 location5 date5 result5 location6 date6 result6 location7 date7 result7 location8 date8 result8 location9 date9 result9 location10 date10 result10 MVP attendance total previous next
Infobox_music_genre name native_name etymology other_names image alt caption stylistic_origins cultural_origins instruments derivatives subgenres subgenrelist fusiongenres regional_scenes local_scenes other_topics footnotes current_year
Infobox_musical name subtitle image image_size caption music lyrics book basis setting premiere_date premiere_location productions awards
Infobox_musical_composition name composer image alt caption translation native_name native_name_lang key catalogue opus genre form text language melody client composed date={{Start YYYY MM DD df=y
Infobox_musical_interval main_interval_name inverse other_names abbreviation semitones interval_class just_interval cents_equal_temperament cents_24T_equal_temperament cents_just_intonation
Infobox_musical_scale name image_name image_alt relative parallel dominant subdominant enharmonic first_pitch second_pitch third_pitch fourth_pitch fifth_pitch sixth_pitch seventh_pitch pitch_classes qualities Forte complement interval_vector
Infobox_mythical_creature name image image_size image_upright caption Grouping Sub_Grouping Similar_entities Family Folklore First_Attested AKA Country Region Habitat Details
Infobox_Nahua_officeholder name image imagesize caption smallimage title term with tlatoani cihuacoatl tlacochcalcatl tlacateccatl appointed predecessor successor title2 term2 with2 tlatoani2 cihuacoatl2 tlacochcalcatl2 tlacateccatl2 appointed2 predecessor2 successor2 title3 term3 with3 tlatoani3 cihuacoatl3 tlacochcalcatl3 tlacateccatl3 appointed3 predecessor3 successor3 title4 term4 with4 tlatoani4 cihuacoatl4 tlacochcalcatl4 tlacateccatl4 appointed4 predecessor4 successor4 birth_date birth_place death_date death_place father mother wife wives children wives_children=
Infobox_NAIA_Division_I_football_season year image image_caption number_of_teams regular_season postseason championship champions naia_poty
Infobox_NAIA_Division_II_football_season year image image_caption regular_season postseason championship champions
Infobox_NAIA_Football_Championship_Series name image visitor home visitor_total home_total visitor_quarter1 visitor_quarter2 visitor_quarter3 visitor_quarter4 visitor_OT1 visitor_OT2 visitor_OT3 visitor_OT4 home_quarter1 home_quarter2 home_quarter3 home_quarter4 home_OT1 home_OT2 home_OT3 home_OT4 date stadium city MOOP MODP anthem officials attendance network announcers series prev_year next_year
Infobox_NAIA_football_season year image image_caption number_of_teams regular_season postseason championship champions naia_poty
Infobox_name name image caption romanisation pronunciation gender masculine feminine meaning motto region language languageorigin origin alternative nickname shortform petname variant related cognate anglicisation name derived derivative derivation seealso popularity footnotes
Infobox_named_bovine image image_size image_alt caption country breed brand sex color= weight born years sire paternalgrandsire paternalgranddam dam maternalgrandsire maternalgranddam breeder owner riders death_date death_place honors awards
Infobox_NASA_Astronaut_Group image= caption= name= year= number= prev= next=
Infobox_NASCAR_driver name image caption birth_name birth_date YYYY MM DD
Infobox_NASCAR_race_report Year Race_Name Details_ref Type Race_No Season_No Description Image image_size image_alt Caption Fulldate YYYY MM DD
Infobox_NASCAR_race_report/doc Year Race_Name Details_ref Type Race_No Season_No Description Image image_size image_alt Caption Fulldate YYYY MM DD
Infobox_NASCAR_race_report/sandbox Year Race_Name Details_ref Type Race_No Season_No Description Image image_size image_alt Caption Fulldate YYYY MM DD
Infobox_NASCAR_team name logo owners principals base series drivers sponsors manufacturer opened closed debut final races drivers_champ wins poles
Infobox_national_baseball_team Image Name KOR
Infobox_national_basketball_team country current type logo FIBA_ranking joined_FIBA FIBA_zone national_fed first_game largest_win largest_loss coach nickname medal_templates oly_appearances oly_medals wc_appearances wc_medals zone_championship zone_appearances zone_medals zone2_championship= zone2_appearances zone2_medals h_body h_title h_pattern_b h_shorts h_pattern_s a_title a_body a_pattern_b a_shorts a_pattern_s
Infobox_national_cerebral_palsy_football_team Name date Badge Badge_size Nickname Federation Coach Asst Captain Most Top Home IFCPF IFCPF IFCPF IFCPF IFCPF kit kit_image1 kit_image2 kit_image3 pattern_name1 pattern_name2 pattern_name3 pattern_la1 pattern_b1 pattern_ra1 pattern_sh1 pattern_so1 leftarm1 body1 rightarm1 shorts1 socks1 pattern_la2 pattern_b2 pattern_ra2 pattern_sh2 pattern_so2 leftarm2 body2 rightarm2 shorts2 socks2 pattern_la3 pattern_b3 pattern_ra3 pattern_sh3 pattern_so3 leftarm3 body3 rightarm3 shorts3 socks3 First Largest Largest World World World Paralympic Paralympic Paralympic Regional Regional Regional Regional 2ndRegional 2ndRegional 2ndRegional 2ndRegional
Infobox_national_field_hockey_team name image size nickname association confederation coach assistant manager captain most top rank max max min min first largest largest pattern_la1 pattern_b1 pattern_ra1 leftarm1 body1 rightarm1 shorts1 skirt1 socks1 pattern_la2 pattern_b2 pattern_ra2 leftarm2 body2 rightarm2 shorts2 skirt2 socks2 pattern_la3 pattern_b3 pattern_ra3 pattern_sh3 pattern_so3 leftarm3 body3 rightarm3 shorts3 socks3 pattern_la4 pattern_b4 pattern_ra4 pattern_sh4 pattern_so4 leftarm4 body4 rightarm4 shorts4 socks4 World World World Olympic Olympic Olympic Regional Regional Regional Regional 2ndRegional 2ndRegional 2ndRegional 2ndRegional type medaltemplates
Infobox_national_football_team Name Nickname Badge Badge_size Association Other-affiliation Confederation Sub-confederation Coach Captain Most Top Home FIFA pattern_la1 pattern_b1 pattern_ra1 leftarm1 body1 rightarm1 shorts1 socks1 pattern_name1 pattern_la2 pattern_b2 pattern_ra2 leftarm2 body2 rightarm2 shorts2 socks2 pattern_name2 pattern_la3 pattern_b3 pattern_ra3 leftarm3 body3 rightarm3 shorts3 socks3 pattern_name3 FIFA FIFA FIFA FIFA FIFA First Largest Largest FIFA FIFA FIFA FIFA FIFA FIFA Regional Regional Regional Regional Confederations Confederations Confederations medaltemplates Website
Infobox_national_football_team_season image caption season shield manager assistant captain home continentalcup1 continentalcup1 continentalcup2 continentalcup2 matches wins draws losses total average goals top most players goalscorers debutants biggest biggest highest longest longest longest longest highest lowest average pattern_la1 pattern_b1 pattern_ra1 leftarm1 body1 rightarm1 shorts1 socks1 pattern_la2 pattern_b2 pattern_ra2 leftarm2 body2 rightarm2 shorts2 socks2 pattern_la3 pattern_b3 pattern_ra3 pattern_sh3 pattern_so3 leftarm3 body3 rightarm3 shorts3 socks3 prevseason nextseason
Infobox_national_futsal_team Name date Badge Badge_size Nickname Association Confederation Coach Asst Captain Most Top Home FIFA FIFA FIFA FIFA FIFA FIFA kit kit_image1 kit_image2 kit_image3 pattern_name1 pattern_name2 pattern_name3 pattern_la1 pattern_b1 pattern_ra1 pattern_sh1 pattern_so1 leftarm1 body1 rightarm1 shorts1 socks1 pattern_la2 pattern_b2 pattern_ra2 pattern_sh2 pattern_so2 leftarm2 body2 rightarm2 shorts2 socks2 pattern_la3 pattern_b3 pattern_ra3 pattern_sh3 pattern_so3 leftarm3 body3 rightarm3 shorts3 socks3 American First Largest Largest World World World Regional Regional Regional Regional AMF AMF AMF AMF AMF AMF Futsal Futsal Futsal Futsal 2ndRegional 2ndRegional 2ndRegional 2ndRegional Confederations Confederations Confederations Grand Grand Grand
Infobox_national_handball_team Name Type Badge Badge_size Nickname Association Coach Assistant Captain Most Most Ranking Points pattern_la1 pattern_b1 pattern_ra1 pattern_sh1 leftarm1 body1 rightarm1 shorts1 pattern_la2 pattern_b2 pattern_ra2 pattern_sh2 leftarm2 body2 rightarm2 shorts2 Summer Summer Summer World World World Regional Regional Regional Regional updated
Infobox_national_hockey_team Name Badge Badge_size caption Nickname Association General Coach Asst Captain Most Top Most Home IIHF IIHF IIHF IIHF IIHF IIHF Team_Colors Jerseys First Largest Largest World World World Regional Regional Regional Regional Olympic Olympic Olympic Record
Infobox_national_indoor_hockey_team name image size nickname association confederation coach assistant manager captain most top rank max max min min pattern_la1 pattern_b1 pattern_ra1 leftarm1 body1 rightarm1 shorts1 skirt1 socks1 pattern_la2 pattern_b2 pattern_ra2 leftarm2 body2 rightarm2 shorts2 skirt2 socks2 pattern_la3 pattern_b3 pattern_ra3 pattern_sh3 pattern_so3 leftarm3 body3 rightarm3 shorts3 socks3 pattern_la4 pattern_b4 pattern_ra4 pattern_sh4 pattern_so4 leftarm4 body4 rightarm4 shorts4 socks4 World World World Regional Regional Regional Regional 2ndRegional 2ndRegional 2ndRegional 2ndRegional type medaltemplates
Infobox_national_korfball_team Name Logo= Association= IKF IKF IKF Nickname= World World World World World World European European European Asia-Oceania Asia-Oceania Asia-Oceania African African African Continental Continental Continental Continental website= example.com
Infobox_national_lacrosse_team Name logo logo_size logo_alt Nickname FIL_ranking
Infobox_national_military name country native_name
Infobox_national_motorcycle_speedway_team name image image nick association fim manager captain colour wt1= wt2= wt3= wt= wp1= wp2= wp3= wp= wi1= wi2= wi3= wi= ep1= ep2= ep3= ep= ei1= ei2= ei3= ei=
Infobox_national_netball_team country image imagesize caption nickname association confederation coach asst manager captain vice-captain caps top rank kitlabel1 body1 pattern_b1 skirt1 pattern_sk1 kitlabel2 body2 pattern_b2 skirt2 pattern_sk2 first largest largest WNC WNC WNC WNC CWG CWG CWG CWG
Infobox_National_Olympic_Committee title logo size country code created
Infobox_National_Paralympic_Committee title logo size country code created recognized association headquarters president secretary website ...
Infobox_National_People%27s_Congress year chinese pinyin session # term-begin status term-end pzimage pmimage chimage pz pm ch pzterm pmterm chterm pzeimage pmeimage cheimage pze pme che pzeterm pmeterm cheterm website lastyear nextyear
Infobox_National_People%27s_Congress/doc year chinese pinyin session # term-begin status term-end pzimage pmimage chimage pz pm ch pzterm pmterm chterm pzeimage pmeimage cheimage pze pme che pzeterm pmeterm cheterm website lastyear nextyear
Infobox_national_pitch_and_putt_team Name Logo= Association= Confederation= Coach= World World World Continental Continental Continental Continental
Infobox_national_political_convention year party election_year logo image image_size image2 image_size2 caption date city venue convention_chair keynote_speaker presidential_nominee presidential_nominee_state vice_presidential_nominee vice_presidential_nominee_state othercandidates totaldelegates votesneeded ballots
Infobox_national_racquetball_team name logo= association= confederation= IRF world world world world world panamerican panamerican panamerican panamerican panamerican european european european european european asian asian asian asian asian website=
Infobox_national_rugby_team Name Nickname Badge Badge_size Emblem Union Coach Captain Most Top Top Home pattern_la1 pattern_b1 pattern_ra1 pattern_sh1 pattern_so1 leftarm1 body1 rightarm1 shorts1 socks1 pattern_la2 pattern_b2 pattern_ra2 pattern_sh2 pattern_so2 leftarm2 body2 rightarm2 shorts2 socks2 World World World World World World First Largest Largest World World World medaltemplates website
Infobox_national_rugby_union unionname nativename logo logosize founded YYYY MM DD df=y
Infobox_national_softball_team Name Christmas
Infobox_national_sports_federations name abbr logo logosize country_flag IOC_nation url sport othersport1 othersport2 othersport3 othersport4 historytitle preceding_organisations preceding_organizations founded former_names disbanded superseded demographicstitle clubs affiliated_clubs membership_size participation_levels affiliationstitle IF IF_abbr IF_url IF_joined continental_assoc NOC NOC_joined NPC NPC_joined other_aff1 other_aff2 other_aff3 other_aff4 other_aff5 other_aff6 other_aff7 electedtitle patron president chair board_type board1 board2 board3 board4 board5 board6 board7 sectitle address1 address2 address3 address4 country chief_exec secretary_general olympic_team_manager staff_pos1 staff_name1 staff_pos2 staff_name2 staff_pos3 staff_name3 staff_pos4 staff_name4 staff_pos5 staff_name5 staff_pos6 staff_name6 staff_number volunteers_number financetitle company_status operating_income sponsors regionstitle region1 region2 region3 region4 region5 region6 region7 region8
Infobox_national_volleyball_team name image nickname federation confederation coach pattern_la1 pattern_b1 pattern_ra1 pattern_sh1 leftarm1 body1 rightarm1 shorts1 pattern_la2 pattern_b2 pattern_ra2 pattern_sh2 leftarm2 body2 rightarm2 shorts2 Olympic Olympic Olympic World World World World World World Regional Regional Regional Regional website medaltemplates
Infobox_national_water_polo_team Name FINA Nickname Image Image_size Association Confederation Coach Asst Captain Most Top Home FINA FINA FINA FINA FINA FINA First Biggest Biggest Olympics Olympics Olympics 6-time 5-time 4-time Olympics Olympics Olympics Olympics Olympics Olympics Olympics Olympics Olympics World World World World World World World World World World World World World World World World World Regional Regional Regional Regional 2ndRegional 2ndRegional 2ndRegional 2ndRegional 3rdRegional 3rdRegional 3rdRegional 3rdRegional Website
Infobox_national_wheelchair_rugby_team color2 color1 country_alt country logo logo_width iwrf_ranking joined_iwrf iwrf_zone national_fed coach nickname paraly_appearances paraly_medals wc_appearances wc_medals zone_championship zone_appearances zone_medals zone_championship2 zone_appearances2 zone_medals2 h_title h_body h_pattern_b h_shorts h_pattern_s a_title a_body a_pattern_b a_shorts a_pattern_s
Infobox_navigation_satellite_system name= image= image_caption= country= type= status= operator= coverage= precision= satellites_nominal= satellites_current= first_launch= last_launch= launch_total= regime= orbit_height= cost=
Infobox_NBA_All-Star_Game name image visitor visitor_qtr1 visitor_qtr2 visitor_qtr3 visitor_qtr4 visitor_total home home_qtr1 home_qtr2 home_qtr3 home_qtr4 home_total date arena city MVP anthem referee halftime attendance network announcers west_pattern_b= west_body= west_shorts= east_pattern_b= east_body= east_shorts= prev_year next_year
Infobox_NBA_season team league end_year championship_win conference_win division_win coach gm owners arena wins losses division division_place conf_place playoffs bbr_team television radio
Infobox_NBL_season NBLyear <span <span clubname <span <span color1 color2 color3 image image_size championship_win season_win cup_win wins losses ladder finals cup1 cup1_result cup_wins cup_losses cup_ladder cup coach_n coach captain_n captain cocaptains cocap1_n cocap1 cocap2_n cocap2 arena top_scorer ppg_n ppg rebounds_leader rpg_n rpg assists_leader apg_n apg efficiency_leader epg_n epg prevseason nextseason updated
Infobox_NCAA_athlete color fontcolor name image image_size caption college conference sport jersey position class major minor nickname career_start career_end height_ft height_in weight_lb nationality birth_date YYYY MM DD
Infobox_NCAA_basketball_conference_tournament Year Conference Division Gender Image ImageSize Caption Teams Arena City 1stRoundArena 1stRoundCity QuarterArena QuarterCity SemiArena SemiCity FinalArena FinalCity Champions TitleCount Coach CoachCount MVP MVPTeam Attendance TopScorer TopScorerTeam TopScorer2 TopScorer2Team Points Television
Infobox_NCAA_basketball_rankings year gender image image_caption preseason_number_1 ncaa_champions
Infobox_NCAA_conference_tournament name optional_subheader defunct image caption sport conference number_of_teams format current_stadium current_location years most_recent current_champion_label current_champion most_championships trophy television website sponsors all_stadiums all_locations
Infobox_NCAA_Division_I_basketball_season gender year image alt caption preseason_ap tourney_start nc_date champ_stad champ_city champ wbit_champ wnit_champ wbi_champ nit_champ vegas16_champ cbi_champ cit_champ tbc_champ helmschamp playeroftheyear helmspoy
Infobox_NCAA_Division_I_FBS_season year image image_caption number_of_teams preseason_ap regular_season number_of_bowls bowl_start bowl_end championship_system championship_bowl championship_location champions heisman ap_poll coaches_poll
Infobox_NCAA_Division_I_FCS_season year image image_caption number_of_teams regular_season playoffs nc_date championship champions payton buchanan
Infobox_NCAA_Division_I_ice_hockey_rankings year gender image caption champ preseason_USA_Today preseason_USCHO
Infobox_NCAA_Division_I_women%27s_volleyball_tournament Year= FinalFourArena FinalFourCity Champions= TitleCount= RunnerUp= GameCount= Semifinal1= FinalFourCount= Semifinal2= FinalFourCount2= Coach= CoachCount= MOP= MOPTeam= AllTournamentTeam= Name1 Name2 Name3 Name4 Name5 Name6
Infobox_NCAA_Division_II_season year image image_caption number_of_teams regular_season postseason championship champion hill
Infobox_NCAA_football_rankings season image image_caption preseason_number_1 champions conference
Infobox_NCAA_Football_Tournament Year Division Image ImageSize Caption Teams Stadium Location Champions TitleCount ChampGameCount RunnerUp GameCount Semifinal1 Semifinal2 Coach CoachCount Attendance
Infobox_NCAA_Ice_Hockey_Conference_Tournament Year Conference Gender Image ImageSize Caption Dates Teams Arena City Champions TitleCount Coach CoachCount MVP MVPTeam MOP MOPTeam Attendance TopScorer2 TopScorer TopScorerTeam TopScorer2Team Points prevseason_year prevseason_link nextseason_year nextseason_link
Infobox_NCAA_ice_hockey_season gender division color colour color_text year image caption duration champ_stad champ_city champ Denver]] hobey_baker hobey_baker_team Minnesota
Infobox_NCAA_ice_hockey_team_season Season Team Sex Image Conference ShortConference ConferenceRank Poll#1 Poll#1Rank Poll#2 Poll#2Rank Record ConferenceRecord HomeRecord RoadRecord NeutralRecord HeadCoach AsstCoaches Captain AltCaptain Arena Champion NCAATourney NCAATourneyResult prevseason nextseason headerstyle labelstyle
Infobox_NCAA_Soccer_Conference_Tournament Year= Conference= Division= Gender= Image= ImageSize= Caption= Teams= Matches= Attendance= Venue= City= 1stRoundVenue= 1stRoundCity= QuarterVenue= QuarterCity= SemiVenue= SemiCity= FinalVenue= FinalCity= Champions= TitleCount= Coach= CoachCount= MVP= MVPTeam= Broadcast= FirstTournamentEver= LastTournamentEver= Different Piped Different Piped
Infobox_NCAA_soccer_rankings year gender image image_caption preseason_number_1 ncaa_champions
Infobox_NCAA_sports_season title color color season Season Conference ShortConference Sex Division Sport Sportname logo pixels caption Duration no_of_teams attendance average_attendance TV draft draft_link top_pick picked_by regular_season season_champs MVP MVP_link top_scorer tournament tournament_champs tournament_place MVP2 MVP_link2 top_scorer2 NCAA bids conf_red best ncaa_team prevseason nextseason headerstyle labelstyle
Infobox_NCAA_tournament_yearly custom_title year division sport image image_size caption season teams format finals_site champions title_count runner_up game_count semifinal1 semifinal2 coach coach_count MVP_label MVP MVP_team attendance television radio prev tournament_link next
Infobox_nebula name
Infobox_Nepalese_political_party name devanagari_name logo leader president secretary foundation YYYY MM DD
Infobox_netball_biography honorific-prefix name honorific-suffix image image_size alt caption full_name maidenname birth_date yyyy mm dd
Infobox_netball_biography/doc honorific-prefix name honorific-suffix image image_size alt caption full_name maidenname birth_date yyyy mm dd
Infobox_netball_biography/sandbox honorific-prefix name honorific-suffix image image_size alt caption full_name maidenname birth_date yyyy mm dd
Infobox_netball_team team image imagesize caption full nickname association founded disbanded location region venue capacity chairperson ceo president coach asst-coach manager captain vice-captain premierships most top league season position kitlabel1 body1 pattern_b1 skirt1 pattern_sk1 kitlabel2 body2 pattern_b2 skirt2 pattern_sk2
Infobox_netball_team_season year team image caption head_coach asst_coach director_of_netball manager captain vice-captain home_venue(s) main_venue wins losses placing finals top_scorer leftarm1 body1 rightarm1 skirt1 pattern_la1 pattern_b1 pattern_ra1
Infobox_networking_protocol title logo logo image image caption is abbreviation purpose developer date
Infobox_New_Caledonian_political_party party_name native_name colourcode XYZ
Infobox_New_Jersey_State_Legislature_district district image image image senate assembly Democratic Republican Independent percent percent percent percent percent percent percent percent population population voting-age registered
Infobox_New_Testament_manuscript form Uncial Minuscule Lectionary] number image isize caption name sign text date script Greek]] [[Latin Latin]] ... found now cite size type Western Caesarean Byzantine Mixed] cat II III IV V] hand note
Infobox_New_York_City_Subway_service service name image1 size1 caption1 image2 size2 caption2 image3 size3 caption3 image4 size4 caption4 north south terminals stations stock
Infobox_New_York_City_Subway_station name type image image_size image_caption alt address borough neighborhood area coordinates line service transfer connection structure depth levels platforms tracks open_date close_date rebuilt code accessible acc_note cross_platform former other_exits opposite_transfer passengers pass_ref pass_station_name pass_year pass_percent next_north next_south next_topwest next_east next_west adjacent_stations adjacent_stations_collapsible unused_adjacent_stations other_adjacent_stations nolegend legend map_type coordinates layout
Infobox_New_Zealand_political_party name_english name_maori party_logo leader president deputy foundation YYYY MM DD df=y
Infobox_newspaper name logo logo_size logo_border logo_alt image image_size image_border image_alt caption motto type format school owner owners= founder founders= publisher president generalmanager chiefeditor editor depeditor assoceditor maneditor maneditors= newseditor managingeditordesign dirinteractive campuseditor campuschief metroeditor metrochief opeditor sportseditor photoeditor staff custom_label custom foundation launched= YYYY MM DD
Infobox_NFL_biography embed name image image_size alt caption number current_team position birth_date yyyy mm dd mf=y
Infobox_NFL_Cheerleaders team image caption established defunct director members captain history website
Infobox_NFL_team name founded first_season city misc logo wordmark affiliate_old division_hist uniform colors song mascot owner chairman president general coach hist_misc hist_yr hist_misc2 nicknames no_league_champs league_champs no_sb_champs sb_champs no_pre1970sb_champs pre1970sb_champs no_div_champs div_champs stadium_years team_owners team_presidents
Infobox_NHL_team team_name CAN_eng text_color bg_color current logo_image logo_alt conference division founded history arena city uniform_image team_colors media_affiliates owner general_manager head_coach captain minor_league_affiliates stanley_cups avco conf_titles presidents'_trophies division_titles website
Infobox_NHS_organisation name native_name native_name_lang former_name logo logo_alt logo_size logo_caption logo_padding image image_alt image_size image_caption map map_size map_alt map_caption start_date YYYY MM DD df=y
Infobox_noble name title image caption alt CoA more succession reign reign-type predecessor successor suc-type spouse spouse-type issue-type issue issue-link issue-pipe full native_name styles other_titles noble house-type father mother birth_name birth_date YYYY MM DD df=y
Infobox_Noh name name_ja name_en author reviser category mood style chars place time sources schools
Infobox_non-integer_number title= rationality= symbol= decimal= algebraic= continued_fraction= continued_fraction_linear= continued_fraction_periodic= continued_fraction_finite= binary= hexadecimal=
Infobox_nonhuman_protein Name image width caption Organism TaxID Symbol AltSymbols ATC_prefix ATC_suffix ATC_supplemental CAS_number CAS_supplemental DrugBank EntrezGene HomoloGene PDB RefSeqmRNA RefSeqProtein UniProt ECnumber Chromosome EntrezChromosome GenLoc_start GenLoc_end
Infobox_Norwegian_national_political_convention year party alternate image image_size image2 image_size2 image3 image_size3 caption logo logo_size date city2 city venue chair keynote_speaker speakers candidates candidate_county candidate_municipality deputy_leader deputy_leader_nominee_county deputy_leader_nominee_municipality partysecretary othercandidates totaldelegates votesneeded leadertotals deputytotals previous_year next_year
Infobox_novella italic name image caption author audio_read_by title_orig translator country language series genre published_in publication_type publisher media_type pages awards isbn pub_date english_pub_date preceded_by followed_by preceded_by_italics followed_by_italics notes
Infobox_nuclear_weapons_by_country country_name image_location program_start first_test first_fusion last_test largest_yield total_tests peak_stockpile current_stockpile current_usable_stockpile current_usable_stockpile_megatonnage maximum_range NPT_party
Infobox_nuclear_weapons_test name image image_size map_type map_alt map_caption map_size map_dot_label map_dot_mark relief alt caption country test_site coordinates date period number_of_tests test_type device_type max_yield summary previous_series next_series
Infobox_nutritional_value name kJ carbs fat protein note
Infobox_Odissi_raga name
Infobox_Ogham_inscription name image ciic cisp country region city produced dimensions text_ogham text_native text_english= text_latin
Infobox_oil name=Fat image=Olive imagesize=100px caption=Olive composition=y fat=98% water=0% solids=1.9% sterols=0.1% fatcomposition=y sat=1% interster=0.1% trans=1% unsat=99% monoun=90% Oleic=80% polyun=9% o3=3% o6=2% o9=1% properties=y energy=900 melt=0�C boil=100�C smoke=200�C roomtemp= sfi20= sg20=0.9 visc20=84 refract=1.02 iodine=0.1 acid=0.01 aciddeg=2 ph=7.8 sapon=10 unsapon=0.2% reichert=1 polenske=2 kirschner=3 shortening=4 peroxide=5
Infobox_oil_field name image caption location_map location_map_width location_map_text relief coordinates
Infobox_oil_refinery name image photo imagesize image caption location_map coordinates coordinates_ref location_map location_map_width location_map_text country province state city operator owner founded YYYY
Infobox_oil_spill name image image_size = image_caption = location = coordinates = spill_date = cause operator = casualties = volume = area = coast
Infobox_olive_cultivar name image caption colour color also_called origin regions hazards use oil_content fertility growth leaf weight shape symmetry
Infobox_Olympic_athletics_event event= image= 300px]] caption= gender= firstyearmen=1896 lastyearmen=2012 firstyearwomen=1928 lastyearwomen=2012 ORmen= ORwomen= reigningman={{flagIOCathlete [[Usain JAM
Infobox_Olympic_event event games image caption venue date YYYY MM DD
Infobox_Olympic_event/doc event games image caption venue date YYYY MM DD
Infobox_Olympic_event/sandbox event games image caption venue date YYYY MM DD
Infobox_Olympic_event/testcases event games image 200px alt=Athletic caption venue 126.4 km mi abbr=on
Infobox_Olympic_gymnastics_event event= Floor]] image= caption= 2012 gender= firstyearmen firstyearwomen lastyearmen lastyearwomen yearsheld 1932]]�[[Gymnastics 2020]]<br 1952]]�[[Gymnastics 2020]] custommenyears= customwomenyears= reigningman={{flagIOCathlete [[Artem ISR
Infobox_Olympic_sport sport code image size caption menevents womenevents mixedevents otherlinks
Infobox_Olympic_water_polo_tournament gender year image image_size caption country
Infobox_online_service name title logo logo_size logo_alt logo logo_upright image image_size image_alt image_upright developer generation type launched discontinued version version preview preview updated platform operating status pricing members website
Infobox_open_cluster name image caption credit epoch constellation ra 00 00 00
Infobox_opera name genre composer image caption librettist language based_on work author
Infobox_orchestra name type native_name native_name_lang
Infobox_order name title native_name native_name_lang image image_size alt caption awarded_by type State]]/[[Dynastic Dynastic]] established founded country house religion seat ribbon motto eligibility criteria for status founder first_head head_title Grand head head2_title head2 head3_title head3 classes grades
Infobox_Orienteering_World_Cup numindividualevents= numrelayevents= menfirst= mensecond= menthird= menmostwins= womenfirst= womensecond= womenthird= womenmostwins= teamfirst= teamsecond= teamthird= teammostwins= ongoing= previous= next=
Infobox_original_English_manga name image image_size caption alt genre author illustrator publisher publisher_other demographic magazine first firstmo last lastmo volumes chapter_list related content altcat OEL
Infobox_OWL_season logo championship_win conference_win region_win division_win team year division region conference record winpct division_place conference_place region_place league_place coach gm owner arena s1playoffs s2playoffs s3playoffs s4playoffs tournament1name t1playoffs tournament2name t2playoffs tournament3name t3playoffs midplayoffs playoffs earnings no_prevseason no_nextseason
Infobox_paintball_marker title image caption marker_type action barrel bore rof
Infobox_Pakistani_province_government name_of_province= emblem= Provincial_flag= seat_of_government= name_of_governor= name_of_chief_minister= name_of_chief_secretary= legislative_assembly= speaker= member_in_assembly= high_court= chief_justice_of_high_court= supreme_court= chief_justice_of_supreme_court= website=
Infobox_Pan_American_Games_event event year image image_size alt caption venue venues date start_date YYYY MM DD mf=y
Infobox_papal_conclave month year commonname dates location dean subdean camerlengo protopriest protodeacon secretary candidates vetoed ballots pope_elected= nametaken image prevconclave_year=<!--Previous prevconclave_link=<!--Title nextconclave_year=<!--Next nextconclave_link=<!--Title
Infobox_papal_document title type language translation subject Papal signature yyyy mm dd df=y
Infobox_Paralympic_event event games image image_size alt caption venue date YYYY MM DD
Infobox_Paralympic_event/doc event games image image_size alt caption venue date YYYY MM DD
Infobox_Paralympic_event/sandbox event games image image_size alt caption venue date YYYY MM DD
Infobox_Paralympic_event/testcases event games venue dates competitors nations gold goldNPC silver silverNPC bronze bronzeNPC
Infobox_Parapan_American_Games_event event games image caption venues venue dates date competitors nations teams win_value win_label gold silver bronze goldNOC longnames gold2 goldNOC2 gold3 goldNOC3 silverNOC silver2 silverNOC2 silver3 silverNOC3 bronzeNOC bronze2 bronzeNOC2 bronze3 bronzeNOC3 prev next
Infobox_Parapan_American_Games_event/doc event games image caption venues venue dates date competitors nations teams win_value win_label gold silver bronze goldNOC longnames gold2 goldNOC2 gold3 goldNOC3 silverNOC silver2 silverNOC2 silver3 silverNOC3 bronzeNOC bronze2 bronzeNOC2 bronze3 bronzeNOC3 prev next
Infobox_Paris_by_Night rtitle series image image_size image_alt caption episode director producer module mc executive filmed_at filmed_on venue format release
Infobox_parliamentary_group name native_name logo size color caption chamber legislature foundation dissolution previous parties leader president constituency vice spokesperson general treasurer members ideology position website
Infobox_PBA_conference title year conference_name subheader logo pixels caption conference duration no_of_games no_of_teams attendance average_attendance TV champion runner-up best_player best_import finals_mvp prevconf_year prevconf_link nextconf_year nextconf_link prev_conf prev_conf_link next_conf next_conf_link
Infobox_PBA_conference_finals year conference image runnerup runnerup_coach runnerup_games champion champion_coach champion_games date= YYYY MM DD
Infobox_PBA_season PBAyear team team2 misc coach consultant 1c-name 1c-wins 1c-losses 1c-place 1c-playoffs 2c-name 2c-wins 2c-losses 2c-place 2c-playoffs 3c-name 3c-wins 3c-losses 3c-place 3c-playoffs owners television radio pol_team prevseason nextseason
Infobox_PBA_season2 PBAyear team team2 misc coach 1c-name 1c-wins 1c-losses 1c-place 1c-playoffs 2c-name 2c-wins 2c-losses 2c-place 2c-playoffs owners television radio pol_team prevseason nextseason
Infobox_PBL name image size dates number_edition administrator location website http://www.pbl-india.com
Infobox_pelotari nickname image image_size alt caption full_name Residence birth_date birth_place death_date death_place countryflag Province height weight Debut Debut retired retiramentfronton Categories Position Management 1sthand 2ndhand 1sthanddoubles 2ndhanddoubles cuatroymedio olysingles olydoubles
Infobox_Pennsylvania_historic_site name PAhistoric_type PAhistoric_type2 PAhistoric_type3 designated_PAhistoric_type designated_PAhistoric_CD designated_PAhistoric_PHLF designated_PAhistoric_PRHP designated_other1_name designated_other1_date designated_other1_short designated_other1_link designated_other1_color designated_other1_textcolor designated_other1_number designated_other1_num_position designated_other2_name designated_other2_date designated_other2_short designated_other2_link designated_other2_color designated_other2_textcolor designated_other2_number designated_other2_num_position designated_other3_name designated_other3_date designated_other3_short designated_other3_link designated_other3_color designated_other3_textcolor designated_other3_number designated_other3_num_position image image_size alt caption district_map locmapin map_width map_alt map_caption coordinates location nearest_city area built demolished architect architecture visitation_num visitation_year governing_body
Infobox_pepper name image caption alt heat scoville
Infobox_performing_art name image upright caption medium types ancestor descendant culture era
Infobox_performing_arts_company name native_name native_name_lang logo logo_size logo_caption image imagesize caption formed YYYY MM DD
Infobox_PH_collegiate_finals title logo host higherseed higherseed_game3 G1 G2 G3 higherseed_game4 G4 higherseed_game1 higherseed_game2 higherseed_series lowerseed lowerseed_game1 lowerseed_game2 lowerseed_game3 lowerseed_game4 lowerseed_series duration arena MVP coach semis network whigherseed whigherseed_game3 wG1 wG2 wG3 whigherseed_game4 wG4 whigherseed_game1 whigherseed_game2 whigherseed_series wlowerseed wlowerseed_game1 wlowerseed_game2 wlowerseed_game3 wlowerseed_game4 wlowerseed_series wduration warena wMVP wcoach wsemis wnetwork jhigherseed jhigherseed_game3 jG1 jG2 jG3 jhigherseed_game4 jG4 jhigherseed_game1 jhigherseed_game2 jlowerseed_game4 jhigherseed_series jlowerseed jlowerseed_game1 jlowerseed_game2 jlowerseed_game3 jlowerseed_series jduration jarena jMVP jcoach jsemis jnetwork ghigherseed ghigherseed_game3 gG1 gG2 gG3 ghigerseed_game4 gG4 ghigherseed_game1 ghigherseed_game2 glowerseed_game4 ghigherseed_series glowerseed glowerseed_game1 glowerseed_game2 glowerseed_game3 glowerseed_series gduration garena gMVP gcoach gsemis gnetwork prevlink prev seasonlink year nextlink next
Infobox_pharaoh name alt_name image image_alt caption role reign coregency predecessor successor notes prenomen prenomen_hiero nomen nomen_hiero horus horus_prefix horus_hiero nebty nebty_hiero golden golden_hiero spouse children dynasty father mother birth_date birth_place death_date death_place burial monuments
Infobox_Philippine_college_sports_general_championship name image tagline seniors
Infobox_Philippine_college_sports_general_championship/doc name image tagline seniors
Infobox_Philippine_college_sports_general_championship/sandbox name image tagline seniors
Infobox_Philippine_collegiate_team name schoolname teamlogo teamlogo_alt size league founded former_league location venue director colors song women junior titles total titles2 total2 jtitles jtotal jtitles2 jtotal2 website
Infobox_Philippine_Congress rank current_president current_vice_president senate_president pro_tempore senate_majority senate_minority house_speaker luzon_deputy visayas_deputy mindanao_deputy house_majority house_minority house_members previous previous_year next next_year
Infobox_Philippine_political_party party_name party_name_native party_logo leader chairman president spokesperson secretary_general youth think_tank founder foundation YYYY MM DD
Infobox_photographic_film name code image caption maker speed push type bw balance process format grain latitude saturation app start stop replace
Infobox_physical_quantity name othernames width background image caption unit otherunits symbols baseunits dimension extensive intensive conserved transformsas derivations
Infobox_pier name image image_size alt caption official_name type carries spans locale maint id design designer construction constructor start completed open inaugurated owner operator mainspan length width clearance below traffic renovated rebuilt closed destroyed demolished listed toll map_cue map_image map_text map_width coordinates dd mm ss N dd mm ss E display=inline,title
Infobox_piercing name image image_size image_capt nicknames location jewelry healing
Infobox_pig_breed name image image_size image_alt image_caption status altname
Infobox_pigeon_breed name image imagecaption status altname country nickname group extinct crest feather note
Infobox_pinball image caption manufacturer release system model players designer programmer artwork animation mechanics music sound voices blank1_title blank1 blank2_title blank2 blank3_title blank3 blank4_title blank4 production
Infobox_pipe_band name image image_size alt caption established disbanded location grade major dmajor sergeant tartan honours website sponsor
Infobox_pipeline name type photo caption map country state province coordinates LAT LON type:landmark_region:XX display=inline,title
Infobox_place_geography name image image image image map map map_alt continent region coordinates
Infobox_planetary_system title image caption age location ascension declination system_mass neareststar nearestplanetary semimajoraxis proto-planetarydisc Kuiper_cliff stars planets dwarfplanets satellites minorplanets comets roundsat roundsatlink inclination galacticcenter orbitalspeed orbitalperiod spectral variable frostline heliopause hillsphere noknown_stars noknown_planets outerplanetname
Infobox_plant_disease color name image caption common_names causal_agents hosts vectors EPPO_code second_EPPO_code distribution symptoms treatment
Infobox_play name orig_title image alt caption writer based_on title creator
Infobox_Playboy_Playmate name image image_size alt caption issue preceded succeeded pmoy-year pmoy-preceded pmoy-succeeded birth_name birth_date birth_place death_date death_place height website
Infobox_player_of_English_billiards name honorific_suffix image image_size alt caption birth_date YYYY MM DD df=yes
Infobox_podcast title image image_size alt caption hosting starring genre format creator developer writer director creative_director voices narrated judges language language_other updates length country camera direction production preceded_by followed_by theme_music_composer opentheme endtheme composer motion_graphics picture_format video audio num_seasons num_episodes list_episodes began ended ratings cited_for cited_as provider license related_shows adaptations website module embed=yes filename=recording_name.extension title=description
Infobox_poem name image image_size caption subtitle author original_title original_title_lang translator written first illustrator cover_artist country language series subject genre form meter metre rhyme publisher publication_date media_type lines pages size_weight isbn oclc preceded_by followed_by wikisource orig_lang_code native_wikisource
Infobox_Polish_coat_of_arms herb image battlecry alternative mention towns families
Infobox_political_party name logo logo_alt colorcode leader president chairperson secretary general_secretary first_secretary secretary_general presidium governing_body standing_committee spokesperson founder founded YYYY MM DD
Infobox_political_system name native_name image image_size caption type constitution legislature legislature_type legislature_place legislature_speaker legislature_speaker_title upperhouse upperhouse_speaker upperhouse_speaker_title upperhouse_appointer lowerhouse lowerhouse_speaker lowerhouse_speaker_title lowerhouse_appointer title_hos current_hos appointer_hos title_hog current_hog appointer_hog title_hosag current_hosag appointer_hosag cabinet current_cabinet cabinet_leader cabinet_deputyleader cabinet_appointer cabinet_hq cabinet_ministries judiciary judiciary_head courts court chief_judge court_seat court1 chief_judge1 court_seat1 civil_service leader_cs chief_cs membership_cs auditory leader_auditory chief_auditory membership_auditory
Infobox_political_youth_organization name native_name colorcode= logo caption logo2 caption2 leader deputy president vice executive associate national national membership political communications programs development national national national convenor co-convenors chair chairwoman 1st 2nd co-chair co-chairman vice-chair vice-chairman vice-chairwoman national national secretary2 secretary treasurer national national regional executive political finance website spokesperson field honorary honorary founded merger split preceded dissolved merged succeeded headquarters membership ideology position colours mother state international regional1_type regional1_name regional2_type regional2_name national newspaper magazine website
Infobox_polygon name image caption type euler edges schl�fli wythoff coxeter symmetry area angle perimeter dual properties
Infobox_polyhedron name image caption type euler faces edges vertices vertex_config schl�fli wythoff conway coxeter symmetry rotation_group surface_area volume angle dual properties vertex_figure net net_caption
Infobox_pool_player name honorific_suffix image image_size alt caption birth_date YYYY MM DD df=yes
Infobox_pool_tournament tournament_name= dates= startdate= enddate= venue= city= country= organisation= format= Total winners_share= highest_break= defending_champion= winner= runner_up= score= previous= next=
Infobox_port embed name image image_alt image_size image_caption logo logo_alt logo_size logo_caption pushpin_map pushpin_map_geomask= pushpin_map_zoom pushpin_map_caption= native_name native_name_lang country location coordinates coordinates_footnotes= grid_name grid_position locode opened closed operated owner type sizewater sizeland size berths ships wharfs piers draft_depth air_draft platforms lines gauge streets trucks employees leadershiptitle leader blankdetailstitle1 blankdetails1 blankdetailstitle2 blankdetails2 blankdetailstitle3 blankdetails3 blankdetailstitle4 blankdetails4 arrivals cargotonnage containervolume cargovalue teu passengertraffic revenue profit blankstatstitle1 blankstats1 blankstatstitle2 blankstats2 blankstatstitle3 blankstats3 website embedded
Infobox_port-of-entry embed name image image_alt image_size image_caption logo logo_alt logo_size logo_caption pushpin_map pushpin_map_geomask pushpin_map_zoom country location coordinates coordinates_footnotes grid_name grid_position locode opened operated owner type sizewater sizeland size berths wharfs piers draft_depth air_draft employees leadershiptitle leader blankdetailstitle1 blankdetails1 blankdetailstitle2 blankdetails2 blankdetailstitle3 blankdetails3 arrivals cargotonnage containervolume cargovalue passengertraffic revenue profit blankstatstitle1 blankstats1 blankstatstitle2 blankstats2 blankstatstitle3 blankstats3 website embedded
Infobox_postage_stamp common_name image caption stamp_type Definitive]] country_of_issue country_of_production location_of_production date_of_production YYYY MM DD
Infobox_power_transmission_line name photo caption map country state province coordinates 0.00000 0.00000 type:landmark_region:US display=inline
Infobox_Pre-modern_NFL_team name logo founded suspended folded relocated location field league conference division colors history nickname coach manager owner championships AFL AFL AFL AAFC Grey PCPFL Other Ohio Western Undefeated named mascot website
Infobox_pretender name image birth_date birth_place death_date death_place regnal title throne pretend year king relationship house father mother spouse children predecessor successor footnotes
Infobox_Primeval_creature name image species period appeared first_primeval last_primeval first_new_world last_new_world number humans_killed returned
Infobox_prison name image image_size alt caption image_map map_size map_alt map_caption pushpin_map pushpin_relief pushpin_mapsize pushpin_map_alt pushpin_map_caption pushpin_label map_dot_mark location coordinates status classification capacity population population_as_of opened closed former_name managed_by director governor warden street-address city county state postcode zip country website prisoners embedded
Infobox_probability_distribution name type pdf_image cdf_image notation parameters support pdf cdf quantile mean median mode variance mad skewness kurtosis entropy cross_entropy mgf cf pgf fisher moments KLdiv JSDiv
Infobox_probability_distribution/doc name type pdf_image cdf_image notation parameters support pdf cdf quantile mean median mode variance mad skewness kurtosis entropy cross_entropy mgf cf pgf fisher moments KLdiv JSDiv
Infobox_probability_distribution/sandbox name type pdf_image cdf_image notation parameters support pdf cdf quantile mean median mode variance mad skewness kurtosis entropy cross_entropy mgf cf pgf fisher moments KLdiv JSDiv
Infobox_professional_wrestler name image image_size image_upright landscape alt caption birth_name birth_date YYYY MM DD
Infobox_professional_wrestling_event name image caption alt promotion brand date date_aired city venue attendance buyrate tagline wwenlast wwennext liveevent lastevent nextevent event lastevent2 nextevent2 event2 lastevent3 nextevent3 future current
Infobox_professional_wrestling_event_series name image image_upright alt caption created_by promotion brand nickname other_names first_event last_event gimmick signature_match
Infobox_professional_wrestling_promotion name image caption acronym established folded style location founder owner parent sister formerly website
Infobox_programming_block name image image_size alt caption formerly_known premiered YYYY MM DD
Infobox_programming_language name
Infobox_project name logo 135px]] mission_statement commercial type location owner founder established 2006 05
Infobox_property_development name image image_caption developer website divisions=[[Great East coordinates={{coord 53.3846 -3.0109 display=it region:GB_scale:20000
Infobox_protected_area name alt_name iucn_category iucn_ref photo photo_width photo_alt photo_caption map map_image map_width map_alt map_caption relief label label_position mark marker_size location nearest_city coordinates coords_ref area_ha designation authorized created designated established disestablished visitation_num visitation_year visitation_ref governing_body administrator operator owner world_heritage_site website url child embedded
Infobox_protein name AltNames image width caption Symbol AltSymbols IUPHAR_id ATC_prefix ATC_suffix ATC_supplemental CAS_number CAS_supplemental DrugBank EntrezGene HGNCid OMIM PDB RefSeq UniProt EC_number Chromosome Arm Band LocusSupplementaryData Wikidata
Infobox_protein_family class Symbol Name image caption Pfam Pfam_clan InterPro SMART PROSITE MEROPS CATH SCOP TCDB OPM OPM CAZy CDD Membranome Membranome
Infobox_proto-language name altname acceptance target region era familycolor ancestor ancestor2 ... ancestor5 child1 child2 ... child12 listclass boxsize module notes
Infobox_protocol name image alt caption standard developer introdate YYYY MM DD
Infobox_pseudoscience name image image_upright alt caption claims topics origyear origprop currentprop notableprop
Infobox_public_transit_accident name image image_size image_alt caption image_map image_map_alt image_map_caption pushpin_map pushpin_map_alt pushpin_map_caption coordinates latitude longitude type:event display=inline,title
Infobox_publisher name image image_size alt caption parent status traded_as nasdaq predecessor founded YYYY MM DD
Infobox_quality_tool name image category describer purpose
Infobox_quasar name image caption= epoch ra 00 00 00
Infobox_Quran_Verse title Ayah_name image image_size image_alt image_description Surah_name Verse_number Year_of_revelation Place_of_revelation Cause_of_revelation Juz Hizb Sajdah Other_names Writing Ruku Disagreement_on Description Word-count Number_of_letters Muqattaat Ayah_text Translation
Infobox_racecourse name logo logo_size logo_alt logo_caption image image_size alt caption location coordinates
Infobox_racing_car name Image Image_size Caption Category WC_results_only Constructor Designer Homologation Production Predecessor Successor Team Drivers Technical Chassis Suspension Front Rear Length XXX in cm 1 abbr=on
Infobox_racing_driver name image image_size caption nationality full_name birth_name birth_date yyyy m d
Infobox_radar name image caption country designer manufacturer introdate YYYY MM DD
Infobox_radio_network name logo logo_size logo_alt logo_caption image image_size image_alt caption type country area broadcast_area license_area headquarters branding motto language format affiliations owner licensee operator parent sister_stations key_people founded founder launch_date replaced closed replaced_by former_names former_callsigns former_affiliations available radio_stations radio_transmitters affiliates webcast website footnotes child embed_header embedded
Infobox_radio_show name image image_size alt caption other_names format runtime start_time end_time runtime_note country language home_station syndicates television presenter starring announcer creator writer director producer executive_producer editor senior_editor narrated record_location remote_location other_location first_aired YYYY MM DD
Infobox_radio_station name city country above callsign logo logo_upright logo_alt logo_caption image_alt caption area frequency rds branding languages format subchannels network affiliations owner licensee operator sister_stations founded airdate last_airdate former_callsigns former_names former_frequencies callsign_meaning licensing_authority facility_id class power erp haat coordinates translators repeaters webcast website child embed_header embedded
Infobox_raga name
Infobox_ragam name
Infobox_rail_network name color logo image caption nationalrailway infrastructure majoroperators ridership passkm freight length doublelength ellength freightlength hslength ogauge ogaugelength gauge hsgauge gauge1 gauge1length gauge2 gauge2length gauge3 gauge3length gauge4 gauge4length el el1 el1length el2 el2length el3 el3length notunnels tunnellength longesttunnel nobridges longestbridge nostations highelevation highelat lowelevation lowelat map mapcaption
Infobox_rail_service box_width name color logo logo_width image image_width alt caption type status locale predecessor first YYYY MM DD df=y
Infobox_railway_depot embed name depot_logo logo_upright logo_alt logo_caption image image_upright image_alt caption location coordinates LAT LONG type:landmark display=inline,title
Infobox_Rathayatra name image image_size alt caption founded founded_by abolished abolished_by place organizer ratha_height ratha_base ratha_wheels ratha_style ratha_architect= ratha_patron footnotes
Infobox_receptor name signal primary primary agonists antagonists inverse PAMs NAMs IUPHAR DrugBank HMDB
Infobox_reenactment_group title= est= location= period= earliest= latest= special= mems= alliance= umb= parent= groups= url=
Infobox_referendum name country flag_year flag_image date YYYY MM DD
Infobox_region_symbols embedded align title region_type state region county province country no_header island image_flag image_flag_border image_flag_size flag_link image_seal image_seal_size seal_link image_emblem image_emblem_size emblem_link image_arms image_arms_size emblem nickname motto poem slogan anthem song hymn language foundation_day currency calendar mammal animal bird fish insect butterfly amphibian cactus cat crustacean dog domestic_animal flower fruit grass horse marsupial mascot mushroom pet plant reptile tree vegetable wildlife_animal beverage colour colors color costume dress dance dinosaur food dish drink firearm folk_dance fossil game gemstone instrument river lake mineral rock shell ship soil sport sweet confectionery tartan toy other image_route image_quarter image_quarter_size quarter_release_date
Infobox_regular_tuning regular_tuning_name other_names image_top= caption_top= alt_top= imagesize_top= interval= semitones examples advanced= repetition other_instruments advantages disadvantages lefty guitarist guitarist_image guitarist_caption= guitarist_alt= guitarist_imagesize=
Infobox_religion icon icon_width icon_alt name native_name native_name_lang image imagewidth alt caption abbreviation type main_classification orientation scripture theology polity governance structure leader_title leader_name leader_title1 leader_name1 leader_title2 leader_name2 leader_title3 leader_name3 fellowships_type fellowships fellowships_type1 fellowships1 division_type division division_type1 division1 division_type2 division2 division_type3 division3 associations full_communion area language liturgy headquarters territory possessions founder founded_date founded_place independence reunion recognition separated_from branched_from merger absorbed separations merged_into defunct congregations_type congregations members number_of_followers ministers_type ministers missionaries churches hospitals nursing_homes aid primary_schools secondary_schools tax_status tertiary seminaries other_names publications website website_title1 slogan logo module footnotes
Infobox_religious_group group flag flag_size flag_alt flag_caption image image_size image_alt image_caption population founder regions tablehdr region1 pop1 ref1 region2 pop2 ref2 region3 region31 pop3 pop31 ref3 ref31 religions scriptures languages related-c website notes
Infobox_religious_text name subheader image background alt caption religion author period language chapters sutras verses native_wikisource orig_lang_code wikisource wikisource1 wikisource2 wikisource3 wikisource4 wikisource5 footnotes previous next
Infobox_research_project name title image image_alt caption keywords project_type funding_agency sponsors framework_programme project_reference research_objective location coordinator project_manager participants partners budget funding start end website
Infobox_residential_college name native_name type university image alt caption shield shield_alt shield_caption scarf {{cell color1
Infobox_restaurant embed name title logo logo_width logo_alt image image_width image_alt image_caption mapframe pushpin_map coordinates
Infobox_river name native_name <tag> <name>
Infobox_RNA_family Name image width caption Symbol AltSymbols Rfam Rfam_clan miRBase miRBase_family RNA_type Tax_domain GO SO CAS_number EntrezGene HGNCid OMIM PDB RefSeq Chromosome Arm Band LocusSupplementaryData
Infobox_road country type route map length_mi length_km length_ref established direction_a terminus_a junction direction_b terminus_b previous_type previous_route next_type next_route
Infobox_road_junction country road_type name image image_caption other_names location coord roads type spans lanes const contractor opened YYYY MM DD
Infobox_road_list country type route list_type
Infobox_robot name logo logosize logoalt image imagesize alt caption inventor manufacturer country year_of_creation price type purpose derived_from replaced_by website
Infobox_rock name= type= coordinates= image= alt= caption=
Infobox_rocket logo logo_upright image upright caption name function manufacturer country-origin pcost cpl alt-cpl cpl-year height HEIGHT m
Infobox_rocket_engine name image image_size caption country_of_origin= date first_date last_date designer manufacturer purpose associated predecessor successor status type oxidiser fuel mixture_ratio cycle pumps description combustion_chamber= nozzle_ratio thrust thrust_at_altitude= thrust(Vac) thrust(SL) throttle_range thrust_to_weight= chamber_pressure= specific_impulse= specific_impulse_vacuum= specific_impulse_sea_level= total_impulse mass_flow burn_time restarts gimbal capacity dimensions length diameter dry_weight used_in references notes
Infobox_rocket_stage image caption name manufacturer country rockets height
Infobox_rockunit name period age image imagesize caption type prilithology otherlithology unitof subunits underlies overlies thickness ft m -1
Infobox_roller_derby_league name founded dissolved geolocate metro country logo logo_caption teams tracks venue affiliations orgtype url
Infobox_room name image alt caption building location country coordinates LAT LONG type:landmark display=inline,title
Infobox_rowing_club name emblem image blade_image motto location acronym coordinates home_water founded YYYY
Infobox_rugby_biography name image image_size alt caption birth_name full_name birth_date birth_place death_date death_place height weight school university relatives spouse children occupation weight_update rl_currentposition rl_currentteam rl_youthyears1 rl_youthclubs1 rl_youthyears5 rl_youthclubs5 amateuryears1 rl_amateurclubs1 rl_amateurapps1 rl_amateurpoints1 rl_amateuryears10 rl_amateurclubs10 rl_amateurapps10 rl_amateurpoints10 rl_amupdate rl_clubyears1 rl_proclubs1 rl_clubapps1 rl_clubpoints1 rl_clubyears20 rl_proclubs20 rl_clubapps20 rl_clubpoints20 rl_totalyears rl_totalapps rl_totalpoints rl_clubupdate sooyears1 sooteam1 sooapps1 soopoints1 sooyears10 sooteam10 sooapps10 soopoints10 sooupdate rl_nationalyears1 rl_nationalteam1 rl_nationalapps1 rl_nationalpoints1 rl_nationalyears10 rl_nationalteam10 rl_nationalapps10 rl_nationalpoints10 rl_ntupdate rl_coachyears1 rl_coachteams1 rl_coachyears20 rl_coachteams20 rl_coachupdate rl_ rl_ rl_ rl_ rl_ rl_ rl_refereeupdate ru_currentposition ru_currentteam allblackid allblackno youthyears1 youthclubs1 youthyears5 youthclubs5 amatyears1 amatteam1 amatapps1 amatpoints1 amatyears10 amatteam10 amatapps10 amatpoints10 ru_amupdate years1 clubs1 apps1 points1 years20 clubs20 apps20 points20 totalyears totalapps totalpoints ru_clubupdate ru_provinceyears1 ru_province1 ru_provinceapps1 ru_provincepoints1 ru_provinceyears10 ru_province10 ru_provinceapps10 ru_provincepoints10 ru_provinceupdate superyears1 super1 superapps1 superpoints1 superyears10 super10 superapps10 superpoints10 ru_currentclub superupdate repyears1 repteam1 repapps1 reppoints1 repyears10 repteam10 repapps10 reppoints10 ru_ntupdate ru_sevensnationalyears1 ru_sevensnationalteam1 ru_sevensnationalcomp1 ru_sevensnationalyears10 ru_sevensnationalteam10 ru_sevensnationalcomp10 ru_sevensupdate coachyears1 coachteams1 coachyears20 coachteams20 ru_coachupdate ru_refereeyears1 ru_refereecomps1 ru_refereeapps1 ru_refereeyears10 ru_refereecomps10 ru_refereeapps10 ru_refereeupdate website module medals module2
Infobox_rugby_biography/doc name image image_size alt caption birth_name full_name birth_date birth_place death_date death_place height weight school university relatives spouse children occupation weight_update rl_currentposition rl_currentteam rl_youthyears1 rl_youthclubs1 rl_youthyears5 rl_youthclubs5 amateuryears1 rl_amateurclubs1 rl_amateurapps1 rl_amateurpoints1 rl_amateuryears10 rl_amateurclubs10 rl_amateurapps10 rl_amateurpoints10 rl_amupdate rl_clubyears1 rl_proclubs1 rl_clubapps1 rl_clubpoints1 rl_clubyears20 rl_proclubs20 rl_clubapps20 rl_clubpoints20 rl_totalyears rl_totalapps rl_totalpoints rl_clubupdate sooyears1 sooteam1 sooapps1 soopoints1 sooyears10 sooteam10 sooapps10 soopoints10 sooupdate rl_nationalyears1 rl_nationalteam1 rl_nationalapps1 rl_nationalpoints1 rl_nationalyears10 rl_nationalteam10 rl_nationalapps10 rl_nationalpoints10 rl_ntupdate rl_coachyears1 rl_coachteams1 rl_coachyears20 rl_coachteams20 rl_coachupdate rl_ rl_ rl_ rl_ rl_ rl_ rl_refereeupdate ru_currentposition ru_currentteam allblackid allblackno youthyears1 youthclubs1 youthyears5 youthclubs5 amatyears1 amatteam1 amatapps1 amatpoints1 amatyears10 amatteam10 amatapps10 amatpoints10 ru_amupdate years1 clubs1 apps1 points1 years20 clubs20 apps20 points20 totalyears totalapps totalpoints ru_clubupdate ru_provinceyears1 ru_province1 ru_provinceapps1 ru_provincepoints1 ru_provinceyears10 ru_province10 ru_provinceapps10 ru_provincepoints10 ru_provinceupdate superyears1 super1 superapps1 superpoints1 superyears10 super10 superapps10 superpoints10 ru_currentclub superupdate repyears1 repteam1 repapps1 reppoints1 repyears10 repteam10 repapps10 reppoints10 ru_ntupdate ru_sevensnationalyears1 ru_sevensnationalteam1 ru_sevensnationalcomp1 ru_sevensnationalyears10 ru_sevensnationalteam10 ru_sevensnationalcomp10 ru_sevensupdate coachyears1 coachteams1 coachyears20 coachteams20 ru_coachupdate ru_refereeyears1 ru_refereecomps1 ru_refereeapps1 ru_refereeyears10 ru_refereecomps10 ru_refereeapps10 ru_refereeupdate website module medals module2
Infobox_rugby_biography/sandbox name image image_size alt caption birth_name full_name birth_date birth_place death_date death_place height weight school university relatives spouse children occupation weight_update rl_currentposition rl_currentteam rl_youthyears1 rl_youthclubs1 rl_youthyears5 rl_youthclubs5 amateuryears1 rl_amateurclubs1 rl_amateurapps1 rl_amateurpoints1 rl_amateuryears10 rl_amateurclubs10 rl_amateurapps10 rl_amateurpoints10 rl_amupdate rl_clubyears1 rl_proclubs1 rl_clubapps1 rl_clubpoints1 rl_clubyears20 rl_proclubs20 rl_clubapps20 rl_clubpoints20 rl_totalyears rl_totalapps rl_totalpoints rl_clubupdate sooyears1 sooteam1 sooapps1 soopoints1 sooyears10 sooteam10 sooapps10 soopoints10 sooupdate rl_nationalyears1 rl_nationalteam1 rl_nationalapps1 rl_nationalpoints1 rl_nationalyears10 rl_nationalteam10 rl_nationalapps10 rl_nationalpoints10 rl_ntupdate rl_coachyears1 rl_coachteams1 rl_coachyears20 rl_coachteams20 rl_coachupdate rl_ rl_ rl_ rl_ rl_ rl_ rl_refereeupdate ru_currentposition ru_currentteam allblackid allblackno youthyears1 youthclubs1 youthyears5 youthclubs5 amatyears1 amatteam1 amatapps1 amatpoints1 amatyears10 amatteam10 amatapps10 amatpoints10 ru_amupdate years1 clubs1 apps1 points1 years20 clubs20 apps20 points20 totalyears totalapps totalpoints ru_clubupdate ru_provinceyears1 ru_province1 ru_provinceapps1 ru_provincepoints1 ru_provinceyears10 ru_province10 ru_provinceapps10 ru_provincepoints10 ru_provinceupdate superyears1 super1 superapps1 superpoints1 superyears10 super10 superapps10 superpoints10 ru_currentclub superupdate repyears1 repteam1 repapps1 reppoints1 repyears10 repteam10 repapps10 reppoints10 ru_ntupdate ru_sevensnationalyears1 ru_sevensnationalteam1 ru_sevensnationalcomp1 ru_sevensnationalyears10 ru_sevensnationalteam10 ru_sevensnationalcomp10 ru_sevensupdate coachyears1 coachteams1 coachyears20 coachteams20 ru_coachupdate ru_refereeyears1 ru_refereecomps1 ru_refereeapps1 ru_refereeyears10 ru_refereecomps10 ru_refereeapps10 ru_refereeupdate website module medals module2
Infobox_rugby_biography/section header1 col_header_1 col_header_2 col_header_3 col_header_4 data1 data2 data3 data4 update_date
Infobox_rugby_biography/testcases name image caption birth_name nickname birth_date 1916 08 23 df=y
Infobox_rugby_club_season club season chairman chrtitle manager Wayne mgrtitle league NRL]] league cup1 Toyota cup1 cup2 cup2 club club highest lowest average prevseason 2008]] nextseason
Infobox_Rugby_Europe_International_Championships name image imagesize caption date countries teams champions count grand antim count_antim kiseleff count_kiseleff cup3 cup4 cup5 matches attendance tries top top Player website previous previous next next
Infobox_Rugby_football_league_challenge_cup title logo alt --Alt caption pixels duration no_of_teams highest_attendance lowest_attendance avg_attendance TV biggest_home_win biggest_away_win season season_champs season_champ_name second_place MVP MVP_link top_scorer top_try_scorer prevseason_link prevseason_year nextseason_link nextseason_year
Infobox_rugby_football_league_season title logo pixels caption sport structure league duration no_of_teams matches points highest_attendance lowest_attendance avg_attendance attendance
Infobox_rugby_league leaguename nativename logo logosize alt founded formerly RLIF region regionyear folded replaced remit headquarters membership patron president chairperson CEO menscoach womenscoach comps website countryflag countryflagvar updated
Infobox_rugby_league_biography name image image_size alt caption fullname birth_date YYYY MM DD df=y
Infobox_rugby_league_club clubname image emblem fullname clubname nickname short colours example 18px
Infobox_rugby_league_football_competition name current_season seasontag logo pixels alt caption formerly founded inaugural YYYY]]" folded YYYY]]" replaced reformed chairmantag chairman ceotag ceo teams countrytag country
Infobox_rugby_league_football_match year title yearr image imagesize alt home away home_league away_league home_abbr clubname 16
Infobox_rugby_league_international_tournament year title yearr image imagesize alt caption finalists country country-flagvar winners
Infobox_rugby_league_representative_team Name Badge Badge_size Badge_caption Badge2 Badge2_size Badge2_caption Nickname Nickname2 Nickname3 Governing Region Coach Captain Most Most Most Top Top Top Top Top Top Home First First Largest Largest titles
Infobox_rugby_match secondleg title image caption event team1 home team2 visitor team1association team2association team1score score1 home_total team2score score2 visitor_total details firstleg team1score1 team2score1 details1 date1 date stadium stadium1 venue city1 city man_of_the_match1atitle man_of_the_match1a man_of_the_match1btitle man_of_the_match1b ismvp ismvpa referee1 referee attendance1 attendance weather1 weather team1score2 team2score2 details2 date2 venue2 stadium2 city2 man_of_the_match2atitle man_of_the_match2a man_of_the_match2btitle man_of_the_match2b referee2 attendance2 weather2 secondlegreplay team1score3 team2score3 details3 date3 venue3 stadium3 city3 man_of_the_match3atitle man_of_the_match3a man_of_the_match3btitle man_of_the_match3b referee3 attendance3 weather3 previous next
Infobox_Rugby_Sevens countries date champions1 runnersup1 third1 matches attendance tries top top prevseason nextseason
Infobox_rugby_team teamname union fullname nickname shortname founded region ground
Infobox_rugby_union_tour image caption date tour team yearstart yearfinish destination manager coach captain top top top top matchplayed matchwon matchdraw matchlost testplayed testwon testdraw testlost opponent1 played1 won1 draw1 lost1 opponent2 played2 won2 draw2 lost2 opponent3 played3 won3 draw3 lost3 opponent4 played4 won4 draw4 lost4 opponent5 played5 won5 draw5 lost5 opponent6 played6 won6 draw6 lost6 opponent7 played7 won7 draw7 lost7 opponent8 played8 won8 draw8 lost8 previous next
Infobox_rugby_union_tour/doc image caption date tour team yearstart yearfinish destination manager coach captain top top top top matchplayed matchwon matchdraw matchlost testplayed testwon testdraw testlost opponent1 played1 won1 draw1 lost1 opponent2 played2 won2 draw2 lost2 opponent3 played3 won3 draw3 lost3 opponent4 played4 won4 draw4 lost4 opponent5 played5 won5 draw5 lost5 opponent6 played6 won6 draw6 lost6 opponent7 played7 won7 draw7 lost7 opponent8 played8 won8 draw8 lost8 previous next
Infobox_Rugby_World_Cup name other_titles logo datefrom dateto host nations champion runnerup third matches attendance top_scorer most_tries prev next
Infobox_Rugby_World_Sevens name series countries * United
Infobox_Russian_constituency name image map member-type member member-party member-colour federal-subject districts other-territory voters
Infobox_Russian_term title image caption imgwidth russian rusr native literal scientific iso gost bgn/pcgn
Infobox_sailboat_specifications fetchwikidata onlysourced name insignia insignia insignia insignia line line line line image image image image designer architect location year no design class brand builder role boats crew trapeze draft m ft abbr=on
Infobox_sailing_competition type image alt caption edition year name formername edition sponsor club venue host dates startdate finishdate opening opened_by key_people titles competitors yachts nations qualify gold silver bronze winner linehonours handicapwinner leader award1_title award1 class1_type class1 class2_type class2 class3_type class3 prev next
Infobox_saint honorific_prefix name honorific_suffix image imagesize alt caption titles birth_name birth_date birth_place home_town residence death_date death_place death_cause venerated_in beatified_date beatified_place beatified_by canonized_date canonized_place canonized_by major_shrine feast_day attributes patronage issues suppressed_date suppressed_by influences influenced tradition major_works module
Infobox_samurai name image image caption Era birth_date death_date Name Other Posthumous God Dharma Spirit Grave Rank Shogunate(s) Lord(s) Domain(s) Clan(s) Father Brother(s) Wife Child Notice(s) Signature
Infobox_Sanamahist_term title en omp omp-Latn mni mni-Latn as as-Latn bn bn-Latn my my-Latn hi hi-Latn
Infobox_sanitation_technology name
Infobox_SCC case-name= full-case-name= heard-date= decided-date= citations= docket= history= subsequent= ruling= ratio= SCC=YEAR-YEAR Unanimous= Majority= JoinMajority= Concurrence= JoinConcurrence= Concurrence/Dissent= JoinConcurrence/Dissent= Dissent= JoinDissent= NotParticipating= NotParticipatingFin= LawsApplied=